igniteui-theming 19.3.0-beta.3 → 19.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "19.3.0-beta.3",
3
+ "version": "19.3.0",
4
4
  "description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -14,11 +14,15 @@
14
14
  /// @prop {Map} header-color [contrast-color: ('surface', 500)] - The text color of the chat header.
15
15
  /// @prop {Color} header-border [transparent] - The color used for the chat header border.
16
16
  /// @prop {Map} message-background [color: ('gray', 200)] - The background color of the sent message bubble.
17
- /// @prop {Map} message-focus-color [color: ('gray', 300)] - The color used for the focused styles of the message bubble.
18
17
  /// @prop {Map} message-color [color: ('gray', 800)] - The text color of the chat messages.
18
+ /// @prop {Map} message-actions-color [color: ('gray', 700)] - The icon color of the chat message actions.
19
+ /// @prop {Map} file-background [contrast-color: ('gray', 900)] - The background color of the image message container.
20
+ /// @prop {Map} file-icon-color [color: ('gray', 500)] - The color of the attached file icon.
21
+ /// @prop {Map} file-icon-accent-color [color: ('gray', 600)] - The accent color of the attached file icon.
19
22
  /// @prop {Map} image-background [color: ('gray', 100)] - The background color of the image message container.
20
23
  /// @prop {Map} image-border [color: ('gray', 300)] - The border color of the image message container.
21
- /// @prop {Map} chat-input-border [color: ('gray', 300)] - The border color of the chat input area.
24
+ /// @prop {Map} image-attachment-icon [color: ('gray', 900)] - The color of the message attachment icon.
25
+ /// @prop {Map} chat-input-border [color: ('gray', 400)] - The border color of the chat input area.
22
26
  /// @prop {Map} progress-indicator-color [color: ('secondary', 500)] - The color of the progress indicator in the chat component.
23
27
  $light-chat: (
24
28
  background: (
@@ -50,16 +54,34 @@ $light-chat: (
50
54
  200,
51
55
  ),
52
56
  ),
53
- message-focus-color: (
57
+ message-color: (
54
58
  color: (
55
59
  'gray',
56
- 300,
60
+ 800,
57
61
  ),
58
62
  ),
59
- message-color: (
63
+ message-actions-color: (
60
64
  color: (
61
65
  'gray',
62
- 800,
66
+ 700,
67
+ ),
68
+ ),
69
+ file-background: (
70
+ contrast-color: (
71
+ 'gray',
72
+ 900,
73
+ ),
74
+ ),
75
+ file-icon-color: (
76
+ color: (
77
+ 'gray',
78
+ 500,
79
+ ),
80
+ ),
81
+ file-icon-accent-color: (
82
+ color: (
83
+ 'gray',
84
+ 600,
63
85
  ),
64
86
  ),
65
87
  image-background: (
@@ -74,10 +96,16 @@ $light-chat: (
74
96
  300,
75
97
  ),
76
98
  ),
99
+ image-attachment-icon: (
100
+ color: (
101
+ 'gray',
102
+ 900,
103
+ ),
104
+ ),
77
105
  chat-input-border: (
78
106
  color: (
79
107
  'gray',
80
- 300,
108
+ 400,
81
109
  ),
82
110
  ),
83
111
  progress-indicator-color: (
@@ -103,10 +131,31 @@ $material-chat: extend(
103
131
 
104
132
  /// Generates a light fluent chat schema.
105
133
  /// @type {Map}
134
+ /// @prop {Map} background [contrast-color: ('gray', 900)] - The background color of the chat component.
135
+ /// @prop {Map} header-color [color: ('gray', 900)] - The text color of the chat header.
136
+ /// @prop {Map} message-actions-color [color: ('primary', 500)] - The icon color of the chat message actions.
106
137
  /// @requires {Map} $light-chat
107
138
  $fluent-chat: extend(
108
139
  $light-chat,
109
140
  (
141
+ background: (
142
+ contrast-color: (
143
+ 'gray',
144
+ 900,
145
+ ),
146
+ ),
147
+ header-color: (
148
+ color: (
149
+ 'gray',
150
+ 900,
151
+ ),
152
+ ),
153
+ message-actions-color: (
154
+ color: (
155
+ 'primary',
156
+ 500,
157
+ ),
158
+ ),
110
159
  _meta: (
111
160
  theme: 'fluent',
112
161
  variant: 'light',
@@ -116,10 +165,24 @@ $fluent-chat: extend(
116
165
 
117
166
  /// Generates a light bootstrap chat schema.
118
167
  /// @type {Map}
168
+ /// @prop {Map} background [contrast-color: ('gray', 900)] - The background color of the chat component.
169
+ /// @prop {Map} header-border [color: ('gray', 300)] - The color used for the chat header border.
119
170
  /// @requires {Map} $light-chat
120
171
  $bootstrap-chat: extend(
121
172
  $light-chat,
122
173
  (
174
+ background: (
175
+ contrast-color: (
176
+ 'gray',
177
+ 900,
178
+ ),
179
+ ),
180
+ header-border: (
181
+ color: (
182
+ 'gray',
183
+ 300,
184
+ ),
185
+ ),
123
186
  _meta: (
124
187
  theme: 'bootstrap',
125
188
  variant: 'light',
@@ -131,8 +194,10 @@ $bootstrap-chat: extend(
131
194
  /// @type {Map}
132
195
  /// @prop {Map} header-color [color: ('gray', 800)] - The text color of the chat header.
133
196
  /// @prop {Map} header-border [color: ('primary', 500)] - The color used for the chat header border.
134
- /// @prop {Map} message-focus-color [color: ('primary', 400)] - The color used for the focused styles of the message bubble.
197
+ /// @prop {Map} file-background [color: ('gray', 100)] - The background color of the image message container.
198
+ /// @prop {Map} message-actions-color [color: ('gray', 600)] - The icon color of the chat message actions.
135
199
  /// @prop {Map} progress-indicator-color [color: ('info', 500)] - The color of the progress indicator in the chat component.
200
+ /// @prop {Map} image-attachment-icon [color: ('info', 500)] - The color of the message attachment icon.
136
201
  /// @requires {Map} $light-chat
137
202
  $indigo-chat: extend(
138
203
  $light-chat,
@@ -149,10 +214,16 @@ $indigo-chat: extend(
149
214
  500,
150
215
  ),
151
216
  ),
152
- message-focus-color: (
217
+ file-background: (
153
218
  color: (
154
- 'primary',
155
- 400,
219
+ 'gray',
220
+ 100,
221
+ ),
222
+ ),
223
+ message-actions-color: (
224
+ color: (
225
+ 'gray',
226
+ 600,
156
227
  ),
157
228
  ),
158
229
  progress-indicator-color: (
@@ -161,6 +232,12 @@ $indigo-chat: extend(
161
232
  500,
162
233
  ),
163
234
  ),
235
+ image-attachment-icon: (
236
+ color: (
237
+ 'info',
238
+ 500,
239
+ ),
240
+ ),
164
241
  _meta: (
165
242
  theme: 'indigo',
166
243
  variant: 'light',
@@ -387,6 +387,7 @@ $bootstrap-list: extend(
387
387
  /// @prop {Map} item-background-hover [color: ('primary', 300, .3)] - The list item hover background.
388
388
  /// @prop {Map} item-background-active [color: ('primary', 300, .3)] - The active list item background color.
389
389
  /// @prop {Map} item-background-selected [color: ('primary', 300, .3)] - The selected list item background color.
390
+ /// @prop {Map} item-title-color [color: ('gray', 800)] - The list item title color.
390
391
  /// @prop {Map} item-text-color [color: ('gray', 800)] - The list item text color.
391
392
  /// @prop {Map} item-text-color-hover [color: ('gray', 900)] - The list item text color on hover.
392
393
  /// @prop {Map} item-text-color-active [color: ('gray', 900)] - The active list item text color.
@@ -451,6 +452,13 @@ $indigo-list: extend(
451
452
  ),
452
453
  ),
453
454
 
455
+ item-title-color: (
456
+ color: (
457
+ 'gray',
458
+ 800,
459
+ ),
460
+ ),
461
+
454
462
  item-text-color: (
455
463
  color: (
456
464
  'gray',
@@ -129,6 +129,7 @@ $fluent-select: extend(
129
129
  /// Generates a bootstrap select schema.
130
130
  /// @type {Map}
131
131
  /// @prop {Map} toggle-button-foreground [color: ('gray', 800)] - The select toggle button foreground color.
132
+ /// @prop {Map} toggle-button-background-focus [color: ('gray', 300)] - The select toggle button background color when the select is focused.
132
133
  /// @prop {Map} toggle-button-foreground-focus [color: ('gray', 800)] - The select toggle button foreground color when the select is focused.
133
134
  /// @prop {Map} toggle-button-foreground-filled [color: ('gray', 800)] - The select toggle button foreground color when the select is focused.
134
135
  /// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 400)] - The select toggle button foreground color when the select is disabled.
@@ -142,6 +143,14 @@ $bootstrap-select: extend(
142
143
  800,
143
144
  ),
144
145
  ),
146
+
147
+ toggle-button-background-focus: (
148
+ color: (
149
+ 'gray',
150
+ 300,
151
+ ),
152
+ ),
153
+
145
154
  toggle-button-foreground-focus: (
146
155
  color: (
147
156
  'gray',