@progress/kendo-theme-default 13.2.0-dev.0 → 13.2.0-dev.1
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/default-blue.css +1 -1
- package/dist/default-dataviz-v4.css +1 -1
- package/dist/default-green.css +1 -1
- package/dist/default-main-dark.css +1 -1
- package/dist/default-main.css +1 -1
- package/dist/default-nordic.css +1 -1
- package/dist/default-ocean-blue-a11y.css +1 -1
- package/dist/default-ocean-blue.css +1 -1
- package/dist/default-orange.css +1 -1
- package/dist/default-purple.css +1 -1
- package/dist/default-turquoise.css +1 -1
- package/dist/default-urban.css +1 -1
- package/dist/meta/sassdoc-data.json +456 -348
- package/dist/meta/sassdoc-raw-data.json +220 -170
- package/dist/meta/variables.json +12 -4
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/grid/_variables.scss +10 -2
package/dist/meta/variables.json
CHANGED
|
@@ -11978,12 +11978,20 @@
|
|
|
11978
11978
|
"value": "var(--kendo-color-surface)"
|
|
11979
11979
|
},
|
|
11980
11980
|
"kendo-grid-sticky-container-shadow": {
|
|
11981
|
-
"type": "
|
|
11982
|
-
"value": "
|
|
11981
|
+
"type": "List",
|
|
11982
|
+
"value": "(0 2px 4px 0 rgba(0, 0, 0, 0.08))"
|
|
11983
|
+
},
|
|
11984
|
+
"kendo-grid-sticky-container-bottom-shadow": {
|
|
11985
|
+
"type": "List",
|
|
11986
|
+
"value": "(0 -2px 4px 0 rgba(0, 0, 0, 0.08))"
|
|
11983
11987
|
},
|
|
11984
11988
|
"kendo-grid-pinned-container-shadow": {
|
|
11985
|
-
"type": "
|
|
11986
|
-
"value": "
|
|
11989
|
+
"type": "List",
|
|
11990
|
+
"value": "(0 4px 8px 0 rgba(0, 0, 0, 0.08))"
|
|
11991
|
+
},
|
|
11992
|
+
"kendo-grid-pinned-container-bottom-shadow": {
|
|
11993
|
+
"type": "List",
|
|
11994
|
+
"value": "(0 -4px 8px 0 rgba(0, 0, 0, 0.08))"
|
|
11987
11995
|
},
|
|
11988
11996
|
"kendo-grid-column-menu-width": {
|
|
11989
11997
|
"type": "Number",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "13.2.0-dev.
|
|
4
|
+
"version": "13.2.0-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "^4.8.0",
|
|
56
|
-
"@progress/kendo-theme-core": "13.2.0-dev.
|
|
57
|
-
"@progress/kendo-theme-utils": "13.2.0-dev.
|
|
56
|
+
"@progress/kendo-theme-core": "13.2.0-dev.1",
|
|
57
|
+
"@progress/kendo-theme-utils": "13.2.0-dev.1"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
61
61
|
"lib": "lib"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "0898cb4c2955f92610c5766da2c849ab3e12b11c"
|
|
64
64
|
}
|
|
@@ -345,11 +345,17 @@ $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
|
345
345
|
|
|
346
346
|
/// The box shadow of the sticky container in the Grid.
|
|
347
347
|
/// @group grid
|
|
348
|
-
$kendo-grid-sticky-container-shadow:
|
|
348
|
+
$kendo-grid-sticky-container-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) !default;
|
|
349
|
+
/// The box shadow of the sticky container positioned at the bottom in the Grid.
|
|
350
|
+
/// @group grid
|
|
351
|
+
$kendo-grid-sticky-container-bottom-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.08) !default;
|
|
349
352
|
|
|
350
353
|
/// The box shadow of the pinned container in the Grid.
|
|
351
354
|
/// @group grid
|
|
352
|
-
$kendo-grid-pinned-container-shadow:
|
|
355
|
+
$kendo-grid-pinned-container-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08) !default;
|
|
356
|
+
/// The box shadow of the pinned container positioned at the bottom in the Grid.
|
|
357
|
+
/// @group grid
|
|
358
|
+
$kendo-grid-pinned-container-bottom-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.08) !default;
|
|
353
359
|
|
|
354
360
|
|
|
355
361
|
/// The width of the Grid column menu.
|
|
@@ -638,5 +644,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
|
|
|
638
644
|
$kendo-grid-stack-expandable-shadow: $kendo-grid-stack-expandable-shadow,
|
|
639
645
|
$kendo-grid-pinned-source-font-weight: $kendo-grid-pinned-source-font-weight,
|
|
640
646
|
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow,
|
|
647
|
+
$kendo-grid-sticky-container-bottom-shadow: $kendo-grid-sticky-container-bottom-shadow,
|
|
641
648
|
$kendo-grid-pinned-container-shadow: $kendo-grid-pinned-container-shadow,
|
|
649
|
+
$kendo-grid-pinned-container-bottom-shadow: $kendo-grid-pinned-container-bottom-shadow,
|
|
642
650
|
);
|