@dxc-technology/halstack-react 0.0.0-c9c1158 → 0.0.0-c9efd3e
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 +2 -7
- package/HalstackContext.d.ts +29 -133
- package/HalstackContext.js +1 -1
- package/accordion/Accordion.accessibility.test.js +71 -0
- package/accordion/Accordion.js +10 -26
- package/accordion/Accordion.stories.tsx +4 -36
- 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 +3 -3
- package/accordion-group/AccordionGroupAccordion.js +2 -2
- 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 +15 -72
- 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 +1 -4
- package/bulleted-list/BulletedList.accessibility.test.js +107 -0
- package/bulleted-list/BulletedList.js +15 -22
- package/bulleted-list/BulletedList.stories.tsx +1 -2
- package/button/Button.accessibility.test.js +127 -0
- package/button/Button.js +15 -15
- package/button/Button.stories.tsx +32 -51
- package/button/Button.test.js +3 -1
- package/button/types.d.ts +1 -1
- package/card/Card.accessibility.test.js +36 -0
- package/checkbox/Checkbox.accessibility.test.js +87 -0
- package/checkbox/Checkbox.js +26 -31
- package/chip/Chip.accessibility.test.js +67 -0
- package/chip/Chip.js +8 -5
- package/chip/Chip.stories.tsx +5 -24
- package/chip/Chip.test.js +4 -4
- package/common/coreTokens.d.ts +1 -1
- package/common/coreTokens.js +3 -3
- package/common/variables.d.ts +29 -133
- package/common/variables.js +38 -142
- package/container/Container.js +3 -7
- package/container/Container.stories.tsx +10 -25
- package/contextual-menu/ContextualMenu.accessibility.test.js +86 -0
- package/contextual-menu/ContextualMenu.d.ts +7 -0
- package/contextual-menu/ContextualMenu.js +71 -0
- package/contextual-menu/ContextualMenu.stories.tsx +182 -0
- package/contextual-menu/ContextualMenu.test.js +71 -0
- package/contextual-menu/MenuItemAction.d.ts +4 -0
- package/contextual-menu/MenuItemAction.js +46 -0
- package/contextual-menu/types.d.ts +22 -0
- package/contextual-menu/types.js +5 -0
- package/date-input/DateInput.accessibility.test.js +216 -0
- package/date-input/types.d.ts +2 -2
- package/dialog/Dialog.accessibility.test.js +69 -0
- package/dialog/Dialog.js +2 -5
- package/dialog/Dialog.stories.tsx +170 -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 +21 -36
- package/dropdown/Dropdown.stories.tsx +5 -16
- package/dropdown/DropdownMenuItem.js +6 -3
- package/dropdown/types.d.ts +3 -5
- package/file-input/FileInput.accessibility.test.js +160 -0
- package/file-input/FileInput.js +3 -39
- package/file-input/FileInput.test.js +7 -84
- package/file-input/FileItem.js +13 -27
- package/footer/Footer.accessibility.test.js +117 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +36 -31
- package/footer/Footer.stories.tsx +46 -2
- package/footer/Icons.d.ts +1 -0
- package/footer/Icons.js +65 -1
- package/footer/types.d.ts +8 -8
- package/header/Header.accessibility.test.js +84 -0
- package/header/Header.js +18 -40
- package/header/types.d.ts +4 -3
- package/heading/Heading.accessibility.test.js +33 -0
- 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.stories.tsx +3 -1
- package/layout/ApplicationLayout.d.ts +1 -1
- package/layout/ApplicationLayout.js +1 -1
- package/layout/Icons.js +0 -2
- package/link/Link.accessibility.test.js +112 -0
- package/link/Link.js +7 -5
- package/link/Link.stories.tsx +2 -2
- package/link/types.d.ts +1 -1
- package/main.d.ts +5 -3
- package/main.js +22 -8
- package/nav-tabs/NavTabs.accessibility.test.js +52 -0
- package/nav-tabs/NavTabs.d.ts +1 -2
- package/nav-tabs/NavTabs.js +9 -6
- package/nav-tabs/NavTabs.stories.tsx +6 -4
- package/nav-tabs/NavTabs.test.js +3 -2
- package/nav-tabs/NavTabsContext.d.ts +3 -0
- package/nav-tabs/NavTabsContext.js +8 -0
- package/nav-tabs/Tab.js +8 -7
- 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 +12 -12
- package/paginator/Paginator.accessibility.test.js +79 -0
- package/paginator/Paginator.js +1 -4
- 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.stories.tsx +0 -1
- package/progress-bar/ProgressBar.accessibility.test.js +35 -0
- package/progress-bar/ProgressBar.js +5 -11
- package/quick-nav/QuickNav.accessibility.test.js +57 -0
- package/radio-group/RadioGroup.accessibility.test.js +97 -0
- package/radio-group/RadioGroup.js +1 -1
- package/resultset-table/ResultsetTable.accessibility.test.js +274 -0
- package/resultset-table/ResultsetTable.d.ts +4 -1
- package/resultset-table/ResultsetTable.js +23 -12
- package/resultset-table/ResultsetTable.stories.tsx +106 -5
- package/resultset-table/ResultsetTable.test.js +76 -0
- package/resultset-table/types.d.ts +40 -7
- package/select/Option.js +8 -1
- package/select/Select.accessibility.test.js +217 -0
- package/select/Select.js +35 -27
- package/select/Select.stories.tsx +0 -1
- package/select/Select.test.js +498 -462
- package/select/types.d.ts +2 -2
- package/sidenav/Sidenav.accessibility.test.js +59 -0
- package/sidenav/Sidenav.js +20 -18
- 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 +37 -46
- package/spinner/Spinner.accessibility.test.js +96 -0
- package/spinner/Spinner.js +6 -14
- 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 +89 -0
- package/switch/Switch.js +23 -28
- package/table/DropdownTheme.js +62 -0
- package/table/Table.accessibility.test.js +82 -0
- package/table/Table.d.ts +6 -2
- package/table/Table.js +73 -11
- package/table/Table.stories.tsx +297 -2
- package/table/Table.test.js +92 -0
- package/table/types.d.ts +28 -0
- package/tabs/Tab.js +7 -4
- package/tabs/Tabs.accessibility.test.js +56 -0
- package/tabs/Tabs.js +4 -5
- package/tabs/Tabs.stories.tsx +1 -1
- package/tag/Tag.accessibility.test.js +69 -0
- package/tag/Tag.js +6 -6
- package/tag/Tag.stories.tsx +4 -7
- package/tag/Tag.test.js +4 -12
- package/tag/types.d.ts +2 -2
- package/text-input/Suggestions.js +7 -10
- package/text-input/TextInput.accessibility.test.js +321 -0
- package/text-input/TextInput.js +77 -102
- package/text-input/TextInput.stories.tsx +1 -1
- package/text-input/TextInput.test.js +96 -79
- package/textarea/Textarea.accessibility.test.js +155 -0
- package/textarea/Textarea.js +10 -16
- package/textarea/Textarea.stories.tsx +0 -1
- package/toggle-group/ToggleGroup.accessibility.test.js +107 -0
- package/toggle-group/ToggleGroup.js +1 -4
- package/typography/Typography.accessibility.test.js +339 -0
- package/useTheme.d.ts +29 -133
- package/utils/FocusLock.js +15 -5
- package/wizard/Wizard.accessibility.test.js +55 -0
- package/wizard/types.d.ts +1 -1
- 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/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: {
|
|
@@ -316,8 +282,14 @@ export declare const componentTokens: {
|
|
|
316
282
|
buttonPaddingBottom: string;
|
|
317
283
|
buttonPaddingLeft: string;
|
|
318
284
|
buttonPaddingRight: string;
|
|
285
|
+
buttonHeight: string;
|
|
286
|
+
buttonBorderRadius: string;
|
|
287
|
+
buttonBorderStyle: string;
|
|
288
|
+
buttonBorderThickness: string;
|
|
289
|
+
buttonBorderColor: string;
|
|
319
290
|
disabledColor: string;
|
|
320
291
|
disabledButtonBackgroundColor: string;
|
|
292
|
+
disabledButtonBorderColor: string;
|
|
321
293
|
disabledBorderColor: string;
|
|
322
294
|
optionBackgroundColor: string;
|
|
323
295
|
hoverOptionBackgroundColor: string;
|
|
@@ -454,7 +426,6 @@ export declare const componentTokens: {
|
|
|
454
426
|
underlinedThickness: string;
|
|
455
427
|
underlinedStyle: string;
|
|
456
428
|
contentColor: string;
|
|
457
|
-
contentColorOnDark: string;
|
|
458
429
|
};
|
|
459
430
|
heading: {
|
|
460
431
|
level1FontColor: string;
|
|
@@ -561,31 +532,26 @@ export declare const componentTokens: {
|
|
|
561
532
|
};
|
|
562
533
|
paragraph: {
|
|
563
534
|
fontColor: string;
|
|
564
|
-
fontColorOnDark: string;
|
|
565
535
|
display: string;
|
|
566
536
|
fontSize: string;
|
|
567
537
|
fontWeight: string;
|
|
568
538
|
};
|
|
569
539
|
progressBar: {
|
|
570
540
|
trackLineColor: string;
|
|
571
|
-
trackLineColorOnDark: string;
|
|
572
541
|
totalLineColor: string;
|
|
573
542
|
labelFontFamily: string;
|
|
574
543
|
labelFontSize: string;
|
|
575
544
|
labelFontStyle: string;
|
|
576
545
|
labelFontWeight: string;
|
|
577
546
|
labelFontColor: string;
|
|
578
|
-
labelFontColorOnDark: string;
|
|
579
547
|
labelFontTextTransform: string;
|
|
580
548
|
valueFontFamily: string;
|
|
581
549
|
valueFontSize: string;
|
|
582
550
|
valueFontStyle: string;
|
|
583
551
|
valueFontWeight: string;
|
|
584
552
|
valueFontColor: string;
|
|
585
|
-
valueFontColorOnDark: string;
|
|
586
553
|
valueFontTextTransform: string;
|
|
587
554
|
helperTextFontColor: string;
|
|
588
|
-
helperTextFontColorOnDark: string;
|
|
589
555
|
helperTextFontSize: string;
|
|
590
556
|
helperTextFontStyle: string;
|
|
591
557
|
helperTextFontWeight: string;
|
|
@@ -763,7 +729,6 @@ export declare const componentTokens: {
|
|
|
763
729
|
slider: {
|
|
764
730
|
fontFamily: string;
|
|
765
731
|
limitValuesFontColor: string;
|
|
766
|
-
limitValuesFontColorOnDark: string;
|
|
767
732
|
limitValuesFontSize: string;
|
|
768
733
|
limitValuesFontStyle: string;
|
|
769
734
|
limitValuesFontWeight: string;
|
|
@@ -780,15 +745,10 @@ export declare const componentTokens: {
|
|
|
780
745
|
helperTextFontWeight: string;
|
|
781
746
|
helperTextLineHeight: string;
|
|
782
747
|
fontColor: string;
|
|
783
|
-
fontColorOnDark: string;
|
|
784
748
|
labelFontColor: string;
|
|
785
|
-
labelFontColorOnDark: string;
|
|
786
749
|
helperTextFontColor: string;
|
|
787
|
-
helperTextFontColorOnDark: string;
|
|
788
750
|
disabledLabelFontColor: string;
|
|
789
|
-
disabledLabelFontColorOnDark: string;
|
|
790
751
|
disabledHelperTextFontColor: string;
|
|
791
|
-
disabledHelperTextFontColorOnDark: string;
|
|
792
752
|
thumbHeight: string;
|
|
793
753
|
thumbWidth: string;
|
|
794
754
|
hoverThumbHeight: string;
|
|
@@ -796,40 +756,28 @@ export declare const componentTokens: {
|
|
|
796
756
|
thumbVerticalPosition: string;
|
|
797
757
|
hoverThumbVerticalPosition: string;
|
|
798
758
|
thumbBackgroundColor: string;
|
|
799
|
-
thumbBackgroundColorOnDark: string;
|
|
800
759
|
hoverThumbScale: string;
|
|
801
760
|
hoverThumbBackgroundColor: string;
|
|
802
|
-
hoverThumbBackgroundColorOnDark: string;
|
|
803
761
|
activeThumbScale: string;
|
|
804
762
|
activeThumbBackgroundColor: string;
|
|
805
|
-
activeThumbBackgroundColorOnDark: string;
|
|
806
763
|
focusThumbBackgroundColor: string;
|
|
807
|
-
focusThumbBackgroundColorOnDark: string;
|
|
808
764
|
tickHeight: string;
|
|
809
765
|
tickWidth: string;
|
|
810
766
|
tickVerticalPosition: string;
|
|
811
767
|
tickBackgroundColor: string;
|
|
812
|
-
tickBackgroundColorOnDark: string;
|
|
813
768
|
trackLineThickness: string;
|
|
814
769
|
trackLineVerticalPosition: string;
|
|
815
770
|
trackLineColor: string;
|
|
816
|
-
trackLineColorOnDark: string;
|
|
817
771
|
totalLineThickness: string;
|
|
818
772
|
totalLineVerticalPosition: string;
|
|
819
773
|
totalLineColor: string;
|
|
820
|
-
totalLineColorOnDark: string;
|
|
821
774
|
disabledThumbVerticalPosition: string;
|
|
822
775
|
disabledThumbBackgroundColor: string;
|
|
823
|
-
disabledThumbBackgroundColorOnDark: string;
|
|
824
776
|
disabledTickVerticalPosition: string;
|
|
825
777
|
disabledTickBackgroundColor: string;
|
|
826
|
-
disabledTickBackgroundColorOnDark: string;
|
|
827
778
|
disabledTrackLineColor: string;
|
|
828
|
-
disabledTrackLineColorOnDark: string;
|
|
829
779
|
disabledTotalLineColor: string;
|
|
830
|
-
disabledTotalLineColorOnDark: string;
|
|
831
780
|
focusColor: string;
|
|
832
|
-
focusColorOnDark: string;
|
|
833
781
|
floorLabelMarginRight: string;
|
|
834
782
|
ceilLabelMarginLeft: string;
|
|
835
783
|
inputMarginLeft: string;
|
|
@@ -843,14 +791,12 @@ export declare const componentTokens: {
|
|
|
843
791
|
labelFontStyle: string;
|
|
844
792
|
labelFontWeight: string;
|
|
845
793
|
labelFontColor: string;
|
|
846
|
-
labelFontColorOnDark: string;
|
|
847
794
|
labelTextAlign: string;
|
|
848
795
|
progressValueFontFamily: string;
|
|
849
796
|
progressValueFontSize: string;
|
|
850
797
|
progressValueFontStyle: string;
|
|
851
798
|
progressValueFontWeight: string;
|
|
852
799
|
progressValueFontColor: string;
|
|
853
|
-
progressValueFontColorOnDark: string;
|
|
854
800
|
progressValueTextAlign: string;
|
|
855
801
|
overlayBackgroundColor: string;
|
|
856
802
|
overlayOpacity: string;
|
|
@@ -869,32 +815,21 @@ export declare const componentTokens: {
|
|
|
869
815
|
};
|
|
870
816
|
switch: {
|
|
871
817
|
checkedTrackBackgroundColor: string;
|
|
872
|
-
checkedTrackBackgroundColorOnDark: string;
|
|
873
818
|
checkedThumbBackgroundColor: string;
|
|
874
|
-
checkedThumbBackgroundColorOnDark: string;
|
|
875
819
|
uncheckedTrackBackgroundColor: string;
|
|
876
|
-
uncheckedTrackBackgroundColorOnDark: string;
|
|
877
820
|
uncheckedThumbBackgroundColor: string;
|
|
878
|
-
uncheckedThumbBackgroundColorOnDark: string;
|
|
879
821
|
disabledCheckedTrackBackgroundColor: string;
|
|
880
|
-
disabledCheckedTrackBackgroundColorOnDark: string;
|
|
881
822
|
disabledCheckedThumbBackgroundColor: string;
|
|
882
|
-
disabledCheckedThumbBackgroundColorOnDark: string;
|
|
883
823
|
disabledUncheckedTrackBackgroundColor: string;
|
|
884
|
-
disabledUncheckedTrackBackgroundColorOnDark: string;
|
|
885
824
|
disabledUncheckedThumbBackgroundColor: string;
|
|
886
|
-
disabledUncheckedThumbBackgroundColorOnDark: string;
|
|
887
825
|
disabledLabelFontColor: string;
|
|
888
|
-
disabledLabelFontColorOnDark: string;
|
|
889
826
|
disabledLabelFontStyle: string;
|
|
890
827
|
labelFontFamily: string;
|
|
891
828
|
labelFontSize: string;
|
|
892
829
|
labelFontStyle: string;
|
|
893
830
|
labelFontWeight: string;
|
|
894
831
|
labelFontColor: string;
|
|
895
|
-
labelFontColorOnDark: string;
|
|
896
832
|
thumbFocusColor: string;
|
|
897
|
-
thumbFocusColorOnDark: string;
|
|
898
833
|
thumbHeight: string;
|
|
899
834
|
thumbWidth: string;
|
|
900
835
|
thumbShift: string;
|
|
@@ -917,8 +852,16 @@ export declare const componentTokens: {
|
|
|
917
852
|
dataPaddingBottom: string;
|
|
918
853
|
dataPaddingRight: string;
|
|
919
854
|
dataPaddingLeft: string;
|
|
855
|
+
dataPaddingTopReduced: string;
|
|
856
|
+
dataPaddingBottomReduced: string;
|
|
857
|
+
dataPaddingRightReduced: string;
|
|
858
|
+
dataPaddingLeftReduced: string;
|
|
920
859
|
dataTextAlign: string;
|
|
921
860
|
dataTextLineHeight: string;
|
|
861
|
+
firstChildPaddingLeft: string;
|
|
862
|
+
lastChildPaddingRight: string;
|
|
863
|
+
firstChildPaddingLeftReduced: string;
|
|
864
|
+
lastChildPaddingRightReduced: string;
|
|
922
865
|
headerBackgroundColor: string;
|
|
923
866
|
headerBorderRadius: string;
|
|
924
867
|
headerFontFamily: string;
|
|
@@ -931,11 +874,25 @@ export declare const componentTokens: {
|
|
|
931
874
|
headerPaddingBottom: string;
|
|
932
875
|
headerPaddingRight: string;
|
|
933
876
|
headerPaddingLeft: string;
|
|
877
|
+
headerPaddingTopReduced: string;
|
|
878
|
+
headerPaddingBottomReduced: string;
|
|
879
|
+
headerPaddingRightReduced: string;
|
|
880
|
+
headerPaddingLeftReduced: string;
|
|
934
881
|
headerTextAlign: string;
|
|
935
882
|
headerTextLineHeight: string;
|
|
936
883
|
scrollBarThumbColor: string;
|
|
937
884
|
scrollBarTrackColor: string;
|
|
938
885
|
sortIconColor: string;
|
|
886
|
+
actionIconColor: string;
|
|
887
|
+
disabledActionIconColor: string;
|
|
888
|
+
hoverActionIconColor: string;
|
|
889
|
+
focusActionIconColor: string;
|
|
890
|
+
activeActionIconColor: string;
|
|
891
|
+
actionBackgroundColor: string;
|
|
892
|
+
disabledActionBackgroundColor: string;
|
|
893
|
+
hoverActionBackgroundColor: string;
|
|
894
|
+
focusActionBorderColor: string;
|
|
895
|
+
activeActionBackgroundColor: string;
|
|
939
896
|
};
|
|
940
897
|
tabs: {
|
|
941
898
|
fontFamily: string;
|
|
@@ -954,7 +911,6 @@ export declare const componentTokens: {
|
|
|
954
911
|
disabledFontColor: string;
|
|
955
912
|
disabledIconColor: string;
|
|
956
913
|
disabledFontStyle: string;
|
|
957
|
-
disabledBadgeBackgroundColor: string;
|
|
958
914
|
hoverBackgroundColor: string;
|
|
959
915
|
pressedBackgroundColor: string;
|
|
960
916
|
pressedFontWeight: string;
|
|
@@ -962,19 +918,6 @@ export declare const componentTokens: {
|
|
|
962
918
|
dividerThickness: string;
|
|
963
919
|
focusOutline: string;
|
|
964
920
|
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
921
|
};
|
|
979
922
|
tag: {
|
|
980
923
|
fontFamily: string;
|
|
@@ -996,134 +939,87 @@ export declare const componentTokens: {
|
|
|
996
939
|
textarea: {
|
|
997
940
|
fontFamily: string;
|
|
998
941
|
enabledBorderColor: string;
|
|
999
|
-
enabledBorderColorOnDark: string;
|
|
1000
942
|
hoverBorderColor: string;
|
|
1001
|
-
hoverBorderColorOnDark: string;
|
|
1002
943
|
focusBorderColor: string;
|
|
1003
|
-
focusBorderColorOnDark: string;
|
|
1004
944
|
disabledBorderColor: string;
|
|
1005
|
-
disabledBorderColorOnDark: string;
|
|
1006
945
|
disabledContainerFillColor: string;
|
|
1007
|
-
disabledContainerFillColorOnDark: string;
|
|
1008
946
|
readOnlyBorderColor: string;
|
|
1009
947
|
hoverReadOnlyBorderColor: string;
|
|
1010
948
|
errorBorderColor: string;
|
|
1011
|
-
errorBorderColorOnDark: string;
|
|
1012
949
|
hoverErrorBorderColor: string;
|
|
1013
|
-
hoverErrorBorderColorOnDark: string;
|
|
1014
950
|
inputMarginTop: string;
|
|
1015
951
|
inputMarginBottom: string;
|
|
1016
952
|
errorMessageColor: string;
|
|
1017
|
-
errorMessageColorOnDark: string;
|
|
1018
953
|
labelFontColor: string;
|
|
1019
|
-
labelFontColorOnDark: string;
|
|
1020
954
|
labelFontSize: string;
|
|
1021
955
|
labelFontStyle: string;
|
|
1022
956
|
labelFontWeight: string;
|
|
1023
957
|
labelLineHeight: string;
|
|
1024
958
|
disabledLabelFontColor: string;
|
|
1025
|
-
disabledLabelFontColorOnDark: string;
|
|
1026
959
|
optionalLabelFontWeight: string;
|
|
1027
960
|
helperTextFontColor: string;
|
|
1028
|
-
helperTextFontColorOnDark: string;
|
|
1029
961
|
helperTextFontSize: string;
|
|
1030
962
|
helperTextFontStyle: string;
|
|
1031
963
|
helperTextFontWeight: string;
|
|
1032
964
|
helperTextLineHeight: string;
|
|
1033
965
|
disabledHelperTextFontColor: string;
|
|
1034
|
-
disabledHelperTextFontColorOnDark: string;
|
|
1035
966
|
placeholderFontColor: string;
|
|
1036
|
-
placeholderFontColorOnDark: string;
|
|
1037
967
|
disabledPlaceholderFontColor: string;
|
|
1038
|
-
disabledPlaceholderFontColorOnDark: string;
|
|
1039
968
|
valueFontColor: string;
|
|
1040
|
-
valueFontColorOnDark: string;
|
|
1041
969
|
valueFontSize: string;
|
|
1042
970
|
valueFontStyle: string;
|
|
1043
971
|
valueFontWeight: string;
|
|
1044
972
|
disabledValueFontColor: string;
|
|
1045
|
-
disabledValueFontColorOnDark: string;
|
|
1046
973
|
};
|
|
1047
974
|
textInput: {
|
|
1048
975
|
fontFamily: string;
|
|
1049
976
|
enabledBorderColor: string;
|
|
1050
|
-
enabledBorderColorOnDark: string;
|
|
1051
977
|
hoverBorderColor: string;
|
|
1052
|
-
hoverBorderColorOnDark: string;
|
|
1053
978
|
focusBorderColor: string;
|
|
1054
|
-
focusBorderColorOnDark: string;
|
|
1055
979
|
disabledBorderColor: string;
|
|
1056
|
-
disabledBorderColorOnDark: string;
|
|
1057
980
|
disabledContainerFillColor: string;
|
|
1058
|
-
disabledContainerFillColorOnDark: string;
|
|
1059
981
|
readOnlyBorderColor: string;
|
|
1060
982
|
hoverReadOnlyBorderColor: string;
|
|
1061
983
|
errorBorderColor: string;
|
|
1062
|
-
errorBorderColorOnDark: string;
|
|
1063
984
|
hoverErrorBorderColor: string;
|
|
1064
|
-
hoverErrorBorderColorOnDark: string;
|
|
1065
985
|
inputMarginTop: string;
|
|
1066
986
|
inputMarginBottom: string;
|
|
1067
987
|
errorMessageColor: string;
|
|
1068
|
-
errorMessageColorOnDark: string;
|
|
1069
988
|
errorIconColor: string;
|
|
1070
|
-
errorIconColorOnDark: string;
|
|
1071
989
|
labelFontColor: string;
|
|
1072
|
-
labelFontColorOnDark: string;
|
|
1073
990
|
labelFontSize: string;
|
|
1074
991
|
labelFontStyle: string;
|
|
1075
992
|
labelFontWeight: string;
|
|
1076
993
|
labelLineHeight: string;
|
|
1077
994
|
disabledLabelFontColor: string;
|
|
1078
|
-
disabledLabelFontColorOnDark: string;
|
|
1079
995
|
optionalLabelFontWeight: string;
|
|
1080
996
|
helperTextFontColor: string;
|
|
1081
|
-
helperTextFontColorOnDark: string;
|
|
1082
997
|
helperTextFontSize: string;
|
|
1083
998
|
helperTextFontStyle: string;
|
|
1084
999
|
helperTextFontWeight: string;
|
|
1085
1000
|
helperTextLineHeight: string;
|
|
1086
1001
|
disabledHelperTextFontColor: string;
|
|
1087
|
-
disabledHelperTextFontColorOnDark: string;
|
|
1088
1002
|
prefixColor: string;
|
|
1089
|
-
prefixColorOnDark: string;
|
|
1090
1003
|
suffixColor: string;
|
|
1091
|
-
suffixColorOnDark: string;
|
|
1092
1004
|
disabledPrefixColor: string;
|
|
1093
1005
|
disabledSuffixColor: string;
|
|
1094
|
-
disabledPrefixColorOnDark: string;
|
|
1095
|
-
disabledSuffixColorOnDark: string;
|
|
1096
1006
|
placeholderFontColor: string;
|
|
1097
|
-
placeholderFontColorOnDark: string;
|
|
1098
1007
|
disabledPlaceholderFontColor: string;
|
|
1099
|
-
disabledPlaceholderFontColorOnDark: string;
|
|
1100
1008
|
valueFontColor: string;
|
|
1101
|
-
valueFontColorOnDark: string;
|
|
1102
1009
|
valueFontSize: string;
|
|
1103
1010
|
valueFontStyle: string;
|
|
1104
1011
|
valueFontWeight: string;
|
|
1105
1012
|
disabledValueFontColor: string;
|
|
1106
|
-
disabledValueFontColorOnDark: string;
|
|
1107
1013
|
actionIconColor: string;
|
|
1108
|
-
actionIconColorOnDark: string;
|
|
1109
1014
|
disabledActionIconColor: string;
|
|
1110
|
-
disabledActionIconColorOnDark: string;
|
|
1111
1015
|
hoverActionIconColor: string;
|
|
1112
|
-
hoverActionIconColorOnDark: string;
|
|
1113
1016
|
focusActionIconColor: string;
|
|
1114
|
-
focusActionIconColorOnDark: string;
|
|
1115
1017
|
activeActionIconColor: string;
|
|
1116
|
-
activeActionIconColorOnDark: string;
|
|
1117
1018
|
actionBackgroundColor: string;
|
|
1118
|
-
actionBackgroundColorOnDark: string;
|
|
1119
1019
|
disabledActionBackgroundColor: string;
|
|
1120
|
-
disabledActionBackgroundColorOnDark: string;
|
|
1121
1020
|
hoverActionBackgroundColor: string;
|
|
1122
|
-
hoverActionBackgroundColorOnDark: string;
|
|
1123
1021
|
focusActionBorderColor: string;
|
|
1124
|
-
focusActionBorderColorOnDark: string;
|
|
1125
1022
|
activeActionBackgroundColor: string;
|
|
1126
|
-
activeActionBackgroundColorOnDark: string;
|
|
1127
1023
|
listDialogBackgroundColor: string;
|
|
1128
1024
|
listDialogBorderColor: string;
|
|
1129
1025
|
listOptionDividerColor: string;
|