@progress/kendo-theme-fluent 13.1.0-dev.1 → 13.1.0-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 +452 -398
- package/dist/meta/sassdoc-raw-data.json +224 -199
- 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 +4 -4
- package/scss/grid/_theme.scss +6 -0
- package/scss/grid/_variables.scss +6 -1
package/dist/meta/variables.json
CHANGED
|
@@ -13807,6 +13807,10 @@
|
|
|
13807
13807
|
"type": "String",
|
|
13808
13808
|
"value": "var(--kendo-elevation-3, 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12))"
|
|
13809
13809
|
},
|
|
13810
|
+
"kendo-grid-pinned-container-shadow": {
|
|
13811
|
+
"type": "String",
|
|
13812
|
+
"value": "var(--kendo-elevation-4, 0 4px 8px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12))"
|
|
13813
|
+
},
|
|
13810
13814
|
"kendo-grid-column-menu-width": {
|
|
13811
13815
|
"type": "String",
|
|
13812
13816
|
"value": "var(--kendo-grid-column-menu-width, 230px)"
|
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": "13.1.0-dev.
|
|
4
|
+
"version": "13.1.0-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@progress/kendo-svg-icons": "^4.8.0",
|
|
58
|
-
"@progress/kendo-theme-core": "13.1.0-dev.
|
|
59
|
-
"@progress/kendo-theme-utils": "13.1.0-dev.
|
|
58
|
+
"@progress/kendo-theme-core": "13.1.0-dev.3",
|
|
59
|
+
"@progress/kendo-theme-utils": "13.1.0-dev.3"
|
|
60
60
|
},
|
|
61
61
|
"directories": {
|
|
62
62
|
"doc": "docs",
|
|
63
63
|
"lib": "lib"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "a1e912df81b1aadcb852600c86a4ee5b55f72392"
|
|
66
66
|
}
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -398,6 +398,10 @@ $kendo-grid-sticky-footer-bg: var( --kendo-grid-sticky-footer-bg, #{$kendo-grid-
|
|
|
398
398
|
/// @group grid
|
|
399
399
|
$kendo-grid-sticky-container-shadow: k-elevation(3) !default;
|
|
400
400
|
|
|
401
|
+
/// The box shadow of the pinned container in the Grid.
|
|
402
|
+
/// @group grid
|
|
403
|
+
$kendo-grid-pinned-container-shadow: k-elevation(4) !default;
|
|
404
|
+
|
|
401
405
|
/// The horizontal padding of the Grid filter menu container.
|
|
402
406
|
/// @group grid
|
|
403
407
|
$kendo-filter-menu-container-padding-y: var( --kendo-filter-menu-container-padding-y, #{k-spacing(3)} ) !default;
|
|
@@ -700,5 +704,6 @@ $kendo-grid-pinned-source-font-weight: var( --kendo-font-weight-semibold, 600 )
|
|
|
700
704
|
$kendo-grid-cell-vertical-border-width: $kendo-grid-cell-border-width-x,
|
|
701
705
|
$kendo-grid-cell-horizontal-border-width: $kendo-grid-cell-border-width-y,
|
|
702
706
|
$kendo-grid-pinned-source-font-weight: $kendo-grid-pinned-source-font-weight,
|
|
703
|
-
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow
|
|
707
|
+
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow,
|
|
708
|
+
$kendo-grid-pinned-container-shadow: $kendo-grid-pinned-container-shadow
|
|
704
709
|
);
|