@dxc-technology/halstack-react 0.0.0-b0ab1e3 → 0.0.0-b0ec7b9

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 (527) hide show
  1. package/BackgroundColorContext.d.ts +1 -10
  2. package/BackgroundColorContext.js +5 -22
  3. package/HalstackContext.d.ts +1276 -6
  4. package/HalstackContext.js +191 -114
  5. package/README.md +47 -0
  6. package/accordion/Accordion.accessibility.test.d.ts +1 -0
  7. package/accordion/Accordion.accessibility.test.js +71 -0
  8. package/accordion/Accordion.d.ts +1 -1
  9. package/accordion/Accordion.js +101 -159
  10. package/accordion/Accordion.stories.tsx +82 -148
  11. package/accordion/Accordion.test.d.ts +1 -0
  12. package/accordion/Accordion.test.js +24 -40
  13. package/accordion/types.d.ts +6 -17
  14. package/accordion-group/AccordionGroup.accessibility.test.d.ts +1 -0
  15. package/accordion-group/AccordionGroup.accessibility.test.js +82 -0
  16. package/accordion-group/AccordionGroup.d.ts +2 -2
  17. package/accordion-group/AccordionGroup.js +31 -98
  18. package/accordion-group/AccordionGroup.stories.tsx +94 -67
  19. package/accordion-group/AccordionGroup.test.d.ts +1 -0
  20. package/accordion-group/AccordionGroup.test.js +49 -106
  21. package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
  22. package/accordion-group/AccordionGroupAccordion.js +31 -0
  23. package/accordion-group/AccordionGroupContext.d.ts +3 -0
  24. package/accordion-group/AccordionGroupContext.js +8 -0
  25. package/accordion-group/types.d.ts +12 -17
  26. package/action-icon/ActionIcon.accessibility.test.d.ts +1 -0
  27. package/action-icon/ActionIcon.accessibility.test.js +63 -0
  28. package/action-icon/ActionIcon.d.ts +4 -0
  29. package/action-icon/ActionIcon.js +48 -0
  30. package/action-icon/ActionIcon.stories.tsx +41 -0
  31. package/action-icon/ActionIcon.test.d.ts +1 -0
  32. package/action-icon/ActionIcon.test.js +64 -0
  33. package/action-icon/types.d.ts +26 -0
  34. package/alert/Alert.accessibility.test.d.ts +1 -0
  35. package/alert/Alert.accessibility.test.js +95 -0
  36. package/alert/Alert.js +40 -127
  37. package/alert/Alert.stories.tsx +28 -0
  38. package/alert/Alert.test.d.ts +1 -0
  39. package/alert/Alert.test.js +28 -45
  40. package/alert/types.d.ts +5 -5
  41. package/badge/Badge.accessibility.test.d.ts +1 -0
  42. package/badge/Badge.accessibility.test.js +129 -0
  43. package/badge/Badge.d.ts +1 -1
  44. package/badge/Badge.js +142 -40
  45. package/badge/Badge.stories.tsx +210 -0
  46. package/badge/Badge.test.d.ts +1 -0
  47. package/badge/Badge.test.js +30 -0
  48. package/badge/types.d.ts +52 -2
  49. package/bar-chart/BarChart.d.ts +4 -0
  50. package/bar-chart/BarChart.js +152 -0
  51. package/bar-chart/BarChart.stories.tsx +281 -0
  52. package/bar-chart/BarChart.test.d.ts +1 -0
  53. package/bar-chart/BarChart.test.js +194 -0
  54. package/bar-chart/theme.d.ts +3 -0
  55. package/bar-chart/theme.js +31 -0
  56. package/bar-chart/types.d.ts +118 -0
  57. package/bleed/Bleed.js +14 -55
  58. package/bleed/Bleed.stories.tsx +95 -96
  59. package/bleed/types.d.ts +2 -2
  60. package/box/Box.accessibility.test.d.ts +1 -0
  61. package/box/Box.accessibility.test.js +33 -0
  62. package/box/Box.d.ts +1 -1
  63. package/box/Box.js +30 -81
  64. package/box/Box.stories.tsx +38 -51
  65. package/box/Box.test.d.ts +1 -0
  66. package/box/Box.test.js +1 -6
  67. package/box/types.d.ts +3 -14
  68. package/breadcrumbs/Breadcrumbs.accessibility.test.d.ts +1 -0
  69. package/breadcrumbs/Breadcrumbs.accessibility.test.js +96 -0
  70. package/breadcrumbs/Breadcrumbs.d.ts +4 -0
  71. package/breadcrumbs/Breadcrumbs.js +79 -0
  72. package/breadcrumbs/Breadcrumbs.stories.tsx +194 -0
  73. package/breadcrumbs/Breadcrumbs.test.d.ts +1 -0
  74. package/breadcrumbs/Breadcrumbs.test.js +168 -0
  75. package/breadcrumbs/Item.d.ts +4 -0
  76. package/breadcrumbs/Item.js +52 -0
  77. package/breadcrumbs/dropdownTheme.d.ts +53 -0
  78. package/breadcrumbs/dropdownTheme.js +62 -0
  79. package/breadcrumbs/types.d.ts +40 -0
  80. package/bulleted-list/BulletedList.accessibility.test.d.ts +1 -0
  81. package/bulleted-list/BulletedList.accessibility.test.js +119 -0
  82. package/bulleted-list/BulletedList.d.ts +7 -0
  83. package/bulleted-list/BulletedList.js +92 -0
  84. package/bulleted-list/BulletedList.stories.tsx +115 -0
  85. package/bulleted-list/types.d.ts +38 -0
  86. package/button/Button.accessibility.test.d.ts +1 -0
  87. package/button/Button.accessibility.test.js +127 -0
  88. package/button/Button.d.ts +1 -1
  89. package/button/Button.js +64 -115
  90. package/button/Button.stories.tsx +151 -100
  91. package/button/Button.test.d.ts +1 -0
  92. package/button/Button.test.js +19 -16
  93. package/button/types.d.ts +12 -8
  94. package/card/Card.accessibility.test.d.ts +1 -0
  95. package/card/Card.accessibility.test.js +36 -0
  96. package/card/Card.d.ts +1 -1
  97. package/card/Card.js +65 -107
  98. package/card/Card.stories.tsx +13 -43
  99. package/card/Card.test.d.ts +1 -0
  100. package/card/Card.test.js +10 -21
  101. package/card/types.d.ts +6 -11
  102. package/checkbox/Checkbox.accessibility.test.d.ts +1 -0
  103. package/checkbox/Checkbox.accessibility.test.js +87 -0
  104. package/checkbox/Checkbox.d.ts +2 -2
  105. package/checkbox/Checkbox.js +140 -182
  106. package/checkbox/Checkbox.stories.tsx +128 -94
  107. package/checkbox/Checkbox.test.d.ts +1 -0
  108. package/checkbox/Checkbox.test.js +159 -38
  109. package/checkbox/types.d.ts +11 -3
  110. package/chip/Chip.accessibility.test.d.ts +1 -0
  111. package/chip/Chip.accessibility.test.js +67 -0
  112. package/chip/Chip.js +45 -80
  113. package/chip/Chip.stories.tsx +103 -27
  114. package/chip/Chip.test.d.ts +1 -0
  115. package/chip/Chip.test.js +17 -32
  116. package/chip/types.d.ts +4 -4
  117. package/common/coreTokens.d.ts +236 -0
  118. package/common/coreTokens.js +183 -0
  119. package/common/utils.d.ts +1 -0
  120. package/common/utils.js +6 -12
  121. package/common/variables.d.ts +1432 -0
  122. package/common/variables.js +1110 -1184
  123. package/container/Container.d.ts +4 -0
  124. package/container/Container.js +194 -0
  125. package/container/Container.stories.tsx +214 -0
  126. package/container/types.d.ts +176 -0
  127. package/contextual-menu/ContextualMenu.accessibility.test.d.ts +1 -0
  128. package/contextual-menu/ContextualMenu.accessibility.test.js +98 -0
  129. package/contextual-menu/ContextualMenu.d.ts +5 -0
  130. package/contextual-menu/ContextualMenu.js +136 -0
  131. package/contextual-menu/ContextualMenu.stories.tsx +231 -0
  132. package/contextual-menu/ContextualMenu.test.d.ts +1 -0
  133. package/contextual-menu/ContextualMenu.test.js +247 -0
  134. package/contextual-menu/GroupItem.d.ts +4 -0
  135. package/contextual-menu/GroupItem.js +67 -0
  136. package/contextual-menu/ItemAction.d.ts +4 -0
  137. package/contextual-menu/ItemAction.js +88 -0
  138. package/contextual-menu/MenuItem.d.ts +4 -0
  139. package/contextual-menu/MenuItem.js +29 -0
  140. package/contextual-menu/SingleItem.d.ts +4 -0
  141. package/contextual-menu/SingleItem.js +38 -0
  142. package/contextual-menu/types.d.ts +65 -0
  143. package/date-input/Calendar.d.ts +4 -0
  144. package/date-input/Calendar.js +230 -0
  145. package/date-input/DateInput.accessibility.test.d.ts +1 -0
  146. package/date-input/DateInput.accessibility.test.js +229 -0
  147. package/date-input/DateInput.js +158 -299
  148. package/date-input/DateInput.stories.tsx +210 -57
  149. package/date-input/DateInput.test.d.ts +1 -0
  150. package/date-input/DateInput.test.js +699 -370
  151. package/date-input/DatePicker.d.ts +4 -0
  152. package/date-input/DatePicker.js +121 -0
  153. package/date-input/YearPicker.d.ts +4 -0
  154. package/date-input/YearPicker.js +105 -0
  155. package/date-input/types.d.ts +72 -15
  156. package/dialog/Dialog.accessibility.test.d.ts +1 -0
  157. package/dialog/Dialog.accessibility.test.js +69 -0
  158. package/dialog/Dialog.d.ts +1 -1
  159. package/dialog/Dialog.js +61 -106
  160. package/dialog/Dialog.stories.tsx +324 -167
  161. package/dialog/Dialog.test.d.ts +1 -0
  162. package/dialog/Dialog.test.js +349 -19
  163. package/dialog/types.d.ts +18 -25
  164. package/divider/Divider.accessibility.test.d.ts +1 -0
  165. package/divider/Divider.accessibility.test.js +33 -0
  166. package/divider/Divider.d.ts +4 -0
  167. package/divider/Divider.js +36 -0
  168. package/divider/Divider.stories.tsx +224 -0
  169. package/divider/Divider.test.d.ts +1 -0
  170. package/divider/Divider.test.js +38 -0
  171. package/divider/types.d.ts +21 -0
  172. package/divider/types.js +5 -0
  173. package/dropdown/Dropdown.accessibility.test.d.ts +1 -0
  174. package/dropdown/Dropdown.accessibility.test.js +183 -0
  175. package/dropdown/Dropdown.d.ts +1 -1
  176. package/dropdown/Dropdown.js +213 -303
  177. package/dropdown/Dropdown.stories.tsx +236 -58
  178. package/dropdown/Dropdown.test.d.ts +1 -0
  179. package/dropdown/Dropdown.test.js +603 -164
  180. package/dropdown/DropdownMenu.d.ts +4 -0
  181. package/dropdown/DropdownMenu.js +63 -0
  182. package/dropdown/DropdownMenuItem.d.ts +4 -0
  183. package/dropdown/DropdownMenuItem.js +71 -0
  184. package/dropdown/types.d.ts +35 -19
  185. package/file-input/FileInput.accessibility.test.d.ts +1 -0
  186. package/file-input/FileInput.accessibility.test.js +167 -0
  187. package/file-input/FileInput.d.ts +2 -2
  188. package/file-input/FileInput.js +243 -395
  189. package/file-input/FileInput.stories.tsx +123 -12
  190. package/file-input/FileInput.test.d.ts +1 -0
  191. package/file-input/FileInput.test.js +314 -367
  192. package/file-input/FileItem.d.ts +4 -14
  193. package/file-input/FileItem.js +61 -120
  194. package/file-input/types.d.ts +24 -11
  195. package/flex/Flex.d.ts +4 -0
  196. package/flex/Flex.js +57 -0
  197. package/flex/Flex.stories.tsx +112 -0
  198. package/flex/types.d.ts +97 -0
  199. package/flex/types.js +5 -0
  200. package/footer/Footer.accessibility.test.d.ts +1 -0
  201. package/footer/Footer.accessibility.test.js +125 -0
  202. package/footer/Footer.d.ts +1 -1
  203. package/footer/Footer.js +75 -118
  204. package/footer/Footer.stories.tsx +99 -21
  205. package/footer/Footer.test.d.ts +1 -0
  206. package/footer/Footer.test.js +32 -56
  207. package/footer/Icons.d.ts +3 -2
  208. package/footer/Icons.js +54 -23
  209. package/footer/types.d.ts +26 -27
  210. package/grid/Grid.d.ts +7 -0
  211. package/grid/Grid.js +76 -0
  212. package/grid/Grid.stories.tsx +221 -0
  213. package/grid/types.d.ts +115 -0
  214. package/grid/types.js +5 -0
  215. package/header/Header.accessibility.test.d.ts +1 -0
  216. package/header/Header.accessibility.test.js +94 -0
  217. package/header/Header.d.ts +4 -3
  218. package/header/Header.js +95 -185
  219. package/header/Header.stories.tsx +134 -39
  220. package/header/Header.test.d.ts +1 -0
  221. package/header/Header.test.js +12 -25
  222. package/header/Icons.d.ts +2 -2
  223. package/header/Icons.js +5 -15
  224. package/header/types.d.ts +7 -21
  225. package/heading/Heading.accessibility.test.d.ts +1 -0
  226. package/heading/Heading.accessibility.test.js +33 -0
  227. package/heading/Heading.js +10 -32
  228. package/heading/Heading.test.d.ts +1 -0
  229. package/heading/Heading.test.js +64 -94
  230. package/heading/types.d.ts +7 -7
  231. package/icon/Icon.accessibility.test.d.ts +1 -0
  232. package/icon/Icon.accessibility.test.js +30 -0
  233. package/icon/Icon.d.ts +4 -0
  234. package/icon/Icon.js +33 -0
  235. package/icon/Icon.stories.tsx +28 -0
  236. package/icon/types.d.ts +4 -0
  237. package/icon/types.js +5 -0
  238. package/image/Image.accessibility.test.d.ts +1 -0
  239. package/image/Image.accessibility.test.js +56 -0
  240. package/image/Image.d.ts +4 -0
  241. package/image/Image.js +70 -0
  242. package/image/Image.stories.tsx +129 -0
  243. package/image/types.d.ts +72 -0
  244. package/image/types.js +5 -0
  245. package/inset/Inset.js +14 -55
  246. package/inset/Inset.stories.tsx +37 -36
  247. package/inset/types.d.ts +2 -2
  248. package/layout/ApplicationLayout.d.ts +16 -6
  249. package/layout/ApplicationLayout.js +86 -167
  250. package/layout/ApplicationLayout.stories.tsx +85 -94
  251. package/layout/Icons.d.ts +7 -0
  252. package/layout/Icons.js +41 -48
  253. package/layout/types.d.ts +19 -35
  254. package/link/Link.accessibility.test.d.ts +1 -0
  255. package/link/Link.accessibility.test.js +108 -0
  256. package/link/Link.d.ts +3 -2
  257. package/link/Link.js +65 -97
  258. package/link/Link.stories.tsx +157 -55
  259. package/link/Link.test.d.ts +1 -0
  260. package/link/Link.test.js +24 -52
  261. package/link/types.d.ts +15 -31
  262. package/main.d.ts +17 -13
  263. package/main.js +85 -101
  264. package/nav-tabs/NavTabs.accessibility.test.d.ts +1 -0
  265. package/nav-tabs/NavTabs.accessibility.test.js +44 -0
  266. package/nav-tabs/NavTabs.d.ts +7 -0
  267. package/nav-tabs/NavTabs.js +108 -0
  268. package/nav-tabs/NavTabs.stories.tsx +294 -0
  269. package/nav-tabs/NavTabs.test.d.ts +1 -0
  270. package/nav-tabs/NavTabs.test.js +77 -0
  271. package/nav-tabs/NavTabsContext.d.ts +3 -0
  272. package/nav-tabs/NavTabsContext.js +8 -0
  273. package/nav-tabs/Tab.d.ts +4 -0
  274. package/nav-tabs/Tab.js +117 -0
  275. package/nav-tabs/types.d.ts +52 -0
  276. package/nav-tabs/types.js +5 -0
  277. package/number-input/NumberInput.accessibility.test.d.ts +1 -0
  278. package/number-input/NumberInput.accessibility.test.js +227 -0
  279. package/number-input/NumberInput.js +50 -37
  280. package/number-input/NumberInput.stories.tsx +37 -26
  281. package/number-input/NumberInput.test.d.ts +1 -0
  282. package/number-input/NumberInput.test.js +858 -376
  283. package/number-input/NumberInputContext.d.ts +3 -4
  284. package/number-input/NumberInputContext.js +3 -14
  285. package/number-input/types.d.ts +18 -6
  286. package/package.json +57 -52
  287. package/paginator/Paginator.accessibility.test.d.ts +1 -0
  288. package/paginator/Paginator.accessibility.test.js +78 -0
  289. package/paginator/Paginator.js +46 -100
  290. package/paginator/Paginator.stories.tsx +24 -0
  291. package/paginator/Paginator.test.d.ts +1 -0
  292. package/paginator/Paginator.test.js +278 -210
  293. package/paginator/types.d.ts +3 -3
  294. package/paragraph/Paragraph.accessibility.test.d.ts +1 -0
  295. package/paragraph/Paragraph.accessibility.test.js +28 -0
  296. package/paragraph/Paragraph.d.ts +5 -0
  297. package/paragraph/Paragraph.js +22 -0
  298. package/paragraph/Paragraph.stories.tsx +27 -0
  299. package/password-input/PasswordInput.accessibility.test.d.ts +1 -0
  300. package/password-input/PasswordInput.accessibility.test.js +152 -0
  301. package/password-input/PasswordInput.js +62 -125
  302. package/password-input/PasswordInput.stories.tsx +11 -34
  303. package/password-input/PasswordInput.test.d.ts +1 -0
  304. package/password-input/PasswordInput.test.js +158 -142
  305. package/password-input/types.d.ts +9 -8
  306. package/progress-bar/ProgressBar.accessibility.test.d.ts +1 -0
  307. package/progress-bar/ProgressBar.accessibility.test.js +35 -0
  308. package/progress-bar/ProgressBar.js +68 -92
  309. package/progress-bar/ProgressBar.stories.tsx +93 -0
  310. package/progress-bar/ProgressBar.test.d.ts +1 -0
  311. package/progress-bar/ProgressBar.test.js +71 -43
  312. package/progress-bar/types.d.ts +3 -3
  313. package/quick-nav/QuickNav.accessibility.test.d.ts +1 -0
  314. package/quick-nav/QuickNav.accessibility.test.js +57 -0
  315. package/quick-nav/QuickNav.js +71 -41
  316. package/quick-nav/QuickNav.stories.tsx +146 -27
  317. package/quick-nav/types.d.ts +10 -10
  318. package/radio-group/Radio.d.ts +1 -1
  319. package/radio-group/Radio.js +59 -79
  320. package/radio-group/RadioGroup.accessibility.test.d.ts +1 -0
  321. package/radio-group/RadioGroup.accessibility.test.js +97 -0
  322. package/radio-group/RadioGroup.js +74 -121
  323. package/radio-group/RadioGroup.stories.tsx +132 -18
  324. package/radio-group/RadioGroup.test.d.ts +1 -0
  325. package/radio-group/RadioGroup.test.js +518 -459
  326. package/radio-group/types.d.ts +10 -10
  327. package/resultset-table/Icons.d.ts +7 -0
  328. package/resultset-table/Icons.js +47 -0
  329. package/resultset-table/ResultsetTable.accessibility.test.d.ts +1 -0
  330. package/resultset-table/ResultsetTable.accessibility.test.js +284 -0
  331. package/resultset-table/ResultsetTable.d.ts +7 -0
  332. package/resultset-table/ResultsetTable.js +198 -0
  333. package/{resultsetTable → resultset-table}/ResultsetTable.stories.tsx +169 -31
  334. package/resultset-table/ResultsetTable.test.d.ts +1 -0
  335. package/resultset-table/ResultsetTable.test.js +450 -0
  336. package/{resultsetTable → resultset-table}/types.d.ts +47 -13
  337. package/resultset-table/types.js +5 -0
  338. package/select/Listbox.d.ts +3 -3
  339. package/select/Listbox.js +73 -74
  340. package/select/Option.d.ts +3 -3
  341. package/select/Option.js +42 -59
  342. package/select/Select.accessibility.test.d.ts +1 -0
  343. package/select/Select.accessibility.test.js +227 -0
  344. package/select/Select.js +188 -360
  345. package/select/Select.stories.tsx +533 -187
  346. package/select/Select.test.d.ts +1 -0
  347. package/select/Select.test.js +1929 -1818
  348. package/select/selectUtils.d.ts +41 -0
  349. package/select/selectUtils.js +129 -0
  350. package/select/types.d.ts +17 -21
  351. package/sidenav/Sidenav.accessibility.test.d.ts +1 -0
  352. package/sidenav/Sidenav.accessibility.test.js +59 -0
  353. package/sidenav/Sidenav.d.ts +6 -5
  354. package/sidenav/Sidenav.js +136 -71
  355. package/sidenav/Sidenav.stories.tsx +246 -151
  356. package/sidenav/Sidenav.test.d.ts +1 -0
  357. package/sidenav/Sidenav.test.js +25 -44
  358. package/sidenav/SidenavContext.d.ts +5 -0
  359. package/sidenav/SidenavContext.js +13 -0
  360. package/sidenav/types.d.ts +52 -26
  361. package/slider/Slider.accessibility.test.d.ts +1 -0
  362. package/slider/Slider.accessibility.test.js +103 -0
  363. package/slider/Slider.d.ts +2 -2
  364. package/slider/Slider.js +146 -181
  365. package/slider/Slider.stories.tsx +64 -61
  366. package/slider/Slider.test.d.ts +1 -0
  367. package/slider/Slider.test.js +194 -88
  368. package/slider/types.d.ts +7 -3
  369. package/spinner/Spinner.accessibility.test.d.ts +1 -0
  370. package/spinner/Spinner.accessibility.test.js +96 -0
  371. package/spinner/Spinner.d.ts +1 -1
  372. package/spinner/Spinner.js +50 -109
  373. package/spinner/{Spinner.stories.jsx → Spinner.stories.tsx} +53 -27
  374. package/spinner/Spinner.test.d.ts +1 -0
  375. package/spinner/Spinner.test.js +25 -34
  376. package/spinner/types.d.ts +3 -3
  377. package/status-light/StatusLight.accessibility.test.d.ts +1 -0
  378. package/status-light/StatusLight.accessibility.test.js +157 -0
  379. package/status-light/StatusLight.d.ts +4 -0
  380. package/status-light/StatusLight.js +51 -0
  381. package/status-light/StatusLight.stories.tsx +74 -0
  382. package/status-light/StatusLight.test.d.ts +1 -0
  383. package/status-light/StatusLight.test.js +25 -0
  384. package/status-light/types.d.ts +17 -0
  385. package/status-light/types.js +5 -0
  386. package/switch/Switch.accessibility.test.d.ts +1 -0
  387. package/switch/Switch.accessibility.test.js +98 -0
  388. package/switch/Switch.d.ts +2 -2
  389. package/switch/Switch.js +147 -128
  390. package/switch/Switch.stories.tsx +49 -60
  391. package/switch/Switch.test.d.ts +1 -0
  392. package/switch/Switch.test.js +137 -55
  393. package/switch/types.d.ts +7 -3
  394. package/table/DropdownTheme.js +62 -0
  395. package/table/Table.accessibility.test.d.ts +1 -0
  396. package/table/Table.accessibility.test.js +92 -0
  397. package/table/Table.d.ts +6 -2
  398. package/table/Table.js +78 -35
  399. package/table/Table.stories.tsx +663 -0
  400. package/table/Table.test.d.ts +1 -0
  401. package/table/Table.test.js +92 -7
  402. package/table/types.d.ts +34 -6
  403. package/tabs/Tab.d.ts +4 -0
  404. package/tabs/Tab.js +117 -0
  405. package/tabs/Tabs.accessibility.test.d.ts +1 -0
  406. package/tabs/Tabs.accessibility.test.js +56 -0
  407. package/tabs/Tabs.js +303 -141
  408. package/tabs/Tabs.stories.tsx +124 -12
  409. package/tabs/Tabs.test.d.ts +1 -0
  410. package/tabs/Tabs.test.js +212 -76
  411. package/tabs/types.d.ts +30 -20
  412. package/tag/Tag.accessibility.test.d.ts +1 -0
  413. package/tag/Tag.accessibility.test.js +69 -0
  414. package/tag/Tag.js +35 -67
  415. package/tag/Tag.stories.tsx +19 -9
  416. package/tag/Tag.test.d.ts +1 -0
  417. package/tag/Tag.test.js +17 -36
  418. package/tag/types.d.ts +9 -9
  419. package/text-input/Suggestion.d.ts +4 -0
  420. package/text-input/Suggestion.js +67 -0
  421. package/text-input/Suggestions.d.ts +4 -0
  422. package/text-input/Suggestions.js +94 -0
  423. package/text-input/TextInput.accessibility.test.d.ts +1 -0
  424. package/text-input/TextInput.accessibility.test.js +320 -0
  425. package/text-input/TextInput.js +313 -557
  426. package/text-input/TextInput.stories.tsx +278 -275
  427. package/text-input/TextInput.test.d.ts +1 -0
  428. package/text-input/TextInput.test.js +1418 -1375
  429. package/text-input/types.d.ts +53 -14
  430. package/textarea/Textarea.accessibility.test.d.ts +1 -0
  431. package/textarea/Textarea.accessibility.test.js +155 -0
  432. package/textarea/Textarea.js +76 -127
  433. package/textarea/Textarea.stories.tsx +174 -0
  434. package/textarea/Textarea.test.d.ts +1 -0
  435. package/textarea/Textarea.test.js +151 -182
  436. package/textarea/types.d.ts +10 -6
  437. package/toggle-group/ToggleGroup.accessibility.test.d.ts +1 -0
  438. package/toggle-group/ToggleGroup.accessibility.test.js +107 -0
  439. package/toggle-group/ToggleGroup.d.ts +2 -2
  440. package/toggle-group/ToggleGroup.js +92 -108
  441. package/toggle-group/ToggleGroup.stories.tsx +53 -8
  442. package/toggle-group/ToggleGroup.test.d.ts +1 -0
  443. package/toggle-group/ToggleGroup.test.js +68 -87
  444. package/toggle-group/types.d.ts +28 -19
  445. package/tooltip/Tooltip.accessibility.test.d.ts +1 -0
  446. package/tooltip/Tooltip.accessibility.test.js +144 -0
  447. package/tooltip/Tooltip.d.ts +4 -0
  448. package/tooltip/Tooltip.js +50 -0
  449. package/tooltip/Tooltip.stories.tsx +111 -0
  450. package/tooltip/Tooltip.test.d.ts +1 -0
  451. package/tooltip/Tooltip.test.js +112 -0
  452. package/tooltip/types.d.ts +16 -0
  453. package/tooltip/types.js +5 -0
  454. package/typography/Typography.accessibility.test.d.ts +1 -0
  455. package/typography/Typography.accessibility.test.js +339 -0
  456. package/typography/Typography.d.ts +4 -0
  457. package/typography/Typography.js +23 -0
  458. package/typography/Typography.stories.tsx +196 -0
  459. package/typography/Typography.test.js +23 -0
  460. package/typography/types.d.ts +18 -0
  461. package/typography/types.js +5 -0
  462. package/useTheme.d.ts +1167 -1
  463. package/useTheme.js +2 -9
  464. package/useTranslatedLabels.d.ts +96 -0
  465. package/useTranslatedLabels.js +14 -0
  466. package/utils/BaseTypography.d.ts +21 -0
  467. package/utils/BaseTypography.js +98 -0
  468. package/utils/FocusLock.d.ts +13 -0
  469. package/utils/FocusLock.js +125 -0
  470. package/utils/useWidth.d.ts +2 -0
  471. package/utils/useWidth.js +30 -0
  472. package/wizard/Wizard.accessibility.test.d.ts +1 -0
  473. package/wizard/Wizard.accessibility.test.js +55 -0
  474. package/wizard/Wizard.js +59 -110
  475. package/wizard/Wizard.stories.tsx +60 -2
  476. package/wizard/Wizard.test.d.ts +1 -0
  477. package/wizard/Wizard.test.js +53 -80
  478. package/wizard/types.d.ts +9 -9
  479. package/card/ice-cream.jpg +0 -0
  480. package/common/OpenSans.css +0 -81
  481. package/common/RequiredComponent.js +0 -32
  482. package/common/fonts/OpenSans-Bold.ttf +0 -0
  483. package/common/fonts/OpenSans-BoldItalic.ttf +0 -0
  484. package/common/fonts/OpenSans-ExtraBold.ttf +0 -0
  485. package/common/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  486. package/common/fonts/OpenSans-Italic.ttf +0 -0
  487. package/common/fonts/OpenSans-Light.ttf +0 -0
  488. package/common/fonts/OpenSans-LightItalic.ttf +0 -0
  489. package/common/fonts/OpenSans-Regular.ttf +0 -0
  490. package/common/fonts/OpenSans-SemiBold.ttf +0 -0
  491. package/common/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
  492. package/list/List.d.ts +0 -4
  493. package/list/List.js +0 -47
  494. package/list/List.stories.tsx +0 -95
  495. package/list/types.d.ts +0 -7
  496. package/number-input/numberInputContextTypes.d.ts +0 -19
  497. package/paginator/Icons.js +0 -66
  498. package/progress-bar/ProgressBar.stories.jsx +0 -58
  499. package/radio/Radio.d.ts +0 -4
  500. package/radio/Radio.js +0 -173
  501. package/radio/Radio.stories.tsx +0 -192
  502. package/radio/Radio.test.js +0 -71
  503. package/radio/types.d.ts +0 -54
  504. package/resultsetTable/ResultsetTable.d.ts +0 -4
  505. package/resultsetTable/ResultsetTable.js +0 -254
  506. package/resultsetTable/ResultsetTable.test.js +0 -306
  507. package/row/Row.d.ts +0 -3
  508. package/row/Row.js +0 -127
  509. package/row/Row.stories.tsx +0 -237
  510. package/row/types.d.ts +0 -28
  511. package/select/Icons.d.ts +0 -10
  512. package/select/Icons.js +0 -93
  513. package/stack/Stack.d.ts +0 -3
  514. package/stack/Stack.js +0 -97
  515. package/stack/Stack.stories.tsx +0 -164
  516. package/stack/types.d.ts +0 -24
  517. package/table/Table.stories.jsx +0 -277
  518. package/text/Text.d.ts +0 -7
  519. package/text/Text.js +0 -30
  520. package/text/Text.stories.tsx +0 -19
  521. package/textarea/Textarea.stories.jsx +0 -157
  522. /package/{list → action-icon}/types.js +0 -0
  523. /package/{radio → bar-chart}/types.js +0 -0
  524. /package/{resultsetTable → breadcrumbs}/types.js +0 -0
  525. /package/{row → bulleted-list}/types.js +0 -0
  526. /package/{stack → container}/types.js +0 -0
  527. /package/{number-input/numberInputContextTypes.js → contextual-menu/types.js} +0 -0
@@ -0,0 +1,1432 @@
1
+ export declare const componentTokens: {
2
+ accordion: {
3
+ backgroundColor: string;
4
+ hoverBackgroundColor: string;
5
+ arrowColor: string;
6
+ disabledArrowColor: string;
7
+ assistiveTextFontFamily: string;
8
+ assistiveTextFontSize: string;
9
+ assistiveTextFontWeight: string;
10
+ assistiveTextFontStyle: string;
11
+ assistiveTextLetterSpacing: string;
12
+ assistiveTextFontColor: string;
13
+ disabledAssistiveTextFontColor: string;
14
+ assistiveTextMinWidth: string;
15
+ assistiveTextPaddingRight: string;
16
+ assistiveTextPaddingLeft: string;
17
+ titleLabelFontFamily: string;
18
+ titleLabelFontSize: string;
19
+ titleLabelFontWeight: string;
20
+ titleLabelFontStyle: string;
21
+ titleLabelFontColor: string;
22
+ disabledTitleLabelFontColor: string;
23
+ titleLabelPaddingTop: string;
24
+ titleLabelPaddingBottom: string;
25
+ titleLabelPaddingLeft: string;
26
+ titleLabelPaddingRight: string;
27
+ focusBorderColor: string;
28
+ focusBorderStyle: string;
29
+ focusBorderThickness: string;
30
+ borderRadius: string;
31
+ boxShadowOffsetX: string;
32
+ boxShadowOffsetY: string;
33
+ boxShadowBlur: string;
34
+ boxShadowColor: string;
35
+ iconColor: string;
36
+ disabledIconColor: string;
37
+ iconSize: string;
38
+ iconMarginLeft: string;
39
+ iconMarginRight: string;
40
+ accordionGroupSeparatorBorderColor: string;
41
+ accordionGroupSeparatorBorderThickness: string;
42
+ accordionGroupSeparatorBorderRadius: string;
43
+ accordionGroupSeparatorBorderStyle: string;
44
+ };
45
+ alert: {
46
+ titleFontFamily: string;
47
+ titleFontColor: string;
48
+ titleFontSize: string;
49
+ titleFontStyle: string;
50
+ titleFontWeight: string;
51
+ titleTextTransform: string;
52
+ titlePaddingRight: string;
53
+ titlePaddingLeft: string;
54
+ inlineTextFontFamily: string;
55
+ inlineTextFontColor: string;
56
+ inlineTextFontSize: string;
57
+ inlineTextFontStyle: string;
58
+ inlineTextFontWeight: string;
59
+ inlineTextPaddingLeft: string;
60
+ inlineTextPaddingRight: string;
61
+ contentPaddingLeft: string;
62
+ contentPaddingRight: string;
63
+ contentPaddingTop: string;
64
+ contentPaddingBottom: string;
65
+ borderRadius: string;
66
+ borderStyle: string;
67
+ borderThickness: string;
68
+ infoBorderColor: string;
69
+ successBorderColor: string;
70
+ warningBorderColor: string;
71
+ errorBorderColor: string;
72
+ iconSize: string;
73
+ iconPaddingLeft: string;
74
+ iconPaddingRight: string;
75
+ infoIconColor: string;
76
+ successIconColor: string;
77
+ warningIconColor: string;
78
+ errorIconColor: string;
79
+ infoBackgroundColor: string;
80
+ successBackgroundColor: string;
81
+ warningBackgroundColor: string;
82
+ errorBackgroundColor: string;
83
+ hoverActionBackgroundColor: string;
84
+ activeActionBackgroundColor: string;
85
+ focusActionBorderColor: string;
86
+ overlayColor: string;
87
+ };
88
+ box: {
89
+ backgroundColor: string;
90
+ borderRadius: string;
91
+ borderThickness: string;
92
+ borderStyle: string;
93
+ borderColor: string;
94
+ noneShadowDepthShadowOffsetX: string;
95
+ noneShadowDepthShadowOffsetY: string;
96
+ noneShadowDepthShadowBlur: string;
97
+ noneShadowDepthShadowSpread: string;
98
+ noneShadowDepthShadowColor: string;
99
+ oneShadowDepthShadowOffsetX: string;
100
+ oneShadowDepthShadowOffsetY: string;
101
+ oneShadowDepthShadowBlur: string;
102
+ oneShadowDepthShadowSpread: string;
103
+ oneShadowDepthShadowColor: string;
104
+ twoShadowDepthShadowOffsetX: string;
105
+ twoShadowDepthShadowOffsetY: string;
106
+ twoShadowDepthShadowBlur: string;
107
+ twoShadowDepthShadowSpread: string;
108
+ twoShadowDepthShadowColor: string;
109
+ };
110
+ bulletedList: {
111
+ fontColor: string;
112
+ bulletIconHeight: string;
113
+ bulletIconWidth: string;
114
+ bulletHeight: string;
115
+ bulletWidth: string;
116
+ bulletMarginRight: string;
117
+ };
118
+ button: {
119
+ labelFontLineHeight: string;
120
+ labelLetterSpacing: string;
121
+ paddingLeft: string;
122
+ paddingRight: string;
123
+ paddingTop: string;
124
+ paddingBottom: string;
125
+ focusBorderColor: string;
126
+ primaryBackgroundColor: string;
127
+ primaryFontColor: string;
128
+ primaryHoverBackgroundColor: string;
129
+ primaryActiveBackgroundColor: string;
130
+ primaryDisabledBackgroundColor: string;
131
+ primaryDisabledFontColor: string;
132
+ primaryBorderThickness: string;
133
+ primaryBorderStyle: string;
134
+ primaryBorderRadius: string;
135
+ primaryFontFamily: string;
136
+ primaryFontSize: string;
137
+ primaryFontWeight: string;
138
+ secondaryBackgroundColor: string;
139
+ secondaryFontColor: string;
140
+ secondaryHoverFontColor: string;
141
+ secondaryBorderColor: string;
142
+ secondaryHoverBackgroundColor: string;
143
+ secondaryActiveBackgroundColor: string;
144
+ secondaryDisabledBackgroundColor: string;
145
+ secondaryDisabledFontColor: string;
146
+ secondaryDisabledBorderColor: string;
147
+ secondaryBorderThickness: string;
148
+ secondaryBorderStyle: string;
149
+ secondaryBorderRadius: string;
150
+ secondaryFontFamily: string;
151
+ secondaryFontSize: string;
152
+ secondaryFontWeight: string;
153
+ textBackgroundColor: string;
154
+ textFontColor: string;
155
+ textHoverBackgroundColor: string;
156
+ textActiveBackgroundColor: string;
157
+ textDisabledBackgroundColor: string;
158
+ textDisabledFontColor: string;
159
+ textBorderThickness: string;
160
+ textBorderStyle: string;
161
+ textBorderRadius: string;
162
+ textFontFamily: string;
163
+ textFontSize: string;
164
+ textFontWeight: string;
165
+ };
166
+ card: {
167
+ height: string;
168
+ width: string;
169
+ };
170
+ checkbox: {
171
+ backgroundColorChecked: string;
172
+ hoverBackgroundColorChecked: string;
173
+ disabledBackgroundColorChecked: string;
174
+ readOnlyBackgroundColorChecked: string;
175
+ hoverReadOnlyBackgroundColorChecked: string;
176
+ borderColor: string;
177
+ hoverBorderColor: string;
178
+ disabledBorderColor: string;
179
+ readOnlyBorderColor: string;
180
+ hoverReadOnlyBorderColor: string;
181
+ checkColor: string;
182
+ disabledCheckColor: string;
183
+ readOnlyCheckColor: string;
184
+ fontFamily: string;
185
+ fontSize: string;
186
+ fontWeight: string;
187
+ fontColor: string;
188
+ disabledFontColor: string;
189
+ focusColor: string;
190
+ checkLabelSpacing: string;
191
+ };
192
+ chip: {
193
+ backgroundColor: string;
194
+ disabledBackgroundColor: string;
195
+ fontFamily: string;
196
+ fontSize: string;
197
+ fontStyle: string;
198
+ fontWeight: string;
199
+ fontColor: string;
200
+ disabledFontColor: string;
201
+ borderColor: string;
202
+ borderRadius: string;
203
+ borderThickness: string;
204
+ borderStyle: string;
205
+ contentPaddingLeft: string;
206
+ contentPaddingRight: string;
207
+ contentPaddingTop: string;
208
+ contentPaddingBottom: string;
209
+ iconSize: string;
210
+ iconSpacing: string;
211
+ iconColor: string;
212
+ hoverIconColor: string;
213
+ activeIconColor: string;
214
+ disabledIconColor: string;
215
+ focusColor: string;
216
+ focusBorderStyle: string;
217
+ focusBorderThickness: string;
218
+ focusBorderRadius: string;
219
+ };
220
+ contextualMenu: {
221
+ fontFamily: string;
222
+ backgroundColor: string;
223
+ borderColor: string;
224
+ menuItemFontColor: string;
225
+ menuItemFontSize: string;
226
+ menuItemFontStyle: string;
227
+ menuItemFontWeight: string;
228
+ menuItemLineHeight: string;
229
+ hoverMenuItemBackgroundColor: string;
230
+ activeMenuItemBackgroundColor: string;
231
+ selectedMenuItemBackgroundColor: string;
232
+ hoverSelectedMenuItemBackgroundColor: string;
233
+ activeSelectedMenuItemBackgroundColor: string;
234
+ selectedMenuItemFontWeight: string;
235
+ sectionTitleFontColor: string;
236
+ sectionTitleFontSize: string;
237
+ sectionTitleFontStyle: string;
238
+ sectionTitleFontWeight: string;
239
+ sectionTitleLineHeight: string;
240
+ iconColor: string;
241
+ iconSize: string;
242
+ };
243
+ dateInput: {
244
+ pickerBackgroundColor: string;
245
+ pickerFontColor: string;
246
+ pickerBorderColor: string;
247
+ pickerSelectedBackgroundColor: string;
248
+ pickerSelectedFontColor: string;
249
+ pickerHoverBackgroundColor: string;
250
+ pickerHoverFontColor: string;
251
+ pickerActiveBackgroundColor: string;
252
+ pickerActiveFontColor: string;
253
+ pickerNonCurrentMonthFontColor: string;
254
+ pickerCurrentDateBorderColor: string;
255
+ pickerCurrentDateFontColor: string;
256
+ pickerCurrentYearFontColor: string;
257
+ pickerHeaderBackgroundColor: string;
258
+ pickerHeaderFontColor: string;
259
+ pickerHeaderHoverBackgroundColor: string;
260
+ pickerHeaderHoverFontColor: string;
261
+ pickerHeaderActiveBackgroundColor: string;
262
+ pickerHeaderActiveFontColor: string;
263
+ pickerFocusColor: string;
264
+ pickerBorderWidth: string;
265
+ pickerBorderStyle: string;
266
+ pickerFocusWidth: string;
267
+ pickerCurrentDateBorderWidth: string;
268
+ pickerFontFamily: string;
269
+ pickerFontSize: string;
270
+ pickerFontWeight: string;
271
+ pickerInteractedYearFontSize: string;
272
+ pickerHeaderFontSize: string;
273
+ };
274
+ dialog: {
275
+ overlayColor: string;
276
+ backgroundColor: string;
277
+ closeIconSize: string;
278
+ closeIconTopPosition: string;
279
+ closeIconRightPosition: string;
280
+ closeIconBackgroundColor: string;
281
+ closeIconBorderColor: string;
282
+ closeIconColor: string;
283
+ closeIconBorderThickness: string;
284
+ closeIconBorderStyle: string;
285
+ closeIconBorderRadius: string;
286
+ boxShadowOffsetX: string;
287
+ boxShadowOffsetY: string;
288
+ boxShadowBlur: string;
289
+ boxShadowColor: string;
290
+ };
291
+ dropdown: {
292
+ buttonBackgroundColor: string;
293
+ hoverButtonBackgroundColor: string;
294
+ activeButtonBackgroundColor: string;
295
+ buttonFontFamily: string;
296
+ buttonFontSize: string;
297
+ buttonFontStyle: string;
298
+ buttonFontWeight: string;
299
+ buttonFontColor: string;
300
+ buttonIconSize: string;
301
+ buttonIconSpacing: string;
302
+ buttonIconColor: string;
303
+ buttonPaddingTop: string;
304
+ buttonPaddingBottom: string;
305
+ buttonPaddingLeft: string;
306
+ buttonPaddingRight: string;
307
+ buttonHeight: string;
308
+ buttonBorderRadius: string;
309
+ buttonBorderStyle: string;
310
+ buttonBorderThickness: string;
311
+ buttonBorderColor: string;
312
+ disabledColor: string;
313
+ disabledButtonBackgroundColor: string;
314
+ disabledButtonBorderColor: string;
315
+ optionBackgroundColor: string;
316
+ hoverOptionBackgroundColor: string;
317
+ activeOptionBackgroundColor: string;
318
+ optionFontFamily: string;
319
+ optionFontSize: string;
320
+ optionFontStyle: string;
321
+ optionFontWeight: string;
322
+ optionFontColor: string;
323
+ optionIconSize: string;
324
+ optionIconSpacing: string;
325
+ optionIconColor: string;
326
+ optionPaddingTop: string;
327
+ optionPaddingBottom: string;
328
+ optionPaddingLeft: string;
329
+ optionPaddingRight: string;
330
+ caretIconSize: string;
331
+ caretIconColor: string;
332
+ caretIconSpacing: string;
333
+ borderRadius: string;
334
+ borderStyle: string;
335
+ borderThickness: string;
336
+ borderColor: string;
337
+ scrollBarThumbColor: string;
338
+ scrollBarTrackColor: string;
339
+ focusColor: string;
340
+ };
341
+ fileInput: {
342
+ dropBorderColor: string;
343
+ fileItemBorderColor: string;
344
+ fileNameFontColor: string;
345
+ labelFontColor: string;
346
+ helperTextFontColor: string;
347
+ dropLabelFontColor: string;
348
+ disabledLabelFontColor: string;
349
+ disabledHelperTextFontcolor: string;
350
+ disabledDropLabelFontColor: string;
351
+ focusDropBorderColor: string;
352
+ disabledDropBorderColor: string;
353
+ dragoverDropBackgroundColor: string;
354
+ errorFileItemBorderColor: string;
355
+ errorFileItemBackgroundColor: string;
356
+ errorFilePreviewBackgroundColor: string;
357
+ errorFileItemIconColor: string;
358
+ fileItemIconBackgroundColor: string;
359
+ deleteFileItemColor: string;
360
+ errorMessageFontColor: string;
361
+ labelFontFamily: string;
362
+ labelFontSize: string;
363
+ labelFontWeight: string;
364
+ labelLineHeight: string;
365
+ fileItemFontFamily: string;
366
+ fileItemFontSize: string;
367
+ fileItemFontWeight: string;
368
+ fileItemLineHeight: string;
369
+ helperTextFontFamily: string;
370
+ helperTextFontSize: string;
371
+ helperTextFontWeight: string;
372
+ helperTextLineHeight: string;
373
+ dropLabelFontFamily: string;
374
+ dropLabelFontSize: string;
375
+ dropLabelFontWeight: string;
376
+ errorMessageFontFamily: string;
377
+ errorMessageFontSize: string;
378
+ errorMessageFontWeight: string;
379
+ errorMessageLineHeight: string;
380
+ dropBorderThickness: string;
381
+ dropBorderStyle: string;
382
+ dropBorderRadius: string;
383
+ fileItemBorderThickness: string;
384
+ fileItemBorderStyle: string;
385
+ fileItemBorderRadius: string;
386
+ hoverDeleteFileItemBackgroundColor: string;
387
+ activeDeleteFileItemBackgroundColor: string;
388
+ focusDeleteFileItemBorderColor: string;
389
+ filePreviewBackgroundColor: string;
390
+ filePreviewIconColor: string;
391
+ errorFilePreviewIconColor: string;
392
+ };
393
+ footer: {
394
+ height: string;
395
+ backgroundColor: string;
396
+ bottomLinksDividerColor: string;
397
+ bottomLinksDividerThickness: string;
398
+ bottomLinksDividerStyle: string;
399
+ bottomLinksDividerSpacing: string;
400
+ bottomLinksFontFamily: string;
401
+ bottomLinksFontSize: string;
402
+ bottomLinksFontStyle: string;
403
+ bottomLinksFontWeight: string;
404
+ bottomLinksFontColor: string;
405
+ bottomLinksTextDecoration: string;
406
+ copyrightFontFamily: string;
407
+ copyrightFontSize: string;
408
+ copyrightFontStyle: string;
409
+ copyrightFontWeight: string;
410
+ copyrightFontColor: string;
411
+ logo: string;
412
+ logoHeight: string;
413
+ logoWidth: string;
414
+ socialLinksSize: string;
415
+ socialLinksGutter: string;
416
+ socialLinksColor: string;
417
+ };
418
+ header: {
419
+ backgroundColor: string;
420
+ hamburguerFocusColor: string;
421
+ hamburguerFontFamily: string;
422
+ hamburguerFontStyle: string;
423
+ hamburguerFontColor: string;
424
+ hamburguerFontSize: string;
425
+ hamburguerFontWeight: string;
426
+ hamburguerTextTransform: string;
427
+ hamburguerIconColor: string;
428
+ hamburguerHoverColor: string;
429
+ logo: string;
430
+ logoResponsive: string;
431
+ logoHeight: string;
432
+ logoWidth: string;
433
+ menuBackgroundColor: string;
434
+ menuZindex: string;
435
+ menuTabletWidth: string;
436
+ menuMobileWidth: string;
437
+ minHeight: string;
438
+ overlayColor: string;
439
+ overlayOpacity: string;
440
+ overlayZindex: string;
441
+ paddingTop: string;
442
+ paddingBottom: string;
443
+ paddingRight: string;
444
+ paddingLeft: string;
445
+ underlinedColor: string;
446
+ underlinedThickness: string;
447
+ underlinedStyle: string;
448
+ contentColor: string;
449
+ };
450
+ heading: {
451
+ level1FontColor: string;
452
+ level1FontFamily: string;
453
+ level1FontSize: string;
454
+ level1FontStyle: string;
455
+ level1FontWeight: string;
456
+ level1LineHeight: string;
457
+ level1LetterSpacing: string;
458
+ level2FontColor: string;
459
+ level2FontFamily: string;
460
+ level2FontSize: string;
461
+ level2FontStyle: string;
462
+ level2FontWeight: string;
463
+ level2LineHeight: string;
464
+ level2LetterSpacing: string;
465
+ level3FontColor: string;
466
+ level3FontFamily: string;
467
+ level3FontSize: string;
468
+ level3FontStyle: string;
469
+ level3FontWeight: string;
470
+ level3LineHeight: string;
471
+ level3LetterSpacing: string;
472
+ level4FontColor: string;
473
+ level4FontFamily: string;
474
+ level4FontSize: string;
475
+ level4FontStyle: string;
476
+ level4FontWeight: string;
477
+ level4LineHeight: string;
478
+ level4LetterSpacing: string;
479
+ level5FontColor: string;
480
+ level5FontFamily: string;
481
+ level5FontSize: string;
482
+ level5FontStyle: string;
483
+ level5FontWeight: string;
484
+ level5LineHeight: string;
485
+ level5LetterSpacing: string;
486
+ };
487
+ image: {
488
+ captionFontColor: string;
489
+ captionFontFamily: string;
490
+ captionFontSize: string;
491
+ captionFontStyle: string;
492
+ captionFontWeight: string;
493
+ captionLineHeight: string;
494
+ };
495
+ link: {
496
+ fontColor: string;
497
+ fontFamily: string;
498
+ fontSize: string;
499
+ fontStyle: string;
500
+ fontWeight: string;
501
+ iconSize: string;
502
+ iconSpacing: string;
503
+ underlineSpacing: string;
504
+ underlineStyle: string;
505
+ underlineThickness: string;
506
+ disabledFontColor: string;
507
+ hoverFontColor: string;
508
+ hoverUnderlineColor: string;
509
+ visitedFontColor: string;
510
+ visitedUnderlineColor: string;
511
+ activeFontColor: string;
512
+ activeUnderlineColor: string;
513
+ focusColor: string;
514
+ };
515
+ navTabs: {
516
+ selectedBackgroundColor: string;
517
+ unselectedBackgroundColor: string;
518
+ hoverBackgroundColor: string;
519
+ pressedBackgroundColor: string;
520
+ selectedFontColor: string;
521
+ unselectedFontColor: string;
522
+ disabledFontColor: string;
523
+ focusOutline: string;
524
+ selectedUnderlineColor: string;
525
+ dividerColor: string;
526
+ fontFamily: string;
527
+ fontSize: string;
528
+ fontStyle: string;
529
+ fontWeight: string;
530
+ selectedIconColor: string;
531
+ unselectedIconColor: string;
532
+ disabledIconColor: string;
533
+ };
534
+ paginator: {
535
+ backgroundColor: string;
536
+ fontColor: string;
537
+ fontFamily: string;
538
+ fontSize: string;
539
+ fontStyle: string;
540
+ fontWeight: string;
541
+ fontTextTransform: string;
542
+ verticalPadding: string;
543
+ horizontalPadding: string;
544
+ marginRight: string;
545
+ marginLeft: string;
546
+ itemsPerPageSelectorMarginLeft: string;
547
+ itemsPerPageSelectorMarginRight: string;
548
+ pageSelectorMarginRight: string;
549
+ pageSelectorMarginLeft: string;
550
+ totalItemsContainerMarginRight: string;
551
+ totalItemsContainerMarginLeft: string;
552
+ };
553
+ paragraph: {
554
+ display: string;
555
+ fontColor: string;
556
+ fontSize: string;
557
+ fontWeight: string;
558
+ };
559
+ progressBar: {
560
+ trackLineColor: string;
561
+ totalLineColor: string;
562
+ labelFontFamily: string;
563
+ labelFontSize: string;
564
+ labelFontStyle: string;
565
+ labelFontWeight: string;
566
+ labelFontColor: string;
567
+ labelFontTextTransform: string;
568
+ valueFontFamily: string;
569
+ valueFontSize: string;
570
+ valueFontStyle: string;
571
+ valueFontWeight: string;
572
+ valueFontColor: string;
573
+ valueFontTextTransform: string;
574
+ helperTextFontColor: string;
575
+ helperTextFontSize: string;
576
+ helperTextFontStyle: string;
577
+ helperTextFontWeight: string;
578
+ helperTextFontFamily: string;
579
+ thickness: string;
580
+ borderRadius: string;
581
+ overlayColor: string;
582
+ overlayFontColor: string;
583
+ };
584
+ quickNav: {
585
+ fontColor: string;
586
+ hoverFontColor: string;
587
+ dividerBorderColor: string;
588
+ focusBorderColor: string;
589
+ focusBorderStyle: string;
590
+ focusBorderThickness: string;
591
+ focusBorderRadius: string;
592
+ paddingTop: string;
593
+ paddingBottom: string;
594
+ paddingLeft: string;
595
+ paddingRight: string;
596
+ fontFamily: string;
597
+ fontSize: string;
598
+ fontStyle: string;
599
+ fontWeight: string;
600
+ };
601
+ radioGroup: {
602
+ fontFamily: string;
603
+ radioInputColor: string;
604
+ hoverRadioInputColor: string;
605
+ focusBorderColor: string;
606
+ activeRadioInputColor: string;
607
+ errorRadioInputColor: string;
608
+ hoverErrorRadioInputColor: string;
609
+ activeErrorRadioInputColor: string;
610
+ readOnlyRadioInputColor: string;
611
+ hoverReadOnlyRadioInputColor: string;
612
+ activeReadOnlyRadioInputColor: string;
613
+ disabledRadioInputColor: string;
614
+ disabledLabelFontColor: string;
615
+ disabledHelperTextFontColor: string;
616
+ disabledRadioInputLabelFontColor: string;
617
+ errorMessageColor: string;
618
+ labelFontColor: string;
619
+ labelFontSize: string;
620
+ labelFontStyle: string;
621
+ labelFontWeight: string;
622
+ labelLineHeight: string;
623
+ optionalLabelFontWeight: string;
624
+ helperTextFontColor: string;
625
+ helperTextFontSize: string;
626
+ helperTextFontStyle: string;
627
+ helperTextFontWeight: string;
628
+ helperTextLineHeight: string;
629
+ radioInputLabelFontColor: string;
630
+ radioInputLabelFontSize: string;
631
+ radioInputLabelFontStyle: string;
632
+ radioInputLabelFontWeight: string;
633
+ radioInputLabelLineHeight: string;
634
+ groupLabelMargin: string;
635
+ radioInputLabelMargin: string;
636
+ groupVerticalGutter: string;
637
+ groupHorizontalGutter: string;
638
+ };
639
+ select: {
640
+ fontFamily: string;
641
+ disabledColor: string;
642
+ enabledInputBorderColor: string;
643
+ hoverInputBorderColor: string;
644
+ focusInputBorderColor: string;
645
+ errorInputBorderColor: string;
646
+ hoverInputErrorBorderColor: string;
647
+ disabledInputBorderColor: string;
648
+ disabledInputBackgroundColor: string;
649
+ inputMarginTop: string;
650
+ inputMarginBottom: string;
651
+ errorMessageColor: string;
652
+ errorIconColor: string;
653
+ labelFontColor: string;
654
+ labelFontSize: string;
655
+ labelFontStyle: string;
656
+ labelFontWeight: string;
657
+ labelLineHeight: string;
658
+ optionalLabelFontWeight: string;
659
+ helperTextFontColor: string;
660
+ helperTextFontSize: string;
661
+ helperTextFontStyle: string;
662
+ helperTextFontWeight: string;
663
+ helperTextLineHeight: string;
664
+ placeholderFontColor: string;
665
+ valueFontColor: string;
666
+ valueFontSize: string;
667
+ valueFontStyle: string;
668
+ valueFontWeight: string;
669
+ actionIconColor: string;
670
+ hoverActionIconColor: string;
671
+ activeActionIconColor: string;
672
+ actionBackgroundColor: string;
673
+ hoverActionBackgroundColor: string;
674
+ activeActionBackgroundColor: string;
675
+ listOptionFontColor: string;
676
+ listOptionFontSize: string;
677
+ listOptionFontStyle: string;
678
+ listOptionFontWeight: string;
679
+ listOptionIconColor: string;
680
+ listOptionDividerColor: string;
681
+ listGroupLabelFontWeight: string;
682
+ focusListOptionBorderColor: string;
683
+ systemMessageFontColor: string;
684
+ collapseIndicatorColor: string;
685
+ listDialogBackgroundColor: string;
686
+ listDialogBorderColor: string;
687
+ selectedListOptionBackgroundColor: string;
688
+ selectedHoverListOptionBackgroundColor: string;
689
+ selectedActiveListOptionBackgroundColor: string;
690
+ selectedListOptionIconColor: string;
691
+ unselectedHoverListOptionBackgroundColor: string;
692
+ unselectedActiveListOptionBackgroundColor: string;
693
+ selectionIndicatorFontColor: string;
694
+ selectionIndicatorFontSize: string;
695
+ selectionIndicatorFontStyle: string;
696
+ selectionIndicatorFontWeight: string;
697
+ selectionIndicatorBorderColor: string;
698
+ selectionIndicatorBackgroundColor: string;
699
+ enabledSelectionIndicatorActionBackgroundColor: string;
700
+ enabledSelectionIndicatorActionIconColor: string;
701
+ hoverSelectionIndicatorActionBackgroundColor: string;
702
+ hoverSelectionIndicatorActionIconColor: string;
703
+ activeSelectionIndicatorActionBackgroundColor: string;
704
+ activeSelectionIndicatorActionIconColor: string;
705
+ };
706
+ sidenav: {
707
+ backgroundColor: string;
708
+ titleFontFamily: string;
709
+ titleFontSize: string;
710
+ titleFontStyle: string;
711
+ titleFontWeight: string;
712
+ titleFontColor: string;
713
+ titleFontTextTransform: string;
714
+ titleFontLetterSpacing: string;
715
+ groupTitleFontFamily: string;
716
+ groupTitleFontSize: string;
717
+ groupTitleFontStyle: string;
718
+ groupTitleFontWeight: string;
719
+ groupTitleFontColor: string;
720
+ groupTitleHoverBackgroundColor: string;
721
+ groupTitleActiveBackgroundColor: string;
722
+ groupTitleSelectedFontColor: string;
723
+ groupTitleSelectedBackgroundColor: string;
724
+ groupTitleSelectedHoverFontColor: string;
725
+ groupTitleSelectedHoverBackgroundColor: string;
726
+ groupTitleFontTextTransform: string;
727
+ groupTitleFontLetterSpacing: string;
728
+ linkFontFamily: string;
729
+ linkFontSize: string;
730
+ linkFontStyle: string;
731
+ linkFontWeight: string;
732
+ linkFontColor: string;
733
+ linkHoverBackgroundColor: string;
734
+ linkSelectedFontColor: string;
735
+ linkSelectedBackgroundColor: string;
736
+ linkSelectedHoverFontColor: string;
737
+ linkSelectedHoverBackgroundColor: string;
738
+ linkFontTextTransform: string;
739
+ linkFontLetterSpacing: string;
740
+ linkTextDecoration: string;
741
+ linkMarginTop: string;
742
+ linkMarginBottom: string;
743
+ linkMarginRight: string;
744
+ linkMarginLeft: string;
745
+ linkFocusColor: string;
746
+ scrollBarThumbColor: string;
747
+ scrollBarTrackColor: string;
748
+ };
749
+ slider: {
750
+ fontFamily: string;
751
+ limitValuesFontColor: string;
752
+ limitValuesFontSize: string;
753
+ limitValuesFontStyle: string;
754
+ limitValuesFontWeight: string;
755
+ limitValuesFontLetterSpacing: string;
756
+ disabledLimitValuesFontColor: string;
757
+ labelFontFamily: string;
758
+ labelFontSize: string;
759
+ labelFontStyle: string;
760
+ labelFontWeight: string;
761
+ labelLineHeight: string;
762
+ helperTextFontFamily: string;
763
+ helperTextFontSize: string;
764
+ helperTextFontStyle: string;
765
+ helperTextFontWeight: string;
766
+ helperTextLineHeight: string;
767
+ fontColor: string;
768
+ labelFontColor: string;
769
+ helperTextFontColor: string;
770
+ disabledLabelFontColor: string;
771
+ disabledHelperTextFontColor: string;
772
+ thumbHeight: string;
773
+ thumbWidth: string;
774
+ hoverThumbHeight: string;
775
+ hoverThumbWidth: string;
776
+ thumbVerticalPosition: string;
777
+ hoverThumbVerticalPosition: string;
778
+ thumbBackgroundColor: string;
779
+ hoverThumbScale: string;
780
+ hoverThumbBackgroundColor: string;
781
+ activeThumbScale: string;
782
+ activeThumbBackgroundColor: string;
783
+ focusThumbBackgroundColor: string;
784
+ tickHeight: string;
785
+ tickWidth: string;
786
+ tickVerticalPosition: string;
787
+ tickBackgroundColor: string;
788
+ trackLineThickness: string;
789
+ trackLineVerticalPosition: string;
790
+ trackLineColor: string;
791
+ totalLineThickness: string;
792
+ totalLineVerticalPosition: string;
793
+ totalLineColor: string;
794
+ disabledThumbVerticalPosition: string;
795
+ disabledThumbBackgroundColor: string;
796
+ disabledTickVerticalPosition: string;
797
+ disabledTickBackgroundColor: string;
798
+ disabledTrackLineColor: string;
799
+ disabledTotalLineColor: string;
800
+ focusColor: string;
801
+ floorLabelMarginRight: string;
802
+ ceilLabelMarginLeft: string;
803
+ inputMarginLeft: string;
804
+ };
805
+ spinner: {
806
+ trackCircleColor: string;
807
+ trackCircleColorOverlay: string;
808
+ totalCircleColor: string;
809
+ labelFontFamily: string;
810
+ labelFontSize: string;
811
+ labelFontStyle: string;
812
+ labelFontWeight: string;
813
+ labelFontColor: string;
814
+ labelTextAlign: string;
815
+ progressValueFontFamily: string;
816
+ progressValueFontSize: string;
817
+ progressValueFontStyle: string;
818
+ progressValueFontWeight: string;
819
+ progressValueFontColor: string;
820
+ progressValueTextAlign: string;
821
+ overlayBackgroundColor: string;
822
+ overlayOpacity: string;
823
+ overlayLabelFontFamily: string;
824
+ overlayLabelFontSize: string;
825
+ overlayLabelFontStyle: string;
826
+ overlayLabelFontWeight: string;
827
+ overlayLabelFontColor: string;
828
+ overlayLabelTextAlign: string;
829
+ overlayProgressValueFontFamily: string;
830
+ overlayProgressValueFontSize: string;
831
+ overlayProgressValueFontStyle: string;
832
+ overlayProgressValueFontWeight: string;
833
+ overlayProgressValueFontColor: string;
834
+ overlayProgressValueTextAlign: string;
835
+ };
836
+ switch: {
837
+ checkedTrackBackgroundColor: string;
838
+ checkedThumbBackgroundColor: string;
839
+ uncheckedTrackBackgroundColor: string;
840
+ uncheckedThumbBackgroundColor: string;
841
+ disabledCheckedTrackBackgroundColor: string;
842
+ disabledCheckedThumbBackgroundColor: string;
843
+ disabledUncheckedTrackBackgroundColor: string;
844
+ disabledUncheckedThumbBackgroundColor: string;
845
+ disabledLabelFontColor: string;
846
+ disabledLabelFontStyle: string;
847
+ labelFontFamily: string;
848
+ labelFontSize: string;
849
+ labelFontStyle: string;
850
+ labelFontWeight: string;
851
+ labelFontColor: string;
852
+ thumbFocusColor: string;
853
+ thumbHeight: string;
854
+ thumbWidth: string;
855
+ thumbShift: string;
856
+ trackHeight: string;
857
+ trackWidth: string;
858
+ spaceBetweenLabelSwitch: string;
859
+ };
860
+ table: {
861
+ rowSeparatorThickness: string;
862
+ rowSeparatorStyle: string;
863
+ rowSeparatorColor: string;
864
+ dataBackgroundColor: string;
865
+ dataFontFamily: string;
866
+ dataFontSize: string;
867
+ dataFontStyle: string;
868
+ dataFontWeight: string;
869
+ dataFontColor: string;
870
+ dataFontTextTransform: string;
871
+ dataPaddingTop: string;
872
+ dataPaddingBottom: string;
873
+ dataPaddingRight: string;
874
+ dataPaddingLeft: string;
875
+ dataPaddingTopReduced: string;
876
+ dataPaddingBottomReduced: string;
877
+ dataPaddingRightReduced: string;
878
+ dataPaddingLeftReduced: string;
879
+ dataTextAlign: string;
880
+ dataTextLineHeight: string;
881
+ firstChildPaddingLeft: string;
882
+ lastChildPaddingRight: string;
883
+ firstChildPaddingLeftReduced: string;
884
+ lastChildPaddingRightReduced: string;
885
+ headerBackgroundColor: string;
886
+ headerBorderRadius: string;
887
+ headerFontFamily: string;
888
+ headerFontSize: string;
889
+ headerFontStyle: string;
890
+ headerFontWeight: string;
891
+ headerFontColor: string;
892
+ headerFontTextTransform: string;
893
+ headerPaddingTop: string;
894
+ headerPaddingBottom: string;
895
+ headerPaddingRight: string;
896
+ headerPaddingLeft: string;
897
+ headerPaddingTopReduced: string;
898
+ headerPaddingBottomReduced: string;
899
+ headerPaddingRightReduced: string;
900
+ headerPaddingLeftReduced: string;
901
+ headerTextAlign: string;
902
+ headerTextLineHeight: string;
903
+ scrollBarThumbColor: string;
904
+ scrollBarTrackColor: string;
905
+ sortIconColor: string;
906
+ actionIconColor: string;
907
+ disabledActionIconColor: string;
908
+ hoverActionIconColor: string;
909
+ focusActionIconColor: string;
910
+ activeActionIconColor: string;
911
+ actionBackgroundColor: string;
912
+ disabledActionBackgroundColor: string;
913
+ hoverActionBackgroundColor: string;
914
+ focusActionBorderColor: string;
915
+ activeActionBackgroundColor: string;
916
+ };
917
+ tabs: {
918
+ fontFamily: string;
919
+ fontSize: string;
920
+ fontStyle: string;
921
+ fontWeight: string;
922
+ fontTextTransform: string;
923
+ selectedBackgroundColor: string;
924
+ selectedFontColor: string;
925
+ selectedIconColor: string;
926
+ selectedUnderlineColor: string;
927
+ selectedUnderlineThickness: string;
928
+ unselectedBackgroundColor: string;
929
+ unselectedFontColor: string;
930
+ unselectedIconColor: string;
931
+ disabledFontColor: string;
932
+ disabledIconColor: string;
933
+ disabledFontStyle: string;
934
+ hoverBackgroundColor: string;
935
+ pressedBackgroundColor: string;
936
+ pressedFontWeight: string;
937
+ dividerColor: string;
938
+ dividerThickness: string;
939
+ focusOutline: string;
940
+ scrollButtonsWidth: string;
941
+ };
942
+ tag: {
943
+ fontFamily: string;
944
+ fontColor: string;
945
+ fontSize: string;
946
+ fontStyle: string;
947
+ fontWeight: string;
948
+ labelPaddingTop: string;
949
+ labelPaddingBottom: string;
950
+ labelPaddingLeft: string;
951
+ labelPaddingRight: string;
952
+ height: string;
953
+ iconColor: string;
954
+ iconSectionWidth: string;
955
+ iconHeight: string;
956
+ iconWidth: string;
957
+ focusColor: string;
958
+ };
959
+ textarea: {
960
+ fontFamily: string;
961
+ enabledBorderColor: string;
962
+ hoverBorderColor: string;
963
+ focusBorderColor: string;
964
+ disabledBorderColor: string;
965
+ disabledContainerFillColor: string;
966
+ readOnlyBorderColor: string;
967
+ hoverReadOnlyBorderColor: string;
968
+ errorBorderColor: string;
969
+ hoverErrorBorderColor: string;
970
+ inputMarginTop: string;
971
+ inputMarginBottom: string;
972
+ errorMessageColor: string;
973
+ labelFontColor: string;
974
+ labelFontSize: string;
975
+ labelFontStyle: string;
976
+ labelFontWeight: string;
977
+ labelLineHeight: string;
978
+ disabledLabelFontColor: string;
979
+ optionalLabelFontWeight: string;
980
+ helperTextFontColor: string;
981
+ helperTextFontSize: string;
982
+ helperTextFontStyle: string;
983
+ helperTextFontWeight: string;
984
+ helperTextLineHeight: string;
985
+ disabledHelperTextFontColor: string;
986
+ placeholderFontColor: string;
987
+ disabledPlaceholderFontColor: string;
988
+ valueFontColor: string;
989
+ valueFontSize: string;
990
+ valueFontStyle: string;
991
+ valueFontWeight: string;
992
+ disabledValueFontColor: string;
993
+ };
994
+ textInput: {
995
+ fontFamily: string;
996
+ enabledBorderColor: string;
997
+ hoverBorderColor: string;
998
+ focusBorderColor: string;
999
+ disabledBorderColor: string;
1000
+ disabledContainerFillColor: string;
1001
+ readOnlyBorderColor: string;
1002
+ hoverReadOnlyBorderColor: string;
1003
+ errorBorderColor: string;
1004
+ hoverErrorBorderColor: string;
1005
+ inputMarginTop: string;
1006
+ inputMarginBottom: string;
1007
+ errorMessageColor: string;
1008
+ errorIconColor: string;
1009
+ labelFontColor: string;
1010
+ labelFontSize: string;
1011
+ labelFontStyle: string;
1012
+ labelFontWeight: string;
1013
+ labelLineHeight: string;
1014
+ disabledLabelFontColor: string;
1015
+ optionalLabelFontWeight: string;
1016
+ helperTextFontColor: string;
1017
+ helperTextFontSize: string;
1018
+ helperTextFontStyle: string;
1019
+ helperTextFontWeight: string;
1020
+ helperTextLineHeight: string;
1021
+ disabledHelperTextFontColor: string;
1022
+ prefixColor: string;
1023
+ suffixColor: string;
1024
+ disabledPrefixColor: string;
1025
+ disabledSuffixColor: string;
1026
+ placeholderFontColor: string;
1027
+ disabledPlaceholderFontColor: string;
1028
+ valueFontColor: string;
1029
+ valueFontSize: string;
1030
+ valueFontStyle: string;
1031
+ valueFontWeight: string;
1032
+ disabledValueFontColor: string;
1033
+ actionIconColor: string;
1034
+ disabledActionIconColor: string;
1035
+ hoverActionIconColor: string;
1036
+ focusActionIconColor: string;
1037
+ activeActionIconColor: string;
1038
+ actionBackgroundColor: string;
1039
+ disabledActionBackgroundColor: string;
1040
+ hoverActionBackgroundColor: string;
1041
+ focusActionBorderColor: string;
1042
+ activeActionBackgroundColor: string;
1043
+ listDialogBackgroundColor: string;
1044
+ listDialogBorderColor: string;
1045
+ listOptionDividerColor: string;
1046
+ listOptionFontColor: string;
1047
+ listOptionFontSize: string;
1048
+ listOptionFontStyle: string;
1049
+ listOptionFontWeight: string;
1050
+ systemMessageFontColor: string;
1051
+ errorListDialogFontColor: string;
1052
+ errorListDialogBackgroundColor: string;
1053
+ errorListDialogBorderColor: string;
1054
+ hoverListOptionBackgroundColor: string;
1055
+ activeListOptionBackgroundColor: string;
1056
+ focusListOptionBorderColor: string;
1057
+ };
1058
+ toggleGroup: {
1059
+ containerBackgroundColor: string;
1060
+ containerBorderColor: string;
1061
+ labelFontColor: string;
1062
+ disabledLabelFontColor: string;
1063
+ helperTextFontColor: string;
1064
+ disabledHelperTextFontcolor: string;
1065
+ unselectedBackgroundColor: string;
1066
+ unselectedHoverBackgroundColor: string;
1067
+ unselectedActiveBackgroundColor: string;
1068
+ unselectedDisabledBackgroundColor: string;
1069
+ unselectedFontColor: string;
1070
+ unselectedDisabledFontColor: string;
1071
+ selectedBackgroundColor: string;
1072
+ selectedHoverBackgroundColor: string;
1073
+ selectedActiveBackgroundColor: string;
1074
+ selectedDisabledBackgroundColor: string;
1075
+ selectedFontColor: string;
1076
+ selectedDisabledFontColor: string;
1077
+ focusColor: string;
1078
+ labelFontFamily: string;
1079
+ labelFontSize: string;
1080
+ labelFontStyle: string;
1081
+ labelFontWeight: string;
1082
+ labelLineHeight: string;
1083
+ helperTextFontFamily: string;
1084
+ helperTextFontSize: string;
1085
+ helperTextFontStyle: string;
1086
+ helperTextFontWeight: string;
1087
+ helperTextLineHeight: string;
1088
+ optionLabelFontFamily: string;
1089
+ optionLabelFontSize: string;
1090
+ optionLabelFontStyle: string;
1091
+ optionLabelFontWeight: string;
1092
+ iconPaddingRight: string;
1093
+ iconPaddingLeft: string;
1094
+ labelPaddingLeft: string;
1095
+ labelPaddingRight: string;
1096
+ iconMarginRight: string;
1097
+ containerMarginTop: string;
1098
+ optionBorderThickness: string;
1099
+ optionBorderStyle: string;
1100
+ optionBorderRadius: string;
1101
+ containerBorderThickness: string;
1102
+ containerBorderStyle: string;
1103
+ containerBorderRadius: string;
1104
+ optionFocusBorderThickness: string;
1105
+ };
1106
+ wizard: {
1107
+ visitedStepFontColor: string;
1108
+ visitedStepBackgroundColor: string;
1109
+ visitedStepBorderColor: string;
1110
+ unvisitedStepFontColor: string;
1111
+ unvisitedLabelFontColor: string;
1112
+ unvisitedHelperTextFontColor: string;
1113
+ unvisitedStepBackgroundColor: string;
1114
+ unvisitedStepBorderColor: string;
1115
+ selectedStepFontColor: string;
1116
+ selectedStepBackgroundColor: string;
1117
+ selectedStepBorderColor: string;
1118
+ selectedLabelFontColor: string;
1119
+ selectedHelperTextFontColor: string;
1120
+ selectedStepWidth: string;
1121
+ selectedStepHeight: string;
1122
+ selectedStepBorderThickness: string;
1123
+ selectedStepBorderStyle: string;
1124
+ selectedStepBorderRadius: string;
1125
+ stepFontSize: string;
1126
+ stepFontFamily: string;
1127
+ stepFontStyle: string;
1128
+ stepFontWeight: string;
1129
+ stepFontTracking: string;
1130
+ stepIconSize: string;
1131
+ stepWidth: string;
1132
+ stepHeight: string;
1133
+ stepBorderThickness: string;
1134
+ stepBorderStyle: string;
1135
+ stepBorderRadius: string;
1136
+ visitedLabelFontColor: string;
1137
+ labelFontSize: string;
1138
+ labelFontFamily: string;
1139
+ labelFontStyle: string;
1140
+ labelFontWeight: string;
1141
+ labelFontTracking: string;
1142
+ labelFontTextTransform: string;
1143
+ labelTextAlign: string;
1144
+ helperTextFontSize: string;
1145
+ helperTextFontFamily: string;
1146
+ helperTextFontStyle: string;
1147
+ helperTextFontWeight: string;
1148
+ helperTextFontTracking: string;
1149
+ helperTextFontTextTransform: string;
1150
+ visitedHelperTextFontColor: string;
1151
+ helperTextTextAlign: string;
1152
+ disabledStepBackgroundColor: string;
1153
+ disabledStepFontColor: string;
1154
+ disabledLabelFontColor: string;
1155
+ disabledHelperTextFontColor: string;
1156
+ disabledStepBorderColor: string;
1157
+ disabledStepWidth: string;
1158
+ disabledStepHeight: string;
1159
+ disabledStepBorderThickness: string;
1160
+ disabledStepBorderStyle: string;
1161
+ disabledStepBorderRadius: string;
1162
+ separatorBorderThickness: string;
1163
+ separatorBorderStyle: string;
1164
+ separatorColor: string;
1165
+ focusColor: string;
1166
+ };
1167
+ };
1168
+ export type AdvancedTheme = typeof componentTokens;
1169
+ export type OpinionatedTheme = {
1170
+ accordion: {
1171
+ accentColor: string;
1172
+ titleFontColor: string;
1173
+ assistiveTextFontColor: string;
1174
+ };
1175
+ alert: {
1176
+ baseColor: string;
1177
+ accentColor: string;
1178
+ overlayColor: string;
1179
+ };
1180
+ box: {
1181
+ baseColor: string;
1182
+ };
1183
+ button: {
1184
+ baseColor: string;
1185
+ primaryFontColor: string;
1186
+ secondaryHoverFontColor: string;
1187
+ };
1188
+ checkbox: {
1189
+ baseColor: string;
1190
+ checkColor: string;
1191
+ fontColor: string;
1192
+ };
1193
+ chip: {
1194
+ baseColor: string;
1195
+ fontColor: string;
1196
+ iconColor: string;
1197
+ };
1198
+ contextualMenu: {
1199
+ accentColor: string;
1200
+ baseColor: string;
1201
+ fontColor: string;
1202
+ iconColor: string;
1203
+ };
1204
+ dateInput: {
1205
+ baseColor: string;
1206
+ selectedFontColor: string;
1207
+ };
1208
+ dialog: {
1209
+ baseColor: string;
1210
+ closeIconColor: string;
1211
+ overlayColor: string;
1212
+ };
1213
+ dropdown: {
1214
+ baseColor: string;
1215
+ fontColor: string;
1216
+ optionFontColor: string;
1217
+ };
1218
+ fileInput: {
1219
+ fontColor: string;
1220
+ };
1221
+ footer: {
1222
+ baseColor: string;
1223
+ fontColor: string;
1224
+ accentColor: string;
1225
+ logo: string;
1226
+ };
1227
+ header: {
1228
+ baseColor: string;
1229
+ accentColor: string;
1230
+ fontColor: string;
1231
+ menuBaseColor: string;
1232
+ hamburguerColor: string;
1233
+ logo: string;
1234
+ logoResponsive: string;
1235
+ contentColor: string;
1236
+ overlayColor: string;
1237
+ };
1238
+ link: {
1239
+ baseColor: string;
1240
+ };
1241
+ navTabs: {
1242
+ baseColor: string;
1243
+ accentColor: string;
1244
+ };
1245
+ paginator: {
1246
+ baseColor: string;
1247
+ fontColor: string;
1248
+ };
1249
+ progressBar: {
1250
+ accentColor: string;
1251
+ baseColor: string;
1252
+ fontColor: string;
1253
+ overlayColor: string;
1254
+ overlayFontColor: string;
1255
+ };
1256
+ quickNav: {
1257
+ fontColor: string;
1258
+ accentColor: string;
1259
+ };
1260
+ radioGroup: {
1261
+ baseColor: string;
1262
+ fontColor: string;
1263
+ };
1264
+ select: {
1265
+ selectedOptionBackgroundColor: string;
1266
+ fontColor: string;
1267
+ optionFontColor: string;
1268
+ hoverBorderColor: string;
1269
+ };
1270
+ sidenav: {
1271
+ baseColor: string;
1272
+ };
1273
+ slider: {
1274
+ baseColor: string;
1275
+ fontColor: string;
1276
+ totalLineColor: string;
1277
+ };
1278
+ spinner: {
1279
+ accentColor: string;
1280
+ baseColor: string;
1281
+ fontColor: string;
1282
+ overlayColor: string;
1283
+ overlayFontColor: string;
1284
+ };
1285
+ switch: {
1286
+ checkedBaseColor: string;
1287
+ fontColor: string;
1288
+ };
1289
+ table: {
1290
+ baseColor: string;
1291
+ headerFontColor: string;
1292
+ cellFontColor: string;
1293
+ };
1294
+ tabs: {
1295
+ baseColor: string;
1296
+ };
1297
+ tag: {
1298
+ fontColor: string;
1299
+ iconColor: string;
1300
+ };
1301
+ textarea: {
1302
+ fontColor: string;
1303
+ hoverBorderColor: string;
1304
+ };
1305
+ textInput: {
1306
+ fontColor: string;
1307
+ hoverBorderColor: string;
1308
+ };
1309
+ toggleGroup: {
1310
+ selectedBaseColor: string;
1311
+ selectedFontColor: string;
1312
+ unselectedBaseColor: string;
1313
+ unselectedFontColor: string;
1314
+ };
1315
+ wizard: {
1316
+ baseColor: string;
1317
+ fontColor: string;
1318
+ selectedStepFontColor: string;
1319
+ };
1320
+ };
1321
+ export declare const spaces: {
1322
+ xxsmall: string;
1323
+ xsmall: string;
1324
+ small: string;
1325
+ medium: string;
1326
+ large: string;
1327
+ xlarge: string;
1328
+ xxlarge: string;
1329
+ };
1330
+ export declare const responsiveSizes: {
1331
+ xsmall: string;
1332
+ small: string;
1333
+ medium: string;
1334
+ large: string;
1335
+ xlarge: string;
1336
+ };
1337
+ export declare const defaultTranslatedComponentLabels: {
1338
+ formFields: {
1339
+ optionalLabel: string;
1340
+ requiredSelectionErrorMessage: string;
1341
+ requiredValueErrorMessage: string;
1342
+ formatRequestedErrorMessage: string;
1343
+ lengthErrorMessage: (minLength?: number, maxLength?: number) => string;
1344
+ logoAlternativeText: string;
1345
+ };
1346
+ applicationLayout: {
1347
+ visibilityToggleTitle: string;
1348
+ };
1349
+ alert: {
1350
+ infoTitleText: string;
1351
+ successTitleText: string;
1352
+ warningTitleText: string;
1353
+ errorTitleText: string;
1354
+ };
1355
+ barChart: {
1356
+ ariaLabel: string;
1357
+ filterLabel: string;
1358
+ filterPlaceholder: string;
1359
+ loadingDataMessage: string;
1360
+ noDataMessageBody: string;
1361
+ noDataMessageTitle: string;
1362
+ noMatchesMessageBody: string;
1363
+ noMatchesMessageTitle: string;
1364
+ retryButtonLabel: string;
1365
+ };
1366
+ dateInput: {
1367
+ invalidDateErrorMessage: string;
1368
+ };
1369
+ dialog: {
1370
+ closeIconAriaLabel: string;
1371
+ };
1372
+ fileInput: {
1373
+ fileSizeGreaterThanErrorMessage: string;
1374
+ fileSizeLessThanErrorMessage: string;
1375
+ multipleButtonLabelDefault: string;
1376
+ singleButtonLabelDefault: string;
1377
+ dropAreaButtonLabelDefault: string;
1378
+ multipleDropAreaLabelDefault: string;
1379
+ singleDropAreaLabelDefault: string;
1380
+ deleteFileActionTitle: string;
1381
+ };
1382
+ footer: {
1383
+ copyrightText: (year: number) => string;
1384
+ };
1385
+ header: {
1386
+ closeIcon: string;
1387
+ hamburguerTitle: string;
1388
+ };
1389
+ numberInput: {
1390
+ valueGreaterThanOrEqualToErrorMessage: (value: number) => string;
1391
+ valueLessThanOrEqualToErrorMessage: (value: number) => string;
1392
+ decrementValueTitle: string;
1393
+ incrementValueTitle: string;
1394
+ };
1395
+ paginator: {
1396
+ itemsPerPageText: string;
1397
+ minToMaxOfText: (minNumberOfItems: number, maxNumberOfItems: number, totalItems: number) => string;
1398
+ goToPageText: string;
1399
+ pageOfText: (pageNumber: number, totalPagesNumber: number) => string;
1400
+ };
1401
+ passwordInput: {
1402
+ inputShowPasswordTitle: string;
1403
+ inputHidePasswordTitle: string;
1404
+ };
1405
+ quickNav: {
1406
+ contentTitle: string;
1407
+ };
1408
+ radioGroup: {
1409
+ optionalItemLabelDefault: string;
1410
+ };
1411
+ select: {
1412
+ noMatchesErrorMessage: string;
1413
+ actionClearSelectionTitle: string;
1414
+ actionClearSearchTitle: string;
1415
+ };
1416
+ tabs: {
1417
+ scrollLeft: string;
1418
+ scrollRight: string;
1419
+ };
1420
+ textInput: {
1421
+ clearFieldActionTitle: string;
1422
+ searchingMessage: string;
1423
+ fetchingDataErrorMessage: string;
1424
+ };
1425
+ calendar: {
1426
+ daysShort: string[];
1427
+ months: string[];
1428
+ previousMonthTitle: string;
1429
+ nextMonthTitle: string;
1430
+ };
1431
+ };
1432
+ export type TranslatedLabels = typeof defaultTranslatedComponentLabels;