@progress/kendo-theme-default 11.0.3-dev.2 → 11.1.0-dev.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 +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 +624 -84
- package/dist/meta/sassdoc-raw-data.json +289 -39
- package/dist/meta/variables.json +48 -20
- 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 +26 -13
- package/scss/table/_variables.scss +22 -0
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": "11.0
|
|
4
|
+
"version": "11.1.0-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@progress/kendo-svg-icons": "^4.1.0",
|
|
55
|
-
"@progress/kendo-theme-core": "11.0
|
|
56
|
-
"@progress/kendo-theme-utils": "11.0
|
|
55
|
+
"@progress/kendo-theme-core": "11.1.0-dev.0",
|
|
56
|
+
"@progress/kendo-theme-utils": "11.1.0-dev.0"
|
|
57
57
|
},
|
|
58
58
|
"directories": {
|
|
59
59
|
"doc": "docs",
|
|
60
60
|
"lib": "lib"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "87380b1585659324bdbd1bdc8231e01a85daddf7"
|
|
63
63
|
}
|
|
@@ -208,6 +208,23 @@ $kendo-grid-selected-text: $kendo-table-selected-text !default;
|
|
|
208
208
|
/// @group grid
|
|
209
209
|
$kendo-grid-selected-border: $kendo-table-selected-border !default;
|
|
210
210
|
|
|
211
|
+
/// The background color of highlighted Grid rows.
|
|
212
|
+
/// @group grid
|
|
213
|
+
$kendo-grid-highlighted-bg: $kendo-table-highlighted-bg !default;
|
|
214
|
+
/// The text color of highlighted Grid rows.
|
|
215
|
+
/// @group grid
|
|
216
|
+
$kendo-grid-highlighted-text: $kendo-table-highlighted-text !default;
|
|
217
|
+
/// The border color of highlighted Grid rows.
|
|
218
|
+
/// @group grid
|
|
219
|
+
$kendo-grid-highlighted-border: $kendo-table-highlighted-border !default;
|
|
220
|
+
/// The font weight of highlighted Grid rows.
|
|
221
|
+
/// @group grid
|
|
222
|
+
$kendo-grid-highlighted-font-weight: $kendo-table-highlighted-font-weight !default;
|
|
223
|
+
|
|
224
|
+
/// The background color of selected highlighted Grid rows.
|
|
225
|
+
/// @group grid
|
|
226
|
+
$kendo-grid-selected-highlighted-bg: $kendo-table-selected-highlighted-bg !default;
|
|
227
|
+
|
|
211
228
|
/// The background color of the Grid selection aggregates container.
|
|
212
229
|
/// @group grid
|
|
213
230
|
$kendo-grid-selection-aggregates-bg: $kendo-grid-header-bg !default;
|
|
@@ -248,14 +265,14 @@ $kendo-grid-command-cell-button-spacing: k-spacing(2) !default;
|
|
|
248
265
|
// be cautious when changing the next line; see https://github.com/MoOx/reduce-css-calc/issues/38
|
|
249
266
|
$kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$kendo-button-calc-size} - #{$kendo-line-height-em}) / 2 ) !default;
|
|
250
267
|
|
|
251
|
-
// Must be
|
|
268
|
+
// Must be solid colors
|
|
252
269
|
$kendo-grid-sticky-bg: k-color(surface-alt) !default;
|
|
270
|
+
$kendo-grid-sticky-hover-bg: k-color(base-hover) !default;
|
|
271
|
+
$kendo-grid-sticky-alt-bg: k-color(base) !default;
|
|
272
|
+
|
|
253
273
|
$kendo-grid-sticky-text: $kendo-grid-text !default;
|
|
254
274
|
$kendo-grid-sticky-border: rgba( black, .3 ) !default;
|
|
255
275
|
|
|
256
|
-
// Must be a solid color
|
|
257
|
-
$kendo-grid-sticky-alt-bg: k-color(base) !default;
|
|
258
|
-
|
|
259
276
|
$kendo-grid-sticky-header-bg: $kendo-grid-header-bg !default;
|
|
260
277
|
$kendo-grid-sticky-header-text: $kendo-grid-header-text !default;
|
|
261
278
|
$kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
@@ -263,12 +280,6 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
263
280
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
264
281
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
|
|
265
282
|
|
|
266
|
-
$kendo-grid-sticky-selected-bg: color-mix(in srgb, k-color(primary) 25%, transparent) !default;
|
|
267
|
-
$kendo-grid-sticky-selected-alt-bg: color-mix(in srgb, k-color(primary) 24%, transparent) !default;
|
|
268
|
-
|
|
269
|
-
// Must be a solid color
|
|
270
|
-
$kendo-grid-sticky-hover-bg: k-color(base-hover) !default;
|
|
271
|
-
$kendo-grid-sticky-selected-hover-bg: color-mix(in srgb, k-color(primary) 24%, transparent) !default;
|
|
272
283
|
|
|
273
284
|
$kendo-grid-column-menu-width: 230px !default;
|
|
274
285
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
@@ -406,6 +417,11 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
406
417
|
$kendo-grid-selected-bg: $kendo-grid-selected-bg,
|
|
407
418
|
$kendo-grid-selected-text: $kendo-grid-selected-text,
|
|
408
419
|
$kendo-grid-selected-border: $kendo-grid-selected-border,
|
|
420
|
+
$kendo-grid-highlighted-bg: $kendo-grid-highlighted-bg,
|
|
421
|
+
$kendo-grid-highlighted-text: $kendo-grid-highlighted-text,
|
|
422
|
+
$kendo-grid-highlighted-border: $kendo-grid-highlighted-border,
|
|
423
|
+
$kendo-grid-highlighted-font-weight: $kendo-grid-highlighted-font-weight,
|
|
424
|
+
$kendo-grid-selected-highlighted-bg: $kendo-grid-selected-highlighted-bg,
|
|
409
425
|
$kendo-grid-selection-aggregates-bg: $kendo-grid-selection-aggregates-bg,
|
|
410
426
|
$kendo-grid-selection-aggregates-text: $kendo-grid-selection-aggregates-text,
|
|
411
427
|
$kendo-grid-selection-aggregates-border: $kendo-grid-selection-aggregates-border,
|
|
@@ -434,10 +450,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
434
450
|
$kendo-grid-sticky-header-border: $kendo-grid-sticky-header-border,
|
|
435
451
|
$kendo-grid-sticky-footer-bg: $kendo-grid-sticky-footer-bg,
|
|
436
452
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-hover-bg,
|
|
437
|
-
$kendo-grid-sticky-selected-bg: $kendo-grid-sticky-selected-bg,
|
|
438
|
-
$kendo-grid-sticky-selected-alt-bg: $kendo-grid-sticky-selected-alt-bg,
|
|
439
453
|
$kendo-grid-sticky-hover-bg: $kendo-grid-sticky-hover-bg,
|
|
440
|
-
$kendo-grid-sticky-selected-hover-bg: $kendo-grid-sticky-selected-hover-bg,
|
|
441
454
|
$kendo-grid-column-menu-width: $kendo-grid-column-menu-width,
|
|
442
455
|
$kendo-grid-column-menu-max-width: $kendo-grid-column-menu-max-width,
|
|
443
456
|
$kendo-grid-filter-menu-check-all-border-bottom-width: $kendo-grid-filter-menu-check-all-border-bottom-width,
|
|
@@ -155,6 +155,23 @@ $kendo-table-selected-text: null !default;
|
|
|
155
155
|
/// @group table
|
|
156
156
|
$kendo-table-selected-border: null !default;
|
|
157
157
|
|
|
158
|
+
/// Background color of highlighted rows in table.
|
|
159
|
+
/// @group table
|
|
160
|
+
$kendo-table-highlighted-bg: color-mix(in srgb, k-color(warning) 25%, transparent) !default;
|
|
161
|
+
/// Text color of highlighted rows in table.
|
|
162
|
+
/// @group table
|
|
163
|
+
$kendo-table-highlighted-text: null !default;
|
|
164
|
+
/// The font weight of highlighted rows in table.
|
|
165
|
+
/// @group table
|
|
166
|
+
$kendo-table-highlighted-font-weight: var( --kendo-font-weight-bold, bold ) !default;
|
|
167
|
+
/// Border color of highlighted rows in table.
|
|
168
|
+
/// @group table
|
|
169
|
+
$kendo-table-highlighted-border: null !default;
|
|
170
|
+
|
|
171
|
+
/// Background color of selected highlighted rows in table.
|
|
172
|
+
/// @group table
|
|
173
|
+
$kendo-table-selected-highlighted-bg: color-mix(in srgb, color-mix(in srgb, k-color(primary), k-color(warning)) 42%, transparent) !default;
|
|
174
|
+
|
|
158
175
|
/// The box shadow of the row spanned cells.
|
|
159
176
|
/// @group table
|
|
160
177
|
$kendo-table-cell-row-span-shadow: inset 0 0 0 1px $kendo-table-border !default;
|
|
@@ -200,5 +217,10 @@ $kendo-table-cell-row-span-shadow: inset 0 0 0 1px $kendo-table-border !default;
|
|
|
200
217
|
$kendo-table-selected-bg: $kendo-table-selected-bg,
|
|
201
218
|
$kendo-table-selected-text: $kendo-table-selected-text,
|
|
202
219
|
$kendo-table-selected-border: $kendo-table-selected-border,
|
|
220
|
+
$kendo-table-highlighted-bg: $kendo-table-highlighted-bg,
|
|
221
|
+
$kendo-table-highlighted-text: $kendo-table-highlighted-text,
|
|
222
|
+
$kendo-table-highlighted-font-weight: $kendo-table-highlighted-font-weight,
|
|
223
|
+
$kendo-table-highlighted-border: $kendo-table-highlighted-border,
|
|
224
|
+
$kendo-table-selected-highlighted-bg: $kendo-table-selected-highlighted-bg,
|
|
203
225
|
$kendo-table-cell-row-span-shadow: $kendo-table-cell-row-span-shadow
|
|
204
226
|
);
|