@progress/kendo-theme-fluent 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/fluent-1-dark.css +1 -1
- package/dist/fluent-1.css +1 -1
- package/dist/fluent-main-dark.css +1 -1
- package/dist/fluent-main.css +1 -1
- package/dist/meta/sassdoc-data.json +692 -638
- package/dist/meta/sassdoc-raw-data.json +344 -319
- package/dist/meta/variables.json +4 -0
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-1-dark.json +1 -1
- package/lib/swatches/fluent-1.json +1 -1
- package/lib/swatches/fluent-main-dark.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +3 -3
- package/scss/grid/_layout.scss +5 -2
- package/scss/grid/_variables.scss +4 -0
package/dist/meta/variables.json
CHANGED
|
@@ -13461,6 +13461,10 @@
|
|
|
13461
13461
|
"type": "String",
|
|
13462
13462
|
"value": "var(--kendo-grid-grouping-row-text, var(--kendo-table-group-row-text, var(--kendo-table-header-text, var(--kendo-color-on-app-surface))))"
|
|
13463
13463
|
},
|
|
13464
|
+
"kendo-grid-grouping-row-font-weight": {
|
|
13465
|
+
"type": "String",
|
|
13466
|
+
"value": "var(--kendo-grid-grouping-row-font-weight, var(--kendo-font-weight-semibold))"
|
|
13467
|
+
},
|
|
13464
13468
|
"kendo-grid-grouping-indent-size": {
|
|
13465
13469
|
"type": "String",
|
|
13466
13470
|
"value": "var(--kendo-spacing-6)"
|
package/lib/swatches/all.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-fluent",
|
|
3
3
|
"description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
|
|
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": [
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "^4.11.0",
|
|
57
|
-
"@progress/kendo-theme-core": "14.4.1-dev.
|
|
58
|
-
"@progress/kendo-theme-utils": "14.4.1-dev.
|
|
57
|
+
"@progress/kendo-theme-core": "14.4.1-dev.3",
|
|
58
|
+
"@progress/kendo-theme-utils": "14.4.1-dev.3"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -161,11 +161,14 @@
|
|
|
161
161
|
|
|
162
162
|
.k-grid-footer .k-table-td,
|
|
163
163
|
.k-grid-header .k-table-th,
|
|
164
|
-
.k-group-footer .k-table-td
|
|
165
|
-
.k-grouping-row .k-table-td {
|
|
164
|
+
.k-group-footer .k-table-td {
|
|
166
165
|
font-weight: $kendo-grid-header-font-weight;
|
|
167
166
|
}
|
|
168
167
|
|
|
168
|
+
.k-grouping-row .k-table-td {
|
|
169
|
+
font-weight: $kendo-grid-grouping-row-font-weight;
|
|
170
|
+
}
|
|
171
|
+
|
|
169
172
|
// Filter row
|
|
170
173
|
.k-filter-row {
|
|
171
174
|
.k-table-td,
|
|
@@ -326,6 +326,9 @@ $kendo-grid-grouping-row-bg: var( --kendo-grid-grouping-row-bg, #{$kendo-table-g
|
|
|
326
326
|
/// The text color of the Grid grouping row.
|
|
327
327
|
/// @group grid
|
|
328
328
|
$kendo-grid-grouping-row-text: var( --kendo-grid-grouping-row-text, #{$kendo-table-group-row-text} ) !default;
|
|
329
|
+
/// The font weight of the Grid grouping row text.
|
|
330
|
+
/// @group grid
|
|
331
|
+
$kendo-grid-grouping-row-font-weight: var( --kendo-grid-grouping-row-font-weight, var(--kendo-font-weight-semibold) ) !default;
|
|
329
332
|
/// The border color of the Grid grouping row.
|
|
330
333
|
/// @group grid
|
|
331
334
|
$kendo-grid-grouping-row-border: var( --kendo-grid-grouping-row-border, #{$kendo-table-group-row-border} ) !default;
|
|
@@ -685,6 +688,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-semibold) !defaul
|
|
|
685
688
|
$kendo-grid-selection-aggregates-font-weight: $kendo-grid-selection-aggregates-font-weight,
|
|
686
689
|
$kendo-grid-grouping-row-bg: $kendo-grid-grouping-row-bg,
|
|
687
690
|
$kendo-grid-grouping-row-text: $kendo-grid-grouping-row-text,
|
|
691
|
+
$kendo-grid-grouping-row-font-weight: $kendo-grid-grouping-row-font-weight,
|
|
688
692
|
$kendo-grid-sorted-icon-spacing: $kendo-grid-sort-icon-spacing,
|
|
689
693
|
$kendo-grid-sorted-bg: $kendo-grid-sorted-bg,
|
|
690
694
|
$kendo-grid-sorting-indicator-text: $kendo-grid-sort-indicator-text,
|