@dxc-technology/halstack-react 0.0.0-9b341c0 → 0.0.0-9bd9511

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