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