@dxc-technology/halstack-react 0.0.0-bd47c58 → 0.0.0-bdaadec

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (329) hide show
  1. package/BackgroundColorContext.d.ts +1 -10
  2. package/BackgroundColorContext.js +4 -21
  3. package/HalstackContext.d.ts +43 -138
  4. package/HalstackContext.js +10 -35
  5. package/accordion/Accordion.accessibility.test.js +71 -0
  6. package/accordion/Accordion.js +31 -84
  7. package/accordion/Accordion.stories.tsx +5 -51
  8. package/accordion/Accordion.test.js +18 -33
  9. package/accordion/types.d.ts +6 -6
  10. package/accordion-group/AccordionGroup.accessibility.test.js +88 -0
  11. package/accordion-group/AccordionGroup.d.ts +2 -3
  12. package/accordion-group/AccordionGroup.js +17 -44
  13. package/accordion-group/AccordionGroup.stories.tsx +1 -1
  14. package/accordion-group/AccordionGroup.test.js +42 -60
  15. package/accordion-group/AccordionGroupAccordion.js +11 -23
  16. package/accordion-group/AccordionGroupContext.d.ts +3 -0
  17. package/accordion-group/AccordionGroupContext.js +8 -0
  18. package/accordion-group/types.d.ts +7 -7
  19. package/action-icon/ActionIcon.accessibility.test.js +63 -0
  20. package/action-icon/ActionIcon.d.ts +4 -0
  21. package/action-icon/ActionIcon.js +48 -0
  22. package/action-icon/ActionIcon.stories.tsx +41 -0
  23. package/action-icon/ActionIcon.test.js +64 -0
  24. package/action-icon/types.d.ts +26 -0
  25. package/alert/Alert.accessibility.test.js +95 -0
  26. package/alert/Alert.js +29 -118
  27. package/alert/Alert.test.js +28 -45
  28. package/alert/types.d.ts +5 -5
  29. package/badge/Badge.accessibility.test.js +129 -0
  30. package/badge/Badge.d.ts +1 -1
  31. package/badge/Badge.js +141 -43
  32. package/badge/Badge.stories.tsx +210 -0
  33. package/badge/Badge.test.js +30 -0
  34. package/badge/types.d.ts +52 -3
  35. package/bleed/Bleed.js +13 -21
  36. package/bleed/types.d.ts +2 -2
  37. package/box/Box.accessibility.test.js +33 -0
  38. package/box/Box.js +11 -33
  39. package/box/Box.test.js +1 -6
  40. package/box/types.d.ts +3 -3
  41. package/bulleted-list/BulletedList.accessibility.test.js +107 -0
  42. package/bulleted-list/BulletedList.js +22 -55
  43. package/bulleted-list/BulletedList.stories.tsx +2 -93
  44. package/bulleted-list/types.d.ts +5 -5
  45. package/button/Button.accessibility.test.js +127 -0
  46. package/button/Button.js +36 -59
  47. package/button/Button.stories.tsx +33 -133
  48. package/button/Button.test.js +13 -21
  49. package/button/types.d.ts +5 -5
  50. package/card/Card.accessibility.test.js +36 -0
  51. package/card/Card.js +21 -44
  52. package/card/Card.test.js +10 -21
  53. package/card/types.d.ts +5 -5
  54. package/checkbox/Checkbox.accessibility.test.js +87 -0
  55. package/checkbox/Checkbox.js +85 -120
  56. package/checkbox/Checkbox.stories.tsx +16 -54
  57. package/checkbox/Checkbox.test.js +107 -63
  58. package/checkbox/types.d.ts +8 -4
  59. package/chip/Chip.accessibility.test.js +67 -0
  60. package/chip/Chip.js +20 -36
  61. package/chip/Chip.stories.tsx +5 -24
  62. package/chip/Chip.test.js +17 -30
  63. package/chip/types.d.ts +4 -4
  64. package/common/coreTokens.d.ts +105 -14
  65. package/common/coreTokens.js +40 -23
  66. package/common/utils.js +2 -8
  67. package/common/variables.d.ts +44 -139
  68. package/common/variables.js +55 -157
  69. package/container/Container.d.ts +4 -0
  70. package/container/Container.js +194 -0
  71. package/container/Container.stories.tsx +214 -0
  72. package/container/types.d.ts +74 -0
  73. package/container/types.js +5 -0
  74. package/contextual-menu/ContextualMenu.accessibility.test.js +86 -0
  75. package/contextual-menu/ContextualMenu.d.ts +7 -0
  76. package/contextual-menu/ContextualMenu.js +71 -0
  77. package/contextual-menu/ContextualMenu.stories.tsx +182 -0
  78. package/contextual-menu/ContextualMenu.test.js +71 -0
  79. package/contextual-menu/MenuItemAction.d.ts +4 -0
  80. package/contextual-menu/MenuItemAction.js +46 -0
  81. package/contextual-menu/types.d.ts +22 -0
  82. package/contextual-menu/types.js +5 -0
  83. package/date-input/Calendar.js +13 -57
  84. package/date-input/DateInput.accessibility.test.js +216 -0
  85. package/date-input/DateInput.js +50 -96
  86. package/date-input/DateInput.stories.tsx +11 -30
  87. package/date-input/DateInput.test.js +674 -701
  88. package/date-input/DatePicker.js +11 -42
  89. package/date-input/Icons.d.ts +6 -6
  90. package/date-input/Icons.js +6 -23
  91. package/date-input/YearPicker.js +8 -34
  92. package/date-input/types.d.ts +28 -22
  93. package/dialog/Dialog.accessibility.test.js +69 -0
  94. package/dialog/Dialog.js +13 -40
  95. package/dialog/Dialog.stories.tsx +170 -0
  96. package/dialog/Dialog.test.js +126 -188
  97. package/dialog/types.d.ts +18 -13
  98. package/divider/Divider.accessibility.test.js +33 -0
  99. package/divider/Divider.d.ts +4 -0
  100. package/divider/Divider.js +36 -0
  101. package/divider/Divider.stories.tsx +223 -0
  102. package/divider/Divider.test.js +38 -0
  103. package/divider/types.d.ts +21 -0
  104. package/divider/types.js +5 -0
  105. package/dropdown/Dropdown.accessibility.test.js +180 -0
  106. package/dropdown/Dropdown.js +59 -128
  107. package/dropdown/Dropdown.stories.tsx +5 -16
  108. package/dropdown/Dropdown.test.js +391 -378
  109. package/dropdown/DropdownMenu.js +8 -19
  110. package/dropdown/DropdownMenuItem.js +11 -20
  111. package/dropdown/types.d.ts +20 -24
  112. package/file-input/FileInput.accessibility.test.js +160 -0
  113. package/file-input/FileInput.js +180 -284
  114. package/file-input/FileInput.stories.tsx +1 -1
  115. package/file-input/FileInput.test.js +279 -354
  116. package/file-input/FileItem.js +25 -66
  117. package/file-input/types.d.ts +9 -9
  118. package/flex/Flex.js +25 -39
  119. package/flex/types.d.ts +6 -6
  120. package/footer/Footer.accessibility.test.js +117 -0
  121. package/footer/Footer.d.ts +1 -1
  122. package/footer/Footer.js +43 -68
  123. package/footer/Footer.stories.tsx +54 -9
  124. package/footer/Footer.test.js +18 -32
  125. package/footer/Icons.d.ts +3 -2
  126. package/footer/Icons.js +66 -7
  127. package/footer/types.d.ts +17 -17
  128. package/grid/Grid.js +1 -16
  129. package/grid/types.d.ts +10 -10
  130. package/header/Header.accessibility.test.js +84 -0
  131. package/header/Header.d.ts +1 -1
  132. package/header/Header.js +28 -84
  133. package/header/Header.test.js +12 -25
  134. package/header/Icons.d.ts +2 -2
  135. package/header/Icons.js +2 -7
  136. package/header/types.d.ts +7 -8
  137. package/heading/Heading.accessibility.test.js +33 -0
  138. package/heading/Heading.js +9 -31
  139. package/heading/Heading.test.js +70 -87
  140. package/heading/types.d.ts +7 -7
  141. package/icon/Icon.accessibility.test.js +30 -0
  142. package/icon/Icon.d.ts +4 -0
  143. package/icon/Icon.js +33 -0
  144. package/icon/Icon.stories.tsx +28 -0
  145. package/icon/types.d.ts +4 -0
  146. package/icon/types.js +5 -0
  147. package/image/Image.accessibility.test.js +56 -0
  148. package/image/Image.d.ts +2 -2
  149. package/image/Image.js +17 -32
  150. package/image/Image.stories.tsx +3 -1
  151. package/image/types.d.ts +2 -2
  152. package/inset/Inset.js +13 -21
  153. package/inset/types.d.ts +2 -2
  154. package/layout/ApplicationLayout.d.ts +2 -2
  155. package/layout/ApplicationLayout.js +26 -66
  156. package/layout/ApplicationLayout.stories.tsx +1 -1
  157. package/layout/Icons.d.ts +8 -5
  158. package/layout/Icons.js +49 -59
  159. package/layout/types.d.ts +3 -3
  160. package/link/Link.accessibility.test.js +112 -0
  161. package/link/Link.js +28 -47
  162. package/link/Link.stories.tsx +2 -2
  163. package/link/Link.test.js +23 -41
  164. package/link/types.d.ts +14 -14
  165. package/main.d.ts +7 -4
  166. package/main.js +32 -60
  167. package/nav-tabs/NavTabs.accessibility.test.js +52 -0
  168. package/nav-tabs/NavTabs.d.ts +1 -2
  169. package/nav-tabs/NavTabs.js +19 -48
  170. package/nav-tabs/NavTabs.stories.tsx +7 -5
  171. package/nav-tabs/NavTabs.test.js +38 -44
  172. package/nav-tabs/NavTabsContext.d.ts +3 -0
  173. package/nav-tabs/NavTabsContext.js +8 -0
  174. package/nav-tabs/Tab.js +24 -52
  175. package/nav-tabs/types.d.ts +9 -9
  176. package/number-input/NumberInput.accessibility.test.js +228 -0
  177. package/number-input/NumberInput.d.ts +0 -7
  178. package/number-input/NumberInput.js +47 -39
  179. package/number-input/NumberInput.stories.tsx +42 -26
  180. package/number-input/NumberInput.test.js +839 -575
  181. package/number-input/NumberInputContext.d.ts +3 -0
  182. package/number-input/NumberInputContext.js +8 -0
  183. package/number-input/types.d.ts +17 -5
  184. package/package.json +39 -37
  185. package/paginator/Icons.d.ts +5 -5
  186. package/paginator/Icons.js +5 -19
  187. package/paginator/Paginator.accessibility.test.js +79 -0
  188. package/paginator/Paginator.js +15 -43
  189. package/paginator/Paginator.test.js +224 -207
  190. package/paginator/types.d.ts +3 -3
  191. package/paragraph/Paragraph.accessibility.test.js +28 -0
  192. package/paragraph/Paragraph.js +3 -19
  193. package/paragraph/Paragraph.stories.tsx +0 -17
  194. package/password-input/Icons.d.ts +3 -3
  195. package/password-input/Icons.js +1 -5
  196. package/password-input/PasswordInput.accessibility.test.js +153 -0
  197. package/password-input/PasswordInput.js +26 -48
  198. package/password-input/PasswordInput.stories.tsx +1 -34
  199. package/password-input/PasswordInput.test.js +153 -129
  200. package/password-input/types.d.ts +8 -7
  201. package/progress-bar/ProgressBar.accessibility.test.js +35 -0
  202. package/progress-bar/ProgressBar.js +21 -53
  203. package/progress-bar/{ProgressBar.stories.jsx → ProgressBar.stories.tsx} +1 -1
  204. package/progress-bar/ProgressBar.test.js +35 -52
  205. package/progress-bar/types.d.ts +3 -3
  206. package/quick-nav/QuickNav.accessibility.test.js +57 -0
  207. package/quick-nav/QuickNav.js +4 -27
  208. package/quick-nav/QuickNav.stories.tsx +1 -1
  209. package/quick-nav/types.d.ts +10 -10
  210. package/radio-group/Radio.d.ts +1 -1
  211. package/radio-group/Radio.js +22 -54
  212. package/radio-group/RadioGroup.accessibility.test.js +97 -0
  213. package/radio-group/RadioGroup.js +37 -83
  214. package/radio-group/RadioGroup.stories.tsx +10 -10
  215. package/radio-group/RadioGroup.test.js +504 -470
  216. package/radio-group/types.d.ts +8 -8
  217. package/resultset-table/Icons.d.ts +7 -0
  218. package/{resultsetTable → resultset-table}/Icons.js +1 -5
  219. package/resultset-table/ResultsetTable.accessibility.test.js +274 -0
  220. package/resultset-table/ResultsetTable.d.ts +7 -0
  221. package/{resultsetTable → resultset-table}/ResultsetTable.js +44 -69
  222. package/{resultsetTable → resultset-table}/ResultsetTable.stories.tsx +106 -5
  223. package/{resultsetTable → resultset-table}/ResultsetTable.test.js +148 -92
  224. package/{resultsetTable → resultset-table}/types.d.ts +44 -11
  225. package/resultset-table/types.js +5 -0
  226. package/select/Icons.d.ts +7 -7
  227. package/select/Icons.js +1 -5
  228. package/select/Listbox.js +13 -39
  229. package/select/Option.js +17 -27
  230. package/select/Select.accessibility.test.js +217 -0
  231. package/select/Select.js +87 -163
  232. package/select/Select.stories.tsx +3 -4
  233. package/select/Select.test.js +1946 -1804
  234. package/select/types.d.ts +14 -15
  235. package/sidenav/Icons.d.ts +4 -4
  236. package/sidenav/Icons.js +1 -5
  237. package/sidenav/Sidenav.accessibility.test.js +59 -0
  238. package/sidenav/Sidenav.js +29 -70
  239. package/sidenav/Sidenav.stories.tsx +0 -1
  240. package/sidenav/Sidenav.test.js +3 -10
  241. package/{layout → sidenav}/SidenavContext.d.ts +1 -1
  242. package/{layout → sidenav}/SidenavContext.js +3 -9
  243. package/sidenav/types.d.ts +18 -18
  244. package/slider/Slider.accessibility.test.js +104 -0
  245. package/slider/Slider.js +68 -125
  246. package/slider/Slider.test.js +107 -103
  247. package/slider/types.d.ts +4 -4
  248. package/spinner/Spinner.accessibility.test.js +96 -0
  249. package/spinner/Spinner.js +16 -54
  250. package/spinner/Spinner.test.js +25 -34
  251. package/spinner/types.d.ts +3 -3
  252. package/status-light/StatusLight.accessibility.test.js +157 -0
  253. package/status-light/StatusLight.d.ts +4 -0
  254. package/status-light/StatusLight.js +51 -0
  255. package/status-light/StatusLight.stories.tsx +74 -0
  256. package/status-light/StatusLight.test.js +25 -0
  257. package/status-light/types.d.ts +17 -0
  258. package/status-light/types.js +5 -0
  259. package/switch/Switch.accessibility.test.js +89 -0
  260. package/switch/Switch.js +49 -97
  261. package/switch/Switch.stories.tsx +0 -34
  262. package/switch/Switch.test.js +51 -96
  263. package/switch/types.d.ts +4 -4
  264. package/table/DropdownTheme.js +62 -0
  265. package/table/Table.accessibility.test.js +82 -0
  266. package/table/Table.d.ts +6 -2
  267. package/table/Table.js +76 -33
  268. package/table/{Table.stories.jsx → Table.stories.tsx} +297 -2
  269. package/table/Table.test.js +93 -6
  270. package/table/types.d.ts +34 -6
  271. package/tabs/Tab.js +17 -33
  272. package/tabs/Tabs.accessibility.test.js +56 -0
  273. package/tabs/Tabs.js +52 -129
  274. package/tabs/Tabs.stories.tsx +1 -1
  275. package/tabs/Tabs.test.js +62 -118
  276. package/tabs/types.d.ts +19 -19
  277. package/tag/Tag.accessibility.test.js +69 -0
  278. package/tag/Tag.js +21 -51
  279. package/tag/Tag.test.js +19 -30
  280. package/tag/types.d.ts +7 -7
  281. package/text-input/Suggestion.js +9 -26
  282. package/text-input/Suggestions.d.ts +1 -1
  283. package/text-input/Suggestions.js +19 -67
  284. package/text-input/TextInput.accessibility.test.js +321 -0
  285. package/text-input/TextInput.js +197 -287
  286. package/text-input/TextInput.stories.tsx +49 -153
  287. package/text-input/TextInput.test.js +1227 -1194
  288. package/text-input/types.d.ts +25 -17
  289. package/textarea/Textarea.accessibility.test.js +155 -0
  290. package/textarea/Textarea.js +67 -109
  291. package/textarea/{Textarea.stories.jsx → Textarea.stories.tsx} +58 -100
  292. package/textarea/Textarea.test.js +150 -179
  293. package/textarea/types.d.ts +9 -5
  294. package/toggle-group/ToggleGroup.accessibility.test.js +107 -0
  295. package/toggle-group/ToggleGroup.js +21 -61
  296. package/toggle-group/ToggleGroup.stories.tsx +4 -4
  297. package/toggle-group/ToggleGroup.test.js +48 -81
  298. package/toggle-group/types.d.ts +10 -10
  299. package/typography/Typography.accessibility.test.js +339 -0
  300. package/typography/Typography.js +4 -13
  301. package/typography/types.d.ts +1 -1
  302. package/useTheme.d.ts +41 -136
  303. package/useTheme.js +1 -8
  304. package/useTranslatedLabels.js +1 -7
  305. package/utils/BaseTypography.d.ts +2 -2
  306. package/utils/BaseTypography.js +16 -30
  307. package/utils/FocusLock.js +25 -39
  308. package/wizard/Wizard.accessibility.test.js +55 -0
  309. package/wizard/Wizard.js +14 -49
  310. package/wizard/Wizard.test.js +53 -80
  311. package/wizard/types.d.ts +7 -7
  312. package/common/OpenSans.css +0 -69
  313. package/common/fonts/OpenSans-Bold.ttf +0 -0
  314. package/common/fonts/OpenSans-BoldItalic.ttf +0 -0
  315. package/common/fonts/OpenSans-ExtraBold.ttf +0 -0
  316. package/common/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  317. package/common/fonts/OpenSans-Italic.ttf +0 -0
  318. package/common/fonts/OpenSans-Light.ttf +0 -0
  319. package/common/fonts/OpenSans-LightItalic.ttf +0 -0
  320. package/common/fonts/OpenSans-Regular.ttf +0 -0
  321. package/common/fonts/OpenSans-SemiBold.ttf +0 -0
  322. package/common/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
  323. package/resultsetTable/Icons.d.ts +0 -7
  324. package/resultsetTable/ResultsetTable.d.ts +0 -4
  325. package/slider/Slider.stories.tsx +0 -240
  326. package/text-input/Icons.d.ts +0 -8
  327. package/text-input/Icons.js +0 -60
  328. /package/{resultsetTable → action-icon}/types.js +0 -0
  329. /package/spinner/{Spinner.stories.jsx → Spinner.stories.tsx} +0 -0
@@ -36,7 +36,7 @@ export declare const componentTokens: {
36
36
  disabledIconColor: string;
37
37
  iconSize: string;
38
38
  iconMarginLeft: string;
39
- iconMarginRigth: string;
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,30 +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;
174
+ readOnlyBackgroundColorChecked: string;
175
+ hoverReadOnlyBackgroundColorChecked: string;
200
176
  borderColor: string;
201
- borderColorOnDark: string;
202
177
  hoverBorderColor: string;
203
- hoverBorderColorOnDark: string;
204
178
  disabledBorderColor: string;
205
- disabledBorderColorOnDark: string;
179
+ readOnlyBorderColor: string;
180
+ hoverReadOnlyBorderColor: string;
206
181
  checkColor: string;
207
- checkColorOnDark: string;
208
182
  disabledCheckColor: string;
209
- disabledCheckColorOnDark: string;
183
+ readOnlyCheckColor: string;
210
184
  fontFamily: string;
211
185
  fontSize: string;
212
186
  fontWeight: string;
213
187
  fontColor: string;
214
- fontColorOnDark: string;
215
188
  disabledFontColor: string;
216
- disabledFontColorOnDark: string;
217
189
  focusColor: string;
218
- focusColorOnDark: string;
219
190
  checkLabelSpacing: string;
220
191
  };
221
192
  chip: {
@@ -311,8 +282,14 @@ export declare const componentTokens: {
311
282
  buttonPaddingBottom: string;
312
283
  buttonPaddingLeft: string;
313
284
  buttonPaddingRight: string;
285
+ buttonHeight: string;
286
+ buttonBorderRadius: string;
287
+ buttonBorderStyle: string;
288
+ buttonBorderThickness: string;
289
+ buttonBorderColor: string;
314
290
  disabledColor: string;
315
291
  disabledButtonBackgroundColor: string;
292
+ disabledButtonBorderColor: string;
316
293
  disabledBorderColor: string;
317
294
  optionBackgroundColor: string;
318
295
  hoverOptionBackgroundColor: string;
@@ -449,7 +426,6 @@ export declare const componentTokens: {
449
426
  underlinedThickness: string;
450
427
  underlinedStyle: string;
451
428
  contentColor: string;
452
- contentColorOnDark: string;
453
429
  };
454
430
  heading: {
455
431
  level1FontColor: string;
@@ -556,31 +532,26 @@ export declare const componentTokens: {
556
532
  };
557
533
  paragraph: {
558
534
  fontColor: string;
559
- fontColorOnDark: string;
560
535
  display: string;
561
536
  fontSize: string;
562
537
  fontWeight: string;
563
538
  };
564
539
  progressBar: {
565
540
  trackLineColor: string;
566
- trackLineColorOnDark: string;
567
541
  totalLineColor: string;
568
542
  labelFontFamily: string;
569
543
  labelFontSize: string;
570
544
  labelFontStyle: string;
571
545
  labelFontWeight: string;
572
546
  labelFontColor: string;
573
- labelFontColorOnDark: string;
574
547
  labelFontTextTransform: string;
575
548
  valueFontFamily: string;
576
549
  valueFontSize: string;
577
550
  valueFontStyle: string;
578
551
  valueFontWeight: string;
579
552
  valueFontColor: string;
580
- valueFontColorOnDark: string;
581
553
  valueFontTextTransform: string;
582
554
  helperTextFontColor: string;
583
- helperTextFontColorOnDark: string;
584
555
  helperTextFontSize: string;
585
556
  helperTextFontStyle: string;
586
557
  helperTextFontWeight: string;
@@ -616,9 +587,9 @@ export declare const componentTokens: {
616
587
  errorRadioInputColor: string;
617
588
  hoverErrorRadioInputColor: string;
618
589
  activeErrorRadioInputColor: string;
619
- readonlyRadioInputColor: string;
620
- hoverReadonlyRadioInputColor: string;
621
- activeReadonlyRadioInputColor: string;
590
+ readOnlyRadioInputColor: string;
591
+ hoverReadOnlyRadioInputColor: string;
592
+ activeReadOnlyRadioInputColor: string;
622
593
  disabledRadioInputColor: string;
623
594
  disabledLabelFontColor: string;
624
595
  disabledHelperTextFontColor: string;
@@ -758,7 +729,6 @@ export declare const componentTokens: {
758
729
  slider: {
759
730
  fontFamily: string;
760
731
  limitValuesFontColor: string;
761
- limitValuesFontColorOnDark: string;
762
732
  limitValuesFontSize: string;
763
733
  limitValuesFontStyle: string;
764
734
  limitValuesFontWeight: string;
@@ -775,15 +745,10 @@ export declare const componentTokens: {
775
745
  helperTextFontWeight: string;
776
746
  helperTextLineHeight: string;
777
747
  fontColor: string;
778
- fontColorOnDark: string;
779
748
  labelFontColor: string;
780
- labelFontColorOnDark: string;
781
749
  helperTextFontColor: string;
782
- helperTextFontColorOnDark: string;
783
750
  disabledLabelFontColor: string;
784
- disabledLabelFontColorOnDark: string;
785
751
  disabledHelperTextFontColor: string;
786
- disabledHelperTextFontColorOnDark: string;
787
752
  thumbHeight: string;
788
753
  thumbWidth: string;
789
754
  hoverThumbHeight: string;
@@ -791,40 +756,28 @@ export declare const componentTokens: {
791
756
  thumbVerticalPosition: string;
792
757
  hoverThumbVerticalPosition: string;
793
758
  thumbBackgroundColor: string;
794
- thumbBackgroundColorOnDark: string;
795
759
  hoverThumbScale: string;
796
760
  hoverThumbBackgroundColor: string;
797
- hoverThumbBackgroundColorOnDark: string;
798
761
  activeThumbScale: string;
799
762
  activeThumbBackgroundColor: string;
800
- activeThumbBackgroundColorOnDark: string;
801
763
  focusThumbBackgroundColor: string;
802
- focusThumbBackgroundColorOnDark: string;
803
764
  tickHeight: string;
804
765
  tickWidth: string;
805
766
  tickVerticalPosition: string;
806
767
  tickBackgroundColor: string;
807
- tickBackgroundColorOnDark: string;
808
768
  trackLineThickness: string;
809
769
  trackLineVerticalPosition: string;
810
770
  trackLineColor: string;
811
- trackLineColorOnDark: string;
812
771
  totalLineThickness: string;
813
772
  totalLineVerticalPosition: string;
814
773
  totalLineColor: string;
815
- totalLineColorOnDark: string;
816
774
  disabledThumbVerticalPosition: string;
817
775
  disabledThumbBackgroundColor: string;
818
- disabledThumbBackgroundColorOnDark: string;
819
776
  disabledTickVerticalPosition: string;
820
777
  disabledTickBackgroundColor: string;
821
- disabledTickBackgroundColorOnDark: string;
822
778
  disabledTrackLineColor: string;
823
- disabledTrackLineColorOnDark: string;
824
779
  disabledTotalLineColor: string;
825
- disabledTotalLineColorOnDark: string;
826
780
  focusColor: string;
827
- focusColorOnDark: string;
828
781
  floorLabelMarginRight: string;
829
782
  ceilLabelMarginLeft: string;
830
783
  inputMarginLeft: string;
@@ -838,14 +791,12 @@ export declare const componentTokens: {
838
791
  labelFontStyle: string;
839
792
  labelFontWeight: string;
840
793
  labelFontColor: string;
841
- labelFontColorOnDark: string;
842
794
  labelTextAlign: string;
843
795
  progressValueFontFamily: string;
844
796
  progressValueFontSize: string;
845
797
  progressValueFontStyle: string;
846
798
  progressValueFontWeight: string;
847
799
  progressValueFontColor: string;
848
- progressValueFontColorOnDark: string;
849
800
  progressValueTextAlign: string;
850
801
  overlayBackgroundColor: string;
851
802
  overlayOpacity: string;
@@ -864,32 +815,21 @@ export declare const componentTokens: {
864
815
  };
865
816
  switch: {
866
817
  checkedTrackBackgroundColor: string;
867
- checkedTrackBackgroundColorOnDark: string;
868
818
  checkedThumbBackgroundColor: string;
869
- checkedThumbBackgroundColorOnDark: string;
870
819
  uncheckedTrackBackgroundColor: string;
871
- uncheckedTrackBackgroundColorOnDark: string;
872
820
  uncheckedThumbBackgroundColor: string;
873
- uncheckedThumbBackgroundColorOnDark: string;
874
821
  disabledCheckedTrackBackgroundColor: string;
875
- disabledCheckedTrackBackgroundColorOnDark: string;
876
822
  disabledCheckedThumbBackgroundColor: string;
877
- disabledCheckedThumbBackgroundColorOnDark: string;
878
823
  disabledUncheckedTrackBackgroundColor: string;
879
- disabledUncheckedTrackBackgroundColorOnDark: string;
880
824
  disabledUncheckedThumbBackgroundColor: string;
881
- disabledUncheckedThumbBackgroundColorOnDark: string;
882
825
  disabledLabelFontColor: string;
883
- disabledLabelFontColorOnDark: string;
884
826
  disabledLabelFontStyle: string;
885
827
  labelFontFamily: string;
886
828
  labelFontSize: string;
887
829
  labelFontStyle: string;
888
830
  labelFontWeight: string;
889
831
  labelFontColor: string;
890
- labelFontColorOnDark: string;
891
832
  thumbFocusColor: string;
892
- thumbFocusColorOnDark: string;
893
833
  thumbHeight: string;
894
834
  thumbWidth: string;
895
835
  thumbShift: string;
@@ -912,8 +852,16 @@ export declare const componentTokens: {
912
852
  dataPaddingBottom: string;
913
853
  dataPaddingRight: string;
914
854
  dataPaddingLeft: string;
855
+ dataPaddingTopReduced: string;
856
+ dataPaddingBottomReduced: string;
857
+ dataPaddingRightReduced: string;
858
+ dataPaddingLeftReduced: string;
915
859
  dataTextAlign: string;
916
860
  dataTextLineHeight: string;
861
+ firstChildPaddingLeft: string;
862
+ lastChildPaddingRight: string;
863
+ firstChildPaddingLeftReduced: string;
864
+ lastChildPaddingRightReduced: string;
917
865
  headerBackgroundColor: string;
918
866
  headerBorderRadius: string;
919
867
  headerFontFamily: string;
@@ -926,11 +874,25 @@ export declare const componentTokens: {
926
874
  headerPaddingBottom: string;
927
875
  headerPaddingRight: string;
928
876
  headerPaddingLeft: string;
877
+ headerPaddingTopReduced: string;
878
+ headerPaddingBottomReduced: string;
879
+ headerPaddingRightReduced: string;
880
+ headerPaddingLeftReduced: string;
929
881
  headerTextAlign: string;
930
882
  headerTextLineHeight: string;
931
883
  scrollBarThumbColor: string;
932
884
  scrollBarTrackColor: string;
933
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;
934
896
  };
935
897
  tabs: {
936
898
  fontFamily: string;
@@ -949,7 +911,6 @@ export declare const componentTokens: {
949
911
  disabledFontColor: string;
950
912
  disabledIconColor: string;
951
913
  disabledFontStyle: string;
952
- disabledBadgeBackgroundColor: string;
953
914
  hoverBackgroundColor: string;
954
915
  pressedBackgroundColor: string;
955
916
  pressedFontWeight: string;
@@ -957,19 +918,6 @@ export declare const componentTokens: {
957
918
  dividerThickness: string;
958
919
  focusOutline: string;
959
920
  scrollButtonsWidth: string;
960
- badgeBackgroundColor: string;
961
- badgeFontFamily: string;
962
- badgeFontSize: string;
963
- badgeFontStyle: string;
964
- badgeFontWeight: string;
965
- badgeFontColor: string;
966
- badgeLetterSpacing: string;
967
- badgeWidth: string;
968
- badgeHeight: string;
969
- badgeRadius: string;
970
- badgeWidthWithNotificationNumber: string;
971
- badgeHeightWithNotificationNumber: string;
972
- badgeRadiusWithNotificationNumber: string;
973
921
  };
974
922
  tag: {
975
923
  fontFamily: string;
@@ -991,130 +939,87 @@ export declare const componentTokens: {
991
939
  textarea: {
992
940
  fontFamily: string;
993
941
  enabledBorderColor: string;
994
- enabledBorderColorOnDark: string;
995
942
  hoverBorderColor: string;
996
- hoverBorderColorOnDark: string;
997
943
  focusBorderColor: string;
998
- focusBorderColorOnDark: string;
999
944
  disabledBorderColor: string;
1000
- disabledBorderColorOnDark: string;
1001
945
  disabledContainerFillColor: string;
1002
- disabledContainerFillColorOnDark: string;
946
+ readOnlyBorderColor: string;
947
+ hoverReadOnlyBorderColor: string;
1003
948
  errorBorderColor: string;
1004
- errorBorderColorOnDark: string;
1005
949
  hoverErrorBorderColor: string;
1006
- hoverErrorBorderColorOnDark: string;
1007
950
  inputMarginTop: string;
1008
951
  inputMarginBottom: string;
1009
952
  errorMessageColor: string;
1010
- errorMessageColorOnDark: string;
1011
953
  labelFontColor: string;
1012
- labelFontColorOnDark: string;
1013
954
  labelFontSize: string;
1014
955
  labelFontStyle: string;
1015
956
  labelFontWeight: string;
1016
957
  labelLineHeight: string;
1017
958
  disabledLabelFontColor: string;
1018
- disabledLabelFontColorOnDark: string;
1019
959
  optionalLabelFontWeight: string;
1020
960
  helperTextFontColor: string;
1021
- helperTextFontColorOnDark: string;
1022
961
  helperTextFontSize: string;
1023
962
  helperTextFontStyle: string;
1024
963
  helperTextFontWeight: string;
1025
964
  helperTextLineHeight: string;
1026
965
  disabledHelperTextFontColor: string;
1027
- disabledHelperTextFontColorOnDark: string;
1028
966
  placeholderFontColor: string;
1029
- placeholderFontColorOnDark: string;
1030
967
  disabledPlaceholderFontColor: string;
1031
- disabledPlaceholderFontColorOnDark: string;
1032
968
  valueFontColor: string;
1033
- valueFontColorOnDark: string;
1034
969
  valueFontSize: string;
1035
970
  valueFontStyle: string;
1036
971
  valueFontWeight: string;
1037
972
  disabledValueFontColor: string;
1038
- disabledValueFontColorOnDark: string;
1039
973
  };
1040
974
  textInput: {
1041
975
  fontFamily: string;
1042
976
  enabledBorderColor: string;
1043
- enabledBorderColorOnDark: string;
1044
977
  hoverBorderColor: string;
1045
- hoverBorderColorOnDark: string;
1046
978
  focusBorderColor: string;
1047
- focusBorderColorOnDark: string;
1048
979
  disabledBorderColor: string;
1049
- disabledBorderColorOnDark: string;
1050
980
  disabledContainerFillColor: string;
1051
- disabledContainerFillColorOnDark: string;
981
+ readOnlyBorderColor: string;
982
+ hoverReadOnlyBorderColor: string;
1052
983
  errorBorderColor: string;
1053
- errorBorderColorOnDark: string;
1054
984
  hoverErrorBorderColor: string;
1055
- hoverErrorBorderColorOnDark: string;
1056
985
  inputMarginTop: string;
1057
986
  inputMarginBottom: string;
1058
987
  errorMessageColor: string;
1059
- errorMessageColorOnDark: string;
1060
988
  errorIconColor: string;
1061
- errorIconColorOnDark: string;
1062
989
  labelFontColor: string;
1063
- labelFontColorOnDark: string;
1064
990
  labelFontSize: string;
1065
991
  labelFontStyle: string;
1066
992
  labelFontWeight: string;
1067
993
  labelLineHeight: string;
1068
994
  disabledLabelFontColor: string;
1069
- disabledLabelFontColorOnDark: string;
1070
995
  optionalLabelFontWeight: string;
1071
996
  helperTextFontColor: string;
1072
- helperTextFontColorOnDark: string;
1073
997
  helperTextFontSize: string;
1074
998
  helperTextFontStyle: string;
1075
999
  helperTextFontWeight: string;
1076
1000
  helperTextLineHeight: string;
1077
1001
  disabledHelperTextFontColor: string;
1078
- disabledHelperTextFontColorOnDark: string;
1079
1002
  prefixColor: string;
1080
- prefixColorOnDark: string;
1081
1003
  suffixColor: string;
1082
- suffixColorOnDark: string;
1083
1004
  disabledPrefixColor: string;
1084
1005
  disabledSuffixColor: string;
1085
- disabledPrefixColorOnDark: string;
1086
- disabledSuffixColorOnDark: string;
1087
1006
  placeholderFontColor: string;
1088
- placeholderFontColorOnDark: string;
1089
1007
  disabledPlaceholderFontColor: string;
1090
- disabledPlaceholderFontColorOnDark: string;
1091
1008
  valueFontColor: string;
1092
- valueFontColorOnDark: string;
1093
1009
  valueFontSize: string;
1094
1010
  valueFontStyle: string;
1095
1011
  valueFontWeight: string;
1096
1012
  disabledValueFontColor: string;
1097
- disabledValueFontColorOnDark: string;
1098
1013
  actionIconColor: string;
1099
- actionIconColorOnDark: string;
1100
1014
  disabledActionIconColor: string;
1101
- disabledActionIconColorOnDark: string;
1102
1015
  hoverActionIconColor: string;
1103
- hoverActionIconColorOnDark: string;
1104
1016
  focusActionIconColor: string;
1105
- focusActionIconColorOnDark: string;
1106
1017
  activeActionIconColor: string;
1107
- activeActionIconColorOnDark: string;
1108
1018
  actionBackgroundColor: string;
1109
- actionBackgroundColorOnDark: string;
1110
1019
  disabledActionBackgroundColor: string;
1111
- disabledActionBackgroundColorOnDark: string;
1112
1020
  hoverActionBackgroundColor: string;
1113
- hoverActionBackgroundColorOnDark: string;
1114
1021
  focusActionBorderColor: string;
1115
- focusActionBorderColorOnDark: string;
1116
1022
  activeActionBackgroundColor: string;
1117
- activeActionBackgroundColorOnDark: string;
1118
1023
  listDialogBackgroundColor: string;
1119
1024
  listDialogBorderColor: string;
1120
1025
  listOptionDividerColor: string;
@@ -1240,8 +1145,8 @@ export declare const componentTokens: {
1240
1145
  focusColor: string;
1241
1146
  };
1242
1147
  };
1243
- export declare type AdvancedTheme = typeof componentTokens;
1244
- export declare type OpinionatedTheme = {
1148
+ export type AdvancedTheme = typeof componentTokens;
1149
+ export type OpinionatedTheme = {
1245
1150
  accordion: {
1246
1151
  accentColor: string;
1247
1152
  titleFontColor: string;
@@ -1487,4 +1392,4 @@ export declare const defaultTranslatedComponentLabels: {
1487
1392
  nextMonthTitle: string;
1488
1393
  };
1489
1394
  };
1490
- export declare type TranslatedLabels = typeof defaultTranslatedComponentLabels;
1395
+ export type TranslatedLabels = typeof defaultTranslatedComponentLabels;