@dxc-technology/halstack-react 0.0.0-e9d5d69 → 0.0.0-ea9b3a2

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