@zohodesk/components 1.0.0-temp-250 → 1.0.0-temp-253

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 (168) hide show
  1. package/README.md +29 -0
  2. package/assets/Appearance/dark/mode/Component_v1_DarkMode.module.css +68 -0
  3. package/assets/Appearance/light/mode/Component_v1_LightMode.module.css +68 -0
  4. package/assets/Appearance/pureDark/mode/Component_v1_PureDarkMode.module.css +68 -0
  5. package/es/Avatar/Avatar.module.css +8 -8
  6. package/es/AvatarTeam/AvatarTeam.module.css +189 -189
  7. package/es/Button/css/Button.module.css +19 -19
  8. package/es/Buttongroup/Buttongroup.module.css +85 -107
  9. package/es/Card/Card.module.css +6 -4
  10. package/es/CheckBox/CheckBox.module.css +3 -10
  11. package/es/DateTime/DateTime.module.css +22 -35
  12. package/es/DateTime/DateWidget.module.css +1 -1
  13. package/es/DateTime/YearView.module.css +8 -10
  14. package/es/DropBox/DropBoxElement/DropBoxElement.js +10 -1
  15. package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +8 -3
  16. package/es/DropBox/DropBoxElement/props/propTypes.js +2 -1
  17. package/es/DropBox/css/DropBox.module.css +58 -58
  18. package/es/DropDown/DropDown.module.css +2 -1
  19. package/es/DropDown/DropDownHeading.module.css +53 -53
  20. package/es/DropDown/DropDownItem.module.css +87 -94
  21. package/es/DropDown/DropDownSearch.module.css +3 -3
  22. package/es/DropDown/DropDownSeparator.module.css +2 -1
  23. package/es/Label/Label.module.css +5 -5
  24. package/es/ListItem/ListItem.module.css +23 -45
  25. package/es/MultiSelect/MobileHeader/MobileHeader.module.css +4 -3
  26. package/es/MultiSelect/MultiSelect.module.css +21 -34
  27. package/es/MultiSelect/SelectedOptions.module.css +6 -10
  28. package/es/PopOver/PopOver.module.css +8 -8
  29. package/es/Radio/Radio.module.css +11 -12
  30. package/es/ResponsiveDropBox/ResponsiveDropBox.js +1 -0
  31. package/es/ResponsiveDropBox/ResponsiveDropBox.module.css +1 -1
  32. package/es/Ribbon/Ribbon.module.css +499 -505
  33. package/es/RippleEffect/RippleEffect.module.css +55 -17
  34. package/es/Select/Select.module.css +22 -17
  35. package/es/Stencils/Stencils.module.css +30 -14
  36. package/es/Switch/Switch.module.css +121 -128
  37. package/es/Tab/Tab.module.css +8 -15
  38. package/es/Tab/Tabs.module.css +12 -22
  39. package/es/Tag/Tag.module.css +255 -255
  40. package/es/TextBox/TextBox.module.css +9 -9
  41. package/es/TextBoxIcon/TextBoxIcon.module.css +1 -1
  42. package/es/Textarea/Textarea.module.css +18 -18
  43. package/es/Tooltip/Tooltip.module.css +5 -4
  44. package/es/Typography/Typography.js +18 -8
  45. package/es/Typography/__tests__/Typography.spec.js +198 -6
  46. package/es/Typography/__tests__/__snapshots__/Typography.spec.js.snap +1235 -2
  47. package/es/Typography/css/Typography.module.css +4 -0
  48. package/es/Typography/css/cssJSLogic.js +53 -21
  49. package/es/Typography/props/defaultProps.js +4 -3
  50. package/es/Typography/props/propTypes.js +68 -26
  51. package/es/Typography/utils/textHighlighter.js +4 -2
  52. package/es/common/avatarsizes.module.css +16 -16
  53. package/es/common/customscroll.module.css +141 -141
  54. package/es/shared/ArrowIcon/ArrowIcon.module.css +3 -2
  55. package/es/shared/InputFieldLine/InputFieldLine.module.css +2 -2
  56. package/es/v1/Button/Button.js +201 -0
  57. package/es/v1/Button/README.md +110 -0
  58. package/es/v1/Button/__tests__/Button.spec.js +272 -0
  59. package/es/v1/Button/__tests__/__snapshots__/Button.spec.js.snap +1160 -0
  60. package/es/v1/Button/_shared/Loader/Loader.js +33 -0
  61. package/es/v1/Button/_shared/Loader/Loader_v1.module.css +42 -0
  62. package/es/v1/Button/_shared/Loader/__tests__/Loader.spec.js +21 -0
  63. package/es/v1/Button/_shared/Loader/__tests__/__snapshots__/Loader.spec.js.snap +49 -0
  64. package/es/v1/Button/_shared/Loader/props/defaultProps.js +4 -0
  65. package/es/v1/Button/_shared/Loader/props/propTypes.js +7 -0
  66. package/es/v1/Button/_shared/SuccessTick/SuccessTick.js +25 -0
  67. package/es/v1/Button/_shared/SuccessTick/SuccessTick_v1.module.css +21 -0
  68. package/es/v1/Button/_shared/SuccessTick/__tests__/SuccessTick.spec.js +21 -0
  69. package/es/v1/Button/_shared/SuccessTick/__tests__/__snapshots__/SuccessTick.spec.js.snap +31 -0
  70. package/es/v1/Button/_shared/SuccessTick/props/defaultProps.js +4 -0
  71. package/es/v1/Button/_shared/SuccessTick/props/propTypes.js +7 -0
  72. package/es/v1/Button/constants/index.js +82 -0
  73. package/es/v1/Button/css/Button_v1.module.css +119 -0
  74. package/es/v1/Button/css/cssJSLogic.js +96 -0
  75. package/es/v1/Button/index.js +2 -0
  76. package/es/v1/Button/props/defaultProps.js +26 -0
  77. package/es/v1/Button/props/propTypes.js +43 -0
  78. package/es/v1/Switch/css/Switch_v1.module.css +28 -28
  79. package/es/v1/helpers/colorHelpers/background/backgroundColor.module.css +629 -0
  80. package/es/v1/helpers/colorHelpers/border/borderColor.module.css +489 -0
  81. package/es/v1/helpers/colorHelpers/colorHelper.js +176 -0
  82. package/es/v1/helpers/colorHelpers/constants/index.js +79 -0
  83. package/es/v1/helpers/colorHelpers/index.js +4 -0
  84. package/es/v1/helpers/colorHelpers/paletteUtilities.README.md +415 -0
  85. package/es/v1/helpers/colorHelpers/text/textColor.module.css +368 -0
  86. package/lib/Avatar/Avatar.module.css +8 -8
  87. package/lib/AvatarTeam/AvatarTeam.module.css +189 -189
  88. package/lib/Button/css/Button.module.css +19 -19
  89. package/lib/Buttongroup/Buttongroup.module.css +85 -107
  90. package/lib/Card/Card.module.css +6 -4
  91. package/lib/CheckBox/CheckBox.module.css +3 -10
  92. package/lib/DateTime/DateTime.module.css +22 -35
  93. package/lib/DateTime/DateWidget.module.css +1 -1
  94. package/lib/DateTime/YearView.module.css +8 -10
  95. package/lib/DropBox/DropBoxElement/DropBoxElement.js +10 -1
  96. package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +8 -3
  97. package/lib/DropBox/DropBoxElement/props/propTypes.js +2 -1
  98. package/lib/DropBox/css/DropBox.module.css +58 -58
  99. package/lib/DropDown/DropDown.module.css +2 -1
  100. package/lib/DropDown/DropDownHeading.module.css +53 -53
  101. package/lib/DropDown/DropDownItem.module.css +87 -94
  102. package/lib/DropDown/DropDownSearch.module.css +3 -3
  103. package/lib/DropDown/DropDownSeparator.module.css +2 -1
  104. package/lib/Label/Label.module.css +5 -5
  105. package/lib/ListItem/ListItem.module.css +23 -45
  106. package/lib/MultiSelect/MobileHeader/MobileHeader.module.css +4 -3
  107. package/lib/MultiSelect/MultiSelect.module.css +21 -34
  108. package/lib/MultiSelect/SelectedOptions.module.css +6 -10
  109. package/lib/PopOver/PopOver.module.css +8 -8
  110. package/lib/Radio/Radio.module.css +11 -12
  111. package/lib/ResponsiveDropBox/ResponsiveDropBox.js +1 -0
  112. package/lib/ResponsiveDropBox/ResponsiveDropBox.module.css +1 -1
  113. package/lib/Ribbon/Ribbon.module.css +499 -505
  114. package/lib/RippleEffect/RippleEffect.module.css +55 -17
  115. package/lib/Select/Select.module.css +22 -17
  116. package/lib/Stencils/Stencils.module.css +30 -14
  117. package/lib/Switch/Switch.module.css +121 -128
  118. package/lib/Tab/Tab.module.css +8 -15
  119. package/lib/Tab/Tabs.module.css +12 -22
  120. package/lib/Tag/Tag.module.css +255 -255
  121. package/lib/TextBox/TextBox.module.css +9 -9
  122. package/lib/TextBoxIcon/TextBoxIcon.module.css +1 -1
  123. package/lib/Textarea/Textarea.module.css +18 -18
  124. package/lib/Tooltip/Tooltip.module.css +5 -4
  125. package/lib/Typography/Typography.js +15 -5
  126. package/lib/Typography/__tests__/Typography.spec.js +284 -92
  127. package/lib/Typography/__tests__/__snapshots__/Typography.spec.js.snap +1235 -2
  128. package/lib/Typography/css/Typography.module.css +4 -0
  129. package/lib/Typography/css/cssJSLogic.js +38 -6
  130. package/lib/Typography/props/defaultProps.js +6 -3
  131. package/lib/Typography/props/propTypes.js +67 -23
  132. package/lib/Typography/utils/textHighlighter.js +6 -3
  133. package/lib/common/avatarsizes.module.css +16 -16
  134. package/lib/common/customscroll.module.css +141 -141
  135. package/lib/shared/ArrowIcon/ArrowIcon.module.css +3 -2
  136. package/lib/shared/InputFieldLine/InputFieldLine.module.css +2 -2
  137. package/lib/v1/Button/Button.js +239 -0
  138. package/lib/v1/Button/README.md +110 -0
  139. package/lib/v1/Button/__tests__/Button.spec.js +293 -0
  140. package/lib/v1/Button/__tests__/__snapshots__/Button.spec.js.snap +1160 -0
  141. package/lib/v1/Button/_shared/Loader/Loader.js +43 -0
  142. package/lib/v1/Button/_shared/Loader/Loader_v1.module.css +42 -0
  143. package/lib/v1/Button/_shared/Loader/__tests__/Loader.spec.js +28 -0
  144. package/lib/v1/Button/_shared/Loader/__tests__/__snapshots__/Loader.spec.js.snap +49 -0
  145. package/lib/v1/Button/_shared/Loader/props/defaultProps.js +11 -0
  146. package/lib/v1/Button/_shared/Loader/props/propTypes.js +18 -0
  147. package/lib/v1/Button/_shared/SuccessTick/SuccessTick.js +35 -0
  148. package/lib/v1/Button/_shared/SuccessTick/SuccessTick_v1.module.css +21 -0
  149. package/lib/v1/Button/_shared/SuccessTick/__tests__/SuccessTick.spec.js +28 -0
  150. package/lib/v1/Button/_shared/SuccessTick/__tests__/__snapshots__/SuccessTick.spec.js.snap +31 -0
  151. package/lib/v1/Button/_shared/SuccessTick/props/defaultProps.js +11 -0
  152. package/lib/v1/Button/_shared/SuccessTick/props/propTypes.js +18 -0
  153. package/lib/v1/Button/constants/index.js +114 -0
  154. package/lib/v1/Button/css/Button_v1.module.css +119 -0
  155. package/lib/v1/Button/css/cssJSLogic.js +88 -0
  156. package/lib/v1/Button/index.js +21 -0
  157. package/lib/v1/Button/props/defaultProps.js +36 -0
  158. package/lib/v1/Button/props/propTypes.js +56 -0
  159. package/lib/v1/Switch/css/Switch_v1.module.css +28 -28
  160. package/lib/v1/helpers/colorHelpers/background/backgroundColor.module.css +629 -0
  161. package/lib/v1/helpers/colorHelpers/border/borderColor.module.css +489 -0
  162. package/lib/v1/helpers/colorHelpers/colorHelper.js +190 -0
  163. package/lib/v1/helpers/colorHelpers/constants/index.js +87 -0
  164. package/lib/v1/helpers/colorHelpers/index.js +57 -0
  165. package/lib/v1/helpers/colorHelpers/paletteUtilities.README.md +415 -0
  166. package/lib/v1/helpers/colorHelpers/text/textColor.module.css +368 -0
  167. package/package.json +17 -14
  168. package/_react-cli.config.js +0 -24
@@ -0,0 +1,368 @@
1
+ /* Theme-aware Brand Palette (changes with CTA theme selection) */
2
+ .text-brand-80 {
3
+ color: var(--zdt_v1_palette_brand_text);
4
+ }
5
+
6
+ .hover\:text-brand-80:hover {
7
+ color: var(--zdt_v1_palette_brand_text);
8
+ }
9
+
10
+ .focus\:text-brand-80:focus {
11
+ color: var(--zdt_v1_palette_brand_text);
12
+ }
13
+
14
+ .active\:text-brand-80:active {
15
+ color: var(--zdt_v1_palette_brand_text);
16
+ }
17
+
18
+ .selected\:text-brand-80 {
19
+ color: var(--zdt_v1_palette_brand_text);
20
+ }
21
+
22
+ .text-brand-100 {
23
+ color: var(--zdt_v1_palette_brand_hover_text);
24
+ }
25
+
26
+ .hover\:text-brand-100:hover {
27
+ color: var(--zdt_v1_palette_brand_hover_text);
28
+ }
29
+
30
+ .focus\:text-brand-100:focus {
31
+ color: var(--zdt_v1_palette_brand_hover_text);
32
+ }
33
+
34
+ .active\:text-brand-100:active {
35
+ color: var(--zdt_v1_palette_brand_hover_text);
36
+ }
37
+
38
+ .selected\:text-brand-100 {
39
+ color: var(--zdt_v1_palette_brand_hover_text);
40
+ }
41
+
42
+ /* Static Grey Palette */
43
+ .text-grey-65 {
44
+ color: var(--zdt_v1_palette_grey_text);
45
+ }
46
+
47
+ .hover\:text-grey-65:hover {
48
+ color: var(--zdt_v1_palette_grey_text);
49
+ }
50
+
51
+ .focus\:text-grey-65:focus {
52
+ color: var(--zdt_v1_palette_grey_text);
53
+ }
54
+
55
+ .active\:text-grey-65:active {
56
+ color: var(--zdt_v1_palette_grey_text);
57
+ }
58
+
59
+ .selected\:text-grey-65 {
60
+ color: var(--zdt_v1_palette_grey_text);
61
+ }
62
+
63
+ .text-grey-100 {
64
+ color: var(--zdt_v1_palette_grey_hover_text);
65
+ }
66
+
67
+ .hover\:text-grey-100:hover {
68
+ color: var(--zdt_v1_palette_grey_hover_text);
69
+ }
70
+
71
+ .focus\:text-grey-100:focus {
72
+ color: var(--zdt_v1_palette_grey_hover_text);
73
+ }
74
+
75
+ .active\:text-grey-100:active {
76
+ color: var(--zdt_v1_palette_grey_hover_text);
77
+ }
78
+
79
+ .selected\:text-grey-100 {
80
+ color: var(--zdt_v1_palette_grey_hover_text);
81
+ }
82
+
83
+ /* Static Blue Palette */
84
+ .text-blue-80 {
85
+ color: var(--zdt_v1_palette_blue_text);
86
+ }
87
+
88
+ .hover\:text-blue-80:hover {
89
+ color: var(--zdt_v1_palette_blue_text);
90
+ }
91
+
92
+ .focus\:text-blue-80:focus {
93
+ color: var(--zdt_v1_palette_blue_text);
94
+ }
95
+
96
+ .active\:text-blue-80:active {
97
+ color: var(--zdt_v1_palette_blue_text);
98
+ }
99
+
100
+ .selected\:text-blue-80 {
101
+ color: var(--zdt_v1_palette_blue_text);
102
+ }
103
+
104
+ .text-blue-100 {
105
+ color: var(--zdt_v1_palette_blue_hover_text);
106
+ }
107
+
108
+ .hover\:text-blue-100:hover {
109
+ color: var(--zdt_v1_palette_blue_hover_text);
110
+ }
111
+
112
+ .focus\:text-blue-100:focus {
113
+ color: var(--zdt_v1_palette_blue_hover_text);
114
+ }
115
+
116
+ .active\:text-blue-100:active {
117
+ color: var(--zdt_v1_palette_blue_hover_text);
118
+ }
119
+
120
+ .selected\:text-blue-100 {
121
+ color: var(--zdt_v1_palette_blue_hover_text);
122
+ }
123
+
124
+ /* Static Green Palette */
125
+ .text-green-80 {
126
+ color: var(--zdt_v1_palette_green_text);
127
+ }
128
+
129
+ .hover\:text-green-80:hover {
130
+ color: var(--zdt_v1_palette_green_text);
131
+ }
132
+
133
+ .focus\:text-green-80:focus {
134
+ color: var(--zdt_v1_palette_green_text);
135
+ }
136
+
137
+ .active\:text-green-80:active {
138
+ color: var(--zdt_v1_palette_green_text);
139
+ }
140
+
141
+ .selected\:text-green-80 {
142
+ color: var(--zdt_v1_palette_green_text);
143
+ }
144
+
145
+ .text-green-100 {
146
+ color: var(--zdt_v1_palette_green_hover_text);
147
+ }
148
+
149
+ .hover\:text-green-100:hover {
150
+ color: var(--zdt_v1_palette_green_hover_text);
151
+ }
152
+
153
+ .focus\:text-green-100:focus {
154
+ color: var(--zdt_v1_palette_green_hover_text);
155
+ }
156
+
157
+ .active\:text-green-100:active {
158
+ color: var(--zdt_v1_palette_green_hover_text);
159
+ }
160
+
161
+ .selected\:text-green-100 {
162
+ color: var(--zdt_v1_palette_green_hover_text);
163
+ }
164
+
165
+ /* Static Orange Palette */
166
+ .text-orange-80 {
167
+ color: var(--zdt_v1_palette_orange_text);
168
+ }
169
+
170
+ .hover\:text-orange-80:hover {
171
+ color: var(--zdt_v1_palette_orange_text);
172
+ }
173
+
174
+ .focus\:text-orange-80:focus {
175
+ color: var(--zdt_v1_palette_orange_text);
176
+ }
177
+
178
+ .active\:text-orange-80:active {
179
+ color: var(--zdt_v1_palette_orange_text);
180
+ }
181
+
182
+ .selected\:text-orange-80 {
183
+ color: var(--zdt_v1_palette_orange_text);
184
+ }
185
+
186
+ .text-orange-100 {
187
+ color: var(--zdt_v1_palette_orange_hover_text);
188
+ }
189
+
190
+ .hover\:text-orange-100:hover {
191
+ color: var(--zdt_v1_palette_orange_hover_text);
192
+ }
193
+
194
+ .focus\:text-orange-100:focus {
195
+ color: var(--zdt_v1_palette_orange_hover_text);
196
+ }
197
+
198
+ .active\:text-orange-100:active {
199
+ color: var(--zdt_v1_palette_orange_hover_text);
200
+ }
201
+
202
+ .selected\:text-orange-100 {
203
+ color: var(--zdt_v1_palette_orange_hover_text);
204
+ }
205
+
206
+ /* Static Red Palette */
207
+ .text-red-70 {
208
+ color: var(--zdt_v1_palette_red_text);
209
+ }
210
+
211
+ .hover\:text-red-70:hover {
212
+ color: var(--zdt_v1_palette_red_text);
213
+ }
214
+
215
+ .focus\:text-red-70:focus {
216
+ color: var(--zdt_v1_palette_red_text);
217
+ }
218
+
219
+ .active\:text-red-70:active {
220
+ color: var(--zdt_v1_palette_red_text);
221
+ }
222
+
223
+ .selected\:text-red-70 {
224
+ color: var(--zdt_v1_palette_red_text);
225
+ }
226
+
227
+ .text-red-100 {
228
+ color: var(--zdt_v1_palette_red_hover_text);
229
+ }
230
+
231
+ .hover\:text-red-100:hover {
232
+ color: var(--zdt_v1_palette_red_hover_text);
233
+ }
234
+
235
+ .focus\:text-red-100:focus {
236
+ color: var(--zdt_v1_palette_red_hover_text);
237
+ }
238
+
239
+ .active\:text-red-100:active {
240
+ color: var(--zdt_v1_palette_red_hover_text);
241
+ }
242
+
243
+ .selected\:text-red-100 {
244
+ color: var(--zdt_v1_palette_red_hover_text);
245
+ }
246
+
247
+ /* Static Yellow Palette */
248
+ .text-yellow-80 {
249
+ color: var(--zdt_v1_palette_yellow_text);
250
+ }
251
+
252
+ .hover\:text-yellow-80:hover {
253
+ color: var(--zdt_v1_palette_yellow_text);
254
+ }
255
+
256
+ .focus\:text-yellow-80:focus {
257
+ color: var(--zdt_v1_palette_yellow_text);
258
+ }
259
+
260
+ .active\:text-yellow-80:active {
261
+ color: var(--zdt_v1_palette_yellow_text);
262
+ }
263
+
264
+ .selected\:text-yellow-80 {
265
+ color: var(--zdt_v1_palette_yellow_text);
266
+ }
267
+
268
+ .text-yellow-100 {
269
+ color: var(--zdt_v1_palette_yellow_hover_text);
270
+ }
271
+
272
+ .hover\:text-yellow-100:hover {
273
+ color: var(--zdt_v1_palette_yellow_hover_text);
274
+ }
275
+
276
+ .focus\:text-yellow-100:focus {
277
+ color: var(--zdt_v1_palette_yellow_hover_text);
278
+ }
279
+
280
+ .active\:text-yellow-100:active {
281
+ color: var(--zdt_v1_palette_yellow_hover_text);
282
+ }
283
+
284
+ .selected\:text-yellow-100 {
285
+ color: var(--zdt_v1_palette_yellow_hover_text);
286
+ }
287
+
288
+ /* Utility Colors */
289
+ .text-transparent {
290
+ color: var(--dot_mirror);
291
+ }
292
+
293
+ .hover\:text-transparent:hover {
294
+ color: var(--dot_mirror);
295
+ }
296
+
297
+ .focus\:text-transparent:focus {
298
+ color: var(--dot_mirror);
299
+ }
300
+
301
+ .active\:text-transparent:active {
302
+ color: var(--dot_mirror);
303
+ }
304
+
305
+ .selected\:text-transparent {
306
+ color: var(--dot_mirror);
307
+ }
308
+
309
+ .text-white {
310
+ color: var(--zdt_v1_palette_white);
311
+ }
312
+
313
+ .hover\:text-white:hover {
314
+ color: var(--zdt_v1_palette_white);
315
+ }
316
+
317
+ .focus\:text-white:focus {
318
+ color: var(--zdt_v1_palette_white);
319
+ }
320
+
321
+ .active\:text-white:active {
322
+ color: var(--zdt_v1_palette_white);
323
+ }
324
+
325
+ .selected\:text-white {
326
+ color: var(--zdt_v1_palette_white);
327
+ }
328
+
329
+ .text-black {
330
+ color: var(--zdt_v1_palette_black);
331
+ }
332
+
333
+ .hover\:text-black:hover {
334
+ color: var(--zdt_v1_palette_black);
335
+ }
336
+
337
+ .focus\:text-black:focus {
338
+ color: var(--zdt_v1_palette_black);
339
+ }
340
+
341
+ .active\:text-black:active {
342
+ color: var(--zdt_v1_palette_black);
343
+ }
344
+
345
+ .selected\:text-black {
346
+ color: var(--zdt_v1_palette_black);
347
+ }
348
+
349
+ /* CTA-aware filled text — adapts to CTA theme */
350
+ .text-brand-filled {
351
+ color: var(--zdt_v1_palette_brand_filled_text);
352
+ }
353
+
354
+ .hover\:text-brand-filled:hover {
355
+ color: var(--zdt_v1_palette_brand_filled_text);
356
+ }
357
+
358
+ .focus\:text-brand-filled:focus {
359
+ color: var(--zdt_v1_palette_brand_filled_text);
360
+ }
361
+
362
+ .active\:text-brand-filled:active {
363
+ color: var(--zdt_v1_palette_brand_filled_text);
364
+ }
365
+
366
+ .selected\:text-brand-filled {
367
+ color: var(--zdt_v1_palette_brand_filled_text);
368
+ }
@@ -1,7 +1,7 @@
1
1
  .varClass {
2
2
  /* avatar default variables */
3
3
  --avatar_text_color: var(--zdt_avatar_default_text);
4
- --avatar_font_size: 14px;
4
+ --avatar_font_size: var(--zd_font_size14);
5
5
  --avatar_bg_color: var(--zdt_avatar_default_bg);
6
6
  --avatar_border_radius: 50%;
7
7
  --avatar_border_width: 0;
@@ -141,31 +141,31 @@
141
141
  }
142
142
 
143
143
  .xxsmall {
144
- --avatar_font_size: 8px;
144
+ --avatar_font_size: var(--zd_font_size8);
145
145
  }
146
146
 
147
147
  .small {
148
- --avatar_font_size: 9px;
148
+ --avatar_font_size: var(--zd_font_size9);
149
149
  }
150
150
 
151
151
  .xsmall {
152
- --avatar_font_size: 12px;
152
+ --avatar_font_size: var(--zd_font_size12);
153
153
  }
154
154
 
155
155
  .medium {
156
- --avatar_font_size: 14px;
156
+ --avatar_font_size: var(--zd_font_size14);
157
157
  }
158
158
 
159
159
  .xmedium {
160
- --avatar_font_size: 14px;
160
+ --avatar_font_size: var(--zd_font_size14);
161
161
  }
162
162
 
163
163
  .large {
164
- --avatar_font_size: 18px;
164
+ --avatar_font_size: var(--zd_font_size18);
165
165
  }
166
166
 
167
167
  .xlarge {
168
- --avatar_font_size: 28px;
168
+ --avatar_font_size: var(--zd_font_size28);
169
169
  }
170
170
 
171
171
  .white {