@progress/kendo-theme-material 11.3.3-dev.0 → 12.0.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.
Files changed (48) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/material-2-dark.css +1 -1
  3. package/dist/material-2.css +1 -1
  4. package/dist/material-aqua-dark.css +1 -1
  5. package/dist/material-arctic.css +1 -1
  6. package/dist/material-burnt-teal.css +1 -1
  7. package/dist/material-dataviz-v4.css +1 -1
  8. package/dist/material-eggplant.css +1 -1
  9. package/dist/material-lime-dark.css +1 -1
  10. package/dist/material-lime.css +1 -1
  11. package/dist/material-main-dark.css +1 -1
  12. package/dist/material-main.css +1 -1
  13. package/dist/material-nova.css +1 -1
  14. package/dist/material-pacific-dark.css +1 -1
  15. package/dist/material-pacific.css +1 -1
  16. package/dist/material-sky-dark.css +1 -1
  17. package/dist/material-sky.css +1 -1
  18. package/dist/material-smoke.css +1 -1
  19. package/dist/meta/sassdoc-data.json +5233 -3985
  20. package/dist/meta/sassdoc-raw-data.json +1053 -478
  21. package/dist/meta/variables.json +200 -104
  22. package/lib/swatches/material-2-dark.json +1 -1
  23. package/lib/swatches/material-2.json +1 -1
  24. package/lib/swatches/material-aqua-dark.json +1 -1
  25. package/lib/swatches/material-arctic.json +1 -1
  26. package/lib/swatches/material-burnt-teal.json +1 -1
  27. package/lib/swatches/material-dataviz-v4.json +1 -1
  28. package/lib/swatches/material-eggplant.json +1 -1
  29. package/lib/swatches/material-lime-dark.json +1 -1
  30. package/lib/swatches/material-lime.json +1 -1
  31. package/lib/swatches/material-main-dark.json +1 -1
  32. package/lib/swatches/material-main.json +1 -1
  33. package/lib/swatches/material-nova.json +1 -1
  34. package/lib/swatches/material-pacific-dark.json +1 -1
  35. package/lib/swatches/material-pacific.json +1 -1
  36. package/lib/swatches/material-sky-dark.json +1 -1
  37. package/lib/swatches/material-sky.json +1 -1
  38. package/lib/swatches/material-smoke.json +1 -1
  39. package/package.json +4 -4
  40. package/scss/bubble/_index.scss +16 -0
  41. package/scss/bubble/_layout.scss +18 -0
  42. package/scss/bubble/_theme.scss +24 -0
  43. package/scss/bubble/_variables.scss +94 -0
  44. package/scss/chat/_index.scss +18 -2
  45. package/scss/chat/_layout.scss +11 -27
  46. package/scss/chat/_theme.scss +24 -5
  47. package/scss/chat/_variables.scss +142 -131
  48. package/scss/index.scss +4 -0
@@ -0,0 +1,18 @@
1
+ @use "../core/_index.scss" as *;
2
+ @use "../core/functions/index.import.scss" as *;
3
+ @use "./_variables.scss" as *;
4
+ @use "@progress/kendo-theme-core/scss/components/bubble/_layout.scss" as *;
5
+
6
+
7
+ @mixin kendo-bubble--layout() {
8
+ @include kendo-bubble--layout-base();
9
+
10
+ .k-bubble {
11
+ &:focus,
12
+ &.k-focus {
13
+ outline-style: solid;
14
+ outline-width: calc( (#{$kendo-bubble-border-width} * 2 ));
15
+ outline-offset: calc( (#{$kendo-bubble-border-width} * 2 ) * -1);
16
+ }
17
+ }
18
+ }
@@ -0,0 +1,24 @@
1
+ @use "../core/_index.scss" as *;
2
+ @use "../core/functions/index.import.scss" as *;
3
+ @use "./_variables.scss" as *;
4
+ @use "@progress/kendo-theme-core/scss/components/bubble/_theme.scss" as *;
5
+
6
+
7
+ @mixin kendo-bubble--theme() {
8
+ @include kendo-bubble--theme-base();
9
+
10
+ .k-bubble {
11
+ &:focus,
12
+ &.k-focus {
13
+ outline-color: k-color(base-emphasis);
14
+ box-shadow: inset 0 0 0 calc( #{$kendo-bubble-border-width} * 3 ) k-color(app-surface),
15
+ inset 0 0 0 calc( #{$kendo-bubble-border-width} * 5 ) $kendo-bubble-border;;
16
+
17
+ &:hover,
18
+ &.k-hover {
19
+ box-shadow: inset 0 0 0 calc( #{$kendo-bubble-border-width} * 3 ) k-color(app-surface),
20
+ inset 0 0 0 calc( #{$kendo-bubble-border-width} * 5 ) $kendo-bubble-hover-border;
21
+ }
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,94 @@
1
+ @use "../core/_index.scss" as *;
2
+ @use "../core/functions/index.import.scss" as *;
3
+
4
+ /// The border radius of the Bubble.
5
+ /// @group bubble
6
+ $kendo-bubble-border-radius: k-border-radius(xl) !default;
7
+ /// The small border radius of the Bubble.
8
+ /// @group bubble
9
+ $kendo-bubble-border-radius-sm: k-border-radius(xs) !default;
10
+ /// The vertical padding of the Bubble.
11
+ /// @group bubble
12
+ $kendo-bubble-padding-y: k-spacing(2) !default;
13
+ /// The horizontal padding of the Bubble.
14
+ /// @group bubble
15
+ $kendo-bubble-padding-x: k-spacing(3) !default;
16
+ /// The border width of the Bubble.
17
+ /// @group bubble
18
+ $kendo-bubble-border-width: 1px !default;
19
+ /// The border style of the Bubble.
20
+ /// @group bubble
21
+ $kendo-bubble-border-style: solid !default;
22
+ /// The line height of the Bubble.
23
+ /// @group bubble
24
+ $kendo-bubble-line-height: var( --kendo-line-height, normal ) !default;
25
+
26
+ /// The text color of the Bubble.
27
+ /// @group bubble
28
+ $kendo-bubble-text: k-color(base-on-subtle) !default;
29
+ /// The background color of the Bubble.
30
+ /// @group bubble
31
+ $kendo-bubble-bg: k-color(base-subtle) !default;
32
+ /// The border color of the Bubble.
33
+ /// @group bubble
34
+ $kendo-bubble-border: $kendo-bubble-bg !default;
35
+ /// The shadow of the Bubble.
36
+ /// @group bubble
37
+ $kendo-bubble-shadow: none !default;
38
+
39
+ /// The background color of the hover Bubble.
40
+ /// @group bubble
41
+ $kendo-bubble-hover-bg: k-color(base-subtle-hover) !default;
42
+ /// The border color of the active Bubble.
43
+ /// @group bubble
44
+ $kendo-bubble-hover-border: $kendo-bubble-hover-bg !default;
45
+ /// The background color of the active Bubble.
46
+ /// @group bubble
47
+ $kendo-bubble-active-bg: k-color(base-subtle-active) !default;
48
+ /// The border color of the active Bubble.
49
+ /// @group bubble
50
+ $kendo-bubble-active-border: $kendo-bubble-active-bg !default;
51
+ /// The background color of the focused Bubble.
52
+ /// @group bubble
53
+ $kendo-bubble-focus-bg: k-color(base-subtle) !default;
54
+ /// The border color of the focused Bubble.
55
+ /// @group bubble
56
+ $kendo-bubble-focus-border: $kendo-bubble-focus-bg !default;
57
+ /// The box shadow of the focused Bubble.
58
+ /// @group bubble
59
+ $kendo-bubble-focus-shadow: 0 0 0 2px color-mix(in srgb, k-color(on-app-surface) 8%, transparent) !default;
60
+
61
+ /// The spacing between content and icon in expandable Bubble.
62
+ /// @group bubble
63
+ $kendo-bubble-expandable-spacing: $kendo-bubble-padding-x !default;
64
+ /// The horizontal padding of the expandable Bubble icon.
65
+ /// @group bubble
66
+ $kendo-bubble-expandable-icon-padding-x: k-spacing(2.5) !default;
67
+ /// The vertical padding of the expandable Bubble icon.
68
+ /// @group bubble
69
+ $kendo-bubble-expandable-icon-padding-y: k-spacing(2.5) !default;
70
+
71
+ @forward "@progress/kendo-theme-core/scss/components/bubble/_variables.scss" with (
72
+ $kendo-bubble-border-radius: $kendo-bubble-border-radius,
73
+ $kendo-bubble-border-radius-sm: $kendo-bubble-border-radius-sm,
74
+ $kendo-bubble-padding-y: $kendo-bubble-padding-y,
75
+ $kendo-bubble-padding-x: $kendo-bubble-padding-x,
76
+ $kendo-bubble-border-width: $kendo-bubble-border-width,
77
+ $kendo-bubble-border-style: $kendo-bubble-border-style,
78
+ $kendo-bubble-line-height: $kendo-bubble-line-height,
79
+
80
+ $kendo-bubble-text: $kendo-bubble-text,
81
+ $kendo-bubble-bg: $kendo-bubble-bg,
82
+ $kendo-bubble-border: $kendo-bubble-border,
83
+ $kendo-bubble-shadow: $kendo-bubble-shadow,
84
+ $kendo-bubble-hover-bg: $kendo-bubble-hover-bg,
85
+ $kendo-bubble-hover-border: $kendo-bubble-hover-border,
86
+ $kendo-bubble-active-bg: $kendo-bubble-active-bg,
87
+ $kendo-bubble-active-border: $kendo-bubble-active-border,
88
+ $kendo-bubble-focus-bg: $kendo-bubble-focus-bg,
89
+ $kendo-bubble-focus-border: $kendo-bubble-focus-border,
90
+ $kendo-bubble-focus-shadow: $kendo-bubble-focus-shadow,
91
+ $kendo-bubble-expandable-spacing: $kendo-bubble-expandable-spacing,
92
+ $kendo-bubble-expandable-icon-padding-x: $kendo-bubble-expandable-icon-padding-x,
93
+ $kendo-bubble-expandable-icon-padding-y: $kendo-bubble-expandable-icon-padding-y,
94
+ );
@@ -1,9 +1,17 @@
1
1
  // Dependencies
2
2
  @use "../core/_index.scss" as *;
3
3
  @use "../icons/_index.scss" as *;
4
- @use "../input/_index.scss" as *;
4
+ @use "../textarea/_index.scss" as *;
5
5
  @use "../card/_index.scss" as *;
6
+ @use "../appbar/_index.scss" as *;
6
7
  @use "../toolbar/_index.scss" as *;
8
+ @use "../bubble/_index.scss" as *;
9
+ @use "../upload/_index.scss" as *;
10
+ @use "../dropzone/_index.scss" as *;
11
+ @use "../avatar/_index.scss" as *;
12
+ @use "../speech-to-text-button/_index.scss" as *;
13
+ @use "../suggestion/_index.scss" as *;
14
+ @use "../skeleton/_index.scss" as *;
7
15
 
8
16
  // Component
9
17
  @forward "./_variables.scss";
@@ -14,10 +22,18 @@
14
22
  @mixin kendo-chat--styles() {
15
23
  @include import-once( "chat" ) {
16
24
  @include core-styles();
17
- @include kendo-input--styles();
25
+ @include kendo-textarea--styles();
18
26
  @include kendo-card--styles();
19
27
  @include kendo-icon--styles();
28
+ @include kendo-appbar--styles();
20
29
  @include kendo-toolbar--styles();
30
+ @include kendo-bubble--styles();
31
+ @include kendo-suggestion--styles();
32
+ @include kendo-skeleton--styles();
33
+ @include kendo-upload--styles();
34
+ @include kendo-dropzone--styles();
35
+ @include kendo-avatar--styles();
36
+ @include kendo-speech-to-text-button--styles();
21
37
  @include kendo-chat--layout();
22
38
  @include kendo-chat--theme();
23
39
  }
@@ -1,38 +1,22 @@
1
+ @use "./_variables.scss" as *;
1
2
  @use "../core/_index.scss" as *;
2
- @use "../button/_variables.scss" as *;
3
+ @use "../bubble/_variables.scss" as *;
3
4
  @use "@progress/kendo-theme-core/scss/components/chat/_layout.scss" as *;
4
5
 
5
6
 
6
7
  @mixin kendo-chat--layout() {
7
8
  @include kendo-chat--layout-base();
8
9
 
9
- .k-chat {
10
- .k-quick-reply {
11
- position: relative;
12
-
13
- &::before {
14
- @include border-radius( inherit );
15
- content: "";
16
- background: currentColor;
17
- opacity: 0;
18
- display: block;
19
- pointer-events: none;
20
- position: absolute;
21
- left: -$kendo-button-border-width;
22
- right: -$kendo-button-border-width;
23
- top: -$kendo-button-border-width;
24
- bottom: -$kendo-button-border-width;
25
- z-index: 0;
26
- transition: opacity .2s ease-in-out;
27
- }
10
+ .k-chat-file:has( + .k-chat-file) {
11
+ padding-bottom: calc( #{$kendo-chat-file-padding-y} / 2 );
12
+ }
28
13
 
29
- // Focused state
30
- &:focus,
31
- &.k-focus {
32
- &::before {
33
- opacity: $kendo-flat-button-focus-opacity;
34
- }
35
- }
14
+ .k-message-group-sender .k-chat-bubble {
15
+ &:focus,
16
+ &.k-focus {
17
+ outline-style: solid;
18
+ outline-width: calc( (#{$kendo-bubble-border-width} * 2 ));
19
+ outline-offset: calc( (#{$kendo-bubble-border-width} * 2 ) * -1);
36
20
  }
37
21
  }
38
22
  }
@@ -1,18 +1,37 @@
1
+ @use "./_variables.scss" as *;
1
2
  @use "../core/_index.scss" as *;
3
+ @use "../bubble/_variables.scss" as *;
2
4
  @use "@progress/kendo-theme-core/scss/components/chat/_theme.scss" as *;
3
5
 
4
6
 
5
7
  @mixin kendo-chat--theme() {
6
8
  @include kendo-chat--theme-base();
7
9
 
8
- .k-chat .k-quick-reply {
10
+ .k-chat {
11
+
12
+ .k-chat-download-button {
13
+ color: inherit;
14
+ }
15
+
16
+ .k-chat-file-size,
17
+ .k-chat-file-status {
18
+ font-size: var( --kendo-font-size-sm, inherit);
19
+ }
20
+ }
21
+
22
+ .k-message-group-sender .k-chat-bubble {
9
23
  &:focus,
10
24
  &.k-focus {
11
- color: k-color(primary-on-surface);
25
+ outline-color: $kendo-chat-alt-bubble-focus-border;
26
+ box-shadow: inset 0 0 0 calc( #{$kendo-bubble-border-width} * 3 ) k-color(app-surface),
27
+ inset 0 0 0 calc( #{$kendo-bubble-border-width} * 5 ) $kendo-chat-alt-bubble-focus-border;
28
+
29
+ &:hover,
30
+ &.k-hover {
31
+ box-shadow: inset 0 0 0 calc( #{$kendo-bubble-border-width} * 3 ) k-color(app-surface),
32
+ inset 0 0 0 calc( #{$kendo-bubble-border-width} * 5 ) $kendo-chat-alt-bubble-hover-border;
33
+ }
12
34
  }
13
35
  }
14
36
 
15
- .k-message-box {
16
- background-color: k-color(surface-alt)
17
- }
18
37
  }
@@ -12,10 +12,10 @@ $kendo-chat-padding-x: k-spacing(4) !default;
12
12
  /// The vertical padding of the Chat.
13
13
  /// @group chat
14
14
  $kendo-chat-padding-y: k-spacing(4) !default;
15
- /// The width of the Chat.
15
+ /// The minimum width of the Chat.
16
16
  /// @group chat
17
- $kendo-chat-width: 500px !default;
18
- /// The height of the Chat.
17
+ $kendo-chat-width: 320px !default;
18
+ /// The minimum height of the Chat.
19
19
  /// @group chat
20
20
  $kendo-chat-height: 600px !default;
21
21
  /// The border width of the Chat.
@@ -31,13 +31,17 @@ $kendo-chat-font-size: var( --kendo-font-size, inherit ) !default;
31
31
  /// @group chat
32
32
  $kendo-chat-line-height: var( --kendo-line-height, normal ) !default;
33
33
 
34
- /// The horizontal spacing between the items of the Chat.
35
- /// @group chat
36
- $kendo-chat-item-spacing-x: k-spacing(2) !default;
37
34
  /// The vertical spacing between the items of the Chat.
38
35
  /// @group chat
39
36
  $kendo-chat-item-spacing-y: k-spacing(4) !default;
40
37
 
38
+ /// The maximum width of the Chat message.
39
+ /// @group chat
40
+ $kendo-chat-message-max-width: min(75%, 460px) !default;
41
+ /// The spacing between the items of the Chat message.
42
+ /// @group chat
43
+ $kendo-chat-message-gap: k-spacing(2) !default;
44
+
41
45
  /// The horizontal padding of the Chat message list.
42
46
  /// @group chat
43
47
  $kendo-chat-message-list-padding-x: $kendo-chat-padding-x !default;
@@ -48,6 +52,10 @@ $kendo-chat-message-list-padding-y: $kendo-chat-padding-y !default;
48
52
  /// @group chat
49
53
  $kendo-chat-message-list-spacing: $kendo-chat-item-spacing-y !default;
50
54
 
55
+ /// The spacing between the icon and text in the Chat message status.
56
+ /// @group chat
57
+ $kendo-chat-message-status-gap: k-spacing(1) !default;
58
+
51
59
  /// The font size of the Chat timestamp.
52
60
  /// @group chat
53
61
  $kendo-chat-timestamp-font-size: var( --kendo-font-size-sm, inherit ) !default;
@@ -56,13 +64,20 @@ $kendo-chat-timestamp-font-size: var( --kendo-font-size-sm, inherit ) !default;
56
64
  $kendo-chat-timestamp-line-height: var( --kendo-line-height-lg, normal ) !default;
57
65
  /// The text transform of the Chat timestamp.
58
66
  /// @group chat
59
- $kendo-chat-timestamp-transform: uppercase !default;
67
+ $kendo-chat-timestamp-transform: none !default;
60
68
  /// The text color of the Chat timestamp.
61
69
  /// @group chat
62
70
  $kendo-chat-timestamp-text: k-color(subtle) !default;
63
71
  /// The background color of the Chat timestamp.
64
72
  /// @group chat
65
73
  $kendo-chat-timestamp-bg: null !default;
74
+ /// The background color of the Chat timestamp separator.
75
+ /// @group chat
76
+ $kendo-chat-timestamp-separator-bg: k-color(border) !default;
77
+ /// The spacing between the Chat timestamp and its separator.
78
+ /// @group chat
79
+ $kendo-chat-timestamp-separator-spacing: k-spacing(1) !default;
80
+
66
81
 
67
82
  /// The font size of the Chat message meta text.
68
83
  /// @group chat
@@ -76,41 +91,16 @@ $kendo-chat-message-meta-line-height: var( --kendo-line-height-lg, normal ) !def
76
91
  $kendo-chat-author-font-size: var( --kendo-font-size-sm, inherit ) !default;
77
92
  /// The line height of the Chat author text.
78
93
  /// @group chat
79
- $kendo-chat-author-line-height: var( --kendo-line-height-lg, normal ) !default;
80
-
81
- /// The horizontal padding of the Chat bubble message.
82
- /// @group chat
83
- $kendo-chat-bubble-padding-x: k-spacing(3) !default;
84
- /// The vertical padding of the Chat bubble message.
85
- /// @group chat
86
- $kendo-chat-bubble-padding-y: k-spacing(2) !default;
87
- /// The spacing of the Chat bubble message.
88
- /// @group chat
89
- $kendo-chat-bubble-spacing: k-spacing(0.5) !default;
90
- /// The line height of the Chat bubble message.
91
- /// @group chat
92
- $kendo-chat-bubble-line-height: var( --kendo-line-height, normal ) !default;
94
+ $kendo-chat-author-line-height: var( --kendo-line-height-xs, normal ) !default;
93
95
 
94
- /// The border radius of the Chat bubble message.
96
+ /// The text color of the Chat status.
95
97
  /// @group chat
96
- $kendo-chat-bubble-border-radius: 12px !default;
97
- /// The border radius of the Chat small bubble message
98
- /// @group chat
99
- $kendo-chat-bubble-border-radius-sm: 2px !default;
98
+ $kendo-chat-status-text: k-color(subtle) !default;
100
99
 
101
- /// The size of the Chat Avatar.
102
- /// @group chat
103
- $kendo-chat-avatar-size: 32px !default;
104
- /// The spacing of the Chat Avatar.
100
+ /// The spacing of the Chat bubble message.
105
101
  /// @group chat
106
- $kendo-chat-avatar-spacing: $kendo-chat-item-spacing-x !default;
102
+ $kendo-chat-bubble-spacing: k-spacing(2) !default;
107
103
 
108
- /// The horizontal padding of the Chat Toolbar.
109
- /// @group chat
110
- $kendo-chat-toolbar-padding-x: $kendo-toolbar-md-padding-x !default;
111
- /// The vertical padding of the Chat Toolbar.
112
- /// @group chat
113
- $kendo-chat-toolbar-padding-y: $kendo-toolbar-md-padding-y !default;
114
104
  /// The background color of the Chat Toolbar.
115
105
  /// @group chat
116
106
  $kendo-chat-toolbar-bg: $kendo-toolbar-bg !default;
@@ -121,20 +111,6 @@ $kendo-chat-toolbar-text: $kendo-toolbar-text !default;
121
111
  /// @group chat
122
112
  $kendo-chat-toolbar-border: inherit !default;
123
113
 
124
- /// The horizontal padding of the Chat quick reply.
125
- /// @group chat
126
- $kendo-chat-quick-reply-padding-x: k-spacing(3) !default;
127
- /// The vertical padding of the Chat quick reply.
128
- /// @group chat
129
- $kendo-chat-quick-reply-padding-y: k-spacing(2) !default;
130
- /// The spacing of the Chat quick reply.
131
- /// @group chat
132
- $kendo-chat-quick-reply-spacing: k-spacing(2) !default;
133
- /// The line height of the Chat quick reply.
134
- /// @group chat
135
- $kendo-chat-quick-reply-line-height: $kendo-chat-bubble-line-height !default;
136
-
137
-
138
114
  /// The background color of the Chat.
139
115
  /// @group chat
140
116
  $kendo-chat-bg: k-color(surface) !default;
@@ -145,25 +121,6 @@ $kendo-chat-text: k-color(on-app-surface) !default;
145
121
  /// @group chat
146
122
  $kendo-chat-border: k-color(border) !default;
147
123
 
148
- /// The background color of the Chat bubble.
149
- /// @group chat
150
- $kendo-chat-bubble-bg: k-color(surface-alt) !default;
151
- /// The text color of the Chat bubble.
152
- /// @group chat
153
- $kendo-chat-bubble-text: k-color(on-base) !default;
154
- /// The border color of the Chat bubble.
155
- /// @group chat
156
- $kendo-chat-bubble-border: $kendo-chat-bubble-bg !default;
157
- /// The box shadow of the Chat bubble.
158
- /// @group chat
159
- $kendo-chat-bubble-shadow: k-elevation(1) !default;
160
- /// The shadow of the hovered Chat bubble.
161
- /// @group chat
162
- $kendo-chat-bubble-hover-shadow: k-elevation(2) !default;
163
- /// The shadow of the selected Chat bubble.
164
- /// @group chat
165
- $kendo-chat-bubble-selected-shadow: k-elevation(3) !default;
166
-
167
124
  /// The background color of the Chat alt bubble.
168
125
  /// @group chat
169
126
  $kendo-chat-alt-bubble-bg: k-color(primary) !default;
@@ -175,50 +132,102 @@ $kendo-chat-alt-bubble-text: k-color(on-primary) !default;
175
132
  $kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
176
133
  /// The shadow of the Chat alt bubble.
177
134
  /// @group chat
178
- $kendo-chat-alt-bubble-shadow: k-elevation(1) !default;
179
- /// The shadow of the hovered Chat alt bubble.
180
- /// @group chat
181
- $kendo-chat-alt-bubble-hover-shadow: k-elevation(2) !default;
182
- /// The shadow of the selected Chat alt bubble.
135
+ $kendo-chat-alt-bubble-shadow: none !default;
136
+ /// The background color of the hovered alt Bubble.
137
+ /// @group bubble
138
+ $kendo-chat-alt-bubble-hover-bg: k-color(primary-hover) !default;
139
+ /// The border color of the hovered alt Bubble.
140
+ /// @group bubble
141
+ $kendo-chat-alt-bubble-hover-border: $kendo-chat-alt-bubble-hover-bg !default;
142
+ /// The background color of the active Bubble.
143
+ /// @group bubble
144
+ $kendo-chat-alt-bubble-active-bg: k-color(primary-active) !default;
145
+ /// The border color of the active alt Bubble.
146
+ /// @group bubble
147
+ $kendo-chat-alt-bubble-active-border: $kendo-chat-alt-bubble-active-bg !default;
148
+ /// The background color of the focused alt Bubble.
149
+ /// @group bubble
150
+ $kendo-chat-alt-bubble-focus-bg: $kendo-chat-alt-bubble-bg !default;
151
+ /// The border color of the focused alt Bubble.
152
+ /// @group bubble
153
+ $kendo-chat-alt-bubble-focus-border: $kendo-chat-alt-bubble-focus-bg !default;
154
+ /// The box shadow of the focused alt Bubble.
155
+ /// @group bubble
156
+ $kendo-chat-alt-bubble-focus-shadow: null !default;
157
+
158
+ /// The color of the typing indicator dots.
183
159
  /// @group chat
184
- $kendo-chat-alt-bubble-selected-shadow: k-elevation(3) !default;
160
+ $kendo-chat-typing-indicator-text: k-color(base-on-subtle) !default;
185
161
 
186
- /// The background color of the Chat quick reply.
162
+ /// The width of a file in the Chat Textarea.
163
+ /// @group chat
164
+ $kendo-chat-file-width: 240px !default;
165
+ /// The horizontal padding of the Chat file.
187
166
  /// @group chat
188
- $kendo-chat-quick-reply-bg: transparent !default;
189
- /// The text color of the Chat quick reply.
167
+ $kendo-chat-file-padding-x: k-spacing(2) !default;
168
+ /// The vertical padding of the Chat file.
190
169
  /// @group chat
191
- $kendo-chat-quick-reply-text: k-color(primary) !default;
192
- /// The border color of the Chat quick reply.
170
+ $kendo-chat-file-padding-y: k-spacing(2) !default;
171
+ /// The spacing between the elements of the Chat file.
193
172
  /// @group chat
194
- $kendo-chat-quick-reply-border: k-color(primary) !default;
173
+ $kendo-chat-file-gap: k-spacing(1) !default;
195
174
 
196
- /// The background color of the hovered Chat quick reply.
175
+ /// The border width of the Chat file.
197
176
  /// @group chat
198
- $kendo-chat-quick-reply-hover-bg: k-color(primary) !default;
199
- /// The text color of the hovered Chat quick reply.
177
+ $kendo-chat-file-border-width: 1px !default;
178
+ /// The border style of the Chat file.
200
179
  /// @group chat
201
- $kendo-chat-quick-reply-hover-text: k-color(on-primary) !default;
202
- /// The border color of the hovered Chat quick reply.
180
+ $kendo-chat-file-border-style: solid !default;
181
+
182
+ /// The background color of the Chat file.
183
+ /// @group chat
184
+ $kendo-chat-file-bg: k-color(base-subtle) !default;
185
+ /// The text color of the Chat file.
186
+ /// @group chat
187
+ $kendo-chat-file-text: k-color(base-on-subtle) !default;
188
+ /// The border color of the Chat file.
189
+ /// @group chat
190
+ $kendo-chat-file-border: $kendo-chat-file-bg !default;
191
+ /// The border-radius of the Chat file.
192
+ /// @group chat
193
+ $kendo-chat-file-border-radius: k-border-radius(md) !default;
194
+
195
+ /// The horizontal padding of the file download wrapper.
203
196
  /// @group chat
204
- $kendo-chat-quick-reply-hover-border: k-color(primary) !default;
197
+ $kendo-chat-file-download-padding-x: k-spacing(2) !default;
198
+ /// The vertical padding of the file download wrapper.
199
+ /// @group chat
200
+ $kendo-chat-file-download-padding-y: k-spacing(2) !default;
205
201
 
206
- /// The shadow blur of the focused Chat quick reply.
202
+ /// The border width of the Chat pinned message;
203
+ /// @group chat
204
+ $kendo-chat-message-pinned-border-width: 1px !default;
205
+ /// The border style of the Chat pinned message;
206
+ /// @group chat
207
+ $kendo-chat-message-pinned-border-style: solid !default;
208
+ /// The border color of the Chat pinned message;
207
209
  /// @group chat
208
- $kendo-chat-quick-reply-shadow-blur: unset !default;
209
- /// The shadow spread of the focused Chat quick reply.
210
+ $kendo-chat-message-pinned-border-color: k-color(border) !default;
211
+
212
+ /// The horizontal padding of the Chat message reference.
210
213
  /// @group chat
211
- $kendo-chat-quick-reply-shadow-spread: unset !default;
212
- /// The shadow opacity of the focused Chat quick reply.
214
+ $kendo-chat-message-reference-padding-x: k-spacing(1) !default;
215
+ /// The vertical padding of the Chat message reference.
213
216
  /// @group chat
214
- $kendo-chat-quick-reply-shadow-opacity: 0 !default;
217
+ $kendo-chat-message-reference-padding-y: k-spacing(1) !default;
215
218
 
216
- /// The size of the Chat typing indicator dot.
219
+ /// The background color of the Chat message reference.
220
+ /// @group chat
221
+ $kendo-chat-message-reference-bg: k-color(surface) !default;
222
+ /// The text color of the Chat message reference.
223
+ /// @group chat
224
+ $kendo-chat-message-reference-text: k-color(on-app-surface) !default;
225
+ /// The background color of the message reference marker.
217
226
  /// @group chat
218
- $kendo-chat-typing-indicator-dot-size: 8px !default;
219
- /// The spacing of the Chat typing indicator dot.
227
+ $kendo-chat-message-reference-marker-bg: k-color(base-emphasis) !default;
228
+ /// The background color of the message reference alt marker.
220
229
  /// @group chat
221
- $kendo-chat-typing-indicator-dot-spacing: 5px !default;
230
+ $kendo-chat-message-reference-marker-alt-bg: k-color(primary-emphasis) !default;
222
231
 
223
232
  @forward "@progress/kendo-theme-core/scss/components/chat/_variables.scss" with (
224
233
  $kendo-chat-padding-x: $kendo-chat-padding-x,
@@ -229,61 +238,63 @@ $kendo-chat-typing-indicator-dot-spacing: 5px !default;
229
238
  $kendo-chat-font-family: $kendo-chat-font-family,
230
239
  $kendo-chat-font-size: $kendo-chat-font-size,
231
240
  $kendo-chat-line-height: $kendo-chat-line-height,
232
- $kendo-chat-item-spacing-x: $kendo-chat-item-spacing-x,
233
241
  $kendo-chat-item-spacing-y: $kendo-chat-item-spacing-y,
242
+ $kendo-chat-message-max-width: $kendo-chat-message-max-width,
243
+ $kendo-chat-message-gap: $kendo-chat-message-gap,
234
244
  $kendo-chat-message-list-padding-x: $kendo-chat-message-list-padding-x,
235
245
  $kendo-chat-message-list-padding-y: $kendo-chat-message-list-padding-y,
236
246
  $kendo-chat-message-list-spacing: $kendo-chat-message-list-spacing,
247
+ $kendo-chat-message-status-gap: $kendo-chat-message-status-gap,
237
248
  $kendo-chat-timestamp-font-size: $kendo-chat-timestamp-font-size,
238
249
  $kendo-chat-timestamp-line-height: $kendo-chat-timestamp-line-height,
239
250
  $kendo-chat-timestamp-transform: $kendo-chat-timestamp-transform,
240
251
  $kendo-chat-timestamp-text: $kendo-chat-timestamp-text,
241
252
  $kendo-chat-timestamp-bg: $kendo-chat-timestamp-bg,
253
+ $kendo-chat-timestamp-separator-bg: $kendo-chat-timestamp-separator-bg,
254
+ $kendo-chat-timestamp-separator-spacing: $kendo-chat-timestamp-separator-spacing,
242
255
  $kendo-chat-message-meta-font-size: $kendo-chat-message-meta-font-size,
243
256
  $kendo-chat-message-meta-line-height: $kendo-chat-message-meta-line-height,
244
257
  $kendo-chat-author-font-size: $kendo-chat-author-font-size,
245
258
  $kendo-chat-author-line-height: $kendo-chat-author-line-height,
246
- $kendo-chat-bubble-padding-x: $kendo-chat-bubble-padding-x,
247
- $kendo-chat-bubble-padding-y: $kendo-chat-bubble-padding-y,
259
+ $kendo-chat-status-text: $kendo-chat-status-text,
248
260
  $kendo-chat-bubble-spacing: $kendo-chat-bubble-spacing,
249
- $kendo-chat-bubble-line-height: $kendo-chat-bubble-line-height,
250
- $kendo-chat-bubble-border-radius: $kendo-chat-bubble-border-radius,
251
- $kendo-chat-bubble-border-radius-sm: $kendo-chat-bubble-border-radius-sm,
252
- $kendo-chat-avatar-size: $kendo-chat-avatar-size,
253
- $kendo-chat-avatar-spacing: $kendo-chat-avatar-spacing,
254
- $kendo-chat-toolbar-padding-x: $kendo-chat-toolbar-padding-x,
255
- $kendo-chat-toolbar-padding-y: $kendo-chat-toolbar-padding-y,
256
261
  $kendo-chat-toolbar-bg: $kendo-chat-toolbar-bg,
257
262
  $kendo-chat-toolbar-text: $kendo-chat-toolbar-text,
258
263
  $kendo-chat-toolbar-border: $kendo-chat-toolbar-border,
259
- $kendo-chat-quick-reply-padding-x: $kendo-chat-quick-reply-padding-x,
260
- $kendo-chat-quick-reply-padding-y: $kendo-chat-quick-reply-padding-y,
261
- $kendo-chat-quick-reply-spacing: $kendo-chat-quick-reply-spacing,
262
- $kendo-chat-quick-reply-line-height: $kendo-chat-quick-reply-line-height,
263
264
  $kendo-chat-bg: $kendo-chat-bg,
264
265
  $kendo-chat-text: $kendo-chat-text,
265
266
  $kendo-chat-border: $kendo-chat-border,
266
- $kendo-chat-bubble-bg: $kendo-chat-bubble-bg,
267
- $kendo-chat-bubble-text: $kendo-chat-bubble-text,
268
- $kendo-chat-bubble-border: $kendo-chat-bubble-border,
269
- $kendo-chat-bubble-shadow: $kendo-chat-bubble-shadow,
270
- $kendo-chat-bubble-hover-shadow: $kendo-chat-bubble-hover-shadow,
271
- $kendo-chat-bubble-selected-shadow: $kendo-chat-bubble-selected-shadow,
272
267
  $kendo-chat-alt-bubble-bg: $kendo-chat-alt-bubble-bg,
273
268
  $kendo-chat-alt-bubble-text: $kendo-chat-alt-bubble-text,
274
269
  $kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-border,
275
270
  $kendo-chat-alt-bubble-shadow: $kendo-chat-alt-bubble-shadow,
276
- $kendo-chat-alt-bubble-hover-shadow: $kendo-chat-alt-bubble-hover-shadow,
277
- $kendo-chat-alt-bubble-selected-shadow: $kendo-chat-alt-bubble-selected-shadow,
278
- $kendo-chat-quick-reply-bg: $kendo-chat-quick-reply-bg,
279
- $kendo-chat-quick-reply-text: $kendo-chat-quick-reply-text,
280
- $kendo-chat-quick-reply-border: $kendo-chat-quick-reply-border,
281
- $kendo-chat-quick-reply-hover-bg: $kendo-chat-quick-reply-hover-bg,
282
- $kendo-chat-quick-reply-hover-text: $kendo-chat-quick-reply-hover-text,
283
- $kendo-chat-quick-reply-hover-border: $kendo-chat-quick-reply-hover-border,
284
- $kendo-chat-quick-reply-shadow-blur: $kendo-chat-quick-reply-shadow-blur,
285
- $kendo-chat-quick-reply-shadow-spread: $kendo-chat-quick-reply-shadow-spread,
286
- $kendo-chat-quick-reply-shadow-opacity: $kendo-chat-quick-reply-shadow-opacity,
287
- $kendo-chat-typing-indicator-dot-size: $kendo-chat-typing-indicator-dot-size,
288
- $kendo-chat-typing-indicator-dot-spacing: $kendo-chat-typing-indicator-dot-spacing
271
+ $kendo-chat-alt-bubble-hover-bg: $kendo-chat-alt-bubble-hover-bg,
272
+ $kendo-chat-alt-bubble-hover-border: $kendo-chat-alt-bubble-hover-border,
273
+ $kendo-chat-alt-bubble-active-bg: $kendo-chat-alt-bubble-active-bg,
274
+ $kendo-chat-alt-bubble-active-border: $kendo-chat-alt-bubble-active-border,
275
+ $kendo-chat-alt-bubble-focus-bg: $kendo-chat-alt-bubble-focus-bg,
276
+ $kendo-chat-alt-bubble-focus-border: $kendo-chat-alt-bubble-focus-border,
277
+ $kendo-chat-alt-bubble-focus-shadow: $kendo-chat-alt-bubble-focus-shadow,
278
+ $kendo-chat-typing-indicator-text: $kendo-chat-typing-indicator-text,
279
+ $kendo-chat-file-width: $kendo-chat-file-width,
280
+ $kendo-chat-file-padding-x: $kendo-chat-file-padding-x,
281
+ $kendo-chat-file-padding-y: $kendo-chat-file-padding-y,
282
+ $kendo-chat-file-gap: $kendo-chat-file-gap,
283
+ $kendo-chat-file-border-width: $kendo-chat-file-border-width,
284
+ $kendo-chat-file-border-style: $kendo-chat-file-border-style,
285
+ $kendo-chat-file-bg: $kendo-chat-file-bg,
286
+ $kendo-chat-file-text: $kendo-chat-file-text,
287
+ $kendo-chat-file-border: $kendo-chat-file-border,
288
+ $kendo-chat-file-border-radius: $kendo-chat-file-border-radius,
289
+ $kendo-chat-file-download-padding-x: $kendo-chat-file-download-padding-x,
290
+ $kendo-chat-file-download-padding-y: $kendo-chat-file-download-padding-y,
291
+ $kendo-chat-message-pinned-border-width: $kendo-chat-message-pinned-border-width,
292
+ $kendo-chat-message-pinned-border-style: $kendo-chat-message-pinned-border-style,
293
+ $kendo-chat-message-pinned-border-color: $kendo-chat-message-pinned-border-color,
294
+ $kendo-chat-message-reference-padding-x: $kendo-chat-message-reference-padding-x,
295
+ $kendo-chat-message-reference-padding-y: $kendo-chat-message-reference-padding-y,
296
+ $kendo-chat-message-reference-bg: $kendo-chat-message-reference-bg,
297
+ $kendo-chat-message-reference-text: $kendo-chat-message-reference-text,
298
+ $kendo-chat-message-reference-marker-bg: $kendo-chat-message-reference-marker-bg,
299
+ $kendo-chat-message-reference-marker-alt-bg: $kendo-chat-message-reference-marker-alt-bg,
289
300
  );