@dxc-technology/halstack-react 9.0.0 → 9.0.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/BackgroundColorContext.d.ts +2 -2
- package/BackgroundColorContext.js +1 -1
- package/HalstackContext.d.ts +1329 -5
- package/HalstackContext.js +60 -68
- package/accordion/Accordion.js +6 -11
- package/accordion/Accordion.test.js +1 -1
- package/accordion/types.d.ts +3 -3
- package/accordion-group/AccordionGroup.js +2 -2
- package/accordion-group/AccordionGroup.test.js +1 -1
- package/accordion-group/types.d.ts +2 -2
- package/alert/Alert.js +3 -5
- package/alert/Alert.test.js +1 -1
- package/box/Box.js +2 -2
- package/box/Box.test.js +1 -1
- package/button/Button.js +2 -2
- package/button/Button.test.js +1 -1
- package/button/types.d.ts +3 -3
- package/card/Card.js +12 -13
- package/card/Card.stories.tsx +12 -13
- package/card/Card.test.js +1 -1
- package/checkbox/Checkbox.js +3 -3
- package/checkbox/Checkbox.test.js +1 -1
- package/checkbox/types.d.ts +2 -2
- package/chip/Chip.js +2 -4
- package/chip/Chip.test.js +3 -5
- package/common/utils.d.ts +1 -0
- package/common/utils.js +4 -4
- package/common/variables.d.ts +1625 -0
- package/common/variables.js +2 -2
- package/dialog/Dialog.js +1 -1
- package/dialog/Dialog.test.js +24 -24
- package/dialog/types.d.ts +2 -2
- package/dropdown/Dropdown.js +2 -2
- package/dropdown/Dropdown.test.js +3 -2
- package/dropdown/DropdownMenuItem.js +0 -2
- package/dropdown/types.d.ts +3 -3
- package/file-input/FileInput.js +1 -2
- package/file-input/FileInput.test.js +1 -1
- package/footer/Footer.js +6 -8
- package/footer/Footer.test.js +14 -26
- package/header/Header.d.ts +3 -2
- package/header/Header.js +3 -3
- package/header/Header.test.js +2 -2
- package/header/types.d.ts +2 -2
- package/heading/Heading.js +1 -1
- package/heading/Heading.test.js +1 -1
- package/layout/ApplicationLayout.d.ts +1 -1
- package/layout/ApplicationLayout.js +1 -1
- package/link/Link.js +2 -2
- package/link/Link.test.js +2 -4
- package/link/types.d.ts +2 -2
- package/nav-tabs/NavTabs.test.js +1 -1
- package/nav-tabs/Tab.js +7 -7
- package/number-input/NumberInput.test.js +1 -1
- package/package.json +2 -2
- package/paginator/Paginator.js +1 -3
- package/paginator/Paginator.test.js +27 -37
- package/paragraph/Paragraph.d.ts +3 -4
- package/paragraph/Paragraph.js +5 -5
- package/password-input/PasswordInput.test.js +1 -1
- package/progress-bar/ProgressBar.d.ts +2 -2
- package/progress-bar/ProgressBar.js +1 -1
- package/progress-bar/ProgressBar.test.js +1 -1
- package/progress-bar/types.d.ts +4 -3
- package/radio-group/RadioGroup.test.js +1 -1
- package/resultsetTable/ResultsetTable.js +2 -2
- package/resultsetTable/ResultsetTable.test.js +1 -1
- package/resultsetTable/types.d.ts +3 -3
- package/select/Select.js +13 -11
- package/select/Select.test.js +59 -59
- package/sidenav/Sidenav.js +1 -1
- package/slider/Slider.js +2 -3
- package/slider/Slider.test.js +1 -1
- package/slider/types.d.ts +2 -2
- package/spinner/Spinner.js +15 -21
- package/spinner/Spinner.stories.jsx +28 -28
- package/spinner/Spinner.test.js +1 -1
- package/switch/Switch.js +2 -2
- package/switch/Switch.test.js +1 -1
- package/switch/types.d.ts +2 -2
- package/table/Table.js +2 -2
- package/table/Table.test.js +1 -1
- package/tabs/Tab.js +9 -9
- package/tabs/Tabs.js +1 -3
- package/tabs/Tabs.test.js +4 -5
- package/tabs/types.d.ts +2 -2
- package/tag/Tag.js +7 -9
- package/tag/Tag.test.js +1 -1
- package/text-input/Suggestion.js +2 -2
- package/text-input/TextInput.js +3 -3
- package/text-input/TextInput.test.js +1 -2
- package/textarea/Textarea.js +3 -3
- package/textarea/Textarea.test.js +1 -1
- package/toggle-group/ToggleGroup.js +7 -4
- package/toggle-group/ToggleGroup.test.js +1 -1
- package/toggle-group/types.d.ts +1 -1
- package/typography/Typography.d.ts +2 -2
- package/typography/Typography.js +14 -113
- package/typography/Typography.stories.tsx +1 -1
- package/useTheme.d.ts +1234 -1
- package/useTheme.js +1 -1
- package/useTranslatedLabels.d.ts +84 -1
- package/utils/BaseTypography.d.ts +21 -0
- package/utils/BaseTypography.js +108 -0
- package/wizard/Wizard.js +2 -2
- package/wizard/Wizard.test.js +1 -1
- package/wizard/types.d.ts +5 -6
|
@@ -0,0 +1,1625 @@
|
|
|
1
|
+
export declare const globalTokens: {
|
|
2
|
+
inherit: string;
|
|
3
|
+
transparent: string;
|
|
4
|
+
hal_white: string;
|
|
5
|
+
hal_grey_l_95: string;
|
|
6
|
+
hal_grey_l_90: string;
|
|
7
|
+
hal_grey_l_80: string;
|
|
8
|
+
hal_grey_l_75: string;
|
|
9
|
+
hal_grey_l_60: string;
|
|
10
|
+
hal_grey_s_40: string;
|
|
11
|
+
hal_black: string;
|
|
12
|
+
color_grey_800: string;
|
|
13
|
+
color_grey_600: string;
|
|
14
|
+
color_grey_50: string;
|
|
15
|
+
color_grey_a_100: string;
|
|
16
|
+
color_grey_a_200: string;
|
|
17
|
+
color_grey_a_300: string;
|
|
18
|
+
color_grey_a_800: string;
|
|
19
|
+
color_grey_a_900: string;
|
|
20
|
+
hal_purple_l_95: string;
|
|
21
|
+
hal_purple_l_90: string;
|
|
22
|
+
hal_purple_l_65: string;
|
|
23
|
+
hal_purple_s_38: string;
|
|
24
|
+
hal_purple_d_30: string;
|
|
25
|
+
hal_purple_d_20: string;
|
|
26
|
+
hal_purple_d_70: string;
|
|
27
|
+
color_purple_600: string;
|
|
28
|
+
color_purple_300: string;
|
|
29
|
+
hal_blue_l_95: string;
|
|
30
|
+
hal_blue_l_80: string;
|
|
31
|
+
hal_blue_l_50: string;
|
|
32
|
+
hal_blue_l_45: string;
|
|
33
|
+
hal_blue_s_35: string;
|
|
34
|
+
hal_blue_d_20: string;
|
|
35
|
+
color_blue_200: string;
|
|
36
|
+
color_blue_500: string;
|
|
37
|
+
color_blue_50: string;
|
|
38
|
+
hal_red_l_95: string;
|
|
39
|
+
hal_red_l_80: string;
|
|
40
|
+
hal_red_l_60: string;
|
|
41
|
+
hal_red_s_41: string;
|
|
42
|
+
hal_red_d_30: string;
|
|
43
|
+
hal_red_d_20: string;
|
|
44
|
+
color_red_700: string;
|
|
45
|
+
color_red_50: string;
|
|
46
|
+
color_red_600: string;
|
|
47
|
+
hal_green_l_95: string;
|
|
48
|
+
hal_green_l_80: string;
|
|
49
|
+
hal_green_s_39: string;
|
|
50
|
+
hal_green_d_30: string;
|
|
51
|
+
hal_green_d_20: string;
|
|
52
|
+
hal_yellow_l_95: string;
|
|
53
|
+
hal_yellow_l_80: string;
|
|
54
|
+
hal_yellow_s_57: string;
|
|
55
|
+
hal_yellow_d_40: string;
|
|
56
|
+
hal_yellow_d_30: string;
|
|
57
|
+
hal_orange_s_54: string;
|
|
58
|
+
lightBlack: string;
|
|
59
|
+
yellow: string;
|
|
60
|
+
lightGrey: string;
|
|
61
|
+
lightRed: string;
|
|
62
|
+
lightBlue: string;
|
|
63
|
+
lightYellow: string;
|
|
64
|
+
lightPink: string;
|
|
65
|
+
lightGreen: string;
|
|
66
|
+
blue: string;
|
|
67
|
+
lighterGrey: string;
|
|
68
|
+
violet: string;
|
|
69
|
+
darkBlue: string;
|
|
70
|
+
purple: string;
|
|
71
|
+
mediumPurple: string;
|
|
72
|
+
lightPurple: string;
|
|
73
|
+
lighterPurple: string;
|
|
74
|
+
mediumWhite: string;
|
|
75
|
+
softBlue: string;
|
|
76
|
+
darkWhite: string;
|
|
77
|
+
lighterBlack: string;
|
|
78
|
+
mediumBlack: string;
|
|
79
|
+
mediumGreyBlack: string;
|
|
80
|
+
softGrey: string;
|
|
81
|
+
softBlack: string;
|
|
82
|
+
type_sans: string;
|
|
83
|
+
type_scale_root: string;
|
|
84
|
+
type_scale_08: string;
|
|
85
|
+
type_scale_07: string;
|
|
86
|
+
type_scale_06: string;
|
|
87
|
+
type_scale_05: string;
|
|
88
|
+
type_scale_04: string;
|
|
89
|
+
type_scale_03: string;
|
|
90
|
+
type_scale_02: string;
|
|
91
|
+
type_scale_01: string;
|
|
92
|
+
type_light: string;
|
|
93
|
+
type_regular: string;
|
|
94
|
+
type_semibold: string;
|
|
95
|
+
type_bold: string;
|
|
96
|
+
type_italic: string;
|
|
97
|
+
type_normal: string;
|
|
98
|
+
type_spacing_tight_02: string;
|
|
99
|
+
type_spacing_tight_01: string;
|
|
100
|
+
type_spacing_normal: string;
|
|
101
|
+
type_spacing_wide_01: string;
|
|
102
|
+
type_spacing_wide_02: string;
|
|
103
|
+
type_spacing_wide_03: string;
|
|
104
|
+
type_initial: string;
|
|
105
|
+
type_uppercase: string;
|
|
106
|
+
type_no_line: string;
|
|
107
|
+
type_underline: string;
|
|
108
|
+
type_line_through: string;
|
|
109
|
+
type_leading_compact_03: string;
|
|
110
|
+
type_leading_compact_02: string;
|
|
111
|
+
type_leading_compact_01: string;
|
|
112
|
+
type_leading_normal: string;
|
|
113
|
+
type_leading_loose_01: string;
|
|
114
|
+
type_leading_loose_02: string;
|
|
115
|
+
fontSize10: string;
|
|
116
|
+
spacing_00: string;
|
|
117
|
+
spacing_01: string;
|
|
118
|
+
spacing_02: string;
|
|
119
|
+
spacing_03: string;
|
|
120
|
+
spacing_04: string;
|
|
121
|
+
spacing_05: string;
|
|
122
|
+
spacing_06: string;
|
|
123
|
+
spacing_07: string;
|
|
124
|
+
spacing_08: string;
|
|
125
|
+
spacing_09: string;
|
|
126
|
+
spacing_10: string;
|
|
127
|
+
spacing_11: string;
|
|
128
|
+
spacing_12: string;
|
|
129
|
+
spacing_13: string;
|
|
130
|
+
spacing_14: string;
|
|
131
|
+
border_width_0: string;
|
|
132
|
+
border_width_1: string;
|
|
133
|
+
border_width_2: string;
|
|
134
|
+
border_width_4: string;
|
|
135
|
+
border_radius_none: string;
|
|
136
|
+
border_radius_small: string;
|
|
137
|
+
border_radius_medium: string;
|
|
138
|
+
border_radius_large: string;
|
|
139
|
+
border_radius_full: string;
|
|
140
|
+
border_solid: string;
|
|
141
|
+
border_dashed: string;
|
|
142
|
+
border_none: string;
|
|
143
|
+
};
|
|
144
|
+
export declare const componentTokens: {
|
|
145
|
+
accordion: {
|
|
146
|
+
backgroundColor: string;
|
|
147
|
+
hoverBackgroundColor: string;
|
|
148
|
+
arrowColor: string;
|
|
149
|
+
disabledArrowColor: string;
|
|
150
|
+
assistiveTextFontFamily: string;
|
|
151
|
+
assistiveTextFontSize: string;
|
|
152
|
+
assistiveTextFontWeight: string;
|
|
153
|
+
assistiveTextFontStyle: string;
|
|
154
|
+
assistiveTextLetterSpacing: string;
|
|
155
|
+
assistiveTextFontColor: string;
|
|
156
|
+
disabledAssistiveTextFontColor: string;
|
|
157
|
+
assistiveTextMinWidth: string;
|
|
158
|
+
assistiveTextPaddingRight: string;
|
|
159
|
+
assistiveTextPaddingLeft: string;
|
|
160
|
+
titleLabelFontFamily: string;
|
|
161
|
+
titleLabelFontSize: string;
|
|
162
|
+
titleLabelFontWeight: string;
|
|
163
|
+
titleLabelFontStyle: string;
|
|
164
|
+
titleLabelFontColor: string;
|
|
165
|
+
disabledTitleLabelFontColor: string;
|
|
166
|
+
titleLabelPaddingTop: string;
|
|
167
|
+
titleLabelPaddingBottom: string;
|
|
168
|
+
titleLabelPaddingLeft: string;
|
|
169
|
+
titleLabelPaddingRight: string;
|
|
170
|
+
focusBorderColor: string;
|
|
171
|
+
focusBorderStyle: string;
|
|
172
|
+
focusBorderThickness: string;
|
|
173
|
+
borderRadius: string;
|
|
174
|
+
boxShadowOffsetX: string;
|
|
175
|
+
boxShadowOffsetY: string;
|
|
176
|
+
boxShadowBlur: string;
|
|
177
|
+
boxShadowColor: string;
|
|
178
|
+
iconColor: string;
|
|
179
|
+
disabledIconColor: string;
|
|
180
|
+
iconSize: string;
|
|
181
|
+
iconMarginLeft: string;
|
|
182
|
+
iconMarginRigth: string;
|
|
183
|
+
accordionGroupSeparatorBorderColor: string;
|
|
184
|
+
accordionGroupSeparatorBorderThickness: string;
|
|
185
|
+
accordionGroupSeparatorBorderRadius: string;
|
|
186
|
+
accordionGroupSeparatorBorderStyle: string;
|
|
187
|
+
};
|
|
188
|
+
alert: {
|
|
189
|
+
titleFontFamily: string;
|
|
190
|
+
titleFontColor: string;
|
|
191
|
+
titleFontSize: string;
|
|
192
|
+
titleFontStyle: string;
|
|
193
|
+
titleFontWeight: string;
|
|
194
|
+
titleTextTransform: string;
|
|
195
|
+
titlePaddingRight: string;
|
|
196
|
+
titlePaddingLeft: string;
|
|
197
|
+
inlineTextFontFamily: string;
|
|
198
|
+
inlineTextFontColor: string;
|
|
199
|
+
inlineTextFontSize: string;
|
|
200
|
+
inlineTextFontStyle: string;
|
|
201
|
+
inlineTextFontWeight: string;
|
|
202
|
+
inlineTextPaddingLeft: string;
|
|
203
|
+
inlineTextPaddingRight: string;
|
|
204
|
+
contentPaddingLeft: string;
|
|
205
|
+
contentPaddingRight: string;
|
|
206
|
+
contentPaddingTop: string;
|
|
207
|
+
contentPaddingBottom: string;
|
|
208
|
+
borderRadius: string;
|
|
209
|
+
borderStyle: string;
|
|
210
|
+
borderThickness: string;
|
|
211
|
+
infoBorderColor: string;
|
|
212
|
+
successBorderColor: string;
|
|
213
|
+
warningBorderColor: string;
|
|
214
|
+
errorBorderColor: string;
|
|
215
|
+
iconSize: string;
|
|
216
|
+
iconPaddingLeft: string;
|
|
217
|
+
iconPaddingRight: string;
|
|
218
|
+
infoIconColor: string;
|
|
219
|
+
successIconColor: string;
|
|
220
|
+
warningIconColor: string;
|
|
221
|
+
errorIconColor: string;
|
|
222
|
+
infoBackgroundColor: string;
|
|
223
|
+
successBackgroundColor: string;
|
|
224
|
+
warningBackgroundColor: string;
|
|
225
|
+
errorBackgroundColor: string;
|
|
226
|
+
hoverActionBackgroundColor: string;
|
|
227
|
+
activeActionBackgroundColor: string;
|
|
228
|
+
focusActionBorderColor: string;
|
|
229
|
+
overlayColor: string;
|
|
230
|
+
};
|
|
231
|
+
box: {
|
|
232
|
+
backgroundColor: string;
|
|
233
|
+
borderRadius: string;
|
|
234
|
+
borderThickness: string;
|
|
235
|
+
borderStyle: string;
|
|
236
|
+
borderColor: string;
|
|
237
|
+
noneShadowDepthShadowOffsetX: string;
|
|
238
|
+
noneShadowDepthShadowOffsetY: string;
|
|
239
|
+
noneShadowDepthShadowBlur: string;
|
|
240
|
+
noneShadowDepthShadowSpread: string;
|
|
241
|
+
noneShadowDepthShadowColor: string;
|
|
242
|
+
oneShadowDepthShadowOffsetX: string;
|
|
243
|
+
oneShadowDepthShadowOffsetY: string;
|
|
244
|
+
oneShadowDepthShadowBlur: string;
|
|
245
|
+
oneShadowDepthShadowSpread: string;
|
|
246
|
+
oneShadowDepthShadowColor: string;
|
|
247
|
+
twoShadowDepthShadowOffsetX: string;
|
|
248
|
+
twoShadowDepthShadowOffsetY: string;
|
|
249
|
+
twoShadowDepthShadowBlur: string;
|
|
250
|
+
twoShadowDepthShadowSpread: string;
|
|
251
|
+
twoShadowDepthShadowColor: string;
|
|
252
|
+
};
|
|
253
|
+
bulletedList: {
|
|
254
|
+
fontColor: string;
|
|
255
|
+
fontColorOnDark: string;
|
|
256
|
+
bulletIconHeight: string;
|
|
257
|
+
bulletIconWidth: string;
|
|
258
|
+
bulletHeight: string;
|
|
259
|
+
bulletWidth: string;
|
|
260
|
+
bulletMarginRight: string;
|
|
261
|
+
};
|
|
262
|
+
button: {
|
|
263
|
+
labelFontLineHeight: string;
|
|
264
|
+
labelLetterSpacing: string;
|
|
265
|
+
paddingLeft: string;
|
|
266
|
+
paddingRight: string;
|
|
267
|
+
paddingTop: string;
|
|
268
|
+
paddingBottom: string;
|
|
269
|
+
focusBorderColor: string;
|
|
270
|
+
focusBorderColorOnDark: string;
|
|
271
|
+
primaryBackgroundColor: string;
|
|
272
|
+
primaryBackgroundColorOnDark: string;
|
|
273
|
+
primaryFontColor: string;
|
|
274
|
+
primaryFontColorOnDark: string;
|
|
275
|
+
primaryHoverBackgroundColor: string;
|
|
276
|
+
primaryHoverBackgroundColorOnDark: string;
|
|
277
|
+
primaryActiveBackgroundColor: string;
|
|
278
|
+
primaryActiveBackgroundColorOnDark: string;
|
|
279
|
+
primaryDisabledBackgroundColor: string;
|
|
280
|
+
primaryDisabledBackgroundColorOnDark: string;
|
|
281
|
+
primaryDisabledFontColor: string;
|
|
282
|
+
primaryDisabledFontColorOnDark: string;
|
|
283
|
+
primaryBorderThickness: string;
|
|
284
|
+
primaryBorderStyle: string;
|
|
285
|
+
primaryBorderRadius: string;
|
|
286
|
+
primaryFontFamily: string;
|
|
287
|
+
primaryFontSize: string;
|
|
288
|
+
primaryFontWeight: string;
|
|
289
|
+
secondaryBackgroundColor: string;
|
|
290
|
+
secondaryBackgroundColorOnDark: string;
|
|
291
|
+
secondaryFontColor: string;
|
|
292
|
+
secondaryFontColorOnDark: string;
|
|
293
|
+
secondaryHoverFontColor: string;
|
|
294
|
+
secondaryHoverFontColorOnDark: string;
|
|
295
|
+
secondaryBorderColor: string;
|
|
296
|
+
secondaryBorderColorOnDark: string;
|
|
297
|
+
secondaryHoverBackgroundColor: string;
|
|
298
|
+
secondaryHoverBackgroundColorOnDark: string;
|
|
299
|
+
secondaryActiveBackgroundColor: string;
|
|
300
|
+
secondaryActiveBackgroundColorOnDark: string;
|
|
301
|
+
secondaryDisabledBackgroundColor: string;
|
|
302
|
+
secondaryDisabledBackgroundColorOnDark: string;
|
|
303
|
+
secondaryDisabledFontColor: string;
|
|
304
|
+
secondaryDisabledFontColorOnDark: string;
|
|
305
|
+
secondaryDisabledBorderColor: string;
|
|
306
|
+
secondaryDisabledBorderColorOnDark: string;
|
|
307
|
+
secondaryBorderThickness: string;
|
|
308
|
+
secondaryBorderStyle: string;
|
|
309
|
+
secondaryBorderRadius: string;
|
|
310
|
+
secondaryFontFamily: string;
|
|
311
|
+
secondaryFontSize: string;
|
|
312
|
+
secondaryFontWeight: string;
|
|
313
|
+
textBackgroundColor: string;
|
|
314
|
+
textBackgroundColorOnDark: string;
|
|
315
|
+
textFontColor: string;
|
|
316
|
+
textFontColorOnDark: string;
|
|
317
|
+
textHoverBackgroundColor: string;
|
|
318
|
+
textHoverBackgroundColorOnDark: string;
|
|
319
|
+
textActiveBackgroundColor: string;
|
|
320
|
+
textActiveBackgroundColorOnDark: string;
|
|
321
|
+
textDisabledBackgroundColor: string;
|
|
322
|
+
textDisabledBackgroundColorOnDark: string;
|
|
323
|
+
textDisabledFontColor: string;
|
|
324
|
+
textDisabledFontColorOnDark: string;
|
|
325
|
+
textBorderThickness: string;
|
|
326
|
+
textBorderStyle: string;
|
|
327
|
+
textBorderRadius: string;
|
|
328
|
+
textFontFamily: string;
|
|
329
|
+
textFontSize: string;
|
|
330
|
+
textFontWeight: string;
|
|
331
|
+
};
|
|
332
|
+
card: {
|
|
333
|
+
height: string;
|
|
334
|
+
width: string;
|
|
335
|
+
};
|
|
336
|
+
checkbox: {
|
|
337
|
+
backgroundColorChecked: string;
|
|
338
|
+
backgroundColorCheckedOnDark: string;
|
|
339
|
+
hoverBackgroundColorChecked: string;
|
|
340
|
+
hoverBackgroundColorCheckedOnDark: string;
|
|
341
|
+
disabledBackgroundColorChecked: string;
|
|
342
|
+
disabledBackgroundColorCheckedOnDark: string;
|
|
343
|
+
borderColor: string;
|
|
344
|
+
borderColorOnDark: string;
|
|
345
|
+
hoverBorderColor: string;
|
|
346
|
+
hoverBorderColorOnDark: string;
|
|
347
|
+
disabledBorderColor: string;
|
|
348
|
+
disabledBorderColorOnDark: string;
|
|
349
|
+
checkColor: string;
|
|
350
|
+
checkColorOnDark: string;
|
|
351
|
+
disabledCheckColor: string;
|
|
352
|
+
disabledCheckColorOnDark: string;
|
|
353
|
+
fontFamily: string;
|
|
354
|
+
fontSize: string;
|
|
355
|
+
fontWeight: string;
|
|
356
|
+
fontColor: string;
|
|
357
|
+
fontColorOnDark: string;
|
|
358
|
+
disabledFontColor: string;
|
|
359
|
+
disabledFontColorOnDark: string;
|
|
360
|
+
focusColor: string;
|
|
361
|
+
focusColorOnDark: string;
|
|
362
|
+
checkLabelSpacing: string;
|
|
363
|
+
};
|
|
364
|
+
chip: {
|
|
365
|
+
backgroundColor: string;
|
|
366
|
+
disabledBackgroundColor: string;
|
|
367
|
+
fontFamily: string;
|
|
368
|
+
fontSize: string;
|
|
369
|
+
fontStyle: string;
|
|
370
|
+
fontWeight: string;
|
|
371
|
+
fontColor: string;
|
|
372
|
+
disabledFontColor: string;
|
|
373
|
+
borderColor: string;
|
|
374
|
+
borderRadius: string;
|
|
375
|
+
borderThickness: string;
|
|
376
|
+
borderStyle: string;
|
|
377
|
+
contentPaddingLeft: string;
|
|
378
|
+
contentPaddingRight: string;
|
|
379
|
+
contentPaddingTop: string;
|
|
380
|
+
contentPaddingBottom: string;
|
|
381
|
+
iconSize: string;
|
|
382
|
+
iconSpacing: string;
|
|
383
|
+
iconColor: string;
|
|
384
|
+
hoverIconColor: string;
|
|
385
|
+
activeIconColor: string;
|
|
386
|
+
disabledIconColor: string;
|
|
387
|
+
focusColor: string;
|
|
388
|
+
focusBorderStyle: string;
|
|
389
|
+
focusBorderThickness: string;
|
|
390
|
+
focusBorderRadius: string;
|
|
391
|
+
};
|
|
392
|
+
dateInput: {
|
|
393
|
+
pickerBackgroundColor: string;
|
|
394
|
+
pickerFontColor: string;
|
|
395
|
+
pickerBorderColor: string;
|
|
396
|
+
pickerSelectedBackgroundColor: string;
|
|
397
|
+
pickerSelectedFontColor: string;
|
|
398
|
+
pickerHoverBackgroundColor: string;
|
|
399
|
+
pickerHoverFontColor: string;
|
|
400
|
+
pickerActiveBackgroundColor: string;
|
|
401
|
+
pickerActiveFontColor: string;
|
|
402
|
+
pickerNonCurrentMonthFontColor: string;
|
|
403
|
+
pickerCurrentDateBorderColor: string;
|
|
404
|
+
pickerCurrentDateFontColor: string;
|
|
405
|
+
pickerCurrentYearFontColor: string;
|
|
406
|
+
pickerHeaderBackgroundColor: string;
|
|
407
|
+
pickerHeaderFontColor: string;
|
|
408
|
+
pickerHeaderHoverBackgroundColor: string;
|
|
409
|
+
pickerHeaderHoverFontColor: string;
|
|
410
|
+
pickerHeaderActiveBackgroundColor: string;
|
|
411
|
+
pickerHeaderActiveFontColor: string;
|
|
412
|
+
pickerFocusColor: string;
|
|
413
|
+
pickerBorderWidth: string;
|
|
414
|
+
pickerBorderStyle: string;
|
|
415
|
+
pickerFocusWidth: string;
|
|
416
|
+
pickerCurrentDateBorderWidth: string;
|
|
417
|
+
pickerFontFamily: string;
|
|
418
|
+
pickerFontSize: string;
|
|
419
|
+
pickerFontWeight: string;
|
|
420
|
+
pickerInteractedYearFontSize: string;
|
|
421
|
+
pickerHeaderFontSize: string;
|
|
422
|
+
};
|
|
423
|
+
dialog: {
|
|
424
|
+
overlayColor: string;
|
|
425
|
+
backgroundColor: string;
|
|
426
|
+
closeIconWidth: string;
|
|
427
|
+
closeIconHeight: string;
|
|
428
|
+
closeIconTopPosition: string;
|
|
429
|
+
closeIconRightPosition: string;
|
|
430
|
+
closeIconBackgroundColor: string;
|
|
431
|
+
closeIconBorderColor: string;
|
|
432
|
+
closeIconColor: string;
|
|
433
|
+
closeIconBorderThickness: string;
|
|
434
|
+
closeIconBorderStyle: string;
|
|
435
|
+
closeIconBorderRadius: string;
|
|
436
|
+
boxShadowOffsetX: string;
|
|
437
|
+
boxShadowOffsetY: string;
|
|
438
|
+
boxShadowBlur: string;
|
|
439
|
+
boxShadowColor: string;
|
|
440
|
+
};
|
|
441
|
+
dropdown: {
|
|
442
|
+
buttonBackgroundColor: string;
|
|
443
|
+
hoverButtonBackgroundColor: string;
|
|
444
|
+
activeButtonBackgroundColor: string;
|
|
445
|
+
buttonFontFamily: string;
|
|
446
|
+
buttonFontSize: string;
|
|
447
|
+
buttonFontStyle: string;
|
|
448
|
+
buttonFontWeight: string;
|
|
449
|
+
buttonFontColor: string;
|
|
450
|
+
buttonIconSize: string;
|
|
451
|
+
buttonIconSpacing: string;
|
|
452
|
+
buttonIconColor: string;
|
|
453
|
+
buttonPaddingTop: string;
|
|
454
|
+
buttonPaddingBottom: string;
|
|
455
|
+
buttonPaddingLeft: string;
|
|
456
|
+
buttonPaddingRight: string;
|
|
457
|
+
disabledColor: string;
|
|
458
|
+
disabledButtonBackgroundColor: string;
|
|
459
|
+
disabledBorderColor: string;
|
|
460
|
+
optionBackgroundColor: string;
|
|
461
|
+
hoverOptionBackgroundColor: string;
|
|
462
|
+
activeOptionBackgroundColor: string;
|
|
463
|
+
optionFontFamily: string;
|
|
464
|
+
optionFontSize: string;
|
|
465
|
+
optionFontStyle: string;
|
|
466
|
+
optionFontWeight: string;
|
|
467
|
+
optionFontColor: string;
|
|
468
|
+
optionIconSize: string;
|
|
469
|
+
optionIconSpacing: string;
|
|
470
|
+
optionIconColor: string;
|
|
471
|
+
optionPaddingTop: string;
|
|
472
|
+
optionPaddingBottom: string;
|
|
473
|
+
optionPaddingLeft: string;
|
|
474
|
+
optionPaddingRight: string;
|
|
475
|
+
caretIconSize: string;
|
|
476
|
+
caretIconColor: string;
|
|
477
|
+
caretIconSpacing: string;
|
|
478
|
+
borderRadius: string;
|
|
479
|
+
borderStyle: string;
|
|
480
|
+
borderThickness: string;
|
|
481
|
+
borderColor: string;
|
|
482
|
+
scrollBarThumbColor: string;
|
|
483
|
+
scrollBarTrackColor: string;
|
|
484
|
+
focusColor: string;
|
|
485
|
+
};
|
|
486
|
+
fileInput: {
|
|
487
|
+
dropBorderColor: string;
|
|
488
|
+
fileItemBorderColor: string;
|
|
489
|
+
fileNameFontColor: string;
|
|
490
|
+
labelFontColor: string;
|
|
491
|
+
helperTextFontColor: string;
|
|
492
|
+
dropLabelFontColor: string;
|
|
493
|
+
disabledLabelFontColor: string;
|
|
494
|
+
disabledHelperTextFontcolor: string;
|
|
495
|
+
disabledDropLabelFontColor: string;
|
|
496
|
+
focusDropBorderColor: string;
|
|
497
|
+
disabledDropBorderColor: string;
|
|
498
|
+
dragoverDropBackgroundColor: string;
|
|
499
|
+
activeFileItemIconBackgrounColor: string;
|
|
500
|
+
errorFileItemBorderColor: string;
|
|
501
|
+
errorFileItemBackgroundColor: string;
|
|
502
|
+
errorFilePreviewBackgroundColor: string;
|
|
503
|
+
errorFileItemIconColor: string;
|
|
504
|
+
fileItemIconBackgroundColor: string;
|
|
505
|
+
deleteFileItemColor: string;
|
|
506
|
+
errorMessageFontColor: string;
|
|
507
|
+
labelFontFamily: string;
|
|
508
|
+
labelFontSize: string;
|
|
509
|
+
labelFontWeight: string;
|
|
510
|
+
labelLineHeight: string;
|
|
511
|
+
fileItemFontFamily: string;
|
|
512
|
+
fileItemFontSize: string;
|
|
513
|
+
fileItemFontWeight: string;
|
|
514
|
+
fileItemLineHeight: string;
|
|
515
|
+
helperTextFontFamily: string;
|
|
516
|
+
helperTextFontSize: string;
|
|
517
|
+
helperTextFontWeight: string;
|
|
518
|
+
helperTextLineHeight: string;
|
|
519
|
+
dropLabelFontFamily: string;
|
|
520
|
+
dropLabelFontSize: string;
|
|
521
|
+
dropLabelFontWeight: string;
|
|
522
|
+
errorMessageFontFamily: string;
|
|
523
|
+
errorMessageFontSize: string;
|
|
524
|
+
errorMessageFontWeight: string;
|
|
525
|
+
errorMessageLineHeight: string;
|
|
526
|
+
dropBorderThickness: string;
|
|
527
|
+
dropBorderStyle: string;
|
|
528
|
+
dropBorderRadius: string;
|
|
529
|
+
fileItemBorderThickness: string;
|
|
530
|
+
fileItemBorderStyle: string;
|
|
531
|
+
fileItemBorderRadius: string;
|
|
532
|
+
hoverDeleteFileItemBackgroundColor: string;
|
|
533
|
+
activeDeleteFileItemBackgroundColor: string;
|
|
534
|
+
focusDeleteFileItemBorderColor: string;
|
|
535
|
+
filePreviewBackgroundColor: string;
|
|
536
|
+
filePreviewIconColor: string;
|
|
537
|
+
errorFilePreviewIconColor: string;
|
|
538
|
+
};
|
|
539
|
+
footer: {
|
|
540
|
+
height: string;
|
|
541
|
+
backgroundColor: string;
|
|
542
|
+
bottomLinksDividerColor: string;
|
|
543
|
+
bottomLinksDividerThickness: string;
|
|
544
|
+
bottomLinksDividerStyle: string;
|
|
545
|
+
bottomLinksDividerSpacing: string;
|
|
546
|
+
bottomLinksFontFamily: string;
|
|
547
|
+
bottomLinksFontSize: string;
|
|
548
|
+
bottomLinksFontStyle: string;
|
|
549
|
+
bottomLinksFontWeight: string;
|
|
550
|
+
bottomLinksFontColor: string;
|
|
551
|
+
bottomLinksTextDecoration: string;
|
|
552
|
+
copyrightFontFamily: string;
|
|
553
|
+
copyrightFontSize: string;
|
|
554
|
+
copyrightFontStyle: string;
|
|
555
|
+
copyrightFontWeight: string;
|
|
556
|
+
copyrightFontColor: string;
|
|
557
|
+
logo: string;
|
|
558
|
+
logoHeight: string;
|
|
559
|
+
logoWidth: string;
|
|
560
|
+
socialLinksSize: string;
|
|
561
|
+
socialLinksGutter: string;
|
|
562
|
+
socialLinksColor: string;
|
|
563
|
+
};
|
|
564
|
+
header: {
|
|
565
|
+
backgroundColor: string;
|
|
566
|
+
hamburguerFocusColor: string;
|
|
567
|
+
hamburguerFontFamily: string;
|
|
568
|
+
hamburguerFontStyle: string;
|
|
569
|
+
hamburguerFontColor: string;
|
|
570
|
+
hamburguerFontSize: string;
|
|
571
|
+
hamburguerFontWeight: string;
|
|
572
|
+
hamburguerTextTransform: string;
|
|
573
|
+
hamburguerIconColor: string;
|
|
574
|
+
hamburguerHoverColor: string;
|
|
575
|
+
logo: string;
|
|
576
|
+
logoResponsive: string;
|
|
577
|
+
logoHeight: string;
|
|
578
|
+
logoWidth: string;
|
|
579
|
+
menuBackgroundColor: string;
|
|
580
|
+
menuZindex: string;
|
|
581
|
+
menuTabletWidth: string;
|
|
582
|
+
menuMobileWidth: string;
|
|
583
|
+
minHeight: string;
|
|
584
|
+
overlayColor: string;
|
|
585
|
+
overlayOpacity: string;
|
|
586
|
+
overlayZindex: string;
|
|
587
|
+
paddingTop: string;
|
|
588
|
+
paddingBottom: string;
|
|
589
|
+
paddingRight: string;
|
|
590
|
+
paddingLeft: string;
|
|
591
|
+
underlinedColor: string;
|
|
592
|
+
underlinedThickness: string;
|
|
593
|
+
underlinedStyle: string;
|
|
594
|
+
contentColor: string;
|
|
595
|
+
contentColorOnDark: string;
|
|
596
|
+
};
|
|
597
|
+
heading: {
|
|
598
|
+
level1FontColor: string;
|
|
599
|
+
level1FontFamily: string;
|
|
600
|
+
level1FontSize: string;
|
|
601
|
+
level1FontStyle: string;
|
|
602
|
+
level1FontWeight: string;
|
|
603
|
+
level1LineHeight: string;
|
|
604
|
+
level1LetterSpacing: string;
|
|
605
|
+
level2FontColor: string;
|
|
606
|
+
level2FontFamily: string;
|
|
607
|
+
level2FontSize: string;
|
|
608
|
+
level2FontStyle: string;
|
|
609
|
+
level2FontWeight: string;
|
|
610
|
+
level2LineHeight: string;
|
|
611
|
+
level2LetterSpacing: string;
|
|
612
|
+
level3FontColor: string;
|
|
613
|
+
level3FontFamily: string;
|
|
614
|
+
level3FontSize: string;
|
|
615
|
+
level3FontStyle: string;
|
|
616
|
+
level3FontWeight: string;
|
|
617
|
+
level3LineHeight: string;
|
|
618
|
+
level3LetterSpacing: string;
|
|
619
|
+
level4FontColor: string;
|
|
620
|
+
level4FontFamily: string;
|
|
621
|
+
level4FontSize: string;
|
|
622
|
+
level4FontStyle: string;
|
|
623
|
+
level4FontWeight: string;
|
|
624
|
+
level4LineHeight: string;
|
|
625
|
+
level4LetterSpacing: string;
|
|
626
|
+
level5FontColor: string;
|
|
627
|
+
level5FontFamily: string;
|
|
628
|
+
level5FontSize: string;
|
|
629
|
+
level5FontStyle: string;
|
|
630
|
+
level5FontWeight: string;
|
|
631
|
+
level5LineHeight: string;
|
|
632
|
+
level5LetterSpacing: string;
|
|
633
|
+
};
|
|
634
|
+
link: {
|
|
635
|
+
fontColor: string;
|
|
636
|
+
fontFamily: string;
|
|
637
|
+
fontSize: string;
|
|
638
|
+
fontStyle: string;
|
|
639
|
+
fontWeight: string;
|
|
640
|
+
iconSize: string;
|
|
641
|
+
iconSpacing: string;
|
|
642
|
+
underlineSpacing: string;
|
|
643
|
+
underlineStyle: string;
|
|
644
|
+
underlineThickness: string;
|
|
645
|
+
disabledColor: string;
|
|
646
|
+
hoverFontColor: string;
|
|
647
|
+
hoverUnderlineColor: string;
|
|
648
|
+
visitedFontColor: string;
|
|
649
|
+
visitedUnderlineColor: string;
|
|
650
|
+
activeFontColor: string;
|
|
651
|
+
activeUnderlineColor: string;
|
|
652
|
+
focusColor: string;
|
|
653
|
+
};
|
|
654
|
+
navTabs: {
|
|
655
|
+
selectedBackgroundColor: string;
|
|
656
|
+
unselectedBackgroundColor: string;
|
|
657
|
+
hoverBackgroundColor: string;
|
|
658
|
+
pressedBackgroundColor: string;
|
|
659
|
+
selectedFontColor: string;
|
|
660
|
+
unselectedFontColor: string;
|
|
661
|
+
disabledFontColor: string;
|
|
662
|
+
focusOutline: string;
|
|
663
|
+
selectedUnderlineColor: string;
|
|
664
|
+
dividerColor: string;
|
|
665
|
+
fontFamily: string;
|
|
666
|
+
fontSize: string;
|
|
667
|
+
fontStyle: string;
|
|
668
|
+
fontWeight: string;
|
|
669
|
+
selectedIconColor: string;
|
|
670
|
+
unselectedIconColor: string;
|
|
671
|
+
disabledIconColor: string;
|
|
672
|
+
};
|
|
673
|
+
paginator: {
|
|
674
|
+
backgroundColor: string;
|
|
675
|
+
fontColor: string;
|
|
676
|
+
fontFamily: string;
|
|
677
|
+
fontSize: string;
|
|
678
|
+
fontStyle: string;
|
|
679
|
+
fontWeight: string;
|
|
680
|
+
fontTextTransform: string;
|
|
681
|
+
verticalPadding: string;
|
|
682
|
+
horizontalPadding: string;
|
|
683
|
+
marginRight: string;
|
|
684
|
+
marginLeft: string;
|
|
685
|
+
itemsPerPageSelectorMarginLeft: string;
|
|
686
|
+
itemsPerPageSelectorMarginRight: string;
|
|
687
|
+
pageSelectorMarginRight: string;
|
|
688
|
+
pageSelectorMarginLeft: string;
|
|
689
|
+
totalItemsContainerMarginRight: string;
|
|
690
|
+
totalItemsContainerMarginLeft: string;
|
|
691
|
+
};
|
|
692
|
+
paragraph: {
|
|
693
|
+
fontColor: string;
|
|
694
|
+
fontColorOnDark: string;
|
|
695
|
+
display: string;
|
|
696
|
+
fontSize: string;
|
|
697
|
+
fontWeight: string;
|
|
698
|
+
};
|
|
699
|
+
progressBar: {
|
|
700
|
+
trackLineColor: string;
|
|
701
|
+
trackLineColorOnDark: string;
|
|
702
|
+
totalLineColor: string;
|
|
703
|
+
labelFontFamily: string;
|
|
704
|
+
labelFontSize: string;
|
|
705
|
+
labelFontStyle: string;
|
|
706
|
+
labelFontWeight: string;
|
|
707
|
+
labelFontColor: string;
|
|
708
|
+
labelFontColorOnDark: string;
|
|
709
|
+
labelFontTextTransform: string;
|
|
710
|
+
valueFontFamily: string;
|
|
711
|
+
valueFontSize: string;
|
|
712
|
+
valueFontStyle: string;
|
|
713
|
+
valueFontWeight: string;
|
|
714
|
+
valueFontColor: string;
|
|
715
|
+
valueFontColorOnDark: string;
|
|
716
|
+
valueFontTextTransform: string;
|
|
717
|
+
helperTextFontColor: string;
|
|
718
|
+
helperTextFontColorOnDark: string;
|
|
719
|
+
helperTextFontSize: string;
|
|
720
|
+
helperTextFontStyle: string;
|
|
721
|
+
helperTextFontWeight: string;
|
|
722
|
+
helperTextFontFamily: string;
|
|
723
|
+
thickness: string;
|
|
724
|
+
borderRadius: string;
|
|
725
|
+
overlayColor: string;
|
|
726
|
+
overlayFontColor: string;
|
|
727
|
+
};
|
|
728
|
+
quickNav: {
|
|
729
|
+
fontColor: string;
|
|
730
|
+
hoverFontColor: string;
|
|
731
|
+
dividerBorderColor: string;
|
|
732
|
+
focusBorderColor: string;
|
|
733
|
+
focusBorderStyle: string;
|
|
734
|
+
focusBorderThickness: string;
|
|
735
|
+
focusBorderRadius: string;
|
|
736
|
+
paddingTop: string;
|
|
737
|
+
paddingBottom: string;
|
|
738
|
+
paddingLeft: string;
|
|
739
|
+
paddingRight: string;
|
|
740
|
+
fontFamily: string;
|
|
741
|
+
fontSize: string;
|
|
742
|
+
fontStyle: string;
|
|
743
|
+
fontWeight: string;
|
|
744
|
+
};
|
|
745
|
+
radioGroup: {
|
|
746
|
+
fontFamily: string;
|
|
747
|
+
radioInputColor: string;
|
|
748
|
+
hoverRadioInputColor: string;
|
|
749
|
+
focusBorderColor: string;
|
|
750
|
+
activeRadioInputColor: string;
|
|
751
|
+
errorRadioInputColor: string;
|
|
752
|
+
hoverErrorRadioInputColor: string;
|
|
753
|
+
activeErrorRadioInputColor: string;
|
|
754
|
+
readonlyRadioInputColor: string;
|
|
755
|
+
hoverReadonlyRadioInputColor: string;
|
|
756
|
+
activeReadonlyRadioInputColor: string;
|
|
757
|
+
disabledRadioInputColor: string;
|
|
758
|
+
disabledLabelFontColor: string;
|
|
759
|
+
disabledHelperTextFontColor: string;
|
|
760
|
+
disabledRadioInputLabelFontColor: string;
|
|
761
|
+
errorMessageColor: string;
|
|
762
|
+
labelFontColor: string;
|
|
763
|
+
labelFontSize: string;
|
|
764
|
+
labelFontStyle: string;
|
|
765
|
+
labelFontWeight: string;
|
|
766
|
+
labelLineHeight: string;
|
|
767
|
+
optionalLabelFontWeight: string;
|
|
768
|
+
helperTextFontColor: string;
|
|
769
|
+
helperTextFontSize: string;
|
|
770
|
+
helperTextFontStyle: string;
|
|
771
|
+
helperTextFontWeight: string;
|
|
772
|
+
helperTextLineHeight: string;
|
|
773
|
+
radioInputLabelFontColor: string;
|
|
774
|
+
radioInputLabelFontSize: string;
|
|
775
|
+
radioInputLabelFontStyle: string;
|
|
776
|
+
radioInputLabelFontWeight: string;
|
|
777
|
+
radioInputLabelLineHeight: string;
|
|
778
|
+
groupLabelMargin: string;
|
|
779
|
+
radioInputLabelMargin: string;
|
|
780
|
+
groupVerticalGutter: string;
|
|
781
|
+
groupHorizontalGutter: string;
|
|
782
|
+
};
|
|
783
|
+
select: {
|
|
784
|
+
fontFamily: string;
|
|
785
|
+
disabledColor: string;
|
|
786
|
+
enabledInputBorderColor: string;
|
|
787
|
+
hoverInputBorderColor: string;
|
|
788
|
+
focusInputBorderColor: string;
|
|
789
|
+
errorInputBorderColor: string;
|
|
790
|
+
hoverInputErrorBorderColor: string;
|
|
791
|
+
disabledInputBorderColor: string;
|
|
792
|
+
disabledInputBackgroundColor: string;
|
|
793
|
+
inputMarginTop: string;
|
|
794
|
+
inputMarginBottom: string;
|
|
795
|
+
errorMessageColor: string;
|
|
796
|
+
errorIconColor: string;
|
|
797
|
+
labelFontColor: string;
|
|
798
|
+
labelFontSize: string;
|
|
799
|
+
labelFontStyle: string;
|
|
800
|
+
labelFontWeight: string;
|
|
801
|
+
labelLineHeight: string;
|
|
802
|
+
optionalLabelFontWeight: string;
|
|
803
|
+
helperTextFontColor: string;
|
|
804
|
+
helperTextFontSize: string;
|
|
805
|
+
helperTextFontStyle: string;
|
|
806
|
+
helperTextFontWeight: string;
|
|
807
|
+
helperTextLineHeight: string;
|
|
808
|
+
placeholderFontColor: string;
|
|
809
|
+
valueFontColor: string;
|
|
810
|
+
valueFontSize: string;
|
|
811
|
+
valueFontStyle: string;
|
|
812
|
+
valueFontWeight: string;
|
|
813
|
+
actionIconColor: string;
|
|
814
|
+
hoverActionIconColor: string;
|
|
815
|
+
activeActionIconColor: string;
|
|
816
|
+
actionBackgroundColor: string;
|
|
817
|
+
hoverActionBackgroundColor: string;
|
|
818
|
+
activeActionBackgroundColor: string;
|
|
819
|
+
listOptionFontColor: string;
|
|
820
|
+
listOptionFontSize: string;
|
|
821
|
+
listOptionFontStyle: string;
|
|
822
|
+
listOptionFontWeight: string;
|
|
823
|
+
listOptionIconColor: string;
|
|
824
|
+
listOptionDividerColor: string;
|
|
825
|
+
listGroupLabelFontWeight: string;
|
|
826
|
+
focusListOptionBorderColor: string;
|
|
827
|
+
systemMessageFontColor: string;
|
|
828
|
+
collapseIndicatorColor: string;
|
|
829
|
+
listDialogBackgroundColor: string;
|
|
830
|
+
listDialogBorderColor: string;
|
|
831
|
+
selectedListOptionBackgroundColor: string;
|
|
832
|
+
selectedHoverListOptionBackgroundColor: string;
|
|
833
|
+
selectedActiveListOptionBackgroundColor: string;
|
|
834
|
+
selectedListOptionIconColor: string;
|
|
835
|
+
unselectedHoverListOptionBackgroundColor: string;
|
|
836
|
+
unselectedActiveListOptionBackgroundColor: string;
|
|
837
|
+
selectionIndicatorFontColor: string;
|
|
838
|
+
selectionIndicatorFontSize: string;
|
|
839
|
+
selectionIndicatorFontStyle: string;
|
|
840
|
+
selectionIndicatorFontWeight: string;
|
|
841
|
+
selectionIndicatorBorderColor: string;
|
|
842
|
+
selectionIndicatorBackgroundColor: string;
|
|
843
|
+
enabledSelectionIndicatorActionBackgroundColor: string;
|
|
844
|
+
enabledSelectionIndicatorActionIconColor: string;
|
|
845
|
+
hoverSelectionIndicatorActionBackgroundColor: string;
|
|
846
|
+
hoverSelectionIndicatorActionIconColor: string;
|
|
847
|
+
activeSelectionIndicatorActionBackgroundColor: string;
|
|
848
|
+
activeSelectionIndicatorActionIconColor: string;
|
|
849
|
+
};
|
|
850
|
+
sidenav: {
|
|
851
|
+
backgroundColor: string;
|
|
852
|
+
titleFontFamily: string;
|
|
853
|
+
titleFontSize: string;
|
|
854
|
+
titleFontStyle: string;
|
|
855
|
+
titleFontWeight: string;
|
|
856
|
+
titleFontColor: string;
|
|
857
|
+
titleFontTextTransform: string;
|
|
858
|
+
titleFontLetterSpacing: string;
|
|
859
|
+
groupTitleFontFamily: string;
|
|
860
|
+
groupTitleFontSize: string;
|
|
861
|
+
groupTitleFontStyle: string;
|
|
862
|
+
groupTitleFontWeight: string;
|
|
863
|
+
groupTitleFontColor: string;
|
|
864
|
+
groupTitleHoverBackgroundColor: string;
|
|
865
|
+
groupTitleActiveBackgroundColor: string;
|
|
866
|
+
groupTitleSelectedFontColor: string;
|
|
867
|
+
groupTitleSelectedBackgroundColor: string;
|
|
868
|
+
groupTitleSelectedHoverFontColor: string;
|
|
869
|
+
groupTitleSelectedHoverBackgroundColor: string;
|
|
870
|
+
groupTitleFontTextTransform: string;
|
|
871
|
+
groupTitleFontLetterSpacing: string;
|
|
872
|
+
linkFontFamily: string;
|
|
873
|
+
linkFontSize: string;
|
|
874
|
+
linkFontStyle: string;
|
|
875
|
+
linkFontWeight: string;
|
|
876
|
+
linkFontColor: string;
|
|
877
|
+
linkHoverBackgroundColor: string;
|
|
878
|
+
linkSelectedFontColor: string;
|
|
879
|
+
linkSelectedBackgroundColor: string;
|
|
880
|
+
linkSelectedHoverFontColor: string;
|
|
881
|
+
linkSelectedHoverBackgroundColor: string;
|
|
882
|
+
linkFontTextTransform: string;
|
|
883
|
+
linkFontLetterSpacing: string;
|
|
884
|
+
linkTextDecoration: string;
|
|
885
|
+
linkMarginTop: string;
|
|
886
|
+
linkMarginBottom: string;
|
|
887
|
+
linkMarginRight: string;
|
|
888
|
+
linkMarginLeft: string;
|
|
889
|
+
linkFocusColor: string;
|
|
890
|
+
scrollBarThumbColor: string;
|
|
891
|
+
scrollBarTrackColor: string;
|
|
892
|
+
};
|
|
893
|
+
slider: {
|
|
894
|
+
fontFamily: string;
|
|
895
|
+
limitValuesFontColor: string;
|
|
896
|
+
limitValuesFontColorOnDark: string;
|
|
897
|
+
limitValuesFontSize: string;
|
|
898
|
+
limitValuesFontStyle: string;
|
|
899
|
+
limitValuesFontWeight: string;
|
|
900
|
+
limitValuesFontLetterSpacing: string;
|
|
901
|
+
disabledLimitValuesFontColor: string;
|
|
902
|
+
labelFontFamily: string;
|
|
903
|
+
labelFontSize: string;
|
|
904
|
+
labelFontStyle: string;
|
|
905
|
+
labelFontWeight: string;
|
|
906
|
+
labelLineHeight: string;
|
|
907
|
+
helperTextFontFamily: string;
|
|
908
|
+
helperTextFontSize: string;
|
|
909
|
+
helperTextFontStyle: string;
|
|
910
|
+
helperTextFontWeight: string;
|
|
911
|
+
helperTextLineHeight: string;
|
|
912
|
+
fontColor: string;
|
|
913
|
+
fontColorOnDark: string;
|
|
914
|
+
labelFontColor: string;
|
|
915
|
+
labelFontColorOnDark: string;
|
|
916
|
+
helperTextFontColor: string;
|
|
917
|
+
helperTextFontColorOnDark: string;
|
|
918
|
+
disabledLabelFontColor: string;
|
|
919
|
+
disabledLabelFontColorOnDark: string;
|
|
920
|
+
disabledHelperTextFontColor: string;
|
|
921
|
+
disabledHelperTextFontColorOnDark: string;
|
|
922
|
+
thumbHeight: string;
|
|
923
|
+
thumbWidth: string;
|
|
924
|
+
hoverThumbHeight: string;
|
|
925
|
+
hoverThumbWidth: string;
|
|
926
|
+
thumbVerticalPosition: string;
|
|
927
|
+
hoverThumbVerticalPosition: string;
|
|
928
|
+
thumbBackgroundColor: string;
|
|
929
|
+
thumbBackgroundColorOnDark: string;
|
|
930
|
+
hoverThumbScale: string;
|
|
931
|
+
hoverThumbBackgroundColor: string;
|
|
932
|
+
hoverThumbBackgroundColorOnDark: string;
|
|
933
|
+
activeThumbScale: string;
|
|
934
|
+
activeThumbBackgroundColor: string;
|
|
935
|
+
activeThumbBackgroundColorOnDark: string;
|
|
936
|
+
focusThumbBackgroundColor: string;
|
|
937
|
+
focusThumbBackgroundColorOnDark: string;
|
|
938
|
+
tickHeight: string;
|
|
939
|
+
tickWidth: string;
|
|
940
|
+
tickVerticalPosition: string;
|
|
941
|
+
tickBackgroundColor: string;
|
|
942
|
+
tickBackgroundColorOnDark: string;
|
|
943
|
+
trackLineThickness: string;
|
|
944
|
+
trackLineVerticalPosition: string;
|
|
945
|
+
trackLineColor: string;
|
|
946
|
+
trackLineColorOnDark: string;
|
|
947
|
+
totalLineThickness: string;
|
|
948
|
+
totalLineVerticalPosition: string;
|
|
949
|
+
totalLineColor: string;
|
|
950
|
+
totalLineColorOnDark: string;
|
|
951
|
+
disabledThumbVerticalPosition: string;
|
|
952
|
+
disabledThumbBackgroundColor: string;
|
|
953
|
+
disabledThumbBackgroundColorOnDark: string;
|
|
954
|
+
disabledTickVerticalPosition: string;
|
|
955
|
+
disabledTickBackgroundColor: string;
|
|
956
|
+
disabledTickBackgroundColorOnDark: string;
|
|
957
|
+
disabledTrackLineColor: string;
|
|
958
|
+
disabledTrackLineColorOnDark: string;
|
|
959
|
+
disabledTotalLineColor: string;
|
|
960
|
+
disabledTotalLineColorOnDark: string;
|
|
961
|
+
focusColor: string;
|
|
962
|
+
focusColorOnDark: string;
|
|
963
|
+
floorLabelMarginRight: string;
|
|
964
|
+
ceilLabelMarginLeft: string;
|
|
965
|
+
inputMarginLeft: string;
|
|
966
|
+
};
|
|
967
|
+
spinner: {
|
|
968
|
+
trackCircleColor: string;
|
|
969
|
+
trackCircleColorOverlay: string;
|
|
970
|
+
totalCircleColor: string;
|
|
971
|
+
labelFontFamily: string;
|
|
972
|
+
labelFontSize: string;
|
|
973
|
+
labelFontStyle: string;
|
|
974
|
+
labelFontWeight: string;
|
|
975
|
+
labelFontColor: string;
|
|
976
|
+
labelFontColorOnDark: string;
|
|
977
|
+
labelTextAlign: string;
|
|
978
|
+
progressValueFontFamily: string;
|
|
979
|
+
progressValueFontSize: string;
|
|
980
|
+
progressValueFontStyle: string;
|
|
981
|
+
progressValueFontWeight: string;
|
|
982
|
+
progressValueFontColor: string;
|
|
983
|
+
progressValueFontColorOnDark: string;
|
|
984
|
+
progressValueTextAlign: string;
|
|
985
|
+
overlayBackgroundColor: string;
|
|
986
|
+
overlayOpacity: string;
|
|
987
|
+
overlayLabelFontFamily: string;
|
|
988
|
+
overlayLabelFontSize: string;
|
|
989
|
+
overlayLabelFontStyle: string;
|
|
990
|
+
overlayLabelFontWeight: string;
|
|
991
|
+
overlayLabelFontColor: string;
|
|
992
|
+
overlayLabelTextAlign: string;
|
|
993
|
+
overlayProgressValueFontFamily: string;
|
|
994
|
+
overlayProgressValueFontSize: string;
|
|
995
|
+
overlayProgressValueFontStyle: string;
|
|
996
|
+
overlayProgressValueFontWeight: string;
|
|
997
|
+
overlayProgressValueFontColor: string;
|
|
998
|
+
overlayProgressValueTextAlign: string;
|
|
999
|
+
};
|
|
1000
|
+
switch: {
|
|
1001
|
+
checkedTrackBackgroundColor: string;
|
|
1002
|
+
checkedTrackBackgroundColorOnDark: string;
|
|
1003
|
+
checkedThumbBackgroundColor: string;
|
|
1004
|
+
checkedThumbBackgroundColorOnDark: string;
|
|
1005
|
+
uncheckedTrackBackgroundColor: string;
|
|
1006
|
+
uncheckedTrackBackgroundColorOnDark: string;
|
|
1007
|
+
uncheckedThumbBackgroundColor: string;
|
|
1008
|
+
uncheckedThumbBackgroundColorOnDark: string;
|
|
1009
|
+
disabledCheckedTrackBackgroundColor: string;
|
|
1010
|
+
disabledCheckedTrackBackgroundColorOnDark: string;
|
|
1011
|
+
disabledCheckedThumbBackgroundColor: string;
|
|
1012
|
+
disabledCheckedThumbBackgroundColorOnDark: string;
|
|
1013
|
+
disabledUncheckedTrackBackgroundColor: string;
|
|
1014
|
+
disabledUncheckedTrackBackgroundColorOnDark: string;
|
|
1015
|
+
disabledUncheckedThumbBackgroundColor: string;
|
|
1016
|
+
disabledUncheckedThumbBackgroundColorOnDark: string;
|
|
1017
|
+
disabledLabelFontColor: string;
|
|
1018
|
+
disabledLabelFontColorOnDark: string;
|
|
1019
|
+
disabledLabelFontStyle: string;
|
|
1020
|
+
labelFontFamily: string;
|
|
1021
|
+
labelFontSize: string;
|
|
1022
|
+
labelFontStyle: string;
|
|
1023
|
+
labelFontWeight: string;
|
|
1024
|
+
labelFontColor: string;
|
|
1025
|
+
labelFontColorOnDark: string;
|
|
1026
|
+
thumbFocusColor: string;
|
|
1027
|
+
thumbFocusColorOnDark: string;
|
|
1028
|
+
thumbHeight: string;
|
|
1029
|
+
thumbWidth: string;
|
|
1030
|
+
thumbShift: string;
|
|
1031
|
+
trackHeight: string;
|
|
1032
|
+
trackWidth: string;
|
|
1033
|
+
spaceBetweenLabelSwitch: string;
|
|
1034
|
+
};
|
|
1035
|
+
table: {
|
|
1036
|
+
rowSeparatorThickness: string;
|
|
1037
|
+
rowSeparatorStyle: string;
|
|
1038
|
+
rowSeparatorColor: string;
|
|
1039
|
+
dataBackgroundColor: string;
|
|
1040
|
+
dataFontFamily: string;
|
|
1041
|
+
dataFontSize: string;
|
|
1042
|
+
dataFontStyle: string;
|
|
1043
|
+
dataFontWeight: string;
|
|
1044
|
+
dataFontColor: string;
|
|
1045
|
+
dataFontTextTransform: string;
|
|
1046
|
+
dataPaddingTop: string;
|
|
1047
|
+
dataPaddingBottom: string;
|
|
1048
|
+
dataPaddingRight: string;
|
|
1049
|
+
dataPaddingLeft: string;
|
|
1050
|
+
dataTextAlign: string;
|
|
1051
|
+
dataTextLineHeight: string;
|
|
1052
|
+
headerBackgroundColor: string;
|
|
1053
|
+
headerBorderRadius: string;
|
|
1054
|
+
headerFontFamily: string;
|
|
1055
|
+
headerFontSize: string;
|
|
1056
|
+
headerFontStyle: string;
|
|
1057
|
+
headerFontWeight: string;
|
|
1058
|
+
headerFontColor: string;
|
|
1059
|
+
headerFontTextTransform: string;
|
|
1060
|
+
headerPaddingTop: string;
|
|
1061
|
+
headerPaddingBottom: string;
|
|
1062
|
+
headerPaddingRight: string;
|
|
1063
|
+
headerPaddingLeft: string;
|
|
1064
|
+
headerTextAlign: string;
|
|
1065
|
+
headerTextLineHeight: string;
|
|
1066
|
+
scrollBarThumbColor: string;
|
|
1067
|
+
scrollBarTrackColor: string;
|
|
1068
|
+
sortIconColor: string;
|
|
1069
|
+
};
|
|
1070
|
+
tabs: {
|
|
1071
|
+
fontFamily: string;
|
|
1072
|
+
fontSize: string;
|
|
1073
|
+
fontStyle: string;
|
|
1074
|
+
fontWeight: string;
|
|
1075
|
+
fontTextTransform: string;
|
|
1076
|
+
selectedBackgroundColor: string;
|
|
1077
|
+
selectedFontColor: string;
|
|
1078
|
+
selectedIconColor: string;
|
|
1079
|
+
selectedUnderlineColor: string;
|
|
1080
|
+
selectedUnderlineThickness: string;
|
|
1081
|
+
unselectedBackgroundColor: string;
|
|
1082
|
+
unselectedFontColor: string;
|
|
1083
|
+
unselectedIconColor: string;
|
|
1084
|
+
disabledFontColor: string;
|
|
1085
|
+
disabledIconColor: string;
|
|
1086
|
+
disabledFontStyle: string;
|
|
1087
|
+
disabledBadgeBackgroundColor: string;
|
|
1088
|
+
hoverBackgroundColor: string;
|
|
1089
|
+
pressedBackgroundColor: string;
|
|
1090
|
+
pressedFontWeight: string;
|
|
1091
|
+
dividerColor: string;
|
|
1092
|
+
dividerThickness: string;
|
|
1093
|
+
focusOutline: string;
|
|
1094
|
+
scrollButtonsWidth: string;
|
|
1095
|
+
badgeBackgroundColor: string;
|
|
1096
|
+
badgeFontFamily: string;
|
|
1097
|
+
badgeFontSize: string;
|
|
1098
|
+
badgeFontStyle: string;
|
|
1099
|
+
badgeFontWeight: string;
|
|
1100
|
+
badgeFontColor: string;
|
|
1101
|
+
badgeLetterSpacing: string;
|
|
1102
|
+
badgeWidth: string;
|
|
1103
|
+
badgeHeight: string;
|
|
1104
|
+
badgeRadius: string;
|
|
1105
|
+
badgeWidthWithNotificationNumber: string;
|
|
1106
|
+
badgeHeightWithNotificationNumber: string;
|
|
1107
|
+
badgeRadiusWithNotificationNumber: string;
|
|
1108
|
+
};
|
|
1109
|
+
tag: {
|
|
1110
|
+
fontFamily: string;
|
|
1111
|
+
fontColor: string;
|
|
1112
|
+
fontSize: string;
|
|
1113
|
+
fontStyle: string;
|
|
1114
|
+
fontWeight: string;
|
|
1115
|
+
labelPaddingTop: string;
|
|
1116
|
+
labelPaddingBottom: string;
|
|
1117
|
+
labelPaddingLeft: string;
|
|
1118
|
+
labelPaddingRight: string;
|
|
1119
|
+
height: string;
|
|
1120
|
+
iconColor: string;
|
|
1121
|
+
iconSectionWidth: string;
|
|
1122
|
+
iconHeight: string;
|
|
1123
|
+
iconWidth: string;
|
|
1124
|
+
focusColor: string;
|
|
1125
|
+
};
|
|
1126
|
+
textarea: {
|
|
1127
|
+
fontFamily: string;
|
|
1128
|
+
enabledBorderColor: string;
|
|
1129
|
+
enabledBorderColorOnDark: string;
|
|
1130
|
+
hoverBorderColor: string;
|
|
1131
|
+
hoverBorderColorOnDark: string;
|
|
1132
|
+
focusBorderColor: string;
|
|
1133
|
+
focusBorderColorOnDark: string;
|
|
1134
|
+
disabledBorderColor: string;
|
|
1135
|
+
disabledBorderColorOnDark: string;
|
|
1136
|
+
disabledContainerFillColor: string;
|
|
1137
|
+
disabledContainerFillColorOnDark: string;
|
|
1138
|
+
errorBorderColor: string;
|
|
1139
|
+
errorBorderColorOnDark: string;
|
|
1140
|
+
hoverErrorBorderColor: string;
|
|
1141
|
+
hoverErrorBorderColorOnDark: string;
|
|
1142
|
+
inputMarginTop: string;
|
|
1143
|
+
inputMarginBottom: string;
|
|
1144
|
+
errorMessageColor: string;
|
|
1145
|
+
errorMessageColorOnDark: string;
|
|
1146
|
+
labelFontColor: string;
|
|
1147
|
+
labelFontColorOnDark: string;
|
|
1148
|
+
labelFontSize: string;
|
|
1149
|
+
labelFontStyle: string;
|
|
1150
|
+
labelFontWeight: string;
|
|
1151
|
+
labelLineHeight: string;
|
|
1152
|
+
disabledLabelFontColor: string;
|
|
1153
|
+
disabledLabelFontColorOnDark: string;
|
|
1154
|
+
optionalLabelFontWeight: string;
|
|
1155
|
+
helperTextFontColor: string;
|
|
1156
|
+
helperTextFontColorOnDark: string;
|
|
1157
|
+
helperTextFontSize: string;
|
|
1158
|
+
helperTextFontStyle: string;
|
|
1159
|
+
helperTextFontWeight: string;
|
|
1160
|
+
helperTextLineHeight: string;
|
|
1161
|
+
disabledHelperTextFontColor: string;
|
|
1162
|
+
disabledHelperTextFontColorOnDark: string;
|
|
1163
|
+
placeholderFontColor: string;
|
|
1164
|
+
placeholderFontColorOnDark: string;
|
|
1165
|
+
disabledPlaceholderFontColor: string;
|
|
1166
|
+
disabledPlaceholderFontColorOnDark: string;
|
|
1167
|
+
valueFontColor: string;
|
|
1168
|
+
valueFontColorOnDark: string;
|
|
1169
|
+
valueFontSize: string;
|
|
1170
|
+
valueFontStyle: string;
|
|
1171
|
+
valueFontWeight: string;
|
|
1172
|
+
disabledValueFontColor: string;
|
|
1173
|
+
disabledValueFontColorOnDark: string;
|
|
1174
|
+
};
|
|
1175
|
+
textInput: {
|
|
1176
|
+
fontFamily: string;
|
|
1177
|
+
enabledBorderColor: string;
|
|
1178
|
+
enabledBorderColorOnDark: string;
|
|
1179
|
+
hoverBorderColor: string;
|
|
1180
|
+
hoverBorderColorOnDark: string;
|
|
1181
|
+
focusBorderColor: string;
|
|
1182
|
+
focusBorderColorOnDark: string;
|
|
1183
|
+
disabledBorderColor: string;
|
|
1184
|
+
disabledBorderColorOnDark: string;
|
|
1185
|
+
disabledContainerFillColor: string;
|
|
1186
|
+
disabledContainerFillColorOnDark: string;
|
|
1187
|
+
errorBorderColor: string;
|
|
1188
|
+
errorBorderColorOnDark: string;
|
|
1189
|
+
hoverErrorBorderColor: string;
|
|
1190
|
+
hoverErrorBorderColorOnDark: string;
|
|
1191
|
+
inputMarginTop: string;
|
|
1192
|
+
inputMarginBottom: string;
|
|
1193
|
+
errorMessageColor: string;
|
|
1194
|
+
errorMessageColorOnDark: string;
|
|
1195
|
+
errorIconColor: string;
|
|
1196
|
+
errorIconColorOnDark: string;
|
|
1197
|
+
labelFontColor: string;
|
|
1198
|
+
labelFontColorOnDark: string;
|
|
1199
|
+
labelFontSize: string;
|
|
1200
|
+
labelFontStyle: string;
|
|
1201
|
+
labelFontWeight: string;
|
|
1202
|
+
labelLineHeight: string;
|
|
1203
|
+
disabledLabelFontColor: string;
|
|
1204
|
+
disabledLabelFontColorOnDark: string;
|
|
1205
|
+
optionalLabelFontWeight: string;
|
|
1206
|
+
helperTextFontColor: string;
|
|
1207
|
+
helperTextFontColorOnDark: string;
|
|
1208
|
+
helperTextFontSize: string;
|
|
1209
|
+
helperTextFontStyle: string;
|
|
1210
|
+
helperTextFontWeight: string;
|
|
1211
|
+
helperTextLineHeight: string;
|
|
1212
|
+
disabledHelperTextFontColor: string;
|
|
1213
|
+
disabledHelperTextFontColorOnDark: string;
|
|
1214
|
+
prefixColor: string;
|
|
1215
|
+
prefixColorOnDark: string;
|
|
1216
|
+
suffixColor: string;
|
|
1217
|
+
suffixColorOnDark: string;
|
|
1218
|
+
disabledPrefixColor: string;
|
|
1219
|
+
disabledSuffixColor: string;
|
|
1220
|
+
disabledPrefixColorOnDark: string;
|
|
1221
|
+
disabledSuffixColorOnDark: string;
|
|
1222
|
+
placeholderFontColor: string;
|
|
1223
|
+
placeholderFontColorOnDark: string;
|
|
1224
|
+
disabledPlaceholderFontColor: string;
|
|
1225
|
+
disabledPlaceholderFontColorOnDark: string;
|
|
1226
|
+
valueFontColor: string;
|
|
1227
|
+
valueFontColorOnDark: string;
|
|
1228
|
+
valueFontSize: string;
|
|
1229
|
+
valueFontStyle: string;
|
|
1230
|
+
valueFontWeight: string;
|
|
1231
|
+
disabledValueFontColor: string;
|
|
1232
|
+
disabledValueFontColorOnDark: string;
|
|
1233
|
+
actionIconColor: string;
|
|
1234
|
+
actionIconColorOnDark: string;
|
|
1235
|
+
disabledActionIconColor: string;
|
|
1236
|
+
disabledActionIconColorOnDark: string;
|
|
1237
|
+
hoverActionIconColor: string;
|
|
1238
|
+
hoverActionIconColorOnDark: string;
|
|
1239
|
+
focusActionIconColor: string;
|
|
1240
|
+
focusActionIconColorOnDark: string;
|
|
1241
|
+
activeActionIconColor: string;
|
|
1242
|
+
activeActionIconColorOnDark: string;
|
|
1243
|
+
actionBackgroundColor: string;
|
|
1244
|
+
actionBackgroundColorOnDark: string;
|
|
1245
|
+
disabledActionBackgroundColor: string;
|
|
1246
|
+
disabledActionBackgroundColorOnDark: string;
|
|
1247
|
+
hoverActionBackgroundColor: string;
|
|
1248
|
+
hoverActionBackgroundColorOnDark: string;
|
|
1249
|
+
focusActionBorderColor: string;
|
|
1250
|
+
focusActionBorderColorOnDark: string;
|
|
1251
|
+
activeActionBackgroundColor: string;
|
|
1252
|
+
activeActionBackgroundColorOnDark: string;
|
|
1253
|
+
listDialogBackgroundColor: string;
|
|
1254
|
+
listDialogBorderColor: string;
|
|
1255
|
+
listOptionDividerColor: string;
|
|
1256
|
+
listOptionFontColor: string;
|
|
1257
|
+
listOptionFontSize: string;
|
|
1258
|
+
listOptionFontStyle: string;
|
|
1259
|
+
listOptionFontWeight: string;
|
|
1260
|
+
systemMessageFontColor: string;
|
|
1261
|
+
errorListDialogFontColor: string;
|
|
1262
|
+
errorListDialogBackgroundColor: string;
|
|
1263
|
+
errorListDialogBorderColor: string;
|
|
1264
|
+
hoverListOptionBackgroundColor: string;
|
|
1265
|
+
activeListOptionBackgroundColor: string;
|
|
1266
|
+
focusListOptionBorderColor: string;
|
|
1267
|
+
};
|
|
1268
|
+
toggleGroup: {
|
|
1269
|
+
containerBackgroundColor: string;
|
|
1270
|
+
containerBorderColor: string;
|
|
1271
|
+
labelFontColor: string;
|
|
1272
|
+
disabledLabelFontColor: string;
|
|
1273
|
+
helperTextFontColor: string;
|
|
1274
|
+
disabledHelperTextFontcolor: string;
|
|
1275
|
+
unselectedBackgroundColor: string;
|
|
1276
|
+
unselectedHoverBackgroundColor: string;
|
|
1277
|
+
unselectedActiveBackgroundColor: string;
|
|
1278
|
+
unselectedDisabledBackgroundColor: string;
|
|
1279
|
+
unselectedFontColor: string;
|
|
1280
|
+
unselectedDisabledFontColor: string;
|
|
1281
|
+
selectedBackgroundColor: string;
|
|
1282
|
+
selectedHoverBackgroundColor: string;
|
|
1283
|
+
selectedActiveBackgroundColor: string;
|
|
1284
|
+
selectedDisabledBackgroundColor: string;
|
|
1285
|
+
selectedFontColor: string;
|
|
1286
|
+
selectedDisabledFontColor: string;
|
|
1287
|
+
focusColor: string;
|
|
1288
|
+
labelFontFamily: string;
|
|
1289
|
+
labelFontSize: string;
|
|
1290
|
+
labelFontStyle: string;
|
|
1291
|
+
labelFontWeight: string;
|
|
1292
|
+
labelLineHeight: string;
|
|
1293
|
+
helperTextFontFamily: string;
|
|
1294
|
+
helperTextFontSize: string;
|
|
1295
|
+
helperTextFontStyle: string;
|
|
1296
|
+
helperTextFontWeight: string;
|
|
1297
|
+
helperTextLineHeight: string;
|
|
1298
|
+
optionLabelFontFamily: string;
|
|
1299
|
+
optionLabelFontSize: string;
|
|
1300
|
+
optionLabelFontStyle: string;
|
|
1301
|
+
optionLabelFontWeight: string;
|
|
1302
|
+
iconPaddingRight: string;
|
|
1303
|
+
iconPaddingLeft: string;
|
|
1304
|
+
labelPaddingLeft: string;
|
|
1305
|
+
labelPaddingRight: string;
|
|
1306
|
+
iconMarginRight: string;
|
|
1307
|
+
containerMarginTop: string;
|
|
1308
|
+
optionBorderThickness: string;
|
|
1309
|
+
optionBorderStyle: string;
|
|
1310
|
+
optionBorderRadius: string;
|
|
1311
|
+
containerBorderThickness: string;
|
|
1312
|
+
containerBorderStyle: string;
|
|
1313
|
+
containerBorderRadius: string;
|
|
1314
|
+
optionFocusBorderThickness: string;
|
|
1315
|
+
};
|
|
1316
|
+
wizard: {
|
|
1317
|
+
visitedStepFontColor: string;
|
|
1318
|
+
visitedStepBackgroundColor: string;
|
|
1319
|
+
visitedStepBorderColor: string;
|
|
1320
|
+
unvisitedStepFontColor: string;
|
|
1321
|
+
unvisitedLabelFontColor: string;
|
|
1322
|
+
unvisitedHelperTextFontColor: string;
|
|
1323
|
+
unvisitedStepBackgroundColor: string;
|
|
1324
|
+
unvisitedStepBorderColor: string;
|
|
1325
|
+
selectedStepFontColor: string;
|
|
1326
|
+
selectedStepBackgroundColor: string;
|
|
1327
|
+
selectedStepBorderColor: string;
|
|
1328
|
+
selectedLabelFontColor: string;
|
|
1329
|
+
selectedHelperTextFontColor: string;
|
|
1330
|
+
selectedStepWidth: string;
|
|
1331
|
+
selectedStepHeight: string;
|
|
1332
|
+
selectedStepBorderThickness: string;
|
|
1333
|
+
selectedStepBorderStyle: string;
|
|
1334
|
+
selectedStepBorderRadius: string;
|
|
1335
|
+
stepFontSize: string;
|
|
1336
|
+
stepFontFamily: string;
|
|
1337
|
+
stepFontStyle: string;
|
|
1338
|
+
stepFontWeight: string;
|
|
1339
|
+
stepFontTracking: string;
|
|
1340
|
+
stepIconSize: string;
|
|
1341
|
+
stepWidth: string;
|
|
1342
|
+
stepHeight: string;
|
|
1343
|
+
stepBorderThickness: string;
|
|
1344
|
+
stepBorderStyle: string;
|
|
1345
|
+
stepBorderRadius: string;
|
|
1346
|
+
visitedLabelFontColor: string;
|
|
1347
|
+
labelFontSize: string;
|
|
1348
|
+
labelFontFamily: string;
|
|
1349
|
+
labelFontStyle: string;
|
|
1350
|
+
labelFontWeight: string;
|
|
1351
|
+
labelFontTracking: string;
|
|
1352
|
+
labelFontTextTransform: string;
|
|
1353
|
+
labelTextAlign: string;
|
|
1354
|
+
helperTextFontSize: string;
|
|
1355
|
+
helperTextFontFamily: string;
|
|
1356
|
+
helperTextFontStyle: string;
|
|
1357
|
+
helperTextFontWeight: string;
|
|
1358
|
+
helperTextFontTracking: string;
|
|
1359
|
+
helperTextFontTextTransform: string;
|
|
1360
|
+
visitedHelperTextFontColor: string;
|
|
1361
|
+
helperTextTextAlign: string;
|
|
1362
|
+
disabledStepBackgroundColor: string;
|
|
1363
|
+
disabledStepFontColor: string;
|
|
1364
|
+
disabledLabelFontColor: string;
|
|
1365
|
+
disabledHelperTextFontColor: string;
|
|
1366
|
+
disabledStepBorderColor: string;
|
|
1367
|
+
disabledStepWidth: string;
|
|
1368
|
+
disabledStepHeight: string;
|
|
1369
|
+
disabledStepBorderThickness: string;
|
|
1370
|
+
disabledStepBorderStyle: string;
|
|
1371
|
+
disabledStepBorderRadius: string;
|
|
1372
|
+
separatorBorderThickness: string;
|
|
1373
|
+
separatorBorderStyle: string;
|
|
1374
|
+
separatorColor: string;
|
|
1375
|
+
focusColor: string;
|
|
1376
|
+
};
|
|
1377
|
+
};
|
|
1378
|
+
export declare type AdvancedTheme = typeof componentTokens;
|
|
1379
|
+
export declare type OpinionatedTheme = {
|
|
1380
|
+
accordion: {
|
|
1381
|
+
accentColor: string;
|
|
1382
|
+
titleFontColor: string;
|
|
1383
|
+
assistiveTextFontColor: string;
|
|
1384
|
+
};
|
|
1385
|
+
alert: {
|
|
1386
|
+
baseColor: string;
|
|
1387
|
+
accentColor: string;
|
|
1388
|
+
overlayColor: string;
|
|
1389
|
+
};
|
|
1390
|
+
box: {
|
|
1391
|
+
baseColor: string;
|
|
1392
|
+
};
|
|
1393
|
+
button: {
|
|
1394
|
+
baseColor: string;
|
|
1395
|
+
primaryFontColor: string;
|
|
1396
|
+
secondaryHoverFontColor: string;
|
|
1397
|
+
};
|
|
1398
|
+
checkbox: {
|
|
1399
|
+
baseColor: string;
|
|
1400
|
+
checkColor: string;
|
|
1401
|
+
fontColor: string;
|
|
1402
|
+
};
|
|
1403
|
+
chip: {
|
|
1404
|
+
baseColor: string;
|
|
1405
|
+
fontColor: string;
|
|
1406
|
+
iconColor: string;
|
|
1407
|
+
};
|
|
1408
|
+
dateInput: {
|
|
1409
|
+
baseColor: string;
|
|
1410
|
+
selectedFontColor: string;
|
|
1411
|
+
};
|
|
1412
|
+
dialog: {
|
|
1413
|
+
baseColor: string;
|
|
1414
|
+
closeIconColor: string;
|
|
1415
|
+
overlayColor: string;
|
|
1416
|
+
};
|
|
1417
|
+
dropdown: {
|
|
1418
|
+
baseColor: string;
|
|
1419
|
+
fontColor: string;
|
|
1420
|
+
optionFontColor: string;
|
|
1421
|
+
};
|
|
1422
|
+
fileInput: {
|
|
1423
|
+
fontColor: string;
|
|
1424
|
+
};
|
|
1425
|
+
footer: {
|
|
1426
|
+
baseColor: string;
|
|
1427
|
+
fontColor: string;
|
|
1428
|
+
accentColor: string;
|
|
1429
|
+
logo: string;
|
|
1430
|
+
};
|
|
1431
|
+
header: {
|
|
1432
|
+
baseColor: string;
|
|
1433
|
+
accentColor: string;
|
|
1434
|
+
fontColor: string;
|
|
1435
|
+
menuBaseColor: string;
|
|
1436
|
+
hamburguerColor: string;
|
|
1437
|
+
logo: string;
|
|
1438
|
+
logoResponsive: string;
|
|
1439
|
+
contentColor: string;
|
|
1440
|
+
overlayColor: string;
|
|
1441
|
+
};
|
|
1442
|
+
link: {
|
|
1443
|
+
baseColor: string;
|
|
1444
|
+
};
|
|
1445
|
+
navTabs: {
|
|
1446
|
+
baseColor: string;
|
|
1447
|
+
accentColor: string;
|
|
1448
|
+
};
|
|
1449
|
+
paginator: {
|
|
1450
|
+
baseColor: string;
|
|
1451
|
+
fontColor: string;
|
|
1452
|
+
};
|
|
1453
|
+
progressBar: {
|
|
1454
|
+
accentColor: string;
|
|
1455
|
+
baseColor: string;
|
|
1456
|
+
fontColor: string;
|
|
1457
|
+
overlayColor: string;
|
|
1458
|
+
overlayFontColor: string;
|
|
1459
|
+
};
|
|
1460
|
+
quickNav: {
|
|
1461
|
+
fontColor: string;
|
|
1462
|
+
accentColor: string;
|
|
1463
|
+
};
|
|
1464
|
+
radioGroup: {
|
|
1465
|
+
baseColor: string;
|
|
1466
|
+
fontColor: string;
|
|
1467
|
+
};
|
|
1468
|
+
select: {
|
|
1469
|
+
selectedOptionBackgroundColor: string;
|
|
1470
|
+
fontColor: string;
|
|
1471
|
+
optionFontColor: string;
|
|
1472
|
+
hoverBorderColor: string;
|
|
1473
|
+
};
|
|
1474
|
+
sidenav: {
|
|
1475
|
+
baseColor: string;
|
|
1476
|
+
};
|
|
1477
|
+
slider: {
|
|
1478
|
+
baseColor: string;
|
|
1479
|
+
fontColor: string;
|
|
1480
|
+
totalLineColor: string;
|
|
1481
|
+
};
|
|
1482
|
+
spinner: {
|
|
1483
|
+
accentColor: string;
|
|
1484
|
+
baseColor: string;
|
|
1485
|
+
fontColor: string;
|
|
1486
|
+
overlayColor: string;
|
|
1487
|
+
overlayFontColor: string;
|
|
1488
|
+
};
|
|
1489
|
+
switch: {
|
|
1490
|
+
checkedBaseColor: string;
|
|
1491
|
+
fontColor: string;
|
|
1492
|
+
};
|
|
1493
|
+
table: {
|
|
1494
|
+
baseColor: string;
|
|
1495
|
+
headerFontColor: string;
|
|
1496
|
+
cellFontColor: string;
|
|
1497
|
+
};
|
|
1498
|
+
tabs: {
|
|
1499
|
+
baseColor: string;
|
|
1500
|
+
};
|
|
1501
|
+
tag: {
|
|
1502
|
+
fontColor: string;
|
|
1503
|
+
iconColor: string;
|
|
1504
|
+
};
|
|
1505
|
+
textarea: {
|
|
1506
|
+
fontColor: string;
|
|
1507
|
+
hoverBorderColor: string;
|
|
1508
|
+
};
|
|
1509
|
+
textInput: {
|
|
1510
|
+
fontColor: string;
|
|
1511
|
+
hoverBorderColor: string;
|
|
1512
|
+
};
|
|
1513
|
+
toggleGroup: {
|
|
1514
|
+
selectedBaseColor: string;
|
|
1515
|
+
selectedFontColor: string;
|
|
1516
|
+
unselectedBaseColor: string;
|
|
1517
|
+
unselectedFontColor: string;
|
|
1518
|
+
};
|
|
1519
|
+
wizard: {
|
|
1520
|
+
baseColor: string;
|
|
1521
|
+
fontColor: string;
|
|
1522
|
+
selectedStepFontColor: string;
|
|
1523
|
+
};
|
|
1524
|
+
};
|
|
1525
|
+
export declare const spaces: {
|
|
1526
|
+
xxsmall: string;
|
|
1527
|
+
xsmall: string;
|
|
1528
|
+
small: string;
|
|
1529
|
+
medium: string;
|
|
1530
|
+
large: string;
|
|
1531
|
+
xlarge: string;
|
|
1532
|
+
xxlarge: string;
|
|
1533
|
+
};
|
|
1534
|
+
export declare const responsiveSizes: {
|
|
1535
|
+
xsmall: string;
|
|
1536
|
+
small: string;
|
|
1537
|
+
medium: string;
|
|
1538
|
+
large: string;
|
|
1539
|
+
xlarge: string;
|
|
1540
|
+
};
|
|
1541
|
+
export declare const defaultTranslatedComponentLabels: {
|
|
1542
|
+
formFields: {
|
|
1543
|
+
optionalLabel: string;
|
|
1544
|
+
requiredSelectionErrorMessage: string;
|
|
1545
|
+
requiredValueErrorMessage: string;
|
|
1546
|
+
formatRequestedErrorMessage: string;
|
|
1547
|
+
lengthErrorMessage: (minLength?: number, maxLength?: number) => string;
|
|
1548
|
+
logoAlternativeText: string;
|
|
1549
|
+
};
|
|
1550
|
+
applicationLayout: {
|
|
1551
|
+
visibilityToggleTitle: string;
|
|
1552
|
+
};
|
|
1553
|
+
alert: {
|
|
1554
|
+
infoTitleText: string;
|
|
1555
|
+
successTitleText: string;
|
|
1556
|
+
warningTitleText: string;
|
|
1557
|
+
errorTitleText: string;
|
|
1558
|
+
};
|
|
1559
|
+
dateInput: {
|
|
1560
|
+
invalidDateErrorMessage: string;
|
|
1561
|
+
};
|
|
1562
|
+
dialog: {
|
|
1563
|
+
closeIconAriaLabel: string;
|
|
1564
|
+
};
|
|
1565
|
+
fileInput: {
|
|
1566
|
+
fileSizeGreaterThanErrorMessage: string;
|
|
1567
|
+
fileSizeLessThanErrorMessage: string;
|
|
1568
|
+
multipleButtonLabelDefault: string;
|
|
1569
|
+
singleButtonLabelDefault: string;
|
|
1570
|
+
dropAreaButtonLabelDefault: string;
|
|
1571
|
+
multipleDropAreaLabelDefault: string;
|
|
1572
|
+
singleDropAreaLabelDefault: string;
|
|
1573
|
+
deleteFileActionTitle: string;
|
|
1574
|
+
};
|
|
1575
|
+
footer: {
|
|
1576
|
+
copyrightText: (year: number) => string;
|
|
1577
|
+
};
|
|
1578
|
+
header: {
|
|
1579
|
+
closeIcon: string;
|
|
1580
|
+
hamburguerTitle: string;
|
|
1581
|
+
};
|
|
1582
|
+
numberInput: {
|
|
1583
|
+
valueGreaterThanOrEqualToErrorMessage: (value: number) => string;
|
|
1584
|
+
valueLessThanOrEqualToErrorMessage: (value: number) => string;
|
|
1585
|
+
decrementValueTitle: string;
|
|
1586
|
+
incrementValueTitle: string;
|
|
1587
|
+
};
|
|
1588
|
+
paginator: {
|
|
1589
|
+
itemsPerPageText: string;
|
|
1590
|
+
minToMaxOfText: (minNumberOfItems: number, maxNumberOfItems: number, totalItems: number) => string;
|
|
1591
|
+
goToPageText: string;
|
|
1592
|
+
pageOfText: (pageNumber: number, totalPagesNumber: number) => string;
|
|
1593
|
+
};
|
|
1594
|
+
passwordInput: {
|
|
1595
|
+
inputShowPasswordTitle: string;
|
|
1596
|
+
inputHidePasswordTitle: string;
|
|
1597
|
+
};
|
|
1598
|
+
quickNav: {
|
|
1599
|
+
contentTitle: string;
|
|
1600
|
+
};
|
|
1601
|
+
radioGroup: {
|
|
1602
|
+
optionalItemLabelDefault: string;
|
|
1603
|
+
};
|
|
1604
|
+
select: {
|
|
1605
|
+
noMatchesErrorMessage: string;
|
|
1606
|
+
actionClearSelectionTitle: string;
|
|
1607
|
+
actionClearSearchTitle: string;
|
|
1608
|
+
};
|
|
1609
|
+
tabs: {
|
|
1610
|
+
scrollLeft: string;
|
|
1611
|
+
scrollRight: string;
|
|
1612
|
+
};
|
|
1613
|
+
textInput: {
|
|
1614
|
+
clearFieldActionTitle: string;
|
|
1615
|
+
searchingMessage: string;
|
|
1616
|
+
fetchingDataErrorMessage: string;
|
|
1617
|
+
};
|
|
1618
|
+
calendar: {
|
|
1619
|
+
daysShort: string[];
|
|
1620
|
+
months: string[];
|
|
1621
|
+
previousMonthTitle: string;
|
|
1622
|
+
nextMonthTitle: string;
|
|
1623
|
+
};
|
|
1624
|
+
};
|
|
1625
|
+
export declare type TranslatedLabels = typeof defaultTranslatedComponentLabels;
|