@progress/kendo-theme-material 6.2.1-dev.44 → 6.3.0
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 +139 -77
- package/dist/all.scss +4794 -258
- package/dist/meta/sassdoc-data.json +670 -238
- package/dist/meta/sassdoc-raw-data.json +285 -85
- package/dist/meta/variables.json +65 -5
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +6 -6
- package/scss/grid/_index.scss +2 -0
- package/scss/grid/_variables.scss +41 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-material",
|
|
3
3
|
"description": "Material theme for Kendo UI",
|
|
4
|
-
"version": "6.
|
|
4
|
+
"version": "6.3.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for material theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-font-icons": "1.4.
|
|
53
|
-
"@progress/kendo-theme-core": "6.
|
|
54
|
-
"@progress/kendo-theme-default": "6.
|
|
55
|
-
"@progress/kendo-theme-utils": "6.
|
|
52
|
+
"@progress/kendo-font-icons": "1.4.2",
|
|
53
|
+
"@progress/kendo-theme-core": "6.3.0",
|
|
54
|
+
"@progress/kendo-theme-default": "6.3.0",
|
|
55
|
+
"@progress/kendo-theme-utils": "6.3.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "b20e74e39e32c4a5dd2fde0b0591dcd451d2c1cc"
|
|
58
58
|
}
|
package/scss/grid/_index.scss
CHANGED
|
@@ -25,6 +25,7 @@ $_kendo-module-meta: (
|
|
|
25
25
|
"radio",
|
|
26
26
|
"skeleton",
|
|
27
27
|
"table",
|
|
28
|
+
"tabstrip",
|
|
28
29
|
"textbox",
|
|
29
30
|
"toolbar",
|
|
30
31
|
"validator",
|
|
@@ -58,6 +59,7 @@ $_kendo-module-meta: (
|
|
|
58
59
|
// @import "../utils/_spacer.scss";
|
|
59
60
|
@import "../list/_index.scss";
|
|
60
61
|
@import "../table/_index.scss";
|
|
62
|
+
@import "../tabstrip/_index.scss";
|
|
61
63
|
|
|
62
64
|
|
|
63
65
|
// Component
|
|
@@ -66,6 +66,8 @@ $kendo-grid-sm-filter-cell-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
66
66
|
$kendo-grid-sm-edit-cell-padding-x: $kendo-grid-sm-cell-padding-x !default;
|
|
67
67
|
$kendo-grid-sm-edit-cell-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
68
68
|
$kendo-grid-sm-group-dropclue-height: calc( #{$kendo-chip-sm-calc-size} + #{$kendo-grid-group-drop-hint-size}) !default;
|
|
69
|
+
$kendo-grid-sm-selection-aggregates-padding-x: $kendo-grid-sm-padding-y !default;
|
|
70
|
+
$kendo-grid-sm-selection-aggregates-padding-y: $kendo-grid-sm-padding-y !default;
|
|
69
71
|
|
|
70
72
|
$kendo-grid-md-padding-x: $kendo-grid-padding-x !default;
|
|
71
73
|
$kendo-grid-md-padding-y: $kendo-grid-padding-y !default;
|
|
@@ -80,6 +82,8 @@ $kendo-grid-md-filter-cell-padding-y: $kendo-grid-filter-cell-padding-y !default
|
|
|
80
82
|
$kendo-grid-md-edit-cell-padding-x: $kendo-grid-edit-cell-padding-x !default;
|
|
81
83
|
$kendo-grid-md-edit-cell-padding-y: $kendo-grid-edit-cell-padding-y !default;
|
|
82
84
|
$kendo-grid-md-group-dropclue-height: $kendo-grid-group-drop-hint-height !default;
|
|
85
|
+
$kendo-grid-md-selection-aggregates-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
86
|
+
$kendo-grid-md-selection-aggregates-padding-y: $kendo-grid-md-selection-aggregates-padding-x !default;
|
|
83
87
|
|
|
84
88
|
|
|
85
89
|
// Kendo Grid sizes
|
|
@@ -97,7 +101,9 @@ $kendo-grid-sizes: (
|
|
|
97
101
|
edit-cell-padding-y: $kendo-grid-sm-edit-cell-padding-y,
|
|
98
102
|
button-padding-y: $kendo-button-sm-padding-y,
|
|
99
103
|
button-calc-size: $kendo-button-sm-calc-size,
|
|
100
|
-
group-dropclue-height: $kendo-grid-sm-group-dropclue-height
|
|
104
|
+
group-dropclue-height: $kendo-grid-sm-group-dropclue-height,
|
|
105
|
+
selection-aggregates-padding-x: $kendo-grid-sm-selection-aggregates-padding-x,
|
|
106
|
+
selection-aggregates-padding-y: $kendo-grid-sm-selection-aggregates-padding-y
|
|
101
107
|
),
|
|
102
108
|
md: (
|
|
103
109
|
header-padding-x: $kendo-grid-md-header-padding-x,
|
|
@@ -112,7 +118,9 @@ $kendo-grid-sizes: (
|
|
|
112
118
|
edit-cell-padding-y: $kendo-grid-md-edit-cell-padding-y,
|
|
113
119
|
button-padding-y: $kendo-button-md-padding-y,
|
|
114
120
|
button-calc-size: $kendo-button-md-calc-size,
|
|
115
|
-
group-dropclue-height: $kendo-grid-md-group-dropclue-height
|
|
121
|
+
group-dropclue-height: $kendo-grid-md-group-dropclue-height,
|
|
122
|
+
selection-aggregates-padding-x: $kendo-grid-md-selection-aggregates-padding-x,
|
|
123
|
+
selection-aggregates-padding-y: $kendo-grid-md-selection-aggregates-padding-y
|
|
116
124
|
),
|
|
117
125
|
) !default;
|
|
118
126
|
|
|
@@ -191,6 +199,28 @@ $kendo-grid-selected-text: $kendo-table-selected-text !default;
|
|
|
191
199
|
/// @group grid
|
|
192
200
|
$kendo-grid-selected-border: $kendo-table-selected-border !default;
|
|
193
201
|
|
|
202
|
+
/// Background color of the selection aggregates container
|
|
203
|
+
/// @group grid
|
|
204
|
+
$kendo-grid-selection-aggregates-bg: $kendo-grid-header-bg !default;
|
|
205
|
+
/// Text color of the selection aggregates container
|
|
206
|
+
/// @group grid
|
|
207
|
+
$kendo-grid-selection-aggregates-text: $kendo-grid-text !default;
|
|
208
|
+
/// Border color of the selection aggregates container
|
|
209
|
+
/// @group grid
|
|
210
|
+
$kendo-grid-selection-aggregates-border: $kendo-grid-border !default;
|
|
211
|
+
/// Border width of the selection aggregates container
|
|
212
|
+
/// @group grid
|
|
213
|
+
$kendo-grid-selection-aggregates-border-width: $kendo-grid-border-width !default;
|
|
214
|
+
/// Spacing between the selection aggregates items
|
|
215
|
+
/// @group grid
|
|
216
|
+
$kendo-grid-selection-aggregates-spacing: k-map-get( $kendo-spacing, 2 ) !default;
|
|
217
|
+
/// Line height of the selection aggregates container
|
|
218
|
+
/// @group grid
|
|
219
|
+
$kendo-grid-selection-aggregates-line-height: 20px !default;
|
|
220
|
+
/// Font weight of the selection aggregates container
|
|
221
|
+
/// @group grid
|
|
222
|
+
$kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
|
|
223
|
+
|
|
194
224
|
$kendo-grid-grouping-row-bg: transparent !default;
|
|
195
225
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
196
226
|
|
|
@@ -260,6 +290,11 @@ $kendo-grid-column-menu-group-header-bg: null !default;
|
|
|
260
290
|
$kendo-grid-column-menu-group-header-text: $kendo-popup-text !default;
|
|
261
291
|
$kendo-grid-column-menu-group-header-border: $kendo-popup-border !default;
|
|
262
292
|
|
|
293
|
+
$kendo-grid-column-menu-tabbed-tabstrip-content-padding-x: 0 !default;
|
|
294
|
+
$kendo-grid-column-menu-tabbed-tabstrip-content-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
295
|
+
|
|
296
|
+
$kendo-grid-column-menu-tabbed-bg: $kendo-base-bg !default;
|
|
297
|
+
|
|
263
298
|
$kendo-grid-drag-cell-width: ($kendo-icon-size * 3) !default;
|
|
264
299
|
|
|
265
300
|
$kendo-grid-row-inner-height: calc( #{$kendo-line-height-em} + #{$kendo-grid-cell-padding-y * 2} ) !default;
|
|
@@ -272,7 +307,10 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
272
307
|
|
|
273
308
|
/// Background color of the grid row resize indicator
|
|
274
309
|
/// @group grid
|
|
275
|
-
$kendo-grid-row-resizer-bg: rgba( k-contrast-color( $kendo-grid-bg ), .24 ) !default;
|
|
310
|
+
$kendo-grid-row-resizer-hover-bg: rgba( k-contrast-color( $kendo-grid-bg ), .24 ) !default;
|
|
276
311
|
/// Active background color of the grid row resize indicator
|
|
277
312
|
/// @group grid
|
|
278
313
|
$kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
|
|
314
|
+
/// Height of the grid row resize indicator
|
|
315
|
+
/// @group grid
|
|
316
|
+
$kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|