Skip to content

Commit 68c940c

Browse files
committed
Updated build and version.
1 parent 32a86c6 commit 68c940c

File tree

724 files changed

+97517
-132781
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

724 files changed

+97517
-132781
lines changed

Changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99
- Fixes an issue where refresh can be called multiple times if some components have on Blur validation
1010
- FJS-1245: fixed an issue where empty submission data comes from 7.x server for dataGrid with initEmpty option
1111
- FJS-1289: fixes an issue where confirmation dialog is not show for modal DataGrid after first time closing modal without making changes
12+
- Fixes an issue where values of conditionally visible components inside EditGrid are not saved on the 6.x server
13+
- Fixed console error for container component
14+
- FJS-1299: Wizard is being rendered incorrectly when a Simple Conditional is applied
15+
16+
#### Added
17+
- utils: add 'ADD_URI_SAFE_ATTR' sanitize option for dompurify
1218

1319
### 4.12.1-rc.16
1420
#### Added

app/bootswatch/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bootswatch
22

3-
[![Bootswatch Logo](https://bootswatch.com/_assets/img/logo-dark.png)](https://bootswatch.com)
3+
[![Bootswatch Logo](https://bootswatch.com/_assets/img/logo-dark.png)](https://bootswatch.com/)
44

55
Bootswatch is a collection of open source themes for [Bootstrap](https://getbootstrap.com/). Check it out at [bootswatch.com](https://bootswatch.com).
66

@@ -51,7 +51,7 @@ Before continuing, ensure you've run `npm install bootswatch` in your local proj
5151
Add the following `import` to your top-level `index.js` (or `App.js`) file. Add it **before** any other `.css` imports.
5252

5353
```js
54-
import "bootswatch/dist/[theme]/bootstrap.min.css";
54+
import "bootswatch/dist/[theme]/bootstrap.min.css";
5555
// TODO: Note: Replace ^[theme]^ (examples: darkly, slate, cosmo, spacelab, and superhero. See https://bootswatch.com for current theme names.)
5656
```
5757

@@ -121,22 +121,22 @@ It's through your contributions that Bootswatch will continue to improve. You ca
121121
122122
**Code:** Make a fix and submit it as a pull request. When making changes, it's important to keep the CSS and SASS versions in sync. To do this, be sure to edit the SASS source files for the particular theme first, then run the tasks `grunt swatch` to build the CSS.
123123
124-
**Donation:** Donations are gratefully accepted via [GitHub](https://github.com/sponsors/thomaspark/) and [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PU2DH4BMF9MWS&source=url).
124+
**Donation:** Donations are gratefully accepted via [GitHub](https://github.com/sponsors/thomaspark) and [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PU2DH4BMF9MWS&source=url).
125125
126126
127127
## Author
128128
129129
Thomas Park
130130
131-
+ https://github.com/thomaspark
132-
+ https://thomaspark.co
131+
* <https://github.com/thomaspark>
132+
* <https://thomaspark.co/>
133133
134134
135135
## Thanks
136136
137137
[Mark Otto](https://github.com/mdo) and [Jacob Thornton](https://github.com/fat) for [Bootstrap](https://github.com/twbs/bootstrap).
138138
139-
[Jenil Gogari](http://www.jgog.in/) for his contributions to the Flatly theme.
139+
[Jenil Gogari](https://jgog.in/) for his contributions to the Flatly theme.
140140
141141
[James Taylor](https://github.com/jostylr) for [cors-lite](https://github.com/jostylr/cors-lite).
142142
@@ -145,6 +145,6 @@ Thomas Park
145145
146146
## Copyright and License
147147
148-
Copyright 2014-2019 Thomas Park
148+
Copyright 2014-2020 Thomas Park
149149
150150
Code released under the MIT License.

app/bootswatch/dist/cerulean/_bootswatch.scss

+15-16
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
// Cerulean 4.5.2
1+
// Cerulean 4.5.3
22
// Bootswatch
33

44

5+
// Variables ===================================================================
6+
7+
$text-shadow: 0 1px 0 rgba(0, 0, 0, .05) !default;
8+
9+
// Mixins ======================================================================
10+
511
@mixin btn-shadow($color){
612
@include gradient-y-three-colors(lighten($color, 8%), $color, 60%, darken($color, 4%));
713
}
814

9-
$text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) !default;
10-
1115
// Navbar ======================================================================
1216

1317
.bg-primary {
@@ -24,13 +28,13 @@ $text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) !default;
2428

2529
.navbar-brand,
2630
.nav-link {
27-
text-shadow: $text-shadow
31+
text-shadow: $text-shadow;
2832
}
2933

3034
// Buttons =====================================================================
3135

3236
.btn {
33-
text-shadow: $text-shadow
37+
text-shadow: $text-shadow;
3438
}
3539

3640
.btn-primary {
@@ -79,25 +83,20 @@ $text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) !default;
7983
.bg-warning,
8084
.bg-danger,
8185
.bg-dark {
82-
h1, h2, h3, h4, h5, h6 {
86+
h1,
87+
h2,
88+
h3,
89+
h4,
90+
h5,
91+
h6 {
8392
color: $white;
8493
}
8594
}
8695

87-
// Tables ======================================================================
88-
89-
// Forms =======================================================================
90-
9196
// Navs ========================================================================
9297

9398
.dropdown-menu {
9499
.dropdown-header {
95100
color: $gray-600;
96101
}
97102
}
98-
99-
// Indicators ==================================================================
100-
101-
// Progress bars ===============================================================
102-
103-
// Containers ==================================================================

app/bootswatch/dist/cerulean/_variables.scss

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Cerulean 4.5.2
1+
// Cerulean 4.5.3
22
// Bootswatch
33

44
//
@@ -47,11 +47,11 @@ $headings-color: $cyan !default;
4747

4848
// Dropdowns
4949

50-
$dropdown-link-color: $body-color !default;
51-
$dropdown-link-hover-color: $white !default;
52-
$dropdown-link-hover-bg: $primary !default;
50+
$dropdown-link-color: $body-color !default;
51+
$dropdown-link-hover-color: $white !default;
52+
$dropdown-link-hover-bg: $primary !default;
5353

5454
// Navbar
5555

56-
$navbar-dark-color: rgba($white,.8) !default;
57-
$navbar-dark-hover-color: $white !default;
56+
$navbar-dark-color: rgba($white, .8) !default;
57+
$navbar-dark-hover-color: $white !default;

0 commit comments

Comments
 (0)