@progress/kendo-theme-bootstrap 7.1.0-dev.6 → 7.1.0-dev.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +216 -11
- package/dist/all.scss +228 -10
- package/dist/meta/sassdoc-data.json +604 -388
- package/dist/meta/sassdoc-raw-data.json +292 -192
- package/dist/meta/variables.json +34 -2
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +5 -0
- package/scss/input/_variables.scss +15 -1
package/dist/meta/variables.json
CHANGED
|
@@ -4103,6 +4103,22 @@
|
|
|
4103
4103
|
"type": "List",
|
|
4104
4104
|
"value": "0 0 0 0.25rem rgba(220, 53, 69, 0.25)"
|
|
4105
4105
|
},
|
|
4106
|
+
"kendo-valid-bg": {
|
|
4107
|
+
"type": "String",
|
|
4108
|
+
"value": "initial"
|
|
4109
|
+
},
|
|
4110
|
+
"kendo-valid-text": {
|
|
4111
|
+
"type": "Color",
|
|
4112
|
+
"value": "#198754"
|
|
4113
|
+
},
|
|
4114
|
+
"kendo-valid-border": {
|
|
4115
|
+
"type": "Color",
|
|
4116
|
+
"value": "#198754"
|
|
4117
|
+
},
|
|
4118
|
+
"kendo-valid-shadow": {
|
|
4119
|
+
"type": "List",
|
|
4120
|
+
"value": "0 0 0 0.25rem rgba(25, 135, 84, 0.25)"
|
|
4121
|
+
},
|
|
4106
4122
|
"kendo-loading-opacity": {
|
|
4107
4123
|
"type": "Number",
|
|
4108
4124
|
"value": "0.3"
|
|
@@ -7051,14 +7067,22 @@
|
|
|
7051
7067
|
"type": "Null",
|
|
7052
7068
|
"value": "null"
|
|
7053
7069
|
},
|
|
7054
|
-
"kendo-input-separator-
|
|
7070
|
+
"kendo-input-separator-text": {
|
|
7055
7071
|
"type": "Color",
|
|
7056
|
-
"value": "#
|
|
7072
|
+
"value": "#dee2e6"
|
|
7057
7073
|
},
|
|
7058
7074
|
"kendo-input-separator-opacity": {
|
|
7059
7075
|
"type": "Number",
|
|
7060
7076
|
"value": "0.5"
|
|
7061
7077
|
},
|
|
7078
|
+
"kendo-input-prefix-text": {
|
|
7079
|
+
"type": "Color",
|
|
7080
|
+
"value": "#6c757d"
|
|
7081
|
+
},
|
|
7082
|
+
"kendo-input-suffix-text": {
|
|
7083
|
+
"type": "Color",
|
|
7084
|
+
"value": "#6c757d"
|
|
7085
|
+
},
|
|
7062
7086
|
"kendo-input-invalid-border": {
|
|
7063
7087
|
"type": "Color",
|
|
7064
7088
|
"value": "#dc3545"
|
|
@@ -7067,6 +7091,14 @@
|
|
|
7067
7091
|
"type": "List",
|
|
7068
7092
|
"value": "0 0 0 0.25rem rgba(220, 53, 69, 0.25)"
|
|
7069
7093
|
},
|
|
7094
|
+
"kendo-input-valid-border": {
|
|
7095
|
+
"type": "Color",
|
|
7096
|
+
"value": "#198754"
|
|
7097
|
+
},
|
|
7098
|
+
"kendo-input-valid-shadow": {
|
|
7099
|
+
"type": "List",
|
|
7100
|
+
"value": "0 0 0 0.25rem rgba(25, 135, 84, 0.25)"
|
|
7101
|
+
},
|
|
7070
7102
|
"kendo-picker-bg": {
|
|
7071
7103
|
"type": "Color",
|
|
7072
7104
|
"value": "#e4e7eb"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "7.1.0-dev.
|
|
4
|
+
"version": "7.1.0-dev.7",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "2.1.0",
|
|
56
|
-
"@progress/kendo-theme-core": "7.1.0-dev.
|
|
57
|
-
"@progress/kendo-theme-default": "7.1.0-dev.
|
|
58
|
-
"@progress/kendo-theme-utils": "7.1.0-dev.
|
|
56
|
+
"@progress/kendo-theme-core": "7.1.0-dev.7",
|
|
57
|
+
"@progress/kendo-theme-default": "7.1.0-dev.7",
|
|
58
|
+
"@progress/kendo-theme-utils": "7.1.0-dev.7",
|
|
59
59
|
"bootstrap": "5.2.1"
|
|
60
60
|
},
|
|
61
61
|
"directories": {
|
|
62
62
|
"doc": "docs",
|
|
63
63
|
"lib": "lib"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "4bacca4f18a86fbe5bd6cf1cbf192e82c5504709"
|
|
66
66
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -368,6 +368,11 @@ $kendo-invalid-text: $kendo-color-error !default;
|
|
|
368
368
|
$kendo-invalid-border: $kendo-color-error !default;
|
|
369
369
|
$kendo-invalid-shadow: 0 0 0 .25rem rgba( $kendo-invalid-border, .25 ) !default;
|
|
370
370
|
|
|
371
|
+
$kendo-valid-bg: null !default;
|
|
372
|
+
$kendo-valid-text: $kendo-color-success !default;
|
|
373
|
+
$kendo-valid-border: $kendo-color-success !default;
|
|
374
|
+
$kendo-valid-shadow: 0 0 0 .25rem rgba( $kendo-valid-border, .25 ) !default;
|
|
375
|
+
|
|
371
376
|
// Loading
|
|
372
377
|
$kendo-loading-opacity: .3 !default;
|
|
373
378
|
$kendo-zindex-loading: 100 !default;
|
|
@@ -267,11 +267,18 @@ $kendo-input-spinner-icon-offset: null !default;
|
|
|
267
267
|
|
|
268
268
|
/// The color of the Input separator.
|
|
269
269
|
/// @group input
|
|
270
|
-
$kendo-input-separator-
|
|
270
|
+
$kendo-input-separator-text: $kendo-component-border !default;
|
|
271
271
|
/// The opacity of the Input separator.
|
|
272
272
|
/// @group input
|
|
273
273
|
$kendo-input-separator-opacity: .5 !default;
|
|
274
274
|
|
|
275
|
+
/// The text color of the Input prefix.
|
|
276
|
+
/// @group input
|
|
277
|
+
$kendo-input-prefix-text: $kendo-subtle-text !default;
|
|
278
|
+
/// The text color of the Input suffix.
|
|
279
|
+
/// @group input
|
|
280
|
+
$kendo-input-suffix-text: $kendo-subtle-text !default;
|
|
281
|
+
|
|
275
282
|
/// The border color of the invalid Input components.
|
|
276
283
|
/// @group input
|
|
277
284
|
$kendo-input-invalid-border: $kendo-invalid-border !default;
|
|
@@ -279,6 +286,13 @@ $kendo-input-invalid-border: $kendo-invalid-border !default;
|
|
|
279
286
|
/// @group input
|
|
280
287
|
$kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
|
|
281
288
|
|
|
289
|
+
/// The border color of the valid Input components.
|
|
290
|
+
/// @group input
|
|
291
|
+
$kendo-input-valid-border: $kendo-valid-border !default;
|
|
292
|
+
/// The shadow of the valid Input components.
|
|
293
|
+
/// @group input
|
|
294
|
+
$kendo-input-valid-shadow: $kendo-valid-shadow !default;
|
|
295
|
+
|
|
282
296
|
/// The background color of the Picker components.
|
|
283
297
|
/// @group picker
|
|
284
298
|
$kendo-picker-bg: $kendo-button-bg !default;
|