@progress/kendo-theme-bootstrap 14.2.0-dev.2 → 14.2.0-dev.4
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 +1 -1
- package/dist/bootstrap-3-dark.css +1 -1
- package/dist/bootstrap-3.css +1 -1
- package/dist/bootstrap-4-dark.css +1 -1
- package/dist/bootstrap-4.css +1 -1
- package/dist/bootstrap-dataviz-v4.css +1 -1
- package/dist/bootstrap-main-dark.css +1 -1
- package/dist/bootstrap-main.css +1 -1
- package/dist/bootstrap-nordic.css +1 -1
- package/dist/bootstrap-turquoise-dark.css +1 -1
- package/dist/bootstrap-turquoise.css +1 -1
- package/dist/bootstrap-urban.css +1 -1
- package/dist/bootstrap-vintage.css +1 -1
- package/dist/meta/sassdoc-data.json +830 -668
- package/dist/meta/sassdoc-raw-data.json +409 -334
- package/dist/meta/variables.json +13 -1
- 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 +3 -3
- package/scss/grid/_variables.scss +13 -0
- package/scss/segmented-control/_variables.scss +1 -1
package/dist/meta/variables.json
CHANGED
|
@@ -4267,7 +4267,7 @@
|
|
|
4267
4267
|
},
|
|
4268
4268
|
"kendo-segmented-control-thumb-text": {
|
|
4269
4269
|
"type": "String",
|
|
4270
|
-
"value": "var(--kendo-color-on-
|
|
4270
|
+
"value": "var(--kendo-color-on-app-surface)"
|
|
4271
4271
|
},
|
|
4272
4272
|
"kendo-segmented-control-sm-button-padding-x": {
|
|
4273
4273
|
"type": "String",
|
|
@@ -11801,6 +11801,18 @@
|
|
|
11801
11801
|
"type": "String",
|
|
11802
11802
|
"value": "var(--kendo-color-border)"
|
|
11803
11803
|
},
|
|
11804
|
+
"kendo-grid-add-row-bg": {
|
|
11805
|
+
"type": "String",
|
|
11806
|
+
"value": "var(--kendo-color-surface)"
|
|
11807
|
+
},
|
|
11808
|
+
"kendo-grid-add-row-text": {
|
|
11809
|
+
"type": "String",
|
|
11810
|
+
"value": "var(--kendo-color-on-app-surface)"
|
|
11811
|
+
},
|
|
11812
|
+
"kendo-grid-add-row-border": {
|
|
11813
|
+
"type": "String",
|
|
11814
|
+
"value": "var(--kendo-color-border)"
|
|
11815
|
+
},
|
|
11804
11816
|
"kendo-grid-footer-bg": {
|
|
11805
11817
|
"type": "String",
|
|
11806
11818
|
"value": "var(--kendo-color-surface)"
|
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": "14.2.0-dev.
|
|
4
|
+
"version": "14.2.0-dev.4",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "^4.9.0",
|
|
57
|
-
"@progress/kendo-theme-core": "14.2.0-dev.
|
|
58
|
-
"@progress/kendo-theme-utils": "14.2.0-dev.
|
|
57
|
+
"@progress/kendo-theme-core": "14.2.0-dev.4",
|
|
58
|
+
"@progress/kendo-theme-utils": "14.2.0-dev.4"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
@@ -223,6 +223,16 @@ $kendo-grid-header-text: $kendo-table-header-text !default;
|
|
|
223
223
|
/// @group grid
|
|
224
224
|
$kendo-grid-header-border: $kendo-table-header-border !default;
|
|
225
225
|
|
|
226
|
+
/// The background color of Grid add row.
|
|
227
|
+
/// @group grid
|
|
228
|
+
$kendo-grid-add-row-bg: k-color(surface) !default;
|
|
229
|
+
/// The text color of Grid add row.
|
|
230
|
+
/// @group grid
|
|
231
|
+
$kendo-grid-add-row-text: k-color(on-app-surface) !default;
|
|
232
|
+
/// The border color of Grid add row.
|
|
233
|
+
/// @group grid
|
|
234
|
+
$kendo-grid-add-row-border: k-color(border) !default;
|
|
235
|
+
|
|
226
236
|
/// The background color of Grid footer.
|
|
227
237
|
/// @group grid
|
|
228
238
|
$kendo-grid-footer-bg: $kendo-table-footer-bg !default;
|
|
@@ -586,6 +596,9 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
|
|
|
586
596
|
$kendo-grid-header-bg: $kendo-grid-header-bg,
|
|
587
597
|
$kendo-grid-header-text: $kendo-grid-header-text,
|
|
588
598
|
$kendo-grid-header-border: $kendo-grid-header-border,
|
|
599
|
+
$kendo-grid-add-row-bg: $kendo-grid-add-row-bg,
|
|
600
|
+
$kendo-grid-add-row-text: $kendo-grid-add-row-text,
|
|
601
|
+
$kendo-grid-add-row-border: $kendo-grid-add-row-border,
|
|
589
602
|
$kendo-grid-footer-bg: $kendo-grid-footer-bg,
|
|
590
603
|
$kendo-grid-footer-text: $kendo-grid-footer-text,
|
|
591
604
|
$kendo-grid-footer-border: $kendo-grid-footer-border,
|
|
@@ -62,7 +62,7 @@ $kendo-segmented-control-thumb-shadow: none !default;
|
|
|
62
62
|
$kendo-segmented-control-thumb-bg: k-color(surface-alt) !default;
|
|
63
63
|
/// The text color of the Segmented Control thumb.
|
|
64
64
|
/// @group segmented-control
|
|
65
|
-
$kendo-segmented-control-thumb-text:
|
|
65
|
+
$kendo-segmented-control-thumb-text: k-color(on-app-surface) !default;
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
/// The horizontal padding of the small Segmented Control button.
|