@progress/kendo-theme-default 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/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 +382 -328
- package/dist/meta/sassdoc-raw-data.json +189 -164
- package/dist/meta/variables.json +4 -0
- 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 +6 -1
package/dist/meta/variables.json
CHANGED
|
@@ -12268,6 +12268,10 @@
|
|
|
12268
12268
|
"type": "String",
|
|
12269
12269
|
"value": "var(--kendo-elevation-3, 0 6px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.12))"
|
|
12270
12270
|
},
|
|
12271
|
+
"kendo-grid-pinned-container-shadow": {
|
|
12272
|
+
"type": "String",
|
|
12273
|
+
"value": "var(--kendo-elevation-4, 0 8px 10px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.12))"
|
|
12274
|
+
},
|
|
12271
12275
|
"kendo-grid-column-menu-width": {
|
|
12272
12276
|
"type": "Number",
|
|
12273
12277
|
"value": "230px"
|
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.1.0-dev.
|
|
4
|
+
"version": "13.1.0-dev.3",
|
|
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.1.0-dev.
|
|
57
|
-
"@progress/kendo-theme-utils": "13.1.0-dev.
|
|
56
|
+
"@progress/kendo-theme-core": "13.1.0-dev.3",
|
|
57
|
+
"@progress/kendo-theme-utils": "13.1.0-dev.3"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
61
61
|
"lib": "lib"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "a1e912df81b1aadcb852600c86a4ee5b55f72392"
|
|
64
64
|
}
|
|
@@ -347,6 +347,10 @@ $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
|
347
347
|
/// @group grid
|
|
348
348
|
$kendo-grid-sticky-container-shadow: k-elevation(3) !default;
|
|
349
349
|
|
|
350
|
+
/// The box shadow of the pinned container in the Grid.
|
|
351
|
+
/// @group grid
|
|
352
|
+
$kendo-grid-pinned-container-shadow: k-elevation(4) !default;
|
|
353
|
+
|
|
350
354
|
|
|
351
355
|
/// The width of the Grid column menu.
|
|
352
356
|
/// @group grid
|
|
@@ -633,5 +637,6 @@ $kendo-grid-pinned-source-font-weight: var( --kendo-font-weight-bold, 700 ) !def
|
|
|
633
637
|
$kendo-grid-stack-focus-outline: $kendo-grid-stack-focus-outline,
|
|
634
638
|
$kendo-grid-stack-expandable-shadow: $kendo-grid-stack-expandable-shadow,
|
|
635
639
|
$kendo-grid-pinned-source-font-weight: $kendo-grid-pinned-source-font-weight,
|
|
636
|
-
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow
|
|
640
|
+
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow,
|
|
641
|
+
$kendo-grid-pinned-container-shadow: $kendo-grid-pinned-container-shadow,
|
|
637
642
|
);
|