@progress/kendo-theme-fluent 14.4.0-dev.2 → 14.4.0-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/fluent-1-dark.css +1 -1
- package/dist/fluent-1.css +1 -1
- package/dist/fluent-main-dark.css +1 -1
- package/dist/fluent-main.css +1 -1
- package/dist/meta/sassdoc-data.json +1206 -0
- package/dist/meta/sassdoc-raw-data.json +550 -0
- package/dist/meta/variables.json +88 -0
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-1-dark.json +1 -1
- package/lib/swatches/fluent-1.json +1 -1
- package/lib/swatches/fluent-main-dark.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +3 -3
- package/scss/agent-response/_index.scss +16 -0
- package/scss/agent-response/_layout.scss +5 -0
- package/scss/agent-response/_theme.scss +5 -0
- package/scss/agent-response/_variables.scss +61 -0
- package/scss/checkpoint/_index.scss +16 -0
- package/scss/checkpoint/_layout.scss +6 -0
- package/scss/checkpoint/_theme.scss +6 -0
- package/scss/checkpoint/_variables.scss +33 -0
- package/scss/citation/_index.scss +16 -0
- package/scss/citation/_layout.scss +6 -0
- package/scss/citation/_theme.scss +6 -0
- package/scss/citation/_variables.scss +15 -0
- package/scss/index.scss +9 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-fluent",
|
|
3
3
|
"description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
|
|
4
|
-
"version": "14.4.0-dev.
|
|
4
|
+
"version": "14.4.0-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "^4.9.0",
|
|
57
|
-
"@progress/kendo-theme-core": "14.4.0-dev.
|
|
58
|
-
"@progress/kendo-theme-utils": "14.4.0-dev.
|
|
57
|
+
"@progress/kendo-theme-core": "14.4.0-dev.3",
|
|
58
|
+
"@progress/kendo-theme-utils": "14.4.0-dev.3"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// Dependencies
|
|
2
|
+
@use "../core/_index.scss" as *;
|
|
3
|
+
|
|
4
|
+
// Component
|
|
5
|
+
@forward "./_variables.scss";
|
|
6
|
+
@use "./_layout.scss" as *;
|
|
7
|
+
@use "./_theme.scss" as *;
|
|
8
|
+
|
|
9
|
+
// Expose
|
|
10
|
+
@mixin kendo-agent-response--styles() {
|
|
11
|
+
@include import-once( "agent-response" ) {
|
|
12
|
+
@include core-styles();
|
|
13
|
+
@include kendo-agent-response--layout();
|
|
14
|
+
@include kendo-agent-response--theme();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
@use "../core/_index.scss" as *;
|
|
2
|
+
|
|
3
|
+
// Agent Response
|
|
4
|
+
|
|
5
|
+
/// The gap between the icon and the content of the AgentStep head and content row.
|
|
6
|
+
/// @group agent-response
|
|
7
|
+
$kendo-agent-step-gap: var( --kendo-agent-step-gap, k-spacing(1.5) ) !default;
|
|
8
|
+
/// The vertical padding of the AgentStep head.
|
|
9
|
+
/// @group agent-response
|
|
10
|
+
$kendo-agent-step-padding-y: var( --kendo-agent-step-padding-y, k-spacing(2) ) !default;
|
|
11
|
+
/// The top margin of the AgentStep icon.
|
|
12
|
+
/// @group agent-response
|
|
13
|
+
$kendo-agent-step-icon-margin-top: var( --kendo-agent-step-icon-margin-top, k-spacing(0.5) ) !default;
|
|
14
|
+
/// The text color of the added lines count in the AgentStep diffstat.
|
|
15
|
+
/// @group agent-response
|
|
16
|
+
$kendo-agent-step-added-color: var( --kendo-agent-step-added-color, k-color(success-on-surface) ) !default;
|
|
17
|
+
/// The text color of the removed lines count in the AgentStep diffstat.
|
|
18
|
+
/// @group agent-response
|
|
19
|
+
$kendo-agent-step-removed-color: var( --kendo-agent-step-removed-color, k-color(error-on-surface) ) !default;
|
|
20
|
+
/// The font size of the AgentStep label, secondary text, and diffstat.
|
|
21
|
+
/// @group agent-response
|
|
22
|
+
$kendo-agent-step-font-size: var( --kendo-agent-step-font-size, var(--kendo-font-size-sm) ) !default;
|
|
23
|
+
/// The font size of the AgentStep body content.
|
|
24
|
+
/// @group agent-response
|
|
25
|
+
$kendo-agent-step-body-font-size: var( --kendo-agent-step-body-font-size, var(--kendo-font-size-sm) ) !default;
|
|
26
|
+
|
|
27
|
+
/// The gap between the icon column and the content of the Thought.
|
|
28
|
+
/// @group agent-response
|
|
29
|
+
$kendo-thought-gap: var( --kendo-thought-gap, k-spacing(1.5) ) !default;
|
|
30
|
+
/// The gap in the icon column of the Thought.
|
|
31
|
+
/// @group agent-response
|
|
32
|
+
$kendo-thought-icon-col-gap: var( --kendo-thought-icon-col-gap, k-spacing(2) ) !default;
|
|
33
|
+
/// The spacing between stacked Thought items.
|
|
34
|
+
/// @group agent-response
|
|
35
|
+
$kendo-thought-spacing: var( --kendo-thought-spacing, k-spacing(4) ) !default;
|
|
36
|
+
/// The color of the connector line between stacked Thought items.
|
|
37
|
+
/// @group agent-response
|
|
38
|
+
$kendo-thought-connector-color: var( --kendo-thought-connector-color, color-mix(in srgb, k-color(border) 26%, transparent) ) !default;
|
|
39
|
+
|
|
40
|
+
/// The start indent of the ToolCall body.
|
|
41
|
+
/// @group agent-response
|
|
42
|
+
$kendo-tool-call-indent: var( --kendo-tool-call-indent, k-spacing(5) ) !default;
|
|
43
|
+
/// The bottom padding of the ToolCall body.
|
|
44
|
+
/// @group agent-response
|
|
45
|
+
$kendo-tool-call-padding-y: var( --kendo-tool-call-padding-y, k-spacing(2) ) !default;
|
|
46
|
+
|
|
47
|
+
@forward "@progress/kendo-theme-core/scss/components/agent-response/_variables.scss" with (
|
|
48
|
+
$kendo-agent-step-gap: $kendo-agent-step-gap,
|
|
49
|
+
$kendo-agent-step-padding-y: $kendo-agent-step-padding-y,
|
|
50
|
+
$kendo-agent-step-icon-margin-top: $kendo-agent-step-icon-margin-top,
|
|
51
|
+
$kendo-agent-step-added-color: $kendo-agent-step-added-color,
|
|
52
|
+
$kendo-agent-step-removed-color: $kendo-agent-step-removed-color,
|
|
53
|
+
$kendo-agent-step-font-size: $kendo-agent-step-font-size,
|
|
54
|
+
$kendo-agent-step-body-font-size: $kendo-agent-step-body-font-size,
|
|
55
|
+
$kendo-thought-gap: $kendo-thought-gap,
|
|
56
|
+
$kendo-thought-icon-col-gap: $kendo-thought-icon-col-gap,
|
|
57
|
+
$kendo-thought-spacing: $kendo-thought-spacing,
|
|
58
|
+
$kendo-thought-connector-color: $kendo-thought-connector-color,
|
|
59
|
+
$kendo-tool-call-indent: $kendo-tool-call-indent,
|
|
60
|
+
$kendo-tool-call-padding-y: $kendo-tool-call-padding-y
|
|
61
|
+
);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// Dependencies
|
|
2
|
+
@use "../core/_index.scss" as *;
|
|
3
|
+
|
|
4
|
+
// Component
|
|
5
|
+
@forward "./_variables.scss";
|
|
6
|
+
@use "./_layout.scss" as *;
|
|
7
|
+
@use "./_theme.scss" as *;
|
|
8
|
+
|
|
9
|
+
// Expose
|
|
10
|
+
@mixin kendo-checkpoint--styles() {
|
|
11
|
+
@include import-once( "checkpoint" ) {
|
|
12
|
+
@include core-styles();
|
|
13
|
+
@include kendo-checkpoint--layout();
|
|
14
|
+
@include kendo-checkpoint--theme();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
@use "../core/_index.scss" as *;
|
|
2
|
+
|
|
3
|
+
/// The color of the Checkpoint separator line.
|
|
4
|
+
/// @group checkpoint
|
|
5
|
+
$kendo-checkpoint-line-color: var( --kendo-checkpoint-line-color, color-mix(in srgb, k-color(border) 26%, transparent) ) !default;
|
|
6
|
+
/// The gap between the Checkpoint line and stamp.
|
|
7
|
+
/// @group checkpoint
|
|
8
|
+
$kendo-checkpoint-gap: var( --kendo-checkpoint-gap, k-spacing(1.5) ) !default;
|
|
9
|
+
/// The width of the Checkpoint separator line.
|
|
10
|
+
/// @group checkpoint
|
|
11
|
+
$kendo-checkpoint-line-width: var( --kendo-checkpoint-line-width, 1px ) !default;
|
|
12
|
+
/// The font size of the Checkpoint stamp text.
|
|
13
|
+
/// @group checkpoint
|
|
14
|
+
$kendo-checkpoint-stamp-font-size: var( --kendo-checkpoint-stamp-font-size, var(--kendo-font-size-sm) ) !default;
|
|
15
|
+
/// The text color of the Checkpoint stamp.
|
|
16
|
+
/// @group checkpoint
|
|
17
|
+
$kendo-checkpoint-stamp-color: var( --kendo-checkpoint-stamp-color, k-color(subtle) ) !default;
|
|
18
|
+
/// The font weight of the Checkpoint stamp text.
|
|
19
|
+
/// @group checkpoint
|
|
20
|
+
$kendo-checkpoint-stamp-font-weight: null !default;
|
|
21
|
+
/// The horizontal padding of the Checkpoint stamp.
|
|
22
|
+
/// @group checkpoint
|
|
23
|
+
$kendo-checkpoint-stamp-padding-x: var( --kendo-checkpoint-stamp-padding-x, k-spacing(1) ) !default;
|
|
24
|
+
|
|
25
|
+
@forward "@progress/kendo-theme-core/scss/components/checkpoint/_variables.scss" with (
|
|
26
|
+
$kendo-checkpoint-line-color: $kendo-checkpoint-line-color,
|
|
27
|
+
$kendo-checkpoint-gap: $kendo-checkpoint-gap,
|
|
28
|
+
$kendo-checkpoint-line-width: $kendo-checkpoint-line-width,
|
|
29
|
+
$kendo-checkpoint-stamp-font-size: $kendo-checkpoint-stamp-font-size,
|
|
30
|
+
$kendo-checkpoint-stamp-color: $kendo-checkpoint-stamp-color,
|
|
31
|
+
$kendo-checkpoint-stamp-font-weight: $kendo-checkpoint-stamp-font-weight,
|
|
32
|
+
$kendo-checkpoint-stamp-padding-x: $kendo-checkpoint-stamp-padding-x
|
|
33
|
+
);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// Dependencies
|
|
2
|
+
@use "../core/_index.scss" as *;
|
|
3
|
+
|
|
4
|
+
// Component
|
|
5
|
+
@forward "./_variables.scss";
|
|
6
|
+
@use "./_layout.scss" as *;
|
|
7
|
+
@use "./_theme.scss" as *;
|
|
8
|
+
|
|
9
|
+
// Expose
|
|
10
|
+
@mixin kendo-citation--styles() {
|
|
11
|
+
@include import-once( "citation" ) {
|
|
12
|
+
@include core-styles();
|
|
13
|
+
@include kendo-citation--layout();
|
|
14
|
+
@include kendo-citation--theme();
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@use "../core/_index.scss" as *;
|
|
2
|
+
|
|
3
|
+
// Citation
|
|
4
|
+
|
|
5
|
+
/// The padding of the CitationPopover view.
|
|
6
|
+
/// @group citation
|
|
7
|
+
$kendo-citation-popover-view-padding: var( --kendo-citation-popover-view-padding, k-spacing(4) ) !default;
|
|
8
|
+
/// The text color of the CitationPopover page indicator.
|
|
9
|
+
/// @group citation
|
|
10
|
+
$kendo-citation-pages-color: var( --kendo-citation-pages-color, k-color(subtle) ) !default;
|
|
11
|
+
|
|
12
|
+
@forward "@progress/kendo-theme-core/scss/components/citation/_variables.scss" with (
|
|
13
|
+
$kendo-citation-popover-view-padding: $kendo-citation-popover-view-padding,
|
|
14
|
+
$kendo-citation-pages-color: $kendo-citation-pages-color
|
|
15
|
+
);
|
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 *;
|
|
@@ -462,6 +468,9 @@
|
|
|
462
468
|
// Misc
|
|
463
469
|
@include kendo-file-box--styles();
|
|
464
470
|
@include kendo-chat--styles();
|
|
471
|
+
@include kendo-agent-response--styles();
|
|
472
|
+
@include kendo-citation--styles();
|
|
473
|
+
@include kendo-checkpoint--styles();
|
|
465
474
|
@include kendo-media-player--styles();
|
|
466
475
|
@include kendo-timeline--styles();
|
|
467
476
|
@include kendo-pdf-viewer--styles();
|