@dxc-technology/halstack-react 11.0.0 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BackgroundColorContext.d.ts +1 -10
- package/BackgroundColorContext.js +3 -8
- package/HalstackContext.d.ts +32 -142
- package/HalstackContext.js +2 -2
- package/accordion/Accordion.accessibility.test.js +71 -0
- package/accordion/Accordion.js +13 -27
- package/accordion/Accordion.stories.tsx +7 -49
- package/accordion/types.d.ts +1 -1
- package/accordion-group/AccordionGroup.accessibility.test.js +88 -0
- package/accordion-group/AccordionGroup.d.ts +2 -3
- package/accordion-group/AccordionGroup.js +4 -4
- package/accordion-group/AccordionGroup.stories.tsx +23 -23
- package/accordion-group/AccordionGroupAccordion.js +3 -3
- package/accordion-group/AccordionGroupContext.d.ts +3 -0
- package/accordion-group/AccordionGroupContext.js +8 -0
- package/accordion-group/types.d.ts +1 -1
- package/action-icon/ActionIcon.accessibility.test.js +63 -0
- package/action-icon/ActionIcon.d.ts +4 -0
- package/action-icon/ActionIcon.js +48 -0
- package/action-icon/ActionIcon.stories.tsx +41 -0
- package/action-icon/ActionIcon.test.js +64 -0
- package/action-icon/types.d.ts +26 -0
- package/action-icon/types.js +5 -0
- package/alert/Alert.accessibility.test.js +95 -0
- package/alert/Alert.js +21 -75
- package/badge/Badge.accessibility.test.js +129 -0
- package/badge/Badge.d.ts +1 -1
- package/badge/Badge.js +141 -28
- package/badge/Badge.stories.tsx +210 -0
- package/badge/Badge.test.js +30 -0
- package/badge/types.d.ts +52 -3
- package/box/Box.accessibility.test.js +33 -0
- package/box/Box.js +2 -5
- package/breadcrumbs/Breadcrumbs.accessibility.test.d.ts +1 -0
- package/breadcrumbs/Breadcrumbs.accessibility.test.js +96 -0
- package/breadcrumbs/Breadcrumbs.d.ts +4 -0
- package/breadcrumbs/Breadcrumbs.js +79 -0
- package/breadcrumbs/Breadcrumbs.stories.tsx +194 -0
- package/breadcrumbs/Breadcrumbs.test.d.ts +1 -0
- package/breadcrumbs/Breadcrumbs.test.js +169 -0
- package/breadcrumbs/Item.d.ts +4 -0
- package/breadcrumbs/Item.js +52 -0
- package/breadcrumbs/dropdownTheme.d.ts +53 -0
- package/breadcrumbs/dropdownTheme.js +62 -0
- package/breadcrumbs/types.d.ts +16 -0
- package/breadcrumbs/types.js +5 -0
- package/bulleted-list/BulletedList.accessibility.test.js +119 -0
- package/bulleted-list/BulletedList.js +16 -23
- package/bulleted-list/BulletedList.stories.tsx +1 -2
- package/button/Button.accessibility.test.js +127 -0
- package/button/Button.js +16 -16
- package/button/Button.stories.tsx +34 -53
- package/button/Button.test.js +3 -1
- package/button/types.d.ts +1 -1
- package/card/Card.accessibility.test.js +36 -0
- package/card/Card.js +3 -2
- package/checkbox/Checkbox.accessibility.test.js +87 -0
- package/checkbox/Checkbox.js +31 -36
- package/chip/Chip.accessibility.test.js +67 -0
- package/chip/Chip.js +11 -6
- package/chip/Chip.stories.tsx +10 -25
- package/chip/Chip.test.js +4 -4
- package/common/coreTokens.d.ts +105 -14
- package/common/coreTokens.js +40 -22
- package/common/variables.d.ts +31 -138
- package/common/variables.js +103 -210
- package/container/Container.d.ts +4 -0
- package/container/Container.js +194 -0
- package/container/Container.stories.tsx +214 -0
- package/container/types.d.ts +74 -0
- package/container/types.js +5 -0
- package/contextual-menu/ContextualMenu.accessibility.test.js +97 -0
- package/contextual-menu/ContextualMenu.d.ts +5 -0
- package/contextual-menu/ContextualMenu.js +88 -0
- package/contextual-menu/ContextualMenu.stories.tsx +232 -0
- package/contextual-menu/ContextualMenu.test.js +205 -0
- package/contextual-menu/GroupItem.d.ts +4 -0
- package/contextual-menu/GroupItem.js +67 -0
- package/contextual-menu/ItemAction.d.ts +4 -0
- package/contextual-menu/ItemAction.js +51 -0
- package/contextual-menu/MenuItem.d.ts +4 -0
- package/contextual-menu/MenuItem.js +29 -0
- package/contextual-menu/SingleItem.d.ts +4 -0
- package/contextual-menu/SingleItem.js +38 -0
- package/contextual-menu/types.d.ts +58 -0
- package/contextual-menu/types.js +5 -0
- package/date-input/Calendar.js +1 -1
- package/date-input/DateInput.accessibility.test.js +228 -0
- package/date-input/DateInput.js +4 -5
- package/date-input/DateInput.stories.tsx +15 -8
- package/date-input/DatePicker.js +13 -7
- package/date-input/YearPicker.js +1 -1
- package/date-input/types.d.ts +2 -2
- package/dialog/Dialog.accessibility.test.js +69 -0
- package/dialog/Dialog.js +11 -25
- package/dialog/Dialog.stories.tsx +176 -0
- package/dialog/Dialog.test.js +1 -1
- package/divider/Divider.accessibility.test.js +33 -0
- package/divider/Divider.d.ts +4 -0
- package/divider/Divider.js +36 -0
- package/divider/Divider.stories.tsx +223 -0
- package/divider/Divider.test.js +38 -0
- package/divider/types.d.ts +21 -0
- package/divider/types.js +5 -0
- package/dropdown/Dropdown.accessibility.test.js +180 -0
- package/dropdown/Dropdown.js +26 -39
- package/dropdown/Dropdown.stories.tsx +15 -26
- package/dropdown/Dropdown.test.js +18 -18
- package/dropdown/DropdownMenu.js +4 -4
- package/dropdown/DropdownMenuItem.js +8 -4
- package/dropdown/types.d.ts +3 -5
- package/file-input/FileInput.accessibility.test.js +160 -0
- package/file-input/FileInput.js +126 -141
- package/file-input/FileInput.test.js +84 -110
- package/file-input/FileItem.js +18 -28
- package/file-input/types.d.ts +1 -1
- package/footer/Footer.accessibility.test.js +125 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +36 -31
- package/footer/Footer.stories.tsx +58 -2
- package/footer/Icons.d.ts +1 -0
- package/footer/Icons.js +52 -16
- package/footer/types.d.ts +8 -8
- package/header/Header.accessibility.test.js +93 -0
- package/header/Header.js +20 -41
- package/header/Header.stories.tsx +16 -0
- package/header/Icons.js +1 -6
- package/header/types.d.ts +4 -3
- package/heading/Heading.accessibility.test.js +33 -0
- package/heading/Heading.js +1 -1
- package/icon/Icon.accessibility.test.js +30 -0
- package/icon/Icon.d.ts +4 -0
- package/icon/Icon.js +33 -0
- package/icon/Icon.stories.tsx +28 -0
- package/icon/types.d.ts +4 -0
- package/icon/types.js +5 -0
- package/image/Image.accessibility.test.js +56 -0
- package/image/Image.js +1 -1
- package/image/Image.stories.tsx +3 -1
- package/layout/ApplicationLayout.d.ts +1 -1
- package/layout/ApplicationLayout.js +10 -7
- package/layout/Icons.d.ts +0 -1
- package/layout/Icons.js +1 -11
- package/link/Link.accessibility.test.js +108 -0
- package/link/Link.js +8 -6
- package/link/Link.stories.tsx +4 -4
- package/link/types.d.ts +1 -1
- package/main.d.ts +7 -3
- package/main.js +37 -9
- package/nav-tabs/NavTabs.accessibility.test.js +44 -0
- package/nav-tabs/NavTabs.d.ts +1 -2
- package/nav-tabs/NavTabs.js +10 -7
- package/nav-tabs/NavTabs.stories.tsx +29 -24
- package/nav-tabs/NavTabs.test.js +11 -9
- package/nav-tabs/NavTabsContext.d.ts +3 -0
- package/nav-tabs/NavTabsContext.js +8 -0
- package/nav-tabs/Tab.js +23 -23
- package/nav-tabs/types.d.ts +1 -1
- package/number-input/NumberInput.accessibility.test.js +228 -0
- package/number-input/NumberInput.d.ts +0 -7
- package/number-input/NumberInput.js +24 -5
- package/number-input/NumberInput.test.js +165 -6
- package/number-input/NumberInputContext.d.ts +3 -0
- package/number-input/NumberInputContext.js +8 -0
- package/number-input/types.d.ts +6 -0
- package/package.json +16 -14
- package/paginator/Paginator.accessibility.test.js +79 -0
- package/paginator/Paginator.js +14 -14
- package/paragraph/Paragraph.accessibility.test.js +28 -0
- package/paragraph/Paragraph.js +2 -7
- package/password-input/PasswordInput.accessibility.test.js +153 -0
- package/password-input/PasswordInput.js +7 -7
- package/password-input/PasswordInput.stories.tsx +0 -1
- package/password-input/PasswordInput.test.js +4 -4
- package/progress-bar/ProgressBar.accessibility.test.js +35 -0
- package/progress-bar/ProgressBar.js +11 -15
- package/quick-nav/QuickNav.accessibility.test.js +57 -0
- package/quick-nav/QuickNav.js +1 -1
- package/radio-group/Radio.js +1 -1
- package/radio-group/RadioGroup.accessibility.test.js +97 -0
- package/radio-group/RadioGroup.js +3 -2
- package/resultset-table/ResultsetTable.accessibility.test.js +285 -0
- package/resultset-table/ResultsetTable.d.ts +4 -1
- package/resultset-table/ResultsetTable.js +25 -13
- package/resultset-table/ResultsetTable.stories.tsx +118 -5
- package/resultset-table/ResultsetTable.test.js +76 -0
- package/resultset-table/types.d.ts +40 -7
- package/select/Listbox.js +28 -16
- package/select/Option.js +19 -10
- package/select/Select.accessibility.test.js +228 -0
- package/select/Select.js +57 -37
- package/select/Select.stories.tsx +59 -111
- package/select/Select.test.js +387 -456
- package/select/types.d.ts +3 -3
- package/sidenav/Sidenav.accessibility.test.js +59 -0
- package/sidenav/Sidenav.js +21 -19
- package/sidenav/Sidenav.stories.tsx +4 -9
- package/sidenav/types.d.ts +2 -2
- package/slider/Slider.accessibility.test.js +104 -0
- package/slider/Slider.js +40 -48
- package/spinner/Spinner.accessibility.test.js +96 -0
- package/spinner/Spinner.js +12 -16
- package/status-light/StatusLight.accessibility.test.js +157 -0
- package/status-light/StatusLight.d.ts +4 -0
- package/status-light/StatusLight.js +51 -0
- package/status-light/StatusLight.stories.tsx +74 -0
- package/status-light/StatusLight.test.js +25 -0
- package/status-light/types.d.ts +17 -0
- package/status-light/types.js +5 -0
- package/switch/Switch.accessibility.test.js +98 -0
- package/switch/Switch.js +24 -29
- package/switch/Switch.stories.tsx +12 -0
- package/table/DropdownTheme.js +62 -0
- package/table/Table.accessibility.test.js +93 -0
- package/table/Table.d.ts +6 -2
- package/table/Table.js +74 -12
- package/table/Table.stories.tsx +309 -2
- package/table/Table.test.js +92 -0
- package/table/types.d.ts +28 -0
- package/tabs/Tab.js +13 -9
- package/tabs/Tabs.accessibility.test.js +56 -0
- package/tabs/Tabs.js +12 -24
- package/tabs/Tabs.stories.tsx +8 -4
- package/tabs/Tabs.test.js +19 -37
- package/tabs/types.d.ts +2 -2
- package/tag/Tag.accessibility.test.js +69 -0
- package/tag/Tag.js +7 -7
- package/tag/Tag.stories.tsx +4 -7
- package/tag/Tag.test.js +4 -12
- package/tag/types.d.ts +2 -2
- package/text-input/Suggestion.js +1 -1
- package/text-input/Suggestions.js +19 -14
- package/text-input/TextInput.accessibility.test.js +321 -0
- package/text-input/TextInput.js +84 -105
- package/text-input/TextInput.stories.tsx +17 -8
- package/text-input/TextInput.test.js +96 -79
- package/textarea/Textarea.accessibility.test.js +155 -0
- package/textarea/Textarea.js +12 -17
- package/textarea/Textarea.stories.tsx +0 -1
- package/toggle-group/ToggleGroup.accessibility.test.js +107 -0
- package/toggle-group/ToggleGroup.js +6 -8
- package/toggle-group/ToggleGroup.stories.tsx +3 -3
- package/toggle-group/types.d.ts +2 -2
- package/typography/Typography.accessibility.test.js +339 -0
- package/useTheme.d.ts +31 -138
- package/utils/BaseTypography.js +1 -1
- package/utils/FocusLock.js +16 -6
- package/wizard/Wizard.accessibility.test.js +55 -0
- package/wizard/Wizard.js +14 -25
- package/wizard/Wizard.stories.tsx +19 -0
- package/wizard/types.d.ts +2 -2
- package/common/OpenSans.css +0 -69
- package/common/fonts/OpenSans-Bold.ttf +0 -0
- package/common/fonts/OpenSans-BoldItalic.ttf +0 -0
- package/common/fonts/OpenSans-ExtraBold.ttf +0 -0
- package/common/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- package/common/fonts/OpenSans-Italic.ttf +0 -0
- package/common/fonts/OpenSans-Light.ttf +0 -0
- package/common/fonts/OpenSans-LightItalic.ttf +0 -0
- package/common/fonts/OpenSans-Regular.ttf +0 -0
- package/common/fonts/OpenSans-SemiBold.ttf +0 -0
- package/common/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
- package/date-input/Icons.d.ts +0 -6
- package/date-input/Icons.js +0 -58
- package/paginator/Icons.d.ts +0 -5
- package/paginator/Icons.js +0 -40
- package/password-input/Icons.d.ts +0 -6
- package/password-input/Icons.js +0 -35
- package/select/Icons.d.ts +0 -10
- package/select/Icons.js +0 -89
- package/sidenav/Icons.d.ts +0 -7
- package/sidenav/Icons.js +0 -47
- package/text-input/Icons.d.ts +0 -8
- package/text-input/Icons.js +0 -56
- /package/{layout → sidenav}/SidenavContext.d.ts +0 -0
- /package/{layout → sidenav}/SidenavContext.js +0 -0
package/common/variables.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export declare const componentTokens: {
|
|
|
36
36
|
disabledIconColor: string;
|
|
37
37
|
iconSize: string;
|
|
38
38
|
iconMarginLeft: string;
|
|
39
|
-
|
|
39
|
+
iconMarginRight: string;
|
|
40
40
|
accordionGroupSeparatorBorderColor: string;
|
|
41
41
|
accordionGroupSeparatorBorderThickness: string;
|
|
42
42
|
accordionGroupSeparatorBorderRadius: string;
|
|
@@ -109,7 +109,6 @@ export declare const componentTokens: {
|
|
|
109
109
|
};
|
|
110
110
|
bulletedList: {
|
|
111
111
|
fontColor: string;
|
|
112
|
-
fontColorOnDark: string;
|
|
113
112
|
bulletIconHeight: string;
|
|
114
113
|
bulletIconWidth: string;
|
|
115
114
|
bulletHeight: string;
|
|
@@ -124,19 +123,12 @@ export declare const componentTokens: {
|
|
|
124
123
|
paddingTop: string;
|
|
125
124
|
paddingBottom: string;
|
|
126
125
|
focusBorderColor: string;
|
|
127
|
-
focusBorderColorOnDark: string;
|
|
128
126
|
primaryBackgroundColor: string;
|
|
129
|
-
primaryBackgroundColorOnDark: string;
|
|
130
127
|
primaryFontColor: string;
|
|
131
|
-
primaryFontColorOnDark: string;
|
|
132
128
|
primaryHoverBackgroundColor: string;
|
|
133
|
-
primaryHoverBackgroundColorOnDark: string;
|
|
134
129
|
primaryActiveBackgroundColor: string;
|
|
135
|
-
primaryActiveBackgroundColorOnDark: string;
|
|
136
130
|
primaryDisabledBackgroundColor: string;
|
|
137
|
-
primaryDisabledBackgroundColorOnDark: string;
|
|
138
131
|
primaryDisabledFontColor: string;
|
|
139
|
-
primaryDisabledFontColorOnDark: string;
|
|
140
132
|
primaryBorderThickness: string;
|
|
141
133
|
primaryBorderStyle: string;
|
|
142
134
|
primaryBorderRadius: string;
|
|
@@ -144,23 +136,14 @@ export declare const componentTokens: {
|
|
|
144
136
|
primaryFontSize: string;
|
|
145
137
|
primaryFontWeight: string;
|
|
146
138
|
secondaryBackgroundColor: string;
|
|
147
|
-
secondaryBackgroundColorOnDark: string;
|
|
148
139
|
secondaryFontColor: string;
|
|
149
|
-
secondaryFontColorOnDark: string;
|
|
150
140
|
secondaryHoverFontColor: string;
|
|
151
|
-
secondaryHoverFontColorOnDark: string;
|
|
152
141
|
secondaryBorderColor: string;
|
|
153
|
-
secondaryBorderColorOnDark: string;
|
|
154
142
|
secondaryHoverBackgroundColor: string;
|
|
155
|
-
secondaryHoverBackgroundColorOnDark: string;
|
|
156
143
|
secondaryActiveBackgroundColor: string;
|
|
157
|
-
secondaryActiveBackgroundColorOnDark: string;
|
|
158
144
|
secondaryDisabledBackgroundColor: string;
|
|
159
|
-
secondaryDisabledBackgroundColorOnDark: string;
|
|
160
145
|
secondaryDisabledFontColor: string;
|
|
161
|
-
secondaryDisabledFontColorOnDark: string;
|
|
162
146
|
secondaryDisabledBorderColor: string;
|
|
163
|
-
secondaryDisabledBorderColorOnDark: string;
|
|
164
147
|
secondaryBorderThickness: string;
|
|
165
148
|
secondaryBorderStyle: string;
|
|
166
149
|
secondaryBorderRadius: string;
|
|
@@ -168,17 +151,11 @@ export declare const componentTokens: {
|
|
|
168
151
|
secondaryFontSize: string;
|
|
169
152
|
secondaryFontWeight: string;
|
|
170
153
|
textBackgroundColor: string;
|
|
171
|
-
textBackgroundColorOnDark: string;
|
|
172
154
|
textFontColor: string;
|
|
173
|
-
textFontColorOnDark: string;
|
|
174
155
|
textHoverBackgroundColor: string;
|
|
175
|
-
textHoverBackgroundColorOnDark: string;
|
|
176
156
|
textActiveBackgroundColor: string;
|
|
177
|
-
textActiveBackgroundColorOnDark: string;
|
|
178
157
|
textDisabledBackgroundColor: string;
|
|
179
|
-
textDisabledBackgroundColorOnDark: string;
|
|
180
158
|
textDisabledFontColor: string;
|
|
181
|
-
textDisabledFontColorOnDark: string;
|
|
182
159
|
textBorderThickness: string;
|
|
183
160
|
textBorderStyle: string;
|
|
184
161
|
textBorderRadius: string;
|
|
@@ -192,35 +169,24 @@ export declare const componentTokens: {
|
|
|
192
169
|
};
|
|
193
170
|
checkbox: {
|
|
194
171
|
backgroundColorChecked: string;
|
|
195
|
-
backgroundColorCheckedOnDark: string;
|
|
196
172
|
hoverBackgroundColorChecked: string;
|
|
197
|
-
hoverBackgroundColorCheckedOnDark: string;
|
|
198
173
|
disabledBackgroundColorChecked: string;
|
|
199
|
-
disabledBackgroundColorCheckedOnDark: string;
|
|
200
174
|
readOnlyBackgroundColorChecked: string;
|
|
201
175
|
hoverReadOnlyBackgroundColorChecked: string;
|
|
202
176
|
borderColor: string;
|
|
203
|
-
borderColorOnDark: string;
|
|
204
177
|
hoverBorderColor: string;
|
|
205
|
-
hoverBorderColorOnDark: string;
|
|
206
178
|
disabledBorderColor: string;
|
|
207
|
-
disabledBorderColorOnDark: string;
|
|
208
179
|
readOnlyBorderColor: string;
|
|
209
180
|
hoverReadOnlyBorderColor: string;
|
|
210
181
|
checkColor: string;
|
|
211
|
-
checkColorOnDark: string;
|
|
212
182
|
disabledCheckColor: string;
|
|
213
|
-
disabledCheckColorOnDark: string;
|
|
214
183
|
readOnlyCheckColor: string;
|
|
215
184
|
fontFamily: string;
|
|
216
185
|
fontSize: string;
|
|
217
186
|
fontWeight: string;
|
|
218
187
|
fontColor: string;
|
|
219
|
-
fontColorOnDark: string;
|
|
220
188
|
disabledFontColor: string;
|
|
221
|
-
disabledFontColorOnDark: string;
|
|
222
189
|
focusColor: string;
|
|
223
|
-
focusColorOnDark: string;
|
|
224
190
|
checkLabelSpacing: string;
|
|
225
191
|
};
|
|
226
192
|
chip: {
|
|
@@ -285,8 +251,7 @@ export declare const componentTokens: {
|
|
|
285
251
|
dialog: {
|
|
286
252
|
overlayColor: string;
|
|
287
253
|
backgroundColor: string;
|
|
288
|
-
|
|
289
|
-
closeIconHeight: string;
|
|
254
|
+
closeIconSize: string;
|
|
290
255
|
closeIconTopPosition: string;
|
|
291
256
|
closeIconRightPosition: string;
|
|
292
257
|
closeIconBackgroundColor: string;
|
|
@@ -316,9 +281,14 @@ export declare const componentTokens: {
|
|
|
316
281
|
buttonPaddingBottom: string;
|
|
317
282
|
buttonPaddingLeft: string;
|
|
318
283
|
buttonPaddingRight: string;
|
|
284
|
+
buttonHeight: string;
|
|
285
|
+
buttonBorderRadius: string;
|
|
286
|
+
buttonBorderStyle: string;
|
|
287
|
+
buttonBorderThickness: string;
|
|
288
|
+
buttonBorderColor: string;
|
|
319
289
|
disabledColor: string;
|
|
320
290
|
disabledButtonBackgroundColor: string;
|
|
321
|
-
|
|
291
|
+
disabledButtonBorderColor: string;
|
|
322
292
|
optionBackgroundColor: string;
|
|
323
293
|
hoverOptionBackgroundColor: string;
|
|
324
294
|
activeOptionBackgroundColor: string;
|
|
@@ -358,7 +328,6 @@ export declare const componentTokens: {
|
|
|
358
328
|
focusDropBorderColor: string;
|
|
359
329
|
disabledDropBorderColor: string;
|
|
360
330
|
dragoverDropBackgroundColor: string;
|
|
361
|
-
activeFileItemIconBackgrounColor: string;
|
|
362
331
|
errorFileItemBorderColor: string;
|
|
363
332
|
errorFileItemBackgroundColor: string;
|
|
364
333
|
errorFilePreviewBackgroundColor: string;
|
|
@@ -454,7 +423,6 @@ export declare const componentTokens: {
|
|
|
454
423
|
underlinedThickness: string;
|
|
455
424
|
underlinedStyle: string;
|
|
456
425
|
contentColor: string;
|
|
457
|
-
contentColorOnDark: string;
|
|
458
426
|
};
|
|
459
427
|
heading: {
|
|
460
428
|
level1FontColor: string;
|
|
@@ -560,32 +528,27 @@ export declare const componentTokens: {
|
|
|
560
528
|
totalItemsContainerMarginLeft: string;
|
|
561
529
|
};
|
|
562
530
|
paragraph: {
|
|
563
|
-
fontColor: string;
|
|
564
|
-
fontColorOnDark: string;
|
|
565
531
|
display: string;
|
|
532
|
+
fontColor: string;
|
|
566
533
|
fontSize: string;
|
|
567
534
|
fontWeight: string;
|
|
568
535
|
};
|
|
569
536
|
progressBar: {
|
|
570
537
|
trackLineColor: string;
|
|
571
|
-
trackLineColorOnDark: string;
|
|
572
538
|
totalLineColor: string;
|
|
573
539
|
labelFontFamily: string;
|
|
574
540
|
labelFontSize: string;
|
|
575
541
|
labelFontStyle: string;
|
|
576
542
|
labelFontWeight: string;
|
|
577
543
|
labelFontColor: string;
|
|
578
|
-
labelFontColorOnDark: string;
|
|
579
544
|
labelFontTextTransform: string;
|
|
580
545
|
valueFontFamily: string;
|
|
581
546
|
valueFontSize: string;
|
|
582
547
|
valueFontStyle: string;
|
|
583
548
|
valueFontWeight: string;
|
|
584
549
|
valueFontColor: string;
|
|
585
|
-
valueFontColorOnDark: string;
|
|
586
550
|
valueFontTextTransform: string;
|
|
587
551
|
helperTextFontColor: string;
|
|
588
|
-
helperTextFontColorOnDark: string;
|
|
589
552
|
helperTextFontSize: string;
|
|
590
553
|
helperTextFontStyle: string;
|
|
591
554
|
helperTextFontWeight: string;
|
|
@@ -763,7 +726,6 @@ export declare const componentTokens: {
|
|
|
763
726
|
slider: {
|
|
764
727
|
fontFamily: string;
|
|
765
728
|
limitValuesFontColor: string;
|
|
766
|
-
limitValuesFontColorOnDark: string;
|
|
767
729
|
limitValuesFontSize: string;
|
|
768
730
|
limitValuesFontStyle: string;
|
|
769
731
|
limitValuesFontWeight: string;
|
|
@@ -780,15 +742,10 @@ export declare const componentTokens: {
|
|
|
780
742
|
helperTextFontWeight: string;
|
|
781
743
|
helperTextLineHeight: string;
|
|
782
744
|
fontColor: string;
|
|
783
|
-
fontColorOnDark: string;
|
|
784
745
|
labelFontColor: string;
|
|
785
|
-
labelFontColorOnDark: string;
|
|
786
746
|
helperTextFontColor: string;
|
|
787
|
-
helperTextFontColorOnDark: string;
|
|
788
747
|
disabledLabelFontColor: string;
|
|
789
|
-
disabledLabelFontColorOnDark: string;
|
|
790
748
|
disabledHelperTextFontColor: string;
|
|
791
|
-
disabledHelperTextFontColorOnDark: string;
|
|
792
749
|
thumbHeight: string;
|
|
793
750
|
thumbWidth: string;
|
|
794
751
|
hoverThumbHeight: string;
|
|
@@ -796,40 +753,28 @@ export declare const componentTokens: {
|
|
|
796
753
|
thumbVerticalPosition: string;
|
|
797
754
|
hoverThumbVerticalPosition: string;
|
|
798
755
|
thumbBackgroundColor: string;
|
|
799
|
-
thumbBackgroundColorOnDark: string;
|
|
800
756
|
hoverThumbScale: string;
|
|
801
757
|
hoverThumbBackgroundColor: string;
|
|
802
|
-
hoverThumbBackgroundColorOnDark: string;
|
|
803
758
|
activeThumbScale: string;
|
|
804
759
|
activeThumbBackgroundColor: string;
|
|
805
|
-
activeThumbBackgroundColorOnDark: string;
|
|
806
760
|
focusThumbBackgroundColor: string;
|
|
807
|
-
focusThumbBackgroundColorOnDark: string;
|
|
808
761
|
tickHeight: string;
|
|
809
762
|
tickWidth: string;
|
|
810
763
|
tickVerticalPosition: string;
|
|
811
764
|
tickBackgroundColor: string;
|
|
812
|
-
tickBackgroundColorOnDark: string;
|
|
813
765
|
trackLineThickness: string;
|
|
814
766
|
trackLineVerticalPosition: string;
|
|
815
767
|
trackLineColor: string;
|
|
816
|
-
trackLineColorOnDark: string;
|
|
817
768
|
totalLineThickness: string;
|
|
818
769
|
totalLineVerticalPosition: string;
|
|
819
770
|
totalLineColor: string;
|
|
820
|
-
totalLineColorOnDark: string;
|
|
821
771
|
disabledThumbVerticalPosition: string;
|
|
822
772
|
disabledThumbBackgroundColor: string;
|
|
823
|
-
disabledThumbBackgroundColorOnDark: string;
|
|
824
773
|
disabledTickVerticalPosition: string;
|
|
825
774
|
disabledTickBackgroundColor: string;
|
|
826
|
-
disabledTickBackgroundColorOnDark: string;
|
|
827
775
|
disabledTrackLineColor: string;
|
|
828
|
-
disabledTrackLineColorOnDark: string;
|
|
829
776
|
disabledTotalLineColor: string;
|
|
830
|
-
disabledTotalLineColorOnDark: string;
|
|
831
777
|
focusColor: string;
|
|
832
|
-
focusColorOnDark: string;
|
|
833
778
|
floorLabelMarginRight: string;
|
|
834
779
|
ceilLabelMarginLeft: string;
|
|
835
780
|
inputMarginLeft: string;
|
|
@@ -843,14 +788,12 @@ export declare const componentTokens: {
|
|
|
843
788
|
labelFontStyle: string;
|
|
844
789
|
labelFontWeight: string;
|
|
845
790
|
labelFontColor: string;
|
|
846
|
-
labelFontColorOnDark: string;
|
|
847
791
|
labelTextAlign: string;
|
|
848
792
|
progressValueFontFamily: string;
|
|
849
793
|
progressValueFontSize: string;
|
|
850
794
|
progressValueFontStyle: string;
|
|
851
795
|
progressValueFontWeight: string;
|
|
852
796
|
progressValueFontColor: string;
|
|
853
|
-
progressValueFontColorOnDark: string;
|
|
854
797
|
progressValueTextAlign: string;
|
|
855
798
|
overlayBackgroundColor: string;
|
|
856
799
|
overlayOpacity: string;
|
|
@@ -869,32 +812,21 @@ export declare const componentTokens: {
|
|
|
869
812
|
};
|
|
870
813
|
switch: {
|
|
871
814
|
checkedTrackBackgroundColor: string;
|
|
872
|
-
checkedTrackBackgroundColorOnDark: string;
|
|
873
815
|
checkedThumbBackgroundColor: string;
|
|
874
|
-
checkedThumbBackgroundColorOnDark: string;
|
|
875
816
|
uncheckedTrackBackgroundColor: string;
|
|
876
|
-
uncheckedTrackBackgroundColorOnDark: string;
|
|
877
817
|
uncheckedThumbBackgroundColor: string;
|
|
878
|
-
uncheckedThumbBackgroundColorOnDark: string;
|
|
879
818
|
disabledCheckedTrackBackgroundColor: string;
|
|
880
|
-
disabledCheckedTrackBackgroundColorOnDark: string;
|
|
881
819
|
disabledCheckedThumbBackgroundColor: string;
|
|
882
|
-
disabledCheckedThumbBackgroundColorOnDark: string;
|
|
883
820
|
disabledUncheckedTrackBackgroundColor: string;
|
|
884
|
-
disabledUncheckedTrackBackgroundColorOnDark: string;
|
|
885
821
|
disabledUncheckedThumbBackgroundColor: string;
|
|
886
|
-
disabledUncheckedThumbBackgroundColorOnDark: string;
|
|
887
822
|
disabledLabelFontColor: string;
|
|
888
|
-
disabledLabelFontColorOnDark: string;
|
|
889
823
|
disabledLabelFontStyle: string;
|
|
890
824
|
labelFontFamily: string;
|
|
891
825
|
labelFontSize: string;
|
|
892
826
|
labelFontStyle: string;
|
|
893
827
|
labelFontWeight: string;
|
|
894
828
|
labelFontColor: string;
|
|
895
|
-
labelFontColorOnDark: string;
|
|
896
829
|
thumbFocusColor: string;
|
|
897
|
-
thumbFocusColorOnDark: string;
|
|
898
830
|
thumbHeight: string;
|
|
899
831
|
thumbWidth: string;
|
|
900
832
|
thumbShift: string;
|
|
@@ -917,8 +849,16 @@ export declare const componentTokens: {
|
|
|
917
849
|
dataPaddingBottom: string;
|
|
918
850
|
dataPaddingRight: string;
|
|
919
851
|
dataPaddingLeft: string;
|
|
852
|
+
dataPaddingTopReduced: string;
|
|
853
|
+
dataPaddingBottomReduced: string;
|
|
854
|
+
dataPaddingRightReduced: string;
|
|
855
|
+
dataPaddingLeftReduced: string;
|
|
920
856
|
dataTextAlign: string;
|
|
921
857
|
dataTextLineHeight: string;
|
|
858
|
+
firstChildPaddingLeft: string;
|
|
859
|
+
lastChildPaddingRight: string;
|
|
860
|
+
firstChildPaddingLeftReduced: string;
|
|
861
|
+
lastChildPaddingRightReduced: string;
|
|
922
862
|
headerBackgroundColor: string;
|
|
923
863
|
headerBorderRadius: string;
|
|
924
864
|
headerFontFamily: string;
|
|
@@ -931,11 +871,25 @@ export declare const componentTokens: {
|
|
|
931
871
|
headerPaddingBottom: string;
|
|
932
872
|
headerPaddingRight: string;
|
|
933
873
|
headerPaddingLeft: string;
|
|
874
|
+
headerPaddingTopReduced: string;
|
|
875
|
+
headerPaddingBottomReduced: string;
|
|
876
|
+
headerPaddingRightReduced: string;
|
|
877
|
+
headerPaddingLeftReduced: string;
|
|
934
878
|
headerTextAlign: string;
|
|
935
879
|
headerTextLineHeight: string;
|
|
936
880
|
scrollBarThumbColor: string;
|
|
937
881
|
scrollBarTrackColor: string;
|
|
938
882
|
sortIconColor: string;
|
|
883
|
+
actionIconColor: string;
|
|
884
|
+
disabledActionIconColor: string;
|
|
885
|
+
hoverActionIconColor: string;
|
|
886
|
+
focusActionIconColor: string;
|
|
887
|
+
activeActionIconColor: string;
|
|
888
|
+
actionBackgroundColor: string;
|
|
889
|
+
disabledActionBackgroundColor: string;
|
|
890
|
+
hoverActionBackgroundColor: string;
|
|
891
|
+
focusActionBorderColor: string;
|
|
892
|
+
activeActionBackgroundColor: string;
|
|
939
893
|
};
|
|
940
894
|
tabs: {
|
|
941
895
|
fontFamily: string;
|
|
@@ -954,7 +908,6 @@ export declare const componentTokens: {
|
|
|
954
908
|
disabledFontColor: string;
|
|
955
909
|
disabledIconColor: string;
|
|
956
910
|
disabledFontStyle: string;
|
|
957
|
-
disabledBadgeBackgroundColor: string;
|
|
958
911
|
hoverBackgroundColor: string;
|
|
959
912
|
pressedBackgroundColor: string;
|
|
960
913
|
pressedFontWeight: string;
|
|
@@ -962,19 +915,6 @@ export declare const componentTokens: {
|
|
|
962
915
|
dividerThickness: string;
|
|
963
916
|
focusOutline: string;
|
|
964
917
|
scrollButtonsWidth: string;
|
|
965
|
-
badgeBackgroundColor: string;
|
|
966
|
-
badgeFontFamily: string;
|
|
967
|
-
badgeFontSize: string;
|
|
968
|
-
badgeFontStyle: string;
|
|
969
|
-
badgeFontWeight: string;
|
|
970
|
-
badgeFontColor: string;
|
|
971
|
-
badgeLetterSpacing: string;
|
|
972
|
-
badgeWidth: string;
|
|
973
|
-
badgeHeight: string;
|
|
974
|
-
badgeRadius: string;
|
|
975
|
-
badgeWidthWithNotificationNumber: string;
|
|
976
|
-
badgeHeightWithNotificationNumber: string;
|
|
977
|
-
badgeRadiusWithNotificationNumber: string;
|
|
978
918
|
};
|
|
979
919
|
tag: {
|
|
980
920
|
fontFamily: string;
|
|
@@ -996,134 +936,87 @@ export declare const componentTokens: {
|
|
|
996
936
|
textarea: {
|
|
997
937
|
fontFamily: string;
|
|
998
938
|
enabledBorderColor: string;
|
|
999
|
-
enabledBorderColorOnDark: string;
|
|
1000
939
|
hoverBorderColor: string;
|
|
1001
|
-
hoverBorderColorOnDark: string;
|
|
1002
940
|
focusBorderColor: string;
|
|
1003
|
-
focusBorderColorOnDark: string;
|
|
1004
941
|
disabledBorderColor: string;
|
|
1005
|
-
disabledBorderColorOnDark: string;
|
|
1006
942
|
disabledContainerFillColor: string;
|
|
1007
|
-
disabledContainerFillColorOnDark: string;
|
|
1008
943
|
readOnlyBorderColor: string;
|
|
1009
944
|
hoverReadOnlyBorderColor: string;
|
|
1010
945
|
errorBorderColor: string;
|
|
1011
|
-
errorBorderColorOnDark: string;
|
|
1012
946
|
hoverErrorBorderColor: string;
|
|
1013
|
-
hoverErrorBorderColorOnDark: string;
|
|
1014
947
|
inputMarginTop: string;
|
|
1015
948
|
inputMarginBottom: string;
|
|
1016
949
|
errorMessageColor: string;
|
|
1017
|
-
errorMessageColorOnDark: string;
|
|
1018
950
|
labelFontColor: string;
|
|
1019
|
-
labelFontColorOnDark: string;
|
|
1020
951
|
labelFontSize: string;
|
|
1021
952
|
labelFontStyle: string;
|
|
1022
953
|
labelFontWeight: string;
|
|
1023
954
|
labelLineHeight: string;
|
|
1024
955
|
disabledLabelFontColor: string;
|
|
1025
|
-
disabledLabelFontColorOnDark: string;
|
|
1026
956
|
optionalLabelFontWeight: string;
|
|
1027
957
|
helperTextFontColor: string;
|
|
1028
|
-
helperTextFontColorOnDark: string;
|
|
1029
958
|
helperTextFontSize: string;
|
|
1030
959
|
helperTextFontStyle: string;
|
|
1031
960
|
helperTextFontWeight: string;
|
|
1032
961
|
helperTextLineHeight: string;
|
|
1033
962
|
disabledHelperTextFontColor: string;
|
|
1034
|
-
disabledHelperTextFontColorOnDark: string;
|
|
1035
963
|
placeholderFontColor: string;
|
|
1036
|
-
placeholderFontColorOnDark: string;
|
|
1037
964
|
disabledPlaceholderFontColor: string;
|
|
1038
|
-
disabledPlaceholderFontColorOnDark: string;
|
|
1039
965
|
valueFontColor: string;
|
|
1040
|
-
valueFontColorOnDark: string;
|
|
1041
966
|
valueFontSize: string;
|
|
1042
967
|
valueFontStyle: string;
|
|
1043
968
|
valueFontWeight: string;
|
|
1044
969
|
disabledValueFontColor: string;
|
|
1045
|
-
disabledValueFontColorOnDark: string;
|
|
1046
970
|
};
|
|
1047
971
|
textInput: {
|
|
1048
972
|
fontFamily: string;
|
|
1049
973
|
enabledBorderColor: string;
|
|
1050
|
-
enabledBorderColorOnDark: string;
|
|
1051
974
|
hoverBorderColor: string;
|
|
1052
|
-
hoverBorderColorOnDark: string;
|
|
1053
975
|
focusBorderColor: string;
|
|
1054
|
-
focusBorderColorOnDark: string;
|
|
1055
976
|
disabledBorderColor: string;
|
|
1056
|
-
disabledBorderColorOnDark: string;
|
|
1057
977
|
disabledContainerFillColor: string;
|
|
1058
|
-
disabledContainerFillColorOnDark: string;
|
|
1059
978
|
readOnlyBorderColor: string;
|
|
1060
979
|
hoverReadOnlyBorderColor: string;
|
|
1061
980
|
errorBorderColor: string;
|
|
1062
|
-
errorBorderColorOnDark: string;
|
|
1063
981
|
hoverErrorBorderColor: string;
|
|
1064
|
-
hoverErrorBorderColorOnDark: string;
|
|
1065
982
|
inputMarginTop: string;
|
|
1066
983
|
inputMarginBottom: string;
|
|
1067
984
|
errorMessageColor: string;
|
|
1068
|
-
errorMessageColorOnDark: string;
|
|
1069
985
|
errorIconColor: string;
|
|
1070
|
-
errorIconColorOnDark: string;
|
|
1071
986
|
labelFontColor: string;
|
|
1072
|
-
labelFontColorOnDark: string;
|
|
1073
987
|
labelFontSize: string;
|
|
1074
988
|
labelFontStyle: string;
|
|
1075
989
|
labelFontWeight: string;
|
|
1076
990
|
labelLineHeight: string;
|
|
1077
991
|
disabledLabelFontColor: string;
|
|
1078
|
-
disabledLabelFontColorOnDark: string;
|
|
1079
992
|
optionalLabelFontWeight: string;
|
|
1080
993
|
helperTextFontColor: string;
|
|
1081
|
-
helperTextFontColorOnDark: string;
|
|
1082
994
|
helperTextFontSize: string;
|
|
1083
995
|
helperTextFontStyle: string;
|
|
1084
996
|
helperTextFontWeight: string;
|
|
1085
997
|
helperTextLineHeight: string;
|
|
1086
998
|
disabledHelperTextFontColor: string;
|
|
1087
|
-
disabledHelperTextFontColorOnDark: string;
|
|
1088
999
|
prefixColor: string;
|
|
1089
|
-
prefixColorOnDark: string;
|
|
1090
1000
|
suffixColor: string;
|
|
1091
|
-
suffixColorOnDark: string;
|
|
1092
1001
|
disabledPrefixColor: string;
|
|
1093
1002
|
disabledSuffixColor: string;
|
|
1094
|
-
disabledPrefixColorOnDark: string;
|
|
1095
|
-
disabledSuffixColorOnDark: string;
|
|
1096
1003
|
placeholderFontColor: string;
|
|
1097
|
-
placeholderFontColorOnDark: string;
|
|
1098
1004
|
disabledPlaceholderFontColor: string;
|
|
1099
|
-
disabledPlaceholderFontColorOnDark: string;
|
|
1100
1005
|
valueFontColor: string;
|
|
1101
|
-
valueFontColorOnDark: string;
|
|
1102
1006
|
valueFontSize: string;
|
|
1103
1007
|
valueFontStyle: string;
|
|
1104
1008
|
valueFontWeight: string;
|
|
1105
1009
|
disabledValueFontColor: string;
|
|
1106
|
-
disabledValueFontColorOnDark: string;
|
|
1107
1010
|
actionIconColor: string;
|
|
1108
|
-
actionIconColorOnDark: string;
|
|
1109
1011
|
disabledActionIconColor: string;
|
|
1110
|
-
disabledActionIconColorOnDark: string;
|
|
1111
1012
|
hoverActionIconColor: string;
|
|
1112
|
-
hoverActionIconColorOnDark: string;
|
|
1113
1013
|
focusActionIconColor: string;
|
|
1114
|
-
focusActionIconColorOnDark: string;
|
|
1115
1014
|
activeActionIconColor: string;
|
|
1116
|
-
activeActionIconColorOnDark: string;
|
|
1117
1015
|
actionBackgroundColor: string;
|
|
1118
|
-
actionBackgroundColorOnDark: string;
|
|
1119
1016
|
disabledActionBackgroundColor: string;
|
|
1120
|
-
disabledActionBackgroundColorOnDark: string;
|
|
1121
1017
|
hoverActionBackgroundColor: string;
|
|
1122
|
-
hoverActionBackgroundColorOnDark: string;
|
|
1123
1018
|
focusActionBorderColor: string;
|
|
1124
|
-
focusActionBorderColorOnDark: string;
|
|
1125
1019
|
activeActionBackgroundColor: string;
|
|
1126
|
-
activeActionBackgroundColorOnDark: string;
|
|
1127
1020
|
listDialogBackgroundColor: string;
|
|
1128
1021
|
listDialogBorderColor: string;
|
|
1129
1022
|
listOptionDividerColor: string;
|