@progress/kendo-theme-bootstrap 14.4.1-dev.2 → 14.4.1-dev.3
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 +558 -504
- package/dist/meta/sassdoc-raw-data.json +276 -251
- package/dist/meta/variables.json +4 -0
- 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 +4 -0
package/dist/meta/variables.json
CHANGED
|
@@ -11968,6 +11968,10 @@
|
|
|
11968
11968
|
"type": "String",
|
|
11969
11969
|
"value": "var(--kendo-color-on-app-surface)"
|
|
11970
11970
|
},
|
|
11971
|
+
"kendo-grid-grouping-row-font-weight": {
|
|
11972
|
+
"type": "String",
|
|
11973
|
+
"value": "var(--kendo-font-weight-bold)"
|
|
11974
|
+
},
|
|
11971
11975
|
"kendo-grid-grouping-indent-size": {
|
|
11972
11976
|
"type": "String",
|
|
11973
11977
|
"value": "var(--kendo-spacing-6)"
|
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.4.1-dev.
|
|
4
|
+
"version": "14.4.1-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "^4.11.0",
|
|
56
|
-
"@progress/kendo-theme-core": "14.4.1-dev.
|
|
57
|
-
"@progress/kendo-theme-utils": "14.4.1-dev.
|
|
56
|
+
"@progress/kendo-theme-core": "14.4.1-dev.3",
|
|
57
|
+
"@progress/kendo-theme-utils": "14.4.1-dev.3"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
@@ -314,6 +314,9 @@ $kendo-grid-grouping-header-border: $kendo-grid-header-border !default;
|
|
|
314
314
|
/// The text color of the Grid row.
|
|
315
315
|
/// @group grid
|
|
316
316
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
317
|
+
/// The font weight of the Grid grouping row text.
|
|
318
|
+
/// @group grid
|
|
319
|
+
$kendo-grid-grouping-row-font-weight: var(--kendo-font-weight-bold) !default;
|
|
317
320
|
|
|
318
321
|
/// The background color of the Grid.
|
|
319
322
|
/// @group grid
|
|
@@ -630,6 +633,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
|
|
|
630
633
|
$kendo-grid-selection-aggregates-font-weight: $kendo-grid-selection-aggregates-font-weight,
|
|
631
634
|
$kendo-grid-grouping-row-bg: $kendo-grid-grouping-row-bg,
|
|
632
635
|
$kendo-grid-grouping-row-text: $kendo-grid-grouping-row-text,
|
|
636
|
+
$kendo-grid-grouping-row-font-weight: $kendo-grid-grouping-row-font-weight,
|
|
633
637
|
$kendo-grid-sorted-bg: $kendo-grid-sorted-bg,
|
|
634
638
|
$kendo-grid-sorting-indicator-text: $kendo-grid-sorting-indicator-text,
|
|
635
639
|
$kendo-grid-sorting-index-font-size: $kendo-grid-sorting-index-font-size,
|