@progress/kendo-theme-classic 13.2.0-dev.0 → 13.2.0-dev.2
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 +456 -348
- package/dist/meta/sassdoc-raw-data.json +220 -170
- package/dist/meta/variables.json +12 -4
- 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 +4 -4
- package/scss/grid/_variables.scss +11 -3
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-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
4
|
-
"version": "13.2.0-dev.
|
|
4
|
+
"version": "13.2.0-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "^4.8.0",
|
|
57
|
-
"@progress/kendo-theme-core": "13.2.0-dev.
|
|
58
|
-
"@progress/kendo-theme-utils": "13.2.0-dev.
|
|
57
|
+
"@progress/kendo-theme-core": "13.2.0-dev.2",
|
|
58
|
+
"@progress/kendo-theme-utils": "13.2.0-dev.2"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
62
62
|
"lib": "lib"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "2391ae0f9412058a616e592247c530e1f133ce2b"
|
|
65
65
|
}
|
|
@@ -344,11 +344,17 @@ $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
|
344
344
|
|
|
345
345
|
/// The box shadow of the sticky container in the Grid.
|
|
346
346
|
/// @group grid
|
|
347
|
-
$kendo-grid-sticky-container-shadow:
|
|
347
|
+
$kendo-grid-sticky-container-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) !default;
|
|
348
|
+
/// The box shadow of the sticky container positioned at the bottom in the Grid.
|
|
349
|
+
/// @group grid
|
|
350
|
+
$kendo-grid-sticky-container-bottom-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.08) !default;
|
|
348
351
|
|
|
349
352
|
/// The box shadow of the pinned container in the Grid.
|
|
350
353
|
/// @group grid
|
|
351
|
-
$kendo-grid-pinned-container-shadow:
|
|
354
|
+
$kendo-grid-pinned-container-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08) !default;
|
|
355
|
+
/// The box shadow of the pinned container positioned at the bottom in the Grid.
|
|
356
|
+
/// @group grid
|
|
357
|
+
$kendo-grid-pinned-container-bottom-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.08) !default;
|
|
352
358
|
|
|
353
359
|
|
|
354
360
|
/// The width of the Grid column menu.
|
|
@@ -636,5 +642,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
|
|
|
636
642
|
$kendo-grid-stack-expandable-shadow: $kendo-grid-stack-expandable-shadow,
|
|
637
643
|
$kendo-grid-pinned-source-font-weight: $kendo-grid-pinned-source-font-weight,
|
|
638
644
|
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow,
|
|
639
|
-
$kendo-grid-
|
|
645
|
+
$kendo-grid-sticky-container-bottom-shadow: $kendo-grid-sticky-container-bottom-shadow,
|
|
646
|
+
$kendo-grid-pinned-container-shadow: $kendo-grid-pinned-container-shadow,
|
|
647
|
+
$kendo-grid-pinned-container-bottom-shadow: $kendo-grid-pinned-container-bottom-shadow
|
|
640
648
|
);
|