@progress/kendo-theme-meridian 14.4.0-dev.2 → 14.4.0-dev.4

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.
Files changed (37) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/meridian-main-dark.css +1 -1
  3. package/dist/meridian-main.css +1 -1
  4. package/dist/meta/sassdoc-data.json +5246 -3824
  5. package/dist/meta/sassdoc-raw-data.json +2548 -1898
  6. package/dist/meta/variables.json +193 -26
  7. package/lib/swatches/meridian-main-dark.json +1 -1
  8. package/lib/swatches/meridian-main.json +1 -1
  9. package/package.json +4 -4
  10. package/scss/agent-response/_index.scss +16 -0
  11. package/scss/agent-response/_layout.scss +5 -0
  12. package/scss/agent-response/_theme.scss +5 -0
  13. package/scss/agent-response/_variables.scss +61 -0
  14. package/scss/appbar/_theme.scss +2 -0
  15. package/scss/checkpoint/_index.scss +16 -0
  16. package/scss/checkpoint/_layout.scss +6 -0
  17. package/scss/checkpoint/_theme.scss +6 -0
  18. package/scss/checkpoint/_variables.scss +33 -0
  19. package/scss/citation/_index.scss +16 -0
  20. package/scss/citation/_layout.scss +6 -0
  21. package/scss/citation/_theme.scss +6 -0
  22. package/scss/citation/_variables.scss +15 -0
  23. package/scss/fab/_layout.scss +2 -2
  24. package/scss/filemanager/_variables.scss +5 -0
  25. package/scss/grid/_variables.scss +5 -0
  26. package/scss/icons/_variables.scss +5 -29
  27. package/scss/index.scss +9 -0
  28. package/scss/menu/_variables.scss +5 -0
  29. package/scss/panelbar/_variables.scss +5 -0
  30. package/scss/popover/_layout.scss +0 -5
  31. package/scss/popover/_variables.scss +1 -1
  32. package/scss/scheduler/_variables.scss +5 -0
  33. package/scss/stepper/_variables.scss +5 -0
  34. package/scss/tabstrip/_variables.scss +5 -0
  35. package/scss/toolbar/_variables.scss +5 -0
  36. package/scss/tooltip/_variables.scss +5 -0
  37. package/scss/treeview/_variables.scss +5 -0
@@ -8,27 +8,6 @@ $kendo-icon-default-size: "md" !default;
8
8
  /// The default size icon size.
9
9
  /// @group icon
10
10
  $kendo-icon-size: 16px !default;
11
- /// The extra small icon size.
12
- /// @group icon
13
- $kendo-icon-size-xs: calc( #{$kendo-icon-size} * .75 ) !default;
14
- /// The small icon size.
15
- /// @group icon
16
- $kendo-icon-size-sm: calc( #{$kendo-icon-size} * .875 ) !default;
17
- /// The medium icon size.
18
- /// @group icon
19
- $kendo-icon-size-md: $kendo-icon-size !default;
20
- /// The large icon size.
21
- /// @group icon
22
- $kendo-icon-size-lg: calc( #{$kendo-icon-size} * 1.25 ) !default;
23
- /// The extra large icon size.
24
- /// @group icon
25
- $kendo-icon-size-xl: calc( #{$kendo-icon-size} * 1.5 ) !default;
26
- /// The double extra large icon size.
27
- /// @group icon
28
- $kendo-icon-size-xxl: calc( #{$kendo-icon-size} * 2 ) !default;
29
- /// The triple extra large icon size.
30
- /// @group icon
31
- $kendo-icon-size-xxxl: calc( #{$kendo-icon-size} * 3 ) !default;
32
11
  /// The default icon spacing.
33
12
  /// @group icon
34
13
  $kendo-icon-spacing: k-spacing(1) !default;
@@ -38,18 +17,15 @@ $kendo-icon-padding: k-spacing(1) !default;
38
17
  /// The color of accent icons.
39
18
  /// @group icon
40
19
  $kendo-accent-icon-color: #8B7CF6 !default;
20
+ /// The color of action icons.
21
+ /// @group icon
22
+ $kendo-action-icon-color: k-color( primary-on-surface ) !default;
41
23
 
42
24
  @forward "@progress/kendo-theme-core/scss/components/icons/_variables.scss" with (
43
25
  $kendo-icon-default-size: $kendo-icon-default-size,
44
26
  $kendo-icon-size: $kendo-icon-size,
45
- $kendo-icon-size-xs: $kendo-icon-size-xs,
46
- $kendo-icon-size-sm: $kendo-icon-size-sm,
47
- $kendo-icon-size-md: $kendo-icon-size-md,
48
- $kendo-icon-size-lg: $kendo-icon-size-lg,
49
- $kendo-icon-size-xl: $kendo-icon-size-xl,
50
- $kendo-icon-size-xxl: $kendo-icon-size-xxl,
51
- $kendo-icon-size-xxxl: $kendo-icon-size-xxxl,
52
27
  $kendo-icon-spacing: $kendo-icon-spacing,
53
28
  $kendo-icon-padding: $kendo-icon-padding,
54
- $kendo-accent-icon-color: $kendo-accent-icon-color
29
+ $kendo-accent-icon-color: $kendo-accent-icon-color,
30
+ $kendo-action-icon-color: $kendo-action-icon-color
55
31
  );
package/scss/index.scss CHANGED
@@ -109,6 +109,9 @@
109
109
  @forward "./file-box/_index.scss";
110
110
  @forward "./prompt-box/_index.scss";
111
111
  @forward "./chat/_index.scss";
112
+ @forward "./agent-response/_index.scss";
113
+ @forward "./citation/_index.scss";
114
+ @forward "./checkpoint/_index.scss";
112
115
  @forward "./mediaplayer/_index.scss";
113
116
  @forward "./timeline/_index.scss";
114
117
  @forward "./pdf-viewer/_index.scss";
@@ -284,6 +287,9 @@
284
287
  // Misc
285
288
  @use "./file-box/_index.scss" as *;
286
289
  @use "./chat/_index.scss" as *;
290
+ @use "./agent-response/_index.scss" as *;
291
+ @use "./citation/_index.scss" as *;
292
+ @use "./checkpoint/_index.scss" as *;
287
293
  @use "./mediaplayer/_index.scss" as *;
288
294
  @use "./timeline/_index.scss" as *;
289
295
  @use "./pdf-viewer/_index.scss" as *;
@@ -465,6 +471,9 @@
465
471
  // Misc
466
472
  @include kendo-file-box--styles();
467
473
  @include kendo-chat--styles();
474
+ @include kendo-agent-response--styles();
475
+ @include kendo-citation--styles();
476
+ @include kendo-checkpoint--styles();
468
477
  @include kendo-media-player--styles();
469
478
  @include kendo-timeline--styles();
470
479
  @include kendo-pdf-viewer--styles();
@@ -154,6 +154,10 @@ $kendo-menu-icon-padding-x: null !default;
154
154
  /// @group menu
155
155
  $kendo-menu-icon-padding-y: null !default;
156
156
 
157
+ /// The spacing used for the menu expand arrow negative offset.
158
+ /// @group menu
159
+ $kendo-menu-expand-arrow-spacing: k-spacing(1) !default;
160
+
157
161
  // Menu Separator
158
162
 
159
163
  /// The inline margin of the horizontal Menu separator.
@@ -356,6 +360,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
356
360
  $kendo-menu-scroll-button-hover-gradient: $kendo-menu-scroll-button-hover-gradient,
357
361
  $kendo-menu-icon-padding-x: $kendo-menu-icon-padding-x,
358
362
  $kendo-menu-icon-padding-y: $kendo-menu-icon-padding-y,
363
+ $kendo-menu-expand-arrow-spacing: $kendo-menu-expand-arrow-spacing,
359
364
  $kendo-menu-separator-margin-inline: $kendo-menu-separator-margin-inline,
360
365
  $kendo-menu-separator-margin-block: $kendo-menu-separator-margin-block,
361
366
  $kendo-menu-separator-border: $kendo-menu-separator-border,
@@ -55,6 +55,10 @@ $kendo-panelbar-item-padding-x: k-spacing(4) !default;
55
55
  /// @group panelbar
56
56
  $kendo-panelbar-item-padding-y: k-spacing(2) !default;
57
57
 
58
+ /// The spacing between icon and text in PanelBar items.
59
+ /// @group panelbar
60
+ $kendo-panelbar-item-icon-spacing: k-spacing(1) !default;
61
+
58
62
  /// The maximum nesting of the PanelBar items.
59
63
  /// @group panelbar
60
64
  $kendo-panelbar-item-level-count: 4 !default;
@@ -315,6 +319,7 @@ $kendo-panelbar-header-expanded-gradient: null !default;
315
319
  $kendo-panelbar-header-padding-y: $kendo-panelbar-header-padding-y,
316
320
  $kendo-panelbar-item-padding-x: $kendo-panelbar-item-padding-x,
317
321
  $kendo-panelbar-item-padding-y: $kendo-panelbar-item-padding-y,
322
+ $kendo-panelbar-item-icon-spacing: $kendo-panelbar-item-icon-spacing,
318
323
  $kendo-panelbar-item-level-count: $kendo-panelbar-item-level-count,
319
324
  $kendo-panelbar-bg: $kendo-panelbar-bg,
320
325
  $kendo-panelbar-text: $kendo-panelbar-text,
@@ -12,11 +12,6 @@
12
12
  padding-block: $kendo-popover-actions-padding-y;
13
13
  }
14
14
 
15
- .k-popover-body {
16
- margin-block: k-spacing(2);
17
- margin-inline: k-spacing(4);
18
- }
19
-
20
15
  .k-popover-callout {
21
16
  backdrop-filter: blur(calc(6px + calc(2 * 2px)));
22
17
 
@@ -63,7 +63,7 @@ $kendo-popover-header-border: $kendo-card-header-border !default;
63
63
  $kendo-popover-body-padding-x: $kendo-card-body-padding-x !default;
64
64
  /// The vertical padding of the Popover body.
65
65
  /// @group popover
66
- $kendo-popover-body-padding-y: k-spacing(2) !default;
66
+ $kendo-popover-body-padding-y: k-spacing(2) k-spacing(4) !default;
67
67
 
68
68
  /// The border width of the Popover actions.
69
69
  /// @group popover
@@ -265,6 +265,10 @@ $kendo-scheduler-marquee-label-inset-x: k-spacing(1) !default;
265
265
  /// @group scheduler
266
266
  $kendo-scheduler-marquee-label-inset-y: k-spacing(0.5) !default;
267
267
 
268
+ /// The spacing between icon and text in Scheduler navigation items.
269
+ /// @group scheduler
270
+ $kendo-scheduler-nav-item-icon-spacing: k-spacing(1) !default;
271
+
268
272
  /// The background color of the Scheduler header.
269
273
  /// @group scheduler
270
274
  $kendo-scheduler-header-bg: k-translucency-bg(k-color(surface)) !default;
@@ -366,6 +370,7 @@ $kendo-scheduler-adaptive-subtle-text: k-color(on-app-surface) !default;
366
370
  $kendo-scheduler-indicators-margin: $kendo-scheduler-indicators-margin,
367
371
  $kendo-scheduler-marquee-label-inset-x: $kendo-scheduler-marquee-label-inset-x,
368
372
  $kendo-scheduler-marquee-label-inset-y: $kendo-scheduler-marquee-label-inset-y,
373
+ $kendo-scheduler-nav-item-icon-spacing: $kendo-scheduler-nav-item-icon-spacing,
369
374
  $kendo-scheduler-header-bg: $kendo-scheduler-header-bg,
370
375
  $kendo-scheduler-adaptive-bg: $kendo-scheduler-adaptive-bg,
371
376
  $kendo-scheduler-adaptive-text: $kendo-scheduler-adaptive-text,
@@ -28,6 +28,10 @@ $kendo-stepper-label-padding-y: calc( #{k-spacing(2.5)} / 2 ) !default;
28
28
  /// The border radius of the Stepper label.
29
29
  /// @group stepper
30
30
  $kendo-stepper-label-border-radius: k-border-radius(xxxl) !default;
31
+
32
+ /// The spacing between icon and text in Stepper labels.
33
+ /// @group stepper
34
+ $kendo-stepper-label-icon-spacing: k-spacing(1) !default;
31
35
  /// The width of the border around the Stepper.
32
36
  /// @group stepper
33
37
  $kendo-stepper-border-width: 0px !default;
@@ -242,6 +246,7 @@ $kendo-stepper-content-transition-timing-function: k-easing(standard) !default;
242
246
  $kendo-stepper-label-padding-x: $kendo-stepper-label-padding-x,
243
247
  $kendo-stepper-label-padding-y: $kendo-stepper-label-padding-y,
244
248
  $kendo-stepper-label-border-radius: $kendo-stepper-label-border-radius,
249
+ $kendo-stepper-label-icon-spacing: $kendo-stepper-label-icon-spacing,
245
250
  $kendo-stepper-border-width: $kendo-stepper-border-width,
246
251
  $kendo-stepper-inline-content-padding-x: $kendo-stepper-inline-content-padding-x,
247
252
  $kendo-stepper-inline-content-padding-y: $kendo-stepper-inline-content-padding-y,
@@ -79,6 +79,10 @@ $kendo-tabstrip-item-border-radius: k-border-radius(xl) !default;
79
79
  /// The gap between the TabStrip items.
80
80
  /// @group tabstrip
81
81
  $kendo-tabstrip-item-gap: k-spacing(0) !default;
82
+
83
+ /// The spacing between icon and text in TabStrip tab items.
84
+ /// @group tabstrip
85
+ $kendo-tabstrip-item-icon-spacing: k-spacing(1) !default;
82
86
  /// The horizontal spacing of the TabStrip items.
83
87
  /// @group tabstrip
84
88
  $kendo-tabstrip-item-spacing-x: k-spacing(1) !default;
@@ -240,6 +244,7 @@ $kendo-tabstrip-item-focus-outline-offset: 3px !default;
240
244
  $kendo-tabstrip-item-border-width: $kendo-tabstrip-item-border-width,
241
245
  $kendo-tabstrip-item-border-radius: $kendo-tabstrip-item-border-radius,
242
246
  $kendo-tabstrip-item-gap: $kendo-tabstrip-item-gap,
247
+ $kendo-tabstrip-item-icon-spacing: $kendo-tabstrip-item-icon-spacing,
243
248
  $kendo-tabstrip-item-spacing-x: $kendo-tabstrip-item-spacing-x,
244
249
  $kendo-tabstrip-sm-item-padding-x: $kendo-tabstrip-sm-item-padding-x,
245
250
  $kendo-tabstrip-sm-item-padding-y: $kendo-tabstrip-sm-item-padding-y,
@@ -43,6 +43,10 @@ $kendo-toolbar-md-spacing: k-spacing(2) !default;
43
43
  /// @group toolbar
44
44
  $kendo-toolbar-lg-spacing: k-spacing(2) !default;
45
45
 
46
+ /// The spacing between icon and text in Toolbar items.
47
+ /// @group toolbar
48
+ $kendo-toolbar-item-icon-spacing: k-spacing(1) !default;
49
+
46
50
  /// The height of the Toolbar button separator.
47
51
  /// @group toolbar
48
52
  $kendo-toolbar-separator-height: $kendo-button-md-calc-size !default;
@@ -165,6 +169,7 @@ $kendo-floating-toolbar-border-radius: k-border-radius(xxl) !default;
165
169
  $kendo-toolbar-sm-spacing: $kendo-toolbar-sm-spacing,
166
170
  $kendo-toolbar-md-spacing: $kendo-toolbar-md-spacing,
167
171
  $kendo-toolbar-lg-spacing: $kendo-toolbar-lg-spacing,
172
+ $kendo-toolbar-item-icon-spacing: $kendo-toolbar-item-icon-spacing,
168
173
  $kendo-toolbar-separator-height: $kendo-toolbar-separator-height,
169
174
  $kendo-toolbar-sm-separator-height: $kendo-toolbar-sm-separator-height,
170
175
  $kendo-toolbar-md-separator-height: $kendo-toolbar-md-separator-height,
@@ -11,6 +11,10 @@ $kendo-tooltip-padding-y: k-spacing(1.5) !default;
11
11
  /// The horizontal padding of the Tooltip.
12
12
  /// @group tooltip
13
13
  $kendo-tooltip-padding-x: k-spacing(2.5) !default;
14
+
15
+ /// The spacing between icon and tooltip text/button.
16
+ /// @group tooltip
17
+ $kendo-tooltip-icon-spacing: k-spacing(1) !default;
14
18
  /// The width of the border around the Tooltip.
15
19
  /// @group tooltip
16
20
  $kendo-tooltip-border-width: 0px !default;
@@ -64,6 +68,7 @@ $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
64
68
  @forward "@progress/kendo-theme-core/scss/components/tooltip/_variables.scss" with (
65
69
  $kendo-tooltip-padding-y: $kendo-tooltip-padding-y,
66
70
  $kendo-tooltip-padding-x: $kendo-tooltip-padding-x,
71
+ $kendo-tooltip-icon-spacing: $kendo-tooltip-icon-spacing,
67
72
  $kendo-tooltip-border-width: $kendo-tooltip-border-width,
68
73
  $kendo-tooltip-border-radius: $kendo-tooltip-border-radius,
69
74
  $kendo-tooltip-font-family: $kendo-tooltip-font-family,
@@ -9,6 +9,10 @@ $kendo-treeview-default-size: "md" !default;
9
9
  /// The gap of the TreeView.
10
10
  /// @group treeview
11
11
  $kendo-treeview-gap: k-spacing(0) !default;
12
+
13
+ /// The spacing between icon and text in TreeView items.
14
+ /// @group treeview
15
+ $kendo-treeview-item-icon-spacing: k-spacing(1) !default;
12
16
  /// The border radius of the TreeView.
13
17
  /// @group treeview
14
18
  $kendo-treeview-border-radius: k-border-radius(sm) !default;
@@ -176,6 +180,7 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
176
180
  @forward "@progress/kendo-theme-core/scss/components/treeview/_variables.scss" with (
177
181
  $kendo-treeview-default-size: $kendo-treeview-default-size,
178
182
  $kendo-treeview-gap: $kendo-treeview-gap,
183
+ $kendo-treeview-item-icon-spacing: $kendo-treeview-item-icon-spacing,
179
184
  $kendo-treeview-border-radius: $kendo-treeview-border-radius,
180
185
  $kendo-treeview-font-family: $kendo-treeview-font-family,
181
186
  $kendo-treeview-font-size: $kendo-treeview-font-size,