@progress/kendo-theme-meridian 14.4.1-dev.1 → 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 +1062 -630
- package/dist/meta/sassdoc-raw-data.json +507 -307
- package/dist/meta/variables.json +34 -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/agent-response/_theme.scss +14 -0
- package/scss/agent-response/_variables.scss +26 -0
- 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",
|
|
@@ -15236,6 +15240,18 @@
|
|
|
15236
15240
|
"type": "String",
|
|
15237
15241
|
"value": "var(--kendo-spacing-2)"
|
|
15238
15242
|
},
|
|
15243
|
+
"kendo-agent-step-padding-x": {
|
|
15244
|
+
"type": "String",
|
|
15245
|
+
"value": "var(--kendo-spacing-0\\.5)"
|
|
15246
|
+
},
|
|
15247
|
+
"kendo-agent-step-padding-end": {
|
|
15248
|
+
"type": "String",
|
|
15249
|
+
"value": "var(--kendo-spacing-2)"
|
|
15250
|
+
},
|
|
15251
|
+
"kendo-agent-step-border-radius": {
|
|
15252
|
+
"type": "String",
|
|
15253
|
+
"value": "var(--kendo-border-radius-md)"
|
|
15254
|
+
},
|
|
15239
15255
|
"kendo-agent-step-icon-margin-top": {
|
|
15240
15256
|
"type": "String",
|
|
15241
15257
|
"value": "var(--kendo-spacing-1)"
|
|
@@ -15256,6 +15272,18 @@
|
|
|
15256
15272
|
"type": "String",
|
|
15257
15273
|
"value": "var(--kendo-font-size-sm, inherit)"
|
|
15258
15274
|
},
|
|
15275
|
+
"kendo-agent-step-focus-shadow": {
|
|
15276
|
+
"type": "Null",
|
|
15277
|
+
"value": "null"
|
|
15278
|
+
},
|
|
15279
|
+
"kendo-agent-step-focus-outline-color": {
|
|
15280
|
+
"type": "String",
|
|
15281
|
+
"value": "var(--kendo-color-subtle)"
|
|
15282
|
+
},
|
|
15283
|
+
"kendo-agent-step-focus-outline-offset": {
|
|
15284
|
+
"type": "Number",
|
|
15285
|
+
"value": "1px"
|
|
15286
|
+
},
|
|
15259
15287
|
"kendo-thought-gap": {
|
|
15260
15288
|
"type": "String",
|
|
15261
15289
|
"value": "var(--kendo-spacing-1\\.5)"
|
|
@@ -15268,6 +15296,10 @@
|
|
|
15268
15296
|
"type": "String",
|
|
15269
15297
|
"value": "var(--kendo-spacing-4)"
|
|
15270
15298
|
},
|
|
15299
|
+
"kendo-thought-padding-x": {
|
|
15300
|
+
"type": "String",
|
|
15301
|
+
"value": "var(--kendo-spacing-0\\.5)"
|
|
15302
|
+
},
|
|
15271
15303
|
"kendo-thought-connector-color": {
|
|
15272
15304
|
"type": "String",
|
|
15273
15305
|
"value": "var(--kendo-color-border)"
|
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",
|
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
@use "@progress/kendo-theme-core/scss/components/agent-response/_theme.scss" as *;
|
|
2
|
+
@use "../core/_index.scss" as *;
|
|
3
|
+
@use "./_variables.scss" as *;
|
|
2
4
|
|
|
3
5
|
@mixin kendo-agent-response--theme() {
|
|
4
6
|
@include kendo-agent-response--theme-base();
|
|
7
|
+
|
|
8
|
+
.k-agent-step > .k-agent-step-head {
|
|
9
|
+
&:focus,
|
|
10
|
+
&.k-focus {
|
|
11
|
+
@include focus-indicator(
|
|
12
|
+
$indicator: $kendo-agent-step-focus-outline-color,
|
|
13
|
+
$inset: true,
|
|
14
|
+
$type: "outline",
|
|
15
|
+
$outline-offset: $kendo-agent-step-focus-outline-offset
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
5
19
|
}
|
|
@@ -8,6 +8,15 @@ $kendo-agent-step-gap: k-spacing(1.5) !default;
|
|
|
8
8
|
/// The vertical padding of the AgentStep head.
|
|
9
9
|
/// @group agent-response
|
|
10
10
|
$kendo-agent-step-padding-y: k-spacing(2) !default;
|
|
11
|
+
/// The horizontal padding of the AgentStep head.
|
|
12
|
+
/// @group agent-response
|
|
13
|
+
$kendo-agent-step-padding-x: k-spacing(0.5) !default;
|
|
14
|
+
/// The end padding of the AgentStep head.
|
|
15
|
+
/// @group agent-response
|
|
16
|
+
$kendo-agent-step-padding-end: k-spacing(2) !default;
|
|
17
|
+
/// The border radius of the AgentStep head.
|
|
18
|
+
/// @group agent-response
|
|
19
|
+
$kendo-agent-step-border-radius: k-border-radius(md) !default;
|
|
11
20
|
/// The top margin of the AgentStep icon.
|
|
12
21
|
/// @group agent-response
|
|
13
22
|
$kendo-agent-step-icon-margin-top: k-spacing(1) !default;
|
|
@@ -23,6 +32,15 @@ $kendo-agent-step-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
|
23
32
|
/// The font size of the AgentStep body content.
|
|
24
33
|
/// @group agent-response
|
|
25
34
|
$kendo-agent-step-body-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
35
|
+
/// The box shadow of the focused AgentStep head.
|
|
36
|
+
/// @group agent-response
|
|
37
|
+
$kendo-agent-step-focus-shadow: null !default;
|
|
38
|
+
/// The outline color of the focused AgentStep head.
|
|
39
|
+
/// @group agent-response
|
|
40
|
+
$kendo-agent-step-focus-outline-color: k-color(subtle) !default;
|
|
41
|
+
/// The outline offset of the focused AgentStep head.
|
|
42
|
+
/// @group agent-response
|
|
43
|
+
$kendo-agent-step-focus-outline-offset: 1px !default;
|
|
26
44
|
|
|
27
45
|
/// The gap between the icon column and the content of the Thought.
|
|
28
46
|
/// @group agent-response
|
|
@@ -33,6 +51,9 @@ $kendo-thought-icon-col-gap: k-spacing(2) !default;
|
|
|
33
51
|
/// The spacing between stacked Thought items.
|
|
34
52
|
/// @group agent-response
|
|
35
53
|
$kendo-thought-spacing: k-spacing(4) !default;
|
|
54
|
+
/// The start padding of the Thought, aligning it with the AgentStep head.
|
|
55
|
+
/// @group agent-response
|
|
56
|
+
$kendo-thought-padding-x: k-spacing(0.5) !default;
|
|
36
57
|
/// The color of the connector line between stacked Thought items.
|
|
37
58
|
/// @group agent-response
|
|
38
59
|
$kendo-thought-connector-color: k-color(border) !default;
|
|
@@ -50,14 +71,19 @@ $kendo-tool-call-pre-border-radius: k-border-radius(xl) !default;
|
|
|
50
71
|
@forward "@progress/kendo-theme-core/scss/components/agent-response/_variables.scss" with (
|
|
51
72
|
$kendo-agent-step-gap: $kendo-agent-step-gap,
|
|
52
73
|
$kendo-agent-step-padding-y: $kendo-agent-step-padding-y,
|
|
74
|
+
$kendo-agent-step-padding-x: $kendo-agent-step-padding-x,
|
|
75
|
+
$kendo-agent-step-padding-end: $kendo-agent-step-padding-end,
|
|
76
|
+
$kendo-agent-step-border-radius: $kendo-agent-step-border-radius,
|
|
53
77
|
$kendo-agent-step-icon-margin-top: $kendo-agent-step-icon-margin-top,
|
|
54
78
|
$kendo-agent-step-added-color: $kendo-agent-step-added-color,
|
|
55
79
|
$kendo-agent-step-removed-color: $kendo-agent-step-removed-color,
|
|
56
80
|
$kendo-agent-step-font-size: $kendo-agent-step-font-size,
|
|
57
81
|
$kendo-agent-step-body-font-size: $kendo-agent-step-body-font-size,
|
|
82
|
+
$kendo-agent-step-focus-shadow: $kendo-agent-step-focus-shadow,
|
|
58
83
|
$kendo-thought-gap: $kendo-thought-gap,
|
|
59
84
|
$kendo-thought-icon-col-gap: $kendo-thought-icon-col-gap,
|
|
60
85
|
$kendo-thought-spacing: $kendo-thought-spacing,
|
|
86
|
+
$kendo-thought-padding-x: $kendo-thought-padding-x,
|
|
61
87
|
$kendo-thought-connector-color: $kendo-thought-connector-color,
|
|
62
88
|
$kendo-tool-call-indent: $kendo-tool-call-indent,
|
|
63
89
|
$kendo-tool-call-padding-y: $kendo-tool-call-padding-y,
|
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;
|