@progress/kendo-theme-meridian 14.4.1-dev.2 → 14.4.1-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/meridian-main-dark.css +1 -1
- package/dist/meridian-main.css +1 -1
- package/dist/meta/sassdoc-data.json +590 -536
- package/dist/meta/sassdoc-raw-data.json +289 -264
- package/dist/meta/variables.json +6 -2
- package/lib/swatches/meridian-main-dark.json +1 -1
- package/lib/swatches/meridian-main.json +1 -1
- package/package.json +3 -3
- package/scss/card/_theme.scss +0 -8
- package/scss/grid/_layout.scss +1 -2
- package/scss/grid/_variables.scss +4 -0
- package/scss/scheduler/_variables.scss +2 -2
package/dist/meta/variables.json
CHANGED
|
@@ -12340,6 +12340,10 @@
|
|
|
12340
12340
|
"type": "String",
|
|
12341
12341
|
"value": "var(--kendo-color-on-app-surface)"
|
|
12342
12342
|
},
|
|
12343
|
+
"kendo-grid-grouping-row-font-weight": {
|
|
12344
|
+
"type": "String",
|
|
12345
|
+
"value": "var(--kendo-font-weight-medium, 500)"
|
|
12346
|
+
},
|
|
12343
12347
|
"kendo-grid-grouping-indent-size": {
|
|
12344
12348
|
"type": "String",
|
|
12345
12349
|
"value": "var(--kendo-spacing-6)"
|
|
@@ -14634,11 +14638,11 @@
|
|
|
14634
14638
|
},
|
|
14635
14639
|
"kendo-scheduler-event-selected-bg": {
|
|
14636
14640
|
"type": "String",
|
|
14637
|
-
"value": "var(--kendo-color-
|
|
14641
|
+
"value": "var(--kendo-color-secondary-subtle)"
|
|
14638
14642
|
},
|
|
14639
14643
|
"kendo-scheduler-event-selected-text": {
|
|
14640
14644
|
"type": "String",
|
|
14641
|
-
"value": "var(--kendo-color-on-
|
|
14645
|
+
"value": "var(--kendo-color-secondary-on-subtle)"
|
|
14642
14646
|
},
|
|
14643
14647
|
"kendo-scheduler-event-selected-border": {
|
|
14644
14648
|
"type": "Null",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-meridian",
|
|
3
3
|
"description": "Meridian theme for Kendo UI",
|
|
4
|
-
"version": "14.4.1-dev.
|
|
4
|
+
"version": "14.4.1-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@progress/kendo-svg-icons": "^4.11.0",
|
|
55
|
-
"@progress/kendo-theme-core": "14.4.1-dev.
|
|
56
|
-
"@progress/kendo-theme-utils": "14.4.1-dev.
|
|
55
|
+
"@progress/kendo-theme-core": "14.4.1-dev.3",
|
|
56
|
+
"@progress/kendo-theme-utils": "14.4.1-dev.3"
|
|
57
57
|
},
|
|
58
58
|
"directories": {
|
|
59
59
|
"doc": "docs",
|
package/scss/card/_theme.scss
CHANGED
|
@@ -7,15 +7,11 @@
|
|
|
7
7
|
@include kendo-card--theme-base();
|
|
8
8
|
|
|
9
9
|
.k-card {
|
|
10
|
-
isolation: isolate;
|
|
11
|
-
background-color: transparent;
|
|
12
|
-
|
|
13
10
|
&::before {
|
|
14
11
|
content: "";
|
|
15
12
|
position: absolute;
|
|
16
13
|
inset: 0;
|
|
17
14
|
z-index: -1;
|
|
18
|
-
background-color: $kendo-card-bg;
|
|
19
15
|
backdrop-filter: k-translucency-blur(2);
|
|
20
16
|
border-radius: inherit;
|
|
21
17
|
pointer-events: none;
|
|
@@ -30,9 +26,5 @@
|
|
|
30
26
|
$outline-offset: $kendo-card-focus-outline-offset
|
|
31
27
|
);
|
|
32
28
|
}
|
|
33
|
-
|
|
34
|
-
.k-card-callout {
|
|
35
|
-
background-color: $kendo-card-bg;
|
|
36
|
-
}
|
|
37
29
|
}
|
|
38
30
|
}
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -312,6 +312,9 @@ $kendo-grid-grouping-header-border: $kendo-grid-header-border !default;
|
|
|
312
312
|
/// The text color of the Grid row.
|
|
313
313
|
/// @group grid
|
|
314
314
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
315
|
+
/// The font weight of the Grid grouping row text.
|
|
316
|
+
/// @group grid
|
|
317
|
+
$kendo-grid-grouping-row-font-weight: var( --kendo-font-weight-medium, 500 ) !default;
|
|
315
318
|
|
|
316
319
|
/// The sorted icon spacing of the Grid.
|
|
317
320
|
/// @group grid
|
|
@@ -637,6 +640,7 @@ $kendo-grid-pinned-source-font-weight: var( --kendo-font-weight-bold, 700 ) !def
|
|
|
637
640
|
$kendo-grid-selection-aggregates-font-weight: $kendo-grid-selection-aggregates-font-weight,
|
|
638
641
|
$kendo-grid-grouping-row-bg: $kendo-grid-grouping-row-bg,
|
|
639
642
|
$kendo-grid-grouping-row-text: $kendo-grid-grouping-row-text,
|
|
643
|
+
$kendo-grid-grouping-row-font-weight: $kendo-grid-grouping-row-font-weight,
|
|
640
644
|
$kendo-grid-sorted-icon-spacing: $kendo-grid-sorted-icon-spacing,
|
|
641
645
|
$kendo-grid-sorted-bg: $kendo-grid-sorted-bg,
|
|
642
646
|
$kendo-grid-sorting-indicator-text: $kendo-grid-sorting-indicator-text,
|
|
@@ -151,10 +151,10 @@ $kendo-scheduler-event-hover-shadow: null !default;
|
|
|
151
151
|
|
|
152
152
|
/// The background color of the selected Scheduler event.
|
|
153
153
|
/// @group scheduler
|
|
154
|
-
$kendo-scheduler-event-selected-bg: k-color(
|
|
154
|
+
$kendo-scheduler-event-selected-bg: k-color(secondary-subtle) !default;
|
|
155
155
|
/// The text color of the selected Scheduler event.
|
|
156
156
|
/// @group scheduler
|
|
157
|
-
$kendo-scheduler-event-selected-text: k-color(on-
|
|
157
|
+
$kendo-scheduler-event-selected-text: k-color(secondary-on-subtle) !default;
|
|
158
158
|
/// The border color of the selected Scheduler event.
|
|
159
159
|
/// @group scheduler
|
|
160
160
|
$kendo-scheduler-event-selected-border: null !default;
|