igniteui-theming 19.3.0-beta.4 → 19.3.1

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.4",
3
+ "version": "19.3.1",
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": {
@@ -16,8 +16,12 @@
16
16
  /// @prop {Map} message-background [color: ('gray', 200)] - The background color of the sent message bubble.
17
17
  /// @prop {Map} message-color [color: ('gray', 800)] - The text color of the chat messages.
18
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.
24
+ /// @prop {Map} image-attachment-icon [color: ('gray', 900)] - The color of the message attachment icon.
21
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: (
@@ -62,6 +66,24 @@ $light-chat: (
62
66
  700,
63
67
  ),
64
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,
85
+ ),
86
+ ),
65
87
  image-background: (
66
88
  color: (
67
89
  'gray',
@@ -74,6 +96,12 @@ $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',
@@ -166,8 +194,10 @@ $bootstrap-chat: extend(
166
194
  /// @type {Map}
167
195
  /// @prop {Map} header-color [color: ('gray', 800)] - The text color of the chat header.
168
196
  /// @prop {Map} header-border [color: ('primary', 500)] - The color used for the chat header border.
197
+ /// @prop {Map} file-background [color: ('gray', 100)] - The background color of the image message container.
169
198
  /// @prop {Map} message-actions-color [color: ('gray', 600)] - The icon color of the chat message actions.
170
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.
171
201
  /// @requires {Map} $light-chat
172
202
  $indigo-chat: extend(
173
203
  $light-chat,
@@ -184,6 +214,12 @@ $indigo-chat: extend(
184
214
  500,
185
215
  ),
186
216
  ),
217
+ file-background: (
218
+ color: (
219
+ 'gray',
220
+ 100,
221
+ ),
222
+ ),
187
223
  message-actions-color: (
188
224
  color: (
189
225
  'gray',
@@ -196,6 +232,12 @@ $indigo-chat: extend(
196
232
  500,
197
233
  ),
198
234
  ),
235
+ image-attachment-icon: (
236
+ color: (
237
+ 'info',
238
+ 500,
239
+ ),
240
+ ),
199
241
  _meta: (
200
242
  theme: 'indigo',
201
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',