@progress/kendo-theme-classic 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/classic-green-dark.css +1 -1
- package/dist/classic-green.css +1 -1
- package/dist/classic-lavender-dark.css +1 -1
- package/dist/classic-lavender.css +1 -1
- package/dist/classic-main-dark.css +1 -1
- package/dist/classic-main.css +1 -1
- package/dist/classic-metro-dark.css +1 -1
- package/dist/classic-metro.css +1 -1
- package/dist/classic-moonlight.css +1 -1
- package/dist/classic-opal-dark.css +1 -1
- package/dist/classic-opal.css +1 -1
- package/dist/classic-silver-dark.css +1 -1
- package/dist/classic-silver.css +1 -1
- package/dist/classic-uniform.css +1 -1
- package/dist/meta/sassdoc-data.json +510 -456
- package/dist/meta/sassdoc-raw-data.json +253 -228
- package/dist/meta/variables.json +4 -0
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +3 -3
- package/scss/grid/_variables.scss +4 -0
package/dist/meta/variables.json
CHANGED
|
@@ -11960,6 +11960,10 @@
|
|
|
11960
11960
|
"type": "String",
|
|
11961
11961
|
"value": "var(--kendo-color-on-app-surface)"
|
|
11962
11962
|
},
|
|
11963
|
+
"kendo-grid-grouping-row-font-weight": {
|
|
11964
|
+
"type": "String",
|
|
11965
|
+
"value": "var(--kendo-font-weight-bold)"
|
|
11966
|
+
},
|
|
11963
11967
|
"kendo-grid-grouping-indent-size": {
|
|
11964
11968
|
"type": "String",
|
|
11965
11969
|
"value": "var(--kendo-spacing-6)"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
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",
|
|
@@ -331,6 +331,9 @@ $kendo-grid-grouping-header-border: $kendo-grid-header-border !default;
|
|
|
331
331
|
/// The text color of the Grid row.
|
|
332
332
|
/// @group grid
|
|
333
333
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
334
|
+
/// The font weight of the Grid grouping row text.
|
|
335
|
+
/// @group grid
|
|
336
|
+
$kendo-grid-grouping-row-font-weight: var(--kendo-font-weight-bold) !default;
|
|
334
337
|
|
|
335
338
|
/// The shadow of the Grid.
|
|
336
339
|
/// @group grid
|
|
@@ -631,6 +634,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
|
|
|
631
634
|
$kendo-grid-sorting-index-spacing-x: $kendo-grid-sorting-index-spacing-x,
|
|
632
635
|
$kendo-grid-grouping-row-bg: $kendo-grid-grouping-row-bg,
|
|
633
636
|
$kendo-grid-grouping-row-text: $kendo-grid-grouping-row-text,
|
|
637
|
+
$kendo-grid-grouping-row-font-weight: $kendo-grid-grouping-row-font-weight,
|
|
634
638
|
$kendo-grid-focus-shadow: $kendo-grid-focus-shadow,
|
|
635
639
|
$kendo-grid-command-cell-button-spacing: $kendo-grid-command-cell-button-spacing,
|
|
636
640
|
$kendo-grid-sticky-bg: $kendo-grid-sticky-bg,
|