td-stylekit 24.8.0 → 25.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (430) hide show
  1. package/.babelrc.js +8 -23
  2. package/CHANGELOG.md +35 -0
  3. package/dist/es/ActionBar/ActionBar.js +42 -18
  4. package/dist/es/ActionBar/components/ActionMenu.js +41 -17
  5. package/dist/es/ActionBar/components/Container.d.ts +4 -126
  6. package/dist/es/ActionBar/components/Container.js +20 -5
  7. package/dist/es/ActionBar/components/IconButton.d.ts +7 -133
  8. package/dist/es/ActionBar/components/IconButton.js +22 -6
  9. package/dist/es/ActionBar/components/Prefix.js +24 -8
  10. package/dist/es/ActionBar/components/index.js +58 -5
  11. package/dist/es/ActionBar/index.js +17 -2
  12. package/dist/es/ActionBar/types.js +5 -0
  13. package/dist/es/Badge/Badge.d.ts +4 -126
  14. package/dist/es/Badge/Badge.js +42 -26
  15. package/dist/es/Badge/constants.js +9 -2
  16. package/dist/es/Badge/index.js +25 -3
  17. package/dist/es/BarChart/BarChart.d.ts +6 -7
  18. package/dist/es/BarChart/BarChart.js +67 -39
  19. package/dist/es/BarChart/index.js +17 -2
  20. package/dist/es/Box/Box.d.ts +4 -126
  21. package/dist/es/Box/Box.js +37 -12
  22. package/dist/es/Box/index.js +17 -2
  23. package/dist/es/Button/Button.js +130 -79
  24. package/dist/es/Button/elements.d.ts +4 -126
  25. package/dist/es/Button/elements.js +17 -3
  26. package/dist/es/Button/index.js +35 -3
  27. package/dist/es/Canvas/Canvas.js +31 -12
  28. package/dist/es/Canvas/elements.d.ts +55 -2537
  29. package/dist/es/Canvas/elements.js +84 -33
  30. package/dist/es/Canvas/index.js +17 -2
  31. package/dist/es/Card/Card.d.ts +4 -126
  32. package/dist/es/Card/Card.js +20 -7
  33. package/dist/es/Card/index.js +17 -2
  34. package/dist/es/ChartPrimitives/ChartLegend.d.ts +22 -635
  35. package/dist/es/ChartPrimitives/ChartLegend.js +62 -25
  36. package/dist/es/ChartPrimitives/Container.d.ts +4 -126
  37. package/dist/es/ChartPrimitives/Container.js +17 -5
  38. package/dist/es/ChartPrimitives/Defs.js +73 -41
  39. package/dist/es/ChartPrimitives/Noop.js +8 -1
  40. package/dist/es/ChartPrimitives/Tooltip.d.ts +2 -3
  41. package/dist/es/ChartPrimitives/Tooltip.js +96 -32
  42. package/dist/es/ChartPrimitives/index.d.ts +6 -126
  43. package/dist/es/ChartPrimitives/index.js +67 -14
  44. package/dist/es/ChartPrimitives/utils.d.ts +26 -277
  45. package/dist/es/ChartPrimitives/utils.js +112 -69
  46. package/dist/es/Checkbox/Checkbox.js +104 -48
  47. package/dist/es/Checkbox/index.js +17 -2
  48. package/dist/es/CheckboxField/CheckboxField.js +57 -26
  49. package/dist/es/CheckboxField/index.js +17 -2
  50. package/dist/es/CollapsibleToggle/CollapsibleToggle.js +53 -28
  51. package/dist/es/CollapsibleToggle/constants.js +8 -1
  52. package/dist/es/CollapsibleToggle/index.js +17 -2
  53. package/dist/es/Column/Column.js +30 -10
  54. package/dist/es/Column/index.js +17 -2
  55. package/dist/es/ComparisonChart/ComparisonChart.d.ts +41 -1
  56. package/dist/es/ComparisonChart/ComparisonChart.js +74 -44
  57. package/dist/es/ComparisonChart/constants.js +9 -2
  58. package/dist/es/ComparisonChart/index.js +17 -2
  59. package/dist/es/ComponentGroup/ComponentGroup.js +28 -7
  60. package/dist/es/ComponentGroup/index.js +17 -2
  61. package/dist/es/DataGrid/DataGrid.js +127 -67
  62. package/dist/es/DataGrid/components/BasicColumn.js +43 -21
  63. package/dist/es/DataGrid/components/CategoryFilter.js +42 -16
  64. package/dist/es/DataGrid/components/CollapsibleCell.d.ts +5 -128
  65. package/dist/es/DataGrid/components/CollapsibleCell.js +81 -33
  66. package/dist/es/DataGrid/components/ColumnHeader.js +73 -39
  67. package/dist/es/DataGrid/components/ColumnHeaderActions.js +71 -37
  68. package/dist/es/DataGrid/components/FocusableRow.js +53 -20
  69. package/dist/es/DataGrid/components/InputCell.js +63 -31
  70. package/dist/es/DataGrid/components/ScrollableTable.d.ts +7 -7
  71. package/dist/es/DataGrid/components/ScrollableTable.js +95 -56
  72. package/dist/es/DataGrid/components/index.js +73 -9
  73. package/dist/es/DataGrid/constants.js +15 -4
  74. package/dist/es/DataGrid/elements.d.ts +352 -2543
  75. package/dist/es/DataGrid/elements.js +214 -92
  76. package/dist/es/DataGrid/index.js +17 -2
  77. package/dist/es/DataGrid/renderers.js +138 -96
  78. package/dist/es/DataGrid/sampleData.js +24 -9
  79. package/dist/es/DataGrid/utils.js +43 -24
  80. package/dist/es/DateControl/DateControl.js +113 -60
  81. package/dist/es/DateControl/elements.d.ts +180 -887
  82. package/dist/es/DateControl/elements.js +58 -22
  83. package/dist/es/DateControl/index.js +17 -2
  84. package/dist/es/DateField/DateField.js +105 -53
  85. package/dist/es/DateField/elements.d.ts +9 -251
  86. package/dist/es/DateField/elements.js +34 -12
  87. package/dist/es/DateField/index.js +17 -2
  88. package/dist/es/DatePicker/DatePicker.js +97 -56
  89. package/dist/es/DatePicker/index.js +28 -4
  90. package/dist/es/DatePicker/utils.js +47 -19
  91. package/dist/es/DetailPanel/DetailPanel.js +31 -17
  92. package/dist/es/DetailPanel/elements.d.ts +20 -505
  93. package/dist/es/DetailPanel/elements.js +92 -50
  94. package/dist/es/DetailPanel/index.js +17 -2
  95. package/dist/es/DistributionChart/DistributionChart.js +36 -14
  96. package/dist/es/DistributionChart/index.js +21 -3
  97. package/dist/es/DistributionChart/utils.js +10 -2
  98. package/dist/es/Drawer/Drawer.js +37 -17
  99. package/dist/es/Drawer/elements.d.ts +30 -1015
  100. package/dist/es/Drawer/elements.js +120 -67
  101. package/dist/es/Drawer/index.js +17 -2
  102. package/dist/es/DropdownButton/DropdownButton.d.ts +1 -125
  103. package/dist/es/DropdownButton/DropdownButton.js +90 -44
  104. package/dist/es/DropdownButton/DropdownButtonElements.d.ts +22 -776
  105. package/dist/es/DropdownButton/DropdownButtonElements.js +129 -59
  106. package/dist/es/DropdownButton/DropdownButtonUtils.js +19 -4
  107. package/dist/es/DropdownButton/index.js +17 -2
  108. package/dist/es/FileInput/FileInput.js +66 -26
  109. package/dist/es/FileInput/index.js +17 -2
  110. package/dist/es/FormControl/FormControl.d.ts +4 -17
  111. package/dist/es/FormControl/FormControl.js +105 -63
  112. package/dist/es/FormControl/components/CheckboxGroup.js +43 -17
  113. package/dist/es/FormControl/components/RadioGroup.js +31 -16
  114. package/dist/es/FormControl/components/Textarea.js +24 -7
  115. package/dist/es/FormControl/components/index.js +31 -4
  116. package/dist/es/FormControl/elements.d.ts +57 -1770
  117. package/dist/es/FormControl/elements.js +107 -46
  118. package/dist/es/FormControl/index.js +17 -2
  119. package/dist/es/FormField/FormField.d.ts +1 -11
  120. package/dist/es/FormField/FormField.js +112 -67
  121. package/dist/es/FormField/elements.d.ts +13 -377
  122. package/dist/es/FormField/elements.js +54 -20
  123. package/dist/es/FormField/index.js +31 -3
  124. package/dist/es/FormField/utils.js +29 -5
  125. package/dist/es/FormFieldAddon/FormFieldAddon.js +65 -28
  126. package/dist/es/FormFieldAddon/FormFieldAddonElements.d.ts +15 -1266
  127. package/dist/es/FormFieldAddon/FormFieldAddonElements.js +47 -16
  128. package/dist/es/FormFieldAddon/index.js +17 -2
  129. package/dist/es/FormLabel/FormLabel.js +18 -5
  130. package/dist/es/FormLabel/elements.d.ts +5 -127
  131. package/dist/es/FormLabel/elements.js +19 -4
  132. package/dist/es/FormLabel/index.js +17 -2
  133. package/dist/es/FormModal/FormModal.js +47 -22
  134. package/dist/es/FormModal/index.js +17 -2
  135. package/dist/es/Grid/Grid.d.ts +4 -126
  136. package/dist/es/Grid/Grid.js +17 -4
  137. package/dist/es/Grid/GridItem.d.ts +4 -126
  138. package/dist/es/Grid/GridItem.js +17 -5
  139. package/dist/es/Grid/index.js +25 -4
  140. package/dist/es/GrowthRateChart/GrowthRateChart.d.ts +2 -2
  141. package/dist/es/GrowthRateChart/GrowthRateChart.js +40 -18
  142. package/dist/es/GrowthRateChart/index.js +17 -2
  143. package/dist/es/Heading/Heading.js +37 -11
  144. package/dist/es/Heading/index.js +17 -2
  145. package/dist/es/Highlighter/Highlighter.js +25 -11
  146. package/dist/es/Highlighter/index.js +17 -2
  147. package/dist/es/Histogram/Data.js +9 -2
  148. package/dist/es/Histogram/Histogram.js +85 -46
  149. package/dist/es/Histogram/index.js +17 -2
  150. package/dist/es/Icon/Icon.js +68 -30
  151. package/dist/es/Icon/index.js +33 -2
  152. package/dist/es/Icon/staticTypes.d.ts +4 -2
  153. package/dist/es/Icon/staticTypes.js +5 -0
  154. package/dist/es/Icon/types.js +7 -0
  155. package/dist/es/IconBar/IconBar.d.ts +33 -1272
  156. package/dist/es/IconBar/IconBar.js +74 -45
  157. package/dist/es/IconBar/IconItem.d.ts +16 -507
  158. package/dist/es/IconBar/IconItem.js +64 -31
  159. package/dist/es/IconBar/LogoItem.js +27 -14
  160. package/dist/es/IconBar/index.js +17 -2
  161. package/dist/es/IconBar/variants.js +24 -7
  162. package/dist/es/InfiniteList/InfiniteList.js +65 -24
  163. package/dist/es/InfiniteList/index.js +17 -2
  164. package/dist/es/Input/Input.d.ts +15 -391
  165. package/dist/es/Input/Input.js +139 -72
  166. package/dist/es/Input/index.js +17 -2
  167. package/dist/es/LeftTruncatedText/LeftTruncatedText.js +43 -22
  168. package/dist/es/LeftTruncatedText/index.js +17 -2
  169. package/dist/es/Link/Link.d.ts +8 -126
  170. package/dist/es/Link/Link.js +31 -7
  171. package/dist/es/Link/index.js +17 -2
  172. package/dist/es/Loader/Loader.js +21 -7
  173. package/dist/es/Loader/LoaderDiamond.js +96 -73
  174. package/dist/es/Loader/LoaderDots.js +41 -21
  175. package/dist/es/Loader/index.js +17 -2
  176. package/dist/es/Logo/Logo.d.ts +9 -2
  177. package/dist/es/Logo/Logo.js +79 -248
  178. package/dist/es/Logo/LogoDark.d.ts +11 -0
  179. package/dist/es/Logo/LogoDark.js +126 -0
  180. package/dist/es/Logo/LogoLight.d.ts +11 -0
  181. package/dist/es/Logo/LogoLight.js +123 -0
  182. package/dist/es/Logo/LogoV4.d.ts +11 -0
  183. package/dist/es/Logo/LogoV4.js +168 -0
  184. package/dist/es/Logo/index.js +17 -2
  185. package/dist/es/Menu/Menu.js +104 -74
  186. package/dist/es/Menu/MenuElements.d.ts +1 -126
  187. package/dist/es/Menu/MenuElements.js +87 -32
  188. package/dist/es/Menu/index.js +17 -2
  189. package/dist/es/MiddleTruncatedText/MiddleTruncatedText.js +34 -25
  190. package/dist/es/MiddleTruncatedText/index.js +17 -2
  191. package/dist/es/Modal/Modal.d.ts +9 -254
  192. package/dist/es/Modal/Modal.js +78 -35
  193. package/dist/es/Modal/components/Body.js +27 -8
  194. package/dist/es/Modal/components/Footer.d.ts +3 -125
  195. package/dist/es/Modal/components/Footer.js +34 -16
  196. package/dist/es/Modal/components/FooterConfirmation.js +30 -10
  197. package/dist/es/Modal/components/Header.js +37 -19
  198. package/dist/es/Modal/components/MenuBody.d.ts +16 -638
  199. package/dist/es/Modal/components/MenuBody.js +146 -75
  200. package/dist/es/Modal/components/ModalMessage.d.ts +37 -1026
  201. package/dist/es/Modal/components/ModalMessage.js +125 -45
  202. package/dist/es/Modal/components/ModalOverlay.js +26 -11
  203. package/dist/es/Modal/components/elements.d.ts +50 -1765
  204. package/dist/es/Modal/components/elements.js +142 -60
  205. package/dist/es/Modal/components/index.js +79 -9
  206. package/dist/es/Modal/constants.js +17 -5
  207. package/dist/es/Modal/context.js +12 -3
  208. package/dist/es/Modal/index.js +13 -2
  209. package/dist/es/MultiSelect/MultiSelect.d.ts +5 -2
  210. package/dist/es/MultiSelect/MultiSelect.js +86 -38
  211. package/dist/es/MultiSelect/elements.d.ts +25 -1762
  212. package/dist/es/MultiSelect/elements.js +136 -58
  213. package/dist/es/MultiSelect/index.js +35 -3
  214. package/dist/es/NavigationBar/LogoItem.js +21 -10
  215. package/dist/es/NavigationBar/NavigationBar.d.ts +16 -379
  216. package/dist/es/NavigationBar/NavigationBar.js +49 -24
  217. package/dist/es/NavigationBar/NavigationItem.d.ts +8 -254
  218. package/dist/es/NavigationBar/NavigationItem.js +81 -32
  219. package/dist/es/NavigationBar/index.js +17 -2
  220. package/dist/es/NavigationPopover/NavigationPopover.d.ts +16 -632
  221. package/dist/es/NavigationPopover/NavigationPopover.js +50 -28
  222. package/dist/es/NavigationPopover/index.js +17 -2
  223. package/dist/es/Overlay/Overlay.js +30 -13
  224. package/dist/es/Overlay/OverlayBody.d.ts +8 -382
  225. package/dist/es/Overlay/OverlayBody.js +28 -9
  226. package/dist/es/Overlay/OverlayHeader.d.ts +37 -508
  227. package/dist/es/Overlay/OverlayHeader.js +94 -52
  228. package/dist/es/Overlay/index.js +33 -4
  229. package/dist/es/Paragraph/Paragraph.d.ts +4 -126
  230. package/dist/es/Paragraph/Paragraph.js +22 -8
  231. package/dist/es/Paragraph/index.js +17 -2
  232. package/dist/es/PieChart/PieChart.js +77 -43
  233. package/dist/es/PieChart/index.js +15 -2
  234. package/dist/es/Popover/Popover.d.ts +9 -252
  235. package/dist/es/Popover/Popover.js +57 -22
  236. package/dist/es/Popover/index.js +17 -2
  237. package/dist/es/PositiveNegativeBarChart/PositiveNegativeBarChart.js +65 -41
  238. package/dist/es/PositiveNegativeBarChart/index.js +23 -3
  239. package/dist/es/PositiveNegativeBarChart/utils.js +10 -2
  240. package/dist/es/Radio/Radio.js +85 -40
  241. package/dist/es/Radio/index.js +17 -2
  242. package/dist/es/RatioPieChart/RatioPieChart.js +20 -6
  243. package/dist/es/RatioPieChart/index.js +15 -2
  244. package/dist/es/RightTruncatedText/RightTruncatedText.js +30 -12
  245. package/dist/es/RightTruncatedText/index.js +17 -2
  246. package/dist/es/Row/Row.js +23 -8
  247. package/dist/es/Row/index.js +17 -2
  248. package/dist/es/SecondaryNavigation/SecondaryNavigation.js +48 -22
  249. package/dist/es/SecondaryNavigation/elements/Item.d.ts +4 -126
  250. package/dist/es/SecondaryNavigation/elements/Item.js +17 -5
  251. package/dist/es/SecondaryNavigation/elements/Section.js +53 -22
  252. package/dist/es/SecondaryNavigation/elements/Title.d.ts +4 -126
  253. package/dist/es/SecondaryNavigation/elements/Title.js +17 -5
  254. package/dist/es/SecondaryNavigation/elements/Wrapper.d.ts +5 -127
  255. package/dist/es/SecondaryNavigation/elements/Wrapper.js +17 -5
  256. package/dist/es/SecondaryNavigation/index.d.ts +9 -251
  257. package/dist/es/SecondaryNavigation/index.js +24 -10
  258. package/dist/es/Section/Section.js +67 -27
  259. package/dist/es/Section/elements.d.ts +193 -1046
  260. package/dist/es/Section/elements.js +73 -30
  261. package/dist/es/Section/index.js +17 -2
  262. package/dist/es/Select/Select.d.ts +1 -1
  263. package/dist/es/Select/Select.js +110 -57
  264. package/dist/es/Select/components/CreatableSelect.js +41 -11
  265. package/dist/es/Select/components/MenuList.js +65 -26
  266. package/dist/es/Select/components/MenuPortal.js +27 -18
  267. package/dist/es/Select/components/Option.d.ts +2 -2
  268. package/dist/es/Select/components/Option.js +59 -18
  269. package/dist/es/Select/components/OptionTypes.js +5 -0
  270. package/dist/es/Select/components/index.js +41 -5
  271. package/dist/es/Select/elements.d.ts +10 -503
  272. package/dist/es/Select/elements.js +45 -16
  273. package/dist/es/Select/index.js +42 -4
  274. package/dist/es/Select/types.js +5 -0
  275. package/dist/es/Select/utils.js +82 -52
  276. package/dist/es/Select/variantProps.js +78 -37
  277. package/dist/es/Shuttle/Shuttle.js +70 -33
  278. package/dist/es/Shuttle/elements.d.ts +21 -751
  279. package/dist/es/Shuttle/elements.js +78 -36
  280. package/dist/es/Shuttle/index.js +17 -2
  281. package/dist/es/SimpleModal/SimpleModal.js +30 -11
  282. package/dist/es/SimpleModal/index.js +17 -2
  283. package/dist/es/Slider/Slider.js +60 -29
  284. package/dist/es/Slider/elements.d.ts +39 -388
  285. package/dist/es/Slider/elements.js +34 -10
  286. package/dist/es/Slider/index.js +17 -2
  287. package/dist/es/StatCard/StatCard.js +46 -26
  288. package/dist/es/StatCard/elements.d.ts +47 -1513
  289. package/dist/es/StatCard/elements.js +74 -24
  290. package/dist/es/StatCard/index.js +17 -2
  291. package/dist/es/Tabs/Tabs.js +36 -15
  292. package/dist/es/Tabs/elements.d.ts +34 -508
  293. package/dist/es/Tabs/elements.js +52 -17
  294. package/dist/es/Tabs/index.js +17 -2
  295. package/dist/es/Tagger/Tagger.d.ts +8 -126
  296. package/dist/es/Tagger/Tagger.js +77 -34
  297. package/dist/es/Tagger/TaggerElements.d.ts +22 -757
  298. package/dist/es/Tagger/TaggerElements.js +74 -33
  299. package/dist/es/Tagger/components/PopupSelector.js +124 -75
  300. package/dist/es/Tagger/components/PopupSelectorElements.d.ts +66 -2081
  301. package/dist/es/Tagger/components/PopupSelectorElements.js +108 -43
  302. package/dist/es/Tagger/components/constants.js +10 -2
  303. package/dist/es/Tagger/index.js +17 -2
  304. package/dist/es/Tagger/variantProps.js +116 -82
  305. package/dist/es/Text/Text.d.ts +4 -126
  306. package/dist/es/Text/Text.js +38 -10
  307. package/dist/es/Text/index.js +17 -2
  308. package/dist/es/ThemeProvider/ThemeProvider.d.ts +3403 -220
  309. package/dist/es/ThemeProvider/ThemeProvider.js +47 -24
  310. package/dist/es/ThemeProvider/accessibility.js +21 -11
  311. package/dist/es/ThemeProvider/icons.js +13 -4
  312. package/dist/es/ThemeProvider/index.js +80 -7
  313. package/dist/es/ThemeProvider/overridable.js +8 -1
  314. package/dist/es/ThemeProvider/theme.js +18 -6
  315. package/dist/es/ThemeProvider/types.d.ts +8 -29
  316. package/dist/es/ThemeProvider/types.js +5 -0
  317. package/dist/es/ThemeProvider/utils/themeUtils.js +8 -1
  318. package/dist/es/ThemeProvider/v4/Badge.js +18 -5
  319. package/dist/es/ThemeProvider/v4/Button.js +24 -9
  320. package/dist/es/ThemeProvider/v4/Card.js +19 -5
  321. package/dist/es/ThemeProvider/v4/Checkbox.js +18 -5
  322. package/dist/es/ThemeProvider/v4/CollapsibleToggle.js +18 -5
  323. package/dist/es/ThemeProvider/v4/Color.d.ts +1 -1
  324. package/dist/es/ThemeProvider/v4/Color.js +16 -4
  325. package/dist/es/ThemeProvider/v4/DataGrid.d.ts +2 -8
  326. package/dist/es/ThemeProvider/v4/DataGrid.js +18 -5
  327. package/dist/es/ThemeProvider/v4/DatePicker.js +29 -16
  328. package/dist/es/ThemeProvider/v4/DropdownButton.js +21 -7
  329. package/dist/es/ThemeProvider/v4/FormFieldAddon.js +18 -5
  330. package/dist/es/ThemeProvider/v4/FormLabel.d.ts +1 -5
  331. package/dist/es/ThemeProvider/v4/FormLabel.js +19 -5
  332. package/dist/es/ThemeProvider/v4/Icon.js +19 -5
  333. package/dist/es/ThemeProvider/v4/Input.d.ts +1 -1
  334. package/dist/es/ThemeProvider/v4/Input.js +17 -6
  335. package/dist/es/ThemeProvider/v4/Link.js +19 -5
  336. package/dist/es/ThemeProvider/v4/Menu.d.ts +1 -5
  337. package/dist/es/ThemeProvider/v4/Menu.js +21 -7
  338. package/dist/es/ThemeProvider/v4/Modal.d.ts +14 -42
  339. package/dist/es/ThemeProvider/v4/Modal.js +21 -7
  340. package/dist/es/ThemeProvider/v4/MultiSelect.d.ts +2 -24
  341. package/dist/es/ThemeProvider/v4/MultiSelect.js +18 -5
  342. package/dist/es/ThemeProvider/v4/Popover.js +15 -4
  343. package/dist/es/ThemeProvider/v4/Radio.d.ts +2 -30
  344. package/dist/es/ThemeProvider/v4/Radio.js +18 -5
  345. package/dist/es/ThemeProvider/v4/Section.d.ts +3 -39
  346. package/dist/es/ThemeProvider/v4/Section.js +18 -5
  347. package/dist/es/ThemeProvider/v4/Select.d.ts +1 -4
  348. package/dist/es/ThemeProvider/v4/Select.js +18 -5
  349. package/dist/es/ThemeProvider/v4/Shuttle.js +18 -5
  350. package/dist/es/ThemeProvider/v4/Tagger.d.ts +1 -12
  351. package/dist/es/ThemeProvider/v4/Tagger.js +18 -5
  352. package/dist/es/ThemeProvider/v4/Toast.js +18 -5
  353. package/dist/es/ThemeProvider/v4/Toggle.d.ts +4 -38
  354. package/dist/es/ThemeProvider/v4/Toggle.js +18 -5
  355. package/dist/es/ThemeProvider/v4/UserAvatar.js +18 -5
  356. package/dist/es/ThemeProvider/v4/View.js +19 -5
  357. package/dist/es/ThemeProvider/v4/index.d.ts +3403 -220
  358. package/dist/es/ThemeProvider/v4/index.js +69 -33
  359. package/dist/es/TimeControl/TimeControl.js +63 -26
  360. package/dist/es/TimeControl/elements.d.ts +186 -378
  361. package/dist/es/TimeControl/elements.js +41 -14
  362. package/dist/es/TimeControl/index.js +17 -2
  363. package/dist/es/TimeControl/utils.js +41 -18
  364. package/dist/es/TimeField/TimeField.d.ts +5 -1
  365. package/dist/es/TimeField/TimeField.js +40 -14
  366. package/dist/es/TimeField/index.js +17 -2
  367. package/dist/es/TimePicker/TimePicker.js +60 -30
  368. package/dist/es/TimePicker/components/Container.d.ts +5 -127
  369. package/dist/es/TimePicker/components/Container.js +20 -5
  370. package/dist/es/TimePicker/components/PeriodSelector.js +68 -38
  371. package/dist/es/TimePicker/components/Separator.d.ts +4 -126
  372. package/dist/es/TimePicker/components/Separator.js +17 -3
  373. package/dist/es/TimePicker/components/Spinner.d.ts +4 -126
  374. package/dist/es/TimePicker/components/Spinner.js +60 -26
  375. package/dist/es/TimePicker/components/index.js +58 -5
  376. package/dist/es/TimePicker/index.js +17 -2
  377. package/dist/es/TimePicker/utils.js +38 -14
  378. package/dist/es/Toast/Toast.js +71 -36
  379. package/dist/es/Toast/constants.js +9 -2
  380. package/dist/es/Toast/elements.d.ts +39 -1512
  381. package/dist/es/Toast/elements.js +118 -53
  382. package/dist/es/Toast/index.js +21 -3
  383. package/dist/es/Toggle/Toggle.d.ts +10 -252
  384. package/dist/es/Toggle/Toggle.js +87 -32
  385. package/dist/es/Toggle/index.js +17 -2
  386. package/dist/es/TooltipPopover/TooltipPopover.js +59 -22
  387. package/dist/es/TooltipPopover/index.js +17 -2
  388. package/dist/es/TooltipPopover/useWaitForDOMRef.js +25 -9
  389. package/dist/es/Tree/NodeContent.js +43 -23
  390. package/dist/es/Tree/NodeContextMenu.js +29 -11
  391. package/dist/es/Tree/Tree.js +66 -26
  392. package/dist/es/Tree/TreeNode.js +40 -16
  393. package/dist/es/Tree/elements.d.ts +40 -1268
  394. package/dist/es/Tree/elements.js +80 -31
  395. package/dist/es/Tree/index.js +38 -20
  396. package/dist/es/Tree/mockData.js +9 -2
  397. package/dist/es/UserAvatar/UserAvatar.d.ts +8 -254
  398. package/dist/es/UserAvatar/UserAvatar.js +62 -30
  399. package/dist/es/UserAvatar/index.js +17 -2
  400. package/dist/es/View/View.d.ts +4 -126
  401. package/dist/es/View/View.js +38 -10
  402. package/dist/es/View/index.js +17 -2
  403. package/dist/es/VisuallyHidden/VisuallyHidden.js +60 -19
  404. package/dist/es/VisuallyHidden/index.js +17 -2
  405. package/dist/es/VolumeChart/VolumeChart.d.ts +7 -6
  406. package/dist/es/VolumeChart/VolumeChart.js +55 -34
  407. package/dist/es/VolumeChart/index.js +17 -2
  408. package/dist/es/index.d.ts +3 -3
  409. package/dist/es/index.js +727 -86
  410. package/dist/es/mixins/border.js +15 -5
  411. package/dist/es/mixins/color.js +8 -1
  412. package/dist/es/mixins/index.js +33 -4
  413. package/dist/es/mixins/spacing.js +8 -1
  414. package/dist/es/utils/CloseWrapper.js +21 -7
  415. package/dist/es/utils/cloneElementWithCss.js +14 -6
  416. package/dist/es/utils/comparison.js +8 -1
  417. package/dist/es/utils/createChainedFunction.js +7 -1
  418. package/dist/es/utils/css.d.ts +2 -2
  419. package/dist/es/utils/css.js +33 -8
  420. package/dist/es/utils/enzyme.d.ts +0 -1
  421. package/dist/es/utils/enzyme.js +54 -31
  422. package/dist/es/utils/form.js +21 -2
  423. package/dist/es/utils/globalcss.d.ts +1 -1
  424. package/dist/es/utils/globalcss.js +12 -3
  425. package/dist/es/utils/hooks.js +33 -11
  426. package/dist/es/utils/isPropValid.js +14 -4
  427. package/dist/es/utils/resetcss.d.ts +1 -1
  428. package/dist/es/utils/resetcss.js +18 -7
  429. package/package.json +13 -12
  430. package/types/@emotion/styled.d.ts +0 -8
@@ -1,2308 +1,144 @@
1
- /// <reference types="types/@emotion/styled" />
2
1
  import React from 'react';
3
2
  import { StyledComponent } from '@emotion/styled';
4
3
  import Input from '../Input';
5
4
  import Checkbox from '../Checkbox';
6
- import type { Theme } from '../ThemeProvider';
7
5
  export declare const cellResetStyle: {
8
6
  margin: number;
9
7
  height: string;
10
8
  borderColor: string;
11
9
  outlineOffset: number;
12
10
  };
13
- export declare const ColumnHeaderPopover: StyledComponent<React.PropsWithChildren<import("../Popover").PopoverProps>, {}, {
14
- readonly space: string[];
15
- readonly palette: {
16
- success: string[];
17
- warning: string[];
18
- error: string[];
19
- primary: string[];
20
- secondary: string[];
21
- neutral: string[];
22
- };
23
- readonly fontFamily: {
24
- body: string;
25
- monospace: string;
26
- };
27
- readonly fontSize: string[];
28
- readonly lineHeight: number[];
29
- readonly radius: string[];
30
- readonly borderWidth: string[];
31
- readonly grid: number[];
32
- readonly shadows: {
33
- small: string;
34
- big: string;
35
- pill: string;
36
- bigCentered: string;
37
- popover: string;
38
- secondaryNavActiveItem: string;
39
- };
40
- readonly sizes: {
41
- PageHeaderIcon: number;
42
- };
43
- readonly zIndex: {
44
- Base: number;
45
- Overlay: number;
46
- FormControl: number;
47
- SecondaryNav: number;
48
- SecondaryNavActiveItem: number;
49
- PrimaryNav: number;
50
- PopOver: number;
51
- PageHeaderSearch: number;
52
- Modal: number;
53
- Tether: number;
54
- GlobalNav: number;
55
- Toast: number;
56
- };
57
- readonly color: {
58
- Dune: string;
59
- CuriousBlue: string;
60
- FlushMahogany: string;
61
- Maroon: string;
62
- PinkSwan: string;
63
- Matisse: string;
64
- HummingBird: string;
65
- Primary: string;
66
- PrimaryContrast: string;
67
- PrimaryFade: string;
68
- PrimaryLight: string;
69
- PrimaryLightFade: string;
70
- PrimaryLightHighlight: string;
71
- PrimaryAccent: string;
72
- DarkBackground: string;
73
- DarkBar: string;
74
- DarkHover: string;
75
- DarkPrimary: string;
76
- DarkSecondary: string;
77
- LightBackground: string;
78
- LightBar: string;
79
- LightDisabled: string;
80
- LightDivider: string;
81
- LightDividerNew: string;
82
- LightHint: string;
83
- LightHover: string;
84
- LightPrimary: string;
85
- LightSecondary: string;
86
- BorderGrey: string;
87
- Blue: string;
88
- BlueFade: string;
89
- Green: string;
90
- GreenFade: string;
91
- GreenBackground: string;
92
- Red: string;
93
- RedFade: string;
94
- Yellow: string;
95
- YellowFade: string;
96
- YellowHighlight: string;
97
- Orange: string;
98
- OrangeFill: string;
99
- OrangeBackground: string;
100
- Error: string;
101
- ErrorFade: string;
102
- ErrorBackground: string;
103
- DraggableDraggingBackground: string;
104
- Aquamarine: string;
105
- Azure: string;
106
- AzureNew: string;
107
- AzureFade: string;
108
- AzureHighlight: string;
109
- Silver: string;
110
- BlueNavy: string;
111
- Black: string;
112
- TurquoiseBlue: string;
113
- SummerSky: string;
114
- Mondo: string;
115
- HeavyMetal: string;
116
- BokaraGrey: string;
117
- Cyan: string;
118
- Eucalyptus: string;
119
- Flamingo: string;
120
- Zorba: string;
121
- Flint: string;
122
- Maya: string;
123
- Bondi: string;
124
- Emerald: string;
125
- Carissma: string;
126
- Solitude: string;
127
- WhiteSmoke: string;
128
- Violet: string;
129
- FireBrick: string;
130
- Purple: string;
131
- Buckthorn: string;
132
- };
133
- readonly gradient: {
134
- main: string;
135
- neutral: string;
136
- };
137
- }>;
138
- export declare const ColumnHeaderActionsContainer: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}, {
139
- readonly space: string[];
140
- readonly palette: {
141
- success: string[];
142
- warning: string[];
143
- error: string[];
144
- primary: string[];
145
- secondary: string[];
146
- neutral: string[];
147
- };
148
- readonly fontFamily: {
149
- body: string;
150
- monospace: string;
151
- };
152
- readonly fontSize: string[];
153
- readonly lineHeight: number[];
154
- readonly radius: string[];
155
- readonly borderWidth: string[];
156
- readonly grid: number[];
157
- readonly shadows: {
158
- small: string;
159
- big: string;
160
- pill: string;
161
- bigCentered: string;
162
- popover: string;
163
- secondaryNavActiveItem: string;
164
- };
165
- readonly sizes: {
166
- PageHeaderIcon: number;
167
- };
168
- readonly zIndex: {
169
- Base: number;
170
- Overlay: number;
171
- FormControl: number;
172
- SecondaryNav: number;
173
- SecondaryNavActiveItem: number;
174
- PrimaryNav: number;
175
- PopOver: number;
176
- PageHeaderSearch: number;
177
- Modal: number;
178
- Tether: number;
179
- GlobalNav: number;
180
- Toast: number;
181
- };
182
- readonly color: {
183
- Dune: string;
184
- CuriousBlue: string;
185
- FlushMahogany: string;
186
- Maroon: string;
187
- PinkSwan: string;
188
- Matisse: string;
189
- HummingBird: string;
190
- Primary: string;
191
- PrimaryContrast: string;
192
- PrimaryFade: string;
193
- PrimaryLight: string;
194
- PrimaryLightFade: string;
195
- PrimaryLightHighlight: string;
196
- PrimaryAccent: string;
197
- DarkBackground: string;
198
- DarkBar: string;
199
- DarkHover: string;
200
- DarkPrimary: string;
201
- DarkSecondary: string;
202
- LightBackground: string;
203
- LightBar: string;
204
- LightDisabled: string;
205
- LightDivider: string;
206
- LightDividerNew: string;
207
- LightHint: string;
208
- LightHover: string;
209
- LightPrimary: string;
210
- LightSecondary: string;
211
- BorderGrey: string;
212
- Blue: string;
213
- BlueFade: string;
214
- Green: string;
215
- GreenFade: string;
216
- GreenBackground: string;
217
- Red: string;
218
- RedFade: string;
219
- Yellow: string;
220
- YellowFade: string;
221
- YellowHighlight: string;
222
- Orange: string;
223
- OrangeFill: string;
224
- OrangeBackground: string;
225
- Error: string;
226
- ErrorFade: string;
227
- ErrorBackground: string;
228
- DraggableDraggingBackground: string;
229
- Aquamarine: string;
230
- Azure: string;
231
- AzureNew: string;
232
- AzureFade: string;
233
- AzureHighlight: string;
234
- Silver: string;
235
- BlueNavy: string;
236
- Black: string;
237
- TurquoiseBlue: string;
238
- SummerSky: string;
239
- Mondo: string;
240
- HeavyMetal: string;
241
- BokaraGrey: string;
242
- Cyan: string;
243
- Eucalyptus: string;
244
- Flamingo: string;
245
- Zorba: string;
246
- Flint: string;
247
- Maya: string;
248
- Bondi: string;
249
- Emerald: string;
250
- Carissma: string;
251
- Solitude: string;
252
- WhiteSmoke: string;
253
- Violet: string;
254
- FireBrick: string;
255
- Purple: string;
256
- Buckthorn: string;
257
- };
258
- readonly gradient: {
259
- main: string;
260
- neutral: string;
261
- };
262
- }>;
11
+ export declare const ColumnHeaderPopover: StyledComponent<import("../Popover").PopoverProps & {
12
+ children?: React.ReactNode;
13
+ } & {
14
+ theme?: import("@emotion/react").Theme | undefined;
15
+ }, {}, {}>;
16
+ export declare const ColumnHeaderActionsContainer: StyledComponent<{
17
+ theme?: import("@emotion/react").Theme | undefined;
18
+ as?: React.ElementType<any> | undefined;
19
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
263
20
  declare type ColumnHeaderContainerProps = {
264
21
  clickable?: boolean;
265
22
  active?: boolean;
266
23
  isLast?: boolean;
267
24
  };
268
- export declare const ColumnHeaderContainer: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, ColumnHeaderContainerProps, {
269
- readonly space: string[];
270
- readonly palette: {
271
- success: string[];
272
- warning: string[];
273
- error: string[];
274
- primary: string[];
275
- secondary: string[];
276
- neutral: string[];
277
- };
278
- readonly fontFamily: {
279
- body: string;
280
- monospace: string;
281
- };
282
- readonly fontSize: string[];
283
- readonly lineHeight: number[];
284
- readonly radius: string[];
285
- readonly borderWidth: string[];
286
- readonly grid: number[];
287
- readonly shadows: {
288
- small: string;
289
- big: string;
290
- pill: string;
291
- bigCentered: string;
292
- popover: string;
293
- secondaryNavActiveItem: string;
294
- };
295
- readonly sizes: {
296
- PageHeaderIcon: number;
297
- };
298
- readonly zIndex: {
299
- Base: number;
300
- Overlay: number;
301
- FormControl: number;
302
- SecondaryNav: number;
303
- SecondaryNavActiveItem: number;
304
- PrimaryNav: number;
305
- PopOver: number;
306
- PageHeaderSearch: number;
307
- Modal: number;
308
- Tether: number;
309
- GlobalNav: number;
310
- Toast: number;
311
- };
312
- readonly color: {
313
- Dune: string;
314
- CuriousBlue: string;
315
- FlushMahogany: string;
316
- Maroon: string;
317
- PinkSwan: string;
318
- Matisse: string;
319
- HummingBird: string;
320
- Primary: string;
321
- PrimaryContrast: string;
322
- PrimaryFade: string;
323
- PrimaryLight: string;
324
- PrimaryLightFade: string;
325
- PrimaryLightHighlight: string;
326
- PrimaryAccent: string;
327
- DarkBackground: string;
328
- DarkBar: string;
329
- DarkHover: string;
330
- DarkPrimary: string;
331
- DarkSecondary: string;
332
- LightBackground: string;
333
- LightBar: string;
334
- LightDisabled: string;
335
- LightDivider: string;
336
- LightDividerNew: string;
337
- LightHint: string;
338
- LightHover: string;
339
- LightPrimary: string;
340
- LightSecondary: string;
341
- BorderGrey: string;
342
- Blue: string;
343
- BlueFade: string;
344
- Green: string;
345
- GreenFade: string;
346
- GreenBackground: string;
347
- Red: string;
348
- RedFade: string;
349
- Yellow: string;
350
- YellowFade: string;
351
- YellowHighlight: string;
352
- Orange: string;
353
- OrangeFill: string;
354
- OrangeBackground: string;
355
- Error: string;
356
- ErrorFade: string;
357
- ErrorBackground: string;
358
- DraggableDraggingBackground: string;
359
- Aquamarine: string;
360
- Azure: string;
361
- AzureNew: string;
362
- AzureFade: string;
363
- AzureHighlight: string;
364
- Silver: string;
365
- BlueNavy: string;
366
- Black: string;
367
- TurquoiseBlue: string;
368
- SummerSky: string;
369
- Mondo: string;
370
- HeavyMetal: string;
371
- BokaraGrey: string;
372
- Cyan: string;
373
- Eucalyptus: string;
374
- Flamingo: string;
375
- Zorba: string;
376
- Flint: string;
377
- Maya: string;
378
- Bondi: string;
379
- Emerald: string;
380
- Carissma: string;
381
- Solitude: string;
382
- WhiteSmoke: string;
383
- Violet: string;
384
- FireBrick: string;
385
- Purple: string;
386
- Buckthorn: string;
387
- };
388
- readonly gradient: {
389
- main: string;
390
- neutral: string;
391
- };
392
- }>;
393
- export declare const ColumnHeaderLabel: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}, {
394
- readonly space: string[];
395
- readonly palette: {
396
- success: string[];
397
- warning: string[];
398
- error: string[];
399
- primary: string[];
400
- secondary: string[];
401
- neutral: string[];
402
- };
403
- readonly fontFamily: {
404
- body: string;
405
- monospace: string;
406
- };
407
- readonly fontSize: string[];
408
- readonly lineHeight: number[];
409
- readonly radius: string[];
410
- readonly borderWidth: string[];
411
- readonly grid: number[];
412
- readonly shadows: {
413
- small: string;
414
- big: string;
415
- pill: string;
416
- bigCentered: string;
417
- popover: string;
418
- secondaryNavActiveItem: string;
419
- };
420
- readonly sizes: {
421
- PageHeaderIcon: number;
422
- };
423
- readonly zIndex: {
424
- Base: number;
425
- Overlay: number;
426
- FormControl: number;
427
- SecondaryNav: number;
428
- SecondaryNavActiveItem: number;
429
- PrimaryNav: number;
430
- PopOver: number;
431
- PageHeaderSearch: number;
432
- Modal: number;
433
- Tether: number;
434
- GlobalNav: number;
435
- Toast: number;
436
- };
437
- readonly color: {
438
- Dune: string;
439
- CuriousBlue: string;
440
- FlushMahogany: string;
441
- Maroon: string;
442
- PinkSwan: string;
443
- Matisse: string;
444
- HummingBird: string;
445
- Primary: string;
446
- PrimaryContrast: string;
447
- PrimaryFade: string;
448
- PrimaryLight: string;
449
- PrimaryLightFade: string;
450
- PrimaryLightHighlight: string;
451
- PrimaryAccent: string;
452
- DarkBackground: string;
453
- DarkBar: string;
454
- DarkHover: string;
455
- DarkPrimary: string;
456
- DarkSecondary: string;
457
- LightBackground: string;
458
- LightBar: string;
459
- LightDisabled: string;
460
- LightDivider: string;
461
- LightDividerNew: string;
462
- LightHint: string;
463
- LightHover: string;
464
- LightPrimary: string;
465
- LightSecondary: string;
466
- BorderGrey: string;
467
- Blue: string;
468
- BlueFade: string;
469
- Green: string;
470
- GreenFade: string;
471
- GreenBackground: string;
472
- Red: string;
473
- RedFade: string;
474
- Yellow: string;
475
- YellowFade: string;
476
- YellowHighlight: string;
477
- Orange: string;
478
- OrangeFill: string;
479
- OrangeBackground: string;
480
- Error: string;
481
- ErrorFade: string;
482
- ErrorBackground: string;
483
- DraggableDraggingBackground: string;
484
- Aquamarine: string;
485
- Azure: string;
486
- AzureNew: string;
487
- AzureFade: string;
488
- AzureHighlight: string;
489
- Silver: string;
490
- BlueNavy: string;
491
- Black: string;
492
- TurquoiseBlue: string;
493
- SummerSky: string;
494
- Mondo: string;
495
- HeavyMetal: string;
496
- BokaraGrey: string;
497
- Cyan: string;
498
- Eucalyptus: string;
499
- Flamingo: string;
500
- Zorba: string;
501
- Flint: string;
502
- Maya: string;
503
- Bondi: string;
504
- Emerald: string;
505
- Carissma: string;
506
- Solitude: string;
507
- WhiteSmoke: string;
508
- Violet: string;
509
- FireBrick: string;
510
- Purple: string;
511
- Buckthorn: string;
512
- };
513
- readonly gradient: {
514
- main: string;
515
- neutral: string;
516
- };
517
- }>;
518
- export declare const ColumnHeaderIcon: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}, {
519
- readonly space: string[];
520
- readonly palette: {
521
- success: string[];
522
- warning: string[];
523
- error: string[];
524
- primary: string[];
525
- secondary: string[];
526
- neutral: string[];
527
- };
528
- readonly fontFamily: {
529
- body: string;
530
- monospace: string;
531
- };
532
- readonly fontSize: string[];
533
- readonly lineHeight: number[];
534
- readonly radius: string[];
535
- readonly borderWidth: string[];
536
- readonly grid: number[];
537
- readonly shadows: {
538
- small: string;
539
- big: string;
540
- pill: string;
541
- bigCentered: string;
542
- popover: string;
543
- secondaryNavActiveItem: string;
544
- };
545
- readonly sizes: {
546
- PageHeaderIcon: number;
547
- };
548
- readonly zIndex: {
549
- Base: number;
550
- Overlay: number;
551
- FormControl: number;
552
- SecondaryNav: number;
553
- SecondaryNavActiveItem: number;
554
- PrimaryNav: number;
555
- PopOver: number;
556
- PageHeaderSearch: number;
557
- Modal: number;
558
- Tether: number;
559
- GlobalNav: number;
560
- Toast: number;
561
- };
562
- readonly color: {
563
- Dune: string;
564
- CuriousBlue: string;
565
- FlushMahogany: string;
566
- Maroon: string;
567
- PinkSwan: string;
568
- Matisse: string;
569
- HummingBird: string;
570
- Primary: string;
571
- PrimaryContrast: string;
572
- PrimaryFade: string;
573
- PrimaryLight: string;
574
- PrimaryLightFade: string;
575
- PrimaryLightHighlight: string;
576
- PrimaryAccent: string;
577
- DarkBackground: string;
578
- DarkBar: string;
579
- DarkHover: string;
580
- DarkPrimary: string;
581
- DarkSecondary: string;
582
- LightBackground: string;
583
- LightBar: string;
584
- LightDisabled: string;
585
- LightDivider: string;
586
- LightDividerNew: string;
587
- LightHint: string;
588
- LightHover: string;
589
- LightPrimary: string;
590
- LightSecondary: string;
591
- BorderGrey: string;
592
- Blue: string;
593
- BlueFade: string;
594
- Green: string;
595
- GreenFade: string;
596
- GreenBackground: string;
597
- Red: string;
598
- RedFade: string;
599
- Yellow: string;
600
- YellowFade: string;
601
- YellowHighlight: string;
602
- Orange: string;
603
- OrangeFill: string;
604
- OrangeBackground: string;
605
- Error: string;
606
- ErrorFade: string;
607
- ErrorBackground: string;
608
- DraggableDraggingBackground: string;
609
- Aquamarine: string;
610
- Azure: string;
611
- AzureNew: string;
612
- AzureFade: string;
613
- AzureHighlight: string;
614
- Silver: string;
615
- BlueNavy: string;
616
- Black: string;
617
- TurquoiseBlue: string;
618
- SummerSky: string;
619
- Mondo: string;
620
- HeavyMetal: string;
621
- BokaraGrey: string;
622
- Cyan: string;
623
- Eucalyptus: string;
624
- Flamingo: string;
625
- Zorba: string;
626
- Flint: string;
627
- Maya: string;
628
- Bondi: string;
629
- Emerald: string;
630
- Carissma: string;
631
- Solitude: string;
632
- WhiteSmoke: string;
633
- Violet: string;
634
- FireBrick: string;
635
- Purple: string;
636
- Buckthorn: string;
637
- };
638
- readonly gradient: {
639
- main: string;
640
- neutral: string;
641
- };
642
- }>;
643
- declare type CellProps = {
644
- editable?: boolean;
645
- indent?: boolean;
646
- input?: boolean;
647
- isLast?: boolean;
648
- modified?: boolean;
649
- rightAlign?: boolean;
650
- invalid?: boolean;
651
- };
652
- export declare const Cell: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, CellProps, {
653
- readonly space: string[];
654
- readonly palette: {
655
- success: string[];
656
- warning: string[];
657
- error: string[];
658
- primary: string[];
659
- secondary: string[];
660
- neutral: string[];
661
- };
662
- readonly fontFamily: {
663
- body: string;
664
- monospace: string;
665
- };
666
- readonly fontSize: string[];
667
- readonly lineHeight: number[];
668
- readonly radius: string[];
669
- readonly borderWidth: string[];
670
- readonly grid: number[];
671
- readonly shadows: {
672
- small: string;
673
- big: string;
674
- pill: string;
675
- bigCentered: string;
676
- popover: string;
677
- secondaryNavActiveItem: string;
678
- };
679
- readonly sizes: {
680
- PageHeaderIcon: number;
681
- };
682
- readonly zIndex: {
683
- Base: number;
684
- Overlay: number;
685
- FormControl: number;
686
- SecondaryNav: number;
687
- SecondaryNavActiveItem: number;
688
- PrimaryNav: number;
689
- PopOver: number;
690
- PageHeaderSearch: number;
691
- Modal: number;
692
- Tether: number;
693
- GlobalNav: number;
694
- Toast: number;
695
- };
696
- readonly color: {
697
- Dune: string;
698
- CuriousBlue: string;
699
- FlushMahogany: string;
700
- Maroon: string;
701
- PinkSwan: string;
702
- Matisse: string;
703
- HummingBird: string;
704
- Primary: string;
705
- PrimaryContrast: string;
706
- PrimaryFade: string;
707
- PrimaryLight: string;
708
- PrimaryLightFade: string;
709
- PrimaryLightHighlight: string;
710
- PrimaryAccent: string;
711
- DarkBackground: string;
712
- DarkBar: string;
713
- DarkHover: string;
714
- DarkPrimary: string;
715
- DarkSecondary: string;
716
- LightBackground: string;
717
- LightBar: string;
718
- LightDisabled: string;
719
- LightDivider: string;
720
- LightDividerNew: string;
721
- LightHint: string;
722
- LightHover: string;
723
- LightPrimary: string;
724
- LightSecondary: string;
725
- BorderGrey: string;
726
- Blue: string;
727
- BlueFade: string;
728
- Green: string;
729
- GreenFade: string;
730
- GreenBackground: string;
731
- Red: string;
732
- RedFade: string;
733
- Yellow: string;
734
- YellowFade: string;
735
- YellowHighlight: string;
736
- Orange: string;
737
- OrangeFill: string;
738
- OrangeBackground: string;
739
- Error: string;
740
- ErrorFade: string;
741
- ErrorBackground: string;
742
- DraggableDraggingBackground: string;
743
- Aquamarine: string;
744
- Azure: string;
745
- AzureNew: string;
746
- AzureFade: string;
747
- AzureHighlight: string;
748
- Silver: string;
749
- BlueNavy: string;
750
- Black: string;
751
- TurquoiseBlue: string;
752
- SummerSky: string;
753
- Mondo: string;
754
- HeavyMetal: string;
755
- BokaraGrey: string;
756
- Cyan: string;
757
- Eucalyptus: string;
758
- Flamingo: string;
759
- Zorba: string;
760
- Flint: string;
761
- Maya: string;
762
- Bondi: string;
763
- Emerald: string;
764
- Carissma: string;
765
- Solitude: string;
766
- WhiteSmoke: string;
767
- Violet: string;
768
- FireBrick: string;
769
- Purple: string;
770
- Buckthorn: string;
771
- };
772
- readonly gradient: {
773
- main: string;
774
- neutral: string;
775
- };
776
- }>;
777
- declare type RowProps = {
778
- zebra?: boolean;
779
- selected?: boolean;
780
- selecting?: boolean;
781
- header?: boolean;
782
- };
783
- export declare const Row: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, RowProps, {
784
- readonly space: string[];
785
- readonly palette: {
786
- success: string[];
787
- warning: string[];
788
- error: string[];
789
- primary: string[];
790
- secondary: string[];
791
- neutral: string[];
792
- };
793
- readonly fontFamily: {
794
- body: string;
795
- monospace: string;
796
- };
797
- readonly fontSize: string[];
798
- readonly lineHeight: number[];
799
- readonly radius: string[];
800
- readonly borderWidth: string[];
801
- readonly grid: number[];
802
- readonly shadows: {
803
- small: string;
804
- big: string;
805
- pill: string;
806
- bigCentered: string;
807
- popover: string;
808
- secondaryNavActiveItem: string;
809
- };
810
- readonly sizes: {
811
- PageHeaderIcon: number;
812
- };
813
- readonly zIndex: {
814
- Base: number;
815
- Overlay: number;
816
- FormControl: number;
817
- SecondaryNav: number;
818
- SecondaryNavActiveItem: number;
819
- PrimaryNav: number;
820
- PopOver: number;
821
- PageHeaderSearch: number;
822
- Modal: number;
823
- Tether: number;
824
- GlobalNav: number;
825
- Toast: number;
826
- };
827
- readonly color: {
828
- Dune: string;
829
- CuriousBlue: string;
830
- FlushMahogany: string;
831
- Maroon: string;
832
- PinkSwan: string;
833
- Matisse: string;
834
- HummingBird: string;
835
- Primary: string;
836
- PrimaryContrast: string;
837
- PrimaryFade: string;
838
- PrimaryLight: string;
839
- PrimaryLightFade: string;
840
- PrimaryLightHighlight: string;
841
- PrimaryAccent: string;
842
- DarkBackground: string;
843
- DarkBar: string;
844
- DarkHover: string;
845
- DarkPrimary: string;
846
- DarkSecondary: string;
847
- LightBackground: string;
848
- LightBar: string;
849
- LightDisabled: string;
850
- LightDivider: string;
851
- LightDividerNew: string;
852
- LightHint: string;
853
- LightHover: string;
854
- LightPrimary: string;
855
- LightSecondary: string;
856
- BorderGrey: string;
857
- Blue: string;
858
- BlueFade: string;
859
- Green: string;
860
- GreenFade: string;
861
- GreenBackground: string;
862
- Red: string;
863
- RedFade: string;
864
- Yellow: string;
865
- YellowFade: string;
866
- YellowHighlight: string;
867
- Orange: string;
868
- OrangeFill: string;
869
- OrangeBackground: string;
870
- Error: string;
871
- ErrorFade: string;
872
- ErrorBackground: string;
873
- DraggableDraggingBackground: string;
874
- Aquamarine: string;
875
- Azure: string;
876
- AzureNew: string;
877
- AzureFade: string;
878
- AzureHighlight: string;
879
- Silver: string;
880
- BlueNavy: string;
881
- Black: string;
882
- TurquoiseBlue: string;
883
- SummerSky: string;
884
- Mondo: string;
885
- HeavyMetal: string;
886
- BokaraGrey: string;
887
- Cyan: string;
888
- Eucalyptus: string;
889
- Flamingo: string;
890
- Zorba: string;
891
- Flint: string;
892
- Maya: string;
893
- Bondi: string;
894
- Emerald: string;
895
- Carissma: string;
896
- Solitude: string;
897
- WhiteSmoke: string;
898
- Violet: string;
899
- FireBrick: string;
900
- Purple: string;
901
- Buckthorn: string;
902
- };
903
- readonly gradient: {
904
- main: string;
905
- neutral: string;
906
- };
907
- }>;
908
- export declare const TableContainer: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, any, {
909
- readonly space: string[];
910
- readonly palette: {
911
- success: string[];
912
- warning: string[];
913
- error: string[];
914
- primary: string[];
915
- secondary: string[];
916
- neutral: string[];
917
- };
918
- readonly fontFamily: {
919
- body: string;
920
- monospace: string;
921
- };
922
- readonly fontSize: string[];
923
- readonly lineHeight: number[];
924
- readonly radius: string[];
925
- readonly borderWidth: string[];
926
- readonly grid: number[];
927
- readonly shadows: {
928
- small: string;
929
- big: string;
930
- pill: string;
931
- bigCentered: string;
932
- popover: string;
933
- secondaryNavActiveItem: string;
934
- };
935
- readonly sizes: {
936
- PageHeaderIcon: number;
937
- };
938
- readonly zIndex: {
939
- Base: number;
940
- Overlay: number;
941
- FormControl: number;
942
- SecondaryNav: number;
943
- SecondaryNavActiveItem: number;
944
- PrimaryNav: number;
945
- PopOver: number;
946
- PageHeaderSearch: number;
947
- Modal: number;
948
- Tether: number;
949
- GlobalNav: number;
950
- Toast: number;
951
- };
952
- readonly color: {
953
- Dune: string;
954
- CuriousBlue: string;
955
- FlushMahogany: string;
956
- Maroon: string;
957
- PinkSwan: string;
958
- Matisse: string;
959
- HummingBird: string;
960
- Primary: string;
961
- PrimaryContrast: string;
962
- PrimaryFade: string;
963
- PrimaryLight: string;
964
- PrimaryLightFade: string;
965
- PrimaryLightHighlight: string;
966
- PrimaryAccent: string;
967
- DarkBackground: string;
968
- DarkBar: string;
969
- DarkHover: string;
970
- DarkPrimary: string;
971
- DarkSecondary: string;
972
- LightBackground: string;
973
- LightBar: string;
974
- LightDisabled: string;
975
- LightDivider: string;
976
- LightDividerNew: string;
977
- LightHint: string;
978
- LightHover: string;
979
- LightPrimary: string;
980
- LightSecondary: string;
981
- BorderGrey: string;
982
- Blue: string;
983
- BlueFade: string;
984
- Green: string;
985
- GreenFade: string;
986
- GreenBackground: string;
987
- Red: string;
988
- RedFade: string;
989
- Yellow: string;
990
- YellowFade: string;
991
- YellowHighlight: string;
992
- Orange: string;
993
- OrangeFill: string;
994
- OrangeBackground: string;
995
- Error: string;
996
- ErrorFade: string;
997
- ErrorBackground: string;
998
- DraggableDraggingBackground: string;
999
- Aquamarine: string;
1000
- Azure: string;
1001
- AzureNew: string;
1002
- AzureFade: string;
1003
- AzureHighlight: string;
1004
- Silver: string;
1005
- BlueNavy: string;
1006
- Black: string;
1007
- TurquoiseBlue: string;
1008
- SummerSky: string;
1009
- Mondo: string;
1010
- HeavyMetal: string;
1011
- BokaraGrey: string;
1012
- Cyan: string;
1013
- Eucalyptus: string;
1014
- Flamingo: string;
1015
- Zorba: string;
1016
- Flint: string;
1017
- Maya: string;
1018
- Bondi: string;
1019
- Emerald: string;
1020
- Carissma: string;
1021
- Solitude: string;
1022
- WhiteSmoke: string;
1023
- Violet: string;
1024
- FireBrick: string;
1025
- Purple: string;
1026
- Buckthorn: string;
1027
- };
1028
- readonly gradient: {
1029
- main: string;
1030
- neutral: string;
1031
- };
1032
- }>;
1033
- export declare const FilterHeader: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}, {
1034
- readonly space: string[];
1035
- readonly palette: {
1036
- success: string[];
1037
- warning: string[];
1038
- error: string[];
1039
- primary: string[];
1040
- secondary: string[];
1041
- neutral: string[];
1042
- };
1043
- readonly fontFamily: {
1044
- body: string;
1045
- monospace: string;
1046
- };
1047
- readonly fontSize: string[];
1048
- readonly lineHeight: number[];
1049
- readonly radius: string[];
1050
- readonly borderWidth: string[];
1051
- readonly grid: number[];
1052
- readonly shadows: {
1053
- small: string;
1054
- big: string;
1055
- pill: string;
1056
- bigCentered: string;
1057
- popover: string;
1058
- secondaryNavActiveItem: string;
1059
- };
1060
- readonly sizes: {
1061
- PageHeaderIcon: number;
1062
- };
1063
- readonly zIndex: {
1064
- Base: number;
1065
- Overlay: number;
1066
- FormControl: number;
1067
- SecondaryNav: number;
1068
- SecondaryNavActiveItem: number;
1069
- PrimaryNav: number;
1070
- PopOver: number;
1071
- PageHeaderSearch: number;
1072
- Modal: number;
1073
- Tether: number;
1074
- GlobalNav: number;
1075
- Toast: number;
1076
- };
1077
- readonly color: {
1078
- Dune: string;
1079
- CuriousBlue: string;
1080
- FlushMahogany: string;
1081
- Maroon: string;
1082
- PinkSwan: string;
1083
- Matisse: string;
1084
- HummingBird: string;
1085
- Primary: string;
1086
- PrimaryContrast: string;
1087
- PrimaryFade: string;
1088
- PrimaryLight: string;
1089
- PrimaryLightFade: string;
1090
- PrimaryLightHighlight: string;
1091
- PrimaryAccent: string;
1092
- DarkBackground: string;
1093
- DarkBar: string;
1094
- DarkHover: string;
1095
- DarkPrimary: string;
1096
- DarkSecondary: string;
1097
- LightBackground: string;
1098
- LightBar: string;
1099
- LightDisabled: string;
1100
- LightDivider: string;
1101
- LightDividerNew: string;
1102
- LightHint: string;
1103
- LightHover: string;
1104
- LightPrimary: string;
1105
- LightSecondary: string;
1106
- BorderGrey: string;
1107
- Blue: string;
1108
- BlueFade: string;
1109
- Green: string;
1110
- GreenFade: string;
1111
- GreenBackground: string;
1112
- Red: string;
1113
- RedFade: string;
1114
- Yellow: string;
1115
- YellowFade: string;
1116
- YellowHighlight: string;
1117
- Orange: string;
1118
- OrangeFill: string;
1119
- OrangeBackground: string;
1120
- Error: string;
1121
- ErrorFade: string;
1122
- ErrorBackground: string;
1123
- DraggableDraggingBackground: string;
1124
- Aquamarine: string;
1125
- Azure: string;
1126
- AzureNew: string;
1127
- AzureFade: string;
1128
- AzureHighlight: string;
1129
- Silver: string;
1130
- BlueNavy: string;
1131
- Black: string;
1132
- TurquoiseBlue: string;
1133
- SummerSky: string;
1134
- Mondo: string;
1135
- HeavyMetal: string;
1136
- BokaraGrey: string;
1137
- Cyan: string;
1138
- Eucalyptus: string;
1139
- Flamingo: string;
1140
- Zorba: string;
1141
- Flint: string;
1142
- Maya: string;
1143
- Bondi: string;
1144
- Emerald: string;
1145
- Carissma: string;
1146
- Solitude: string;
1147
- WhiteSmoke: string;
1148
- Violet: string;
1149
- FireBrick: string;
1150
- Purple: string;
1151
- Buckthorn: string;
1152
- };
1153
- readonly gradient: {
1154
- main: string;
1155
- neutral: string;
1156
- };
1157
- }>;
1158
- export declare const FilterButtons: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}, {
1159
- readonly space: string[];
1160
- readonly palette: {
1161
- success: string[];
1162
- warning: string[];
1163
- error: string[];
1164
- primary: string[];
1165
- secondary: string[];
1166
- neutral: string[];
1167
- };
1168
- readonly fontFamily: {
1169
- body: string;
1170
- monospace: string;
1171
- };
1172
- readonly fontSize: string[];
1173
- readonly lineHeight: number[];
1174
- readonly radius: string[];
1175
- readonly borderWidth: string[];
1176
- readonly grid: number[];
1177
- readonly shadows: {
1178
- small: string;
1179
- big: string;
1180
- pill: string;
1181
- bigCentered: string;
1182
- popover: string;
1183
- secondaryNavActiveItem: string;
1184
- };
1185
- readonly sizes: {
1186
- PageHeaderIcon: number;
1187
- };
1188
- readonly zIndex: {
1189
- Base: number;
1190
- Overlay: number;
1191
- FormControl: number;
1192
- SecondaryNav: number;
1193
- SecondaryNavActiveItem: number;
1194
- PrimaryNav: number;
1195
- PopOver: number;
1196
- PageHeaderSearch: number;
1197
- Modal: number;
1198
- Tether: number;
1199
- GlobalNav: number;
1200
- Toast: number;
1201
- };
1202
- readonly color: {
1203
- Dune: string;
1204
- CuriousBlue: string;
1205
- FlushMahogany: string;
1206
- Maroon: string;
1207
- PinkSwan: string;
1208
- Matisse: string;
1209
- HummingBird: string;
1210
- Primary: string;
1211
- PrimaryContrast: string;
1212
- PrimaryFade: string;
1213
- PrimaryLight: string;
1214
- PrimaryLightFade: string;
1215
- PrimaryLightHighlight: string;
1216
- PrimaryAccent: string;
1217
- DarkBackground: string;
1218
- DarkBar: string;
1219
- DarkHover: string;
1220
- DarkPrimary: string;
1221
- DarkSecondary: string;
1222
- LightBackground: string;
1223
- LightBar: string;
1224
- LightDisabled: string;
1225
- LightDivider: string;
1226
- LightDividerNew: string;
1227
- LightHint: string;
1228
- LightHover: string;
1229
- LightPrimary: string;
1230
- LightSecondary: string;
1231
- BorderGrey: string;
1232
- Blue: string;
1233
- BlueFade: string;
1234
- Green: string;
1235
- GreenFade: string;
1236
- GreenBackground: string;
1237
- Red: string;
1238
- RedFade: string;
1239
- Yellow: string;
1240
- YellowFade: string;
1241
- YellowHighlight: string;
1242
- Orange: string;
1243
- OrangeFill: string;
1244
- OrangeBackground: string;
1245
- Error: string;
1246
- ErrorFade: string;
1247
- ErrorBackground: string;
1248
- DraggableDraggingBackground: string;
1249
- Aquamarine: string;
1250
- Azure: string;
1251
- AzureNew: string;
1252
- AzureFade: string;
1253
- AzureHighlight: string;
1254
- Silver: string;
1255
- BlueNavy: string;
1256
- Black: string;
1257
- TurquoiseBlue: string;
1258
- SummerSky: string;
1259
- Mondo: string;
1260
- HeavyMetal: string;
1261
- BokaraGrey: string;
1262
- Cyan: string;
1263
- Eucalyptus: string;
1264
- Flamingo: string;
1265
- Zorba: string;
1266
- Flint: string;
1267
- Maya: string;
1268
- Bondi: string;
1269
- Emerald: string;
1270
- Carissma: string;
1271
- Solitude: string;
1272
- WhiteSmoke: string;
1273
- Violet: string;
1274
- FireBrick: string;
1275
- Purple: string;
1276
- Buckthorn: string;
1277
- };
1278
- readonly gradient: {
1279
- main: string;
1280
- neutral: string;
1281
- };
1282
- }>;
1283
- export declare const RightFilterButton: StyledComponent<Partial<import("../Button").UnstyledButtonProps> & React.RefAttributes<import("../Button").UnstyledButton>, any, {
1284
- readonly space: string[];
1285
- readonly palette: {
1286
- success: string[];
1287
- warning: string[];
1288
- error: string[];
1289
- primary: string[];
1290
- secondary: string[];
1291
- neutral: string[];
1292
- };
1293
- readonly fontFamily: {
1294
- body: string;
1295
- monospace: string;
1296
- };
1297
- readonly fontSize: string[];
1298
- readonly lineHeight: number[];
1299
- readonly radius: string[];
1300
- readonly borderWidth: string[];
1301
- readonly grid: number[];
1302
- readonly shadows: {
1303
- small: string;
1304
- big: string;
1305
- pill: string;
1306
- bigCentered: string;
1307
- popover: string;
1308
- secondaryNavActiveItem: string;
1309
- };
1310
- readonly sizes: {
1311
- PageHeaderIcon: number;
1312
- };
1313
- readonly zIndex: {
1314
- Base: number;
1315
- Overlay: number;
1316
- FormControl: number;
1317
- SecondaryNav: number;
1318
- SecondaryNavActiveItem: number;
1319
- PrimaryNav: number;
1320
- PopOver: number;
1321
- PageHeaderSearch: number;
1322
- Modal: number;
1323
- Tether: number;
1324
- GlobalNav: number;
1325
- Toast: number;
1326
- };
1327
- readonly color: {
1328
- Dune: string;
1329
- CuriousBlue: string;
1330
- FlushMahogany: string;
1331
- Maroon: string;
1332
- PinkSwan: string;
1333
- Matisse: string;
1334
- HummingBird: string;
1335
- Primary: string;
1336
- PrimaryContrast: string;
1337
- PrimaryFade: string;
1338
- PrimaryLight: string;
1339
- PrimaryLightFade: string;
1340
- PrimaryLightHighlight: string;
1341
- PrimaryAccent: string;
1342
- DarkBackground: string;
1343
- DarkBar: string;
1344
- DarkHover: string;
1345
- DarkPrimary: string;
1346
- DarkSecondary: string;
1347
- LightBackground: string;
1348
- LightBar: string;
1349
- LightDisabled: string;
1350
- LightDivider: string;
1351
- LightDividerNew: string;
1352
- LightHint: string;
1353
- LightHover: string;
1354
- LightPrimary: string;
1355
- LightSecondary: string;
1356
- BorderGrey: string;
1357
- Blue: string;
1358
- BlueFade: string;
1359
- Green: string;
1360
- GreenFade: string;
1361
- GreenBackground: string;
1362
- Red: string;
1363
- RedFade: string;
1364
- Yellow: string;
1365
- YellowFade: string;
1366
- YellowHighlight: string;
1367
- Orange: string;
1368
- OrangeFill: string;
1369
- OrangeBackground: string;
1370
- Error: string;
1371
- ErrorFade: string;
1372
- ErrorBackground: string;
1373
- DraggableDraggingBackground: string;
1374
- Aquamarine: string;
1375
- Azure: string;
1376
- AzureNew: string;
1377
- AzureFade: string;
1378
- AzureHighlight: string;
1379
- Silver: string;
1380
- BlueNavy: string;
1381
- Black: string;
1382
- TurquoiseBlue: string;
1383
- SummerSky: string;
1384
- Mondo: string;
1385
- HeavyMetal: string;
1386
- BokaraGrey: string;
1387
- Cyan: string;
1388
- Eucalyptus: string;
1389
- Flamingo: string;
1390
- Zorba: string;
1391
- Flint: string;
1392
- Maya: string;
1393
- Bondi: string;
1394
- Emerald: string;
1395
- Carissma: string;
1396
- Solitude: string;
1397
- WhiteSmoke: string;
1398
- Violet: string;
1399
- FireBrick: string;
1400
- Purple: string;
1401
- Buckthorn: string;
1402
- };
1403
- readonly gradient: {
1404
- main: string;
1405
- neutral: string;
1406
- };
1407
- }>;
1408
- export declare const FilterSeparator: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}, {
1409
- readonly space: string[];
1410
- readonly palette: {
1411
- success: string[];
1412
- warning: string[];
1413
- error: string[];
1414
- primary: string[];
1415
- secondary: string[];
1416
- neutral: string[];
1417
- };
1418
- readonly fontFamily: {
1419
- body: string;
1420
- monospace: string;
1421
- };
1422
- readonly fontSize: string[];
1423
- readonly lineHeight: number[];
1424
- readonly radius: string[];
1425
- readonly borderWidth: string[];
1426
- readonly grid: number[];
1427
- readonly shadows: {
1428
- small: string;
1429
- big: string;
1430
- pill: string;
1431
- bigCentered: string;
1432
- popover: string;
1433
- secondaryNavActiveItem: string;
1434
- };
1435
- readonly sizes: {
1436
- PageHeaderIcon: number;
1437
- };
1438
- readonly zIndex: {
1439
- Base: number;
1440
- Overlay: number;
1441
- FormControl: number;
1442
- SecondaryNav: number;
1443
- SecondaryNavActiveItem: number;
1444
- PrimaryNav: number;
1445
- PopOver: number;
1446
- PageHeaderSearch: number;
1447
- Modal: number;
1448
- Tether: number;
1449
- GlobalNav: number;
1450
- Toast: number;
1451
- };
1452
- readonly color: {
1453
- Dune: string;
1454
- CuriousBlue: string;
1455
- FlushMahogany: string;
1456
- Maroon: string;
1457
- PinkSwan: string;
1458
- Matisse: string;
1459
- HummingBird: string;
1460
- Primary: string;
1461
- PrimaryContrast: string;
1462
- PrimaryFade: string;
1463
- PrimaryLight: string;
1464
- PrimaryLightFade: string;
1465
- PrimaryLightHighlight: string;
1466
- PrimaryAccent: string;
1467
- DarkBackground: string;
1468
- DarkBar: string;
1469
- DarkHover: string;
1470
- DarkPrimary: string;
1471
- DarkSecondary: string;
1472
- LightBackground: string;
1473
- LightBar: string;
1474
- LightDisabled: string;
1475
- LightDivider: string;
1476
- LightDividerNew: string;
1477
- LightHint: string;
1478
- LightHover: string;
1479
- LightPrimary: string;
1480
- LightSecondary: string;
1481
- BorderGrey: string;
1482
- Blue: string;
1483
- BlueFade: string;
1484
- Green: string;
1485
- GreenFade: string;
1486
- GreenBackground: string;
1487
- Red: string;
1488
- RedFade: string;
1489
- Yellow: string;
1490
- YellowFade: string;
1491
- YellowHighlight: string;
1492
- Orange: string;
1493
- OrangeFill: string;
1494
- OrangeBackground: string;
1495
- Error: string;
1496
- ErrorFade: string;
1497
- ErrorBackground: string;
1498
- DraggableDraggingBackground: string;
1499
- Aquamarine: string;
1500
- Azure: string;
1501
- AzureNew: string;
1502
- AzureFade: string;
1503
- AzureHighlight: string;
1504
- Silver: string;
1505
- BlueNavy: string;
1506
- Black: string;
1507
- TurquoiseBlue: string;
1508
- SummerSky: string;
1509
- Mondo: string;
1510
- HeavyMetal: string;
1511
- BokaraGrey: string;
1512
- Cyan: string;
1513
- Eucalyptus: string;
1514
- Flamingo: string;
1515
- Zorba: string;
1516
- Flint: string;
1517
- Maya: string;
1518
- Bondi: string;
1519
- Emerald: string;
1520
- Carissma: string;
1521
- Solitude: string;
1522
- WhiteSmoke: string;
1523
- Violet: string;
1524
- FireBrick: string;
1525
- Purple: string;
1526
- Buckthorn: string;
1527
- };
1528
- readonly gradient: {
1529
- main: string;
1530
- neutral: string;
1531
- };
1532
- }>;
1533
- declare type SortButtonProps = {
1534
- active?: boolean;
1535
- icon?: React.ReactNode;
1536
- label: string;
1537
- onClick: () => void;
1538
- };
1539
- export declare const SortButton: StyledComponent<any, SortButtonProps, {
1540
- readonly space: string[];
1541
- readonly palette: {
1542
- success: string[];
1543
- warning: string[];
1544
- error: string[];
1545
- primary: string[];
1546
- secondary: string[];
1547
- neutral: string[];
1548
- };
1549
- readonly fontFamily: {
1550
- body: string;
1551
- monospace: string;
1552
- };
1553
- readonly fontSize: string[];
1554
- readonly lineHeight: number[];
1555
- readonly radius: string[];
1556
- readonly borderWidth: string[];
1557
- readonly grid: number[];
1558
- readonly shadows: {
1559
- small: string;
1560
- big: string;
1561
- pill: string;
1562
- bigCentered: string;
1563
- popover: string;
1564
- secondaryNavActiveItem: string;
1565
- };
1566
- readonly sizes: {
1567
- PageHeaderIcon: number;
1568
- };
1569
- readonly zIndex: {
1570
- Base: number;
1571
- Overlay: number;
1572
- FormControl: number;
1573
- SecondaryNav: number;
1574
- SecondaryNavActiveItem: number;
1575
- PrimaryNav: number;
1576
- PopOver: number;
1577
- PageHeaderSearch: number;
1578
- Modal: number;
1579
- Tether: number;
1580
- GlobalNav: number;
1581
- Toast: number;
1582
- };
1583
- readonly color: {
1584
- Dune: string;
1585
- CuriousBlue: string;
1586
- FlushMahogany: string;
1587
- Maroon: string;
1588
- PinkSwan: string;
1589
- Matisse: string;
1590
- HummingBird: string;
1591
- Primary: string;
1592
- PrimaryContrast: string;
1593
- PrimaryFade: string;
1594
- PrimaryLight: string;
1595
- PrimaryLightFade: string;
1596
- PrimaryLightHighlight: string;
1597
- PrimaryAccent: string;
1598
- DarkBackground: string;
1599
- DarkBar: string;
1600
- DarkHover: string;
1601
- DarkPrimary: string;
1602
- DarkSecondary: string;
1603
- LightBackground: string;
1604
- LightBar: string;
1605
- LightDisabled: string;
1606
- LightDivider: string;
1607
- LightDividerNew: string;
1608
- LightHint: string;
1609
- LightHover: string;
1610
- LightPrimary: string;
1611
- LightSecondary: string;
1612
- BorderGrey: string;
1613
- Blue: string;
1614
- BlueFade: string;
1615
- Green: string;
1616
- GreenFade: string;
1617
- GreenBackground: string;
1618
- Red: string;
1619
- RedFade: string;
1620
- Yellow: string;
1621
- YellowFade: string;
1622
- YellowHighlight: string;
1623
- Orange: string;
1624
- OrangeFill: string;
1625
- OrangeBackground: string;
1626
- Error: string;
1627
- ErrorFade: string;
1628
- ErrorBackground: string;
1629
- DraggableDraggingBackground: string;
1630
- Aquamarine: string;
1631
- Azure: string;
1632
- AzureNew: string;
1633
- AzureFade: string;
1634
- AzureHighlight: string;
1635
- Silver: string;
1636
- BlueNavy: string;
1637
- Black: string;
1638
- TurquoiseBlue: string;
1639
- SummerSky: string;
1640
- Mondo: string;
1641
- HeavyMetal: string;
1642
- BokaraGrey: string;
1643
- Cyan: string;
1644
- Eucalyptus: string;
1645
- Flamingo: string;
1646
- Zorba: string;
1647
- Flint: string;
1648
- Maya: string;
1649
- Bondi: string;
1650
- Emerald: string;
1651
- Carissma: string;
1652
- Solitude: string;
1653
- WhiteSmoke: string;
1654
- Violet: string;
1655
- FireBrick: string;
1656
- Purple: string;
1657
- Buckthorn: string;
1658
- };
1659
- readonly gradient: {
1660
- main: string;
1661
- neutral: string;
1662
- };
1663
- }>;
1664
- declare type InlineInputProps = {
1665
- textAlign?: 'right' | 'left';
1666
- };
1667
- export declare const InlineInput: StyledComponent<Pick<import("../Input").InputProps<"number" | "password" | "textarea" | "text" | "url" | "email" | "datetime-local">, "max" | "required" | "hidden" | "dir" | "form" | "slot" | "style" | "title" | "pattern" | "color" | "multiple" | "size" | "inline" | "wrap" | "children" | "list" | "step" | "height" | "translate" | "width" | "readOnly" | "checked" | "name" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "min" | "crossOrigin" | "accept" | "alt" | "autoComplete" | "capture" | "maxLength" | "minLength" | "src" | "variant" | "cols" | "dirName" | "rows" | "inputRef"> & Partial<Pick<import("../Input").InputProps<"number" | "password" | "textarea" | "text" | "url" | "email" | "datetime-local">, "disabled" | "invalid" | "type" | "placeholder" | "data-instrumentation">> & Partial<Pick<{
1668
- invalid: boolean;
1669
- disabled: boolean;
1670
- 'data-instrumentation': string;
1671
- placeholder: string;
1672
- type: string;
1673
- }, never>>, InlineInputProps, {
1674
- readonly space: string[];
1675
- readonly palette: {
1676
- success: string[];
1677
- warning: string[];
1678
- error: string[];
1679
- primary: string[];
1680
- secondary: string[];
1681
- neutral: string[];
1682
- };
1683
- readonly fontFamily: {
1684
- body: string;
1685
- monospace: string;
1686
- };
1687
- readonly fontSize: string[];
1688
- readonly lineHeight: number[];
1689
- readonly radius: string[];
1690
- readonly borderWidth: string[];
1691
- readonly grid: number[];
1692
- readonly shadows: {
1693
- small: string;
1694
- big: string;
1695
- pill: string;
1696
- bigCentered: string;
1697
- popover: string;
1698
- secondaryNavActiveItem: string;
1699
- };
1700
- readonly sizes: {
1701
- PageHeaderIcon: number;
1702
- };
1703
- readonly zIndex: {
1704
- Base: number;
1705
- Overlay: number;
1706
- FormControl: number;
1707
- SecondaryNav: number;
1708
- SecondaryNavActiveItem: number;
1709
- PrimaryNav: number;
1710
- PopOver: number;
1711
- PageHeaderSearch: number;
1712
- Modal: number;
1713
- Tether: number;
1714
- GlobalNav: number;
1715
- Toast: number;
1716
- };
1717
- readonly color: {
1718
- Dune: string;
1719
- CuriousBlue: string;
1720
- FlushMahogany: string;
1721
- Maroon: string;
1722
- PinkSwan: string;
1723
- Matisse: string;
1724
- HummingBird: string;
1725
- Primary: string;
1726
- PrimaryContrast: string;
1727
- PrimaryFade: string;
1728
- PrimaryLight: string;
1729
- PrimaryLightFade: string;
1730
- PrimaryLightHighlight: string;
1731
- PrimaryAccent: string;
1732
- DarkBackground: string;
1733
- DarkBar: string;
1734
- DarkHover: string;
1735
- DarkPrimary: string;
1736
- DarkSecondary: string;
1737
- LightBackground: string;
1738
- LightBar: string;
1739
- LightDisabled: string;
1740
- LightDivider: string;
1741
- LightDividerNew: string;
1742
- LightHint: string;
1743
- LightHover: string;
1744
- LightPrimary: string;
1745
- LightSecondary: string;
1746
- BorderGrey: string;
1747
- Blue: string;
1748
- BlueFade: string;
1749
- Green: string;
1750
- GreenFade: string;
1751
- GreenBackground: string;
1752
- Red: string;
1753
- RedFade: string;
1754
- Yellow: string;
1755
- YellowFade: string;
1756
- YellowHighlight: string;
1757
- Orange: string;
1758
- OrangeFill: string;
1759
- OrangeBackground: string;
1760
- Error: string;
1761
- ErrorFade: string;
1762
- ErrorBackground: string;
1763
- DraggableDraggingBackground: string;
1764
- Aquamarine: string;
1765
- Azure: string;
1766
- AzureNew: string;
1767
- AzureFade: string;
1768
- AzureHighlight: string;
1769
- Silver: string;
1770
- BlueNavy: string;
1771
- Black: string;
1772
- TurquoiseBlue: string;
1773
- SummerSky: string;
1774
- Mondo: string;
1775
- HeavyMetal: string;
1776
- BokaraGrey: string;
1777
- Cyan: string;
1778
- Eucalyptus: string;
1779
- Flamingo: string;
1780
- Zorba: string;
1781
- Flint: string;
1782
- Maya: string;
1783
- Bondi: string;
1784
- Emerald: string;
1785
- Carissma: string;
1786
- Solitude: string;
1787
- WhiteSmoke: string;
1788
- Violet: string;
1789
- FireBrick: string;
1790
- Purple: string;
1791
- Buckthorn: string;
1792
- };
1793
- readonly gradient: {
1794
- main: string;
1795
- neutral: string;
1796
- };
1797
- }>;
1798
- export declare const SelectWrapper: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}, {
1799
- readonly space: string[];
1800
- readonly palette: {
1801
- success: string[];
1802
- warning: string[];
1803
- error: string[];
1804
- primary: string[];
1805
- secondary: string[];
1806
- neutral: string[];
1807
- };
1808
- readonly fontFamily: {
1809
- body: string;
1810
- monospace: string;
1811
- };
1812
- readonly fontSize: string[];
1813
- readonly lineHeight: number[];
1814
- readonly radius: string[];
1815
- readonly borderWidth: string[];
1816
- readonly grid: number[];
1817
- readonly shadows: {
1818
- small: string;
1819
- big: string;
1820
- pill: string;
1821
- bigCentered: string;
1822
- popover: string;
1823
- secondaryNavActiveItem: string;
1824
- };
1825
- readonly sizes: {
1826
- PageHeaderIcon: number;
1827
- };
1828
- readonly zIndex: {
1829
- Base: number;
1830
- Overlay: number;
1831
- FormControl: number;
1832
- SecondaryNav: number;
1833
- SecondaryNavActiveItem: number;
1834
- PrimaryNav: number;
1835
- PopOver: number;
1836
- PageHeaderSearch: number;
1837
- Modal: number;
1838
- Tether: number;
1839
- GlobalNav: number;
1840
- Toast: number;
1841
- };
1842
- readonly color: {
1843
- Dune: string;
1844
- CuriousBlue: string;
1845
- FlushMahogany: string;
1846
- Maroon: string;
1847
- PinkSwan: string;
1848
- Matisse: string;
1849
- HummingBird: string;
1850
- Primary: string;
1851
- PrimaryContrast: string;
1852
- PrimaryFade: string;
1853
- PrimaryLight: string;
1854
- PrimaryLightFade: string;
1855
- PrimaryLightHighlight: string;
1856
- PrimaryAccent: string;
1857
- DarkBackground: string;
1858
- DarkBar: string;
1859
- DarkHover: string;
1860
- DarkPrimary: string;
1861
- DarkSecondary: string;
1862
- LightBackground: string;
1863
- LightBar: string;
1864
- LightDisabled: string;
1865
- LightDivider: string;
1866
- LightDividerNew: string;
1867
- LightHint: string;
1868
- LightHover: string;
1869
- LightPrimary: string;
1870
- LightSecondary: string;
1871
- BorderGrey: string;
1872
- Blue: string;
1873
- BlueFade: string;
1874
- Green: string;
1875
- GreenFade: string;
1876
- GreenBackground: string;
1877
- Red: string;
1878
- RedFade: string;
1879
- Yellow: string;
1880
- YellowFade: string;
1881
- YellowHighlight: string;
1882
- Orange: string;
1883
- OrangeFill: string;
1884
- OrangeBackground: string;
1885
- Error: string;
1886
- ErrorFade: string;
1887
- ErrorBackground: string;
1888
- DraggableDraggingBackground: string;
1889
- Aquamarine: string;
1890
- Azure: string;
1891
- AzureNew: string;
1892
- AzureFade: string;
1893
- AzureHighlight: string;
1894
- Silver: string;
1895
- BlueNavy: string;
1896
- Black: string;
1897
- TurquoiseBlue: string;
1898
- SummerSky: string;
1899
- Mondo: string;
1900
- HeavyMetal: string;
1901
- BokaraGrey: string;
1902
- Cyan: string;
1903
- Eucalyptus: string;
1904
- Flamingo: string;
1905
- Zorba: string;
1906
- Flint: string;
1907
- Maya: string;
1908
- Bondi: string;
1909
- Emerald: string;
1910
- Carissma: string;
1911
- Solitude: string;
1912
- WhiteSmoke: string;
1913
- Violet: string;
1914
- FireBrick: string;
1915
- Purple: string;
1916
- Buckthorn: string;
1917
- };
1918
- readonly gradient: {
1919
- main: string;
1920
- neutral: string;
1921
- };
1922
- }>;
1923
- export declare const SymbolDropdownIcon: StyledComponent<(Pick<React.SVGProps<SVGSVGElement>, "string" | "max" | "accumulate" | "origin" | "end" | "alphabetic" | "hanging" | "ideographic" | "media" | "style" | "clipPath" | "filter" | "mask" | "result" | "fill" | "values" | "local" | "color" | "clip" | "stroke" | "mathematical" | "additive" | "key" | "children" | "cursor" | "direction" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "offset" | "textDecoration" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "type" | "radius" | "name" | "className" | "id" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "target" | "href" | "method" | "min" | "crossOrigin" | "accentHeight" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan"> & React.RefAttributes<React.Component<React.SVGProps<SVGSVGElement>, any, any>>) | (Pick<React.PropsWithChildren<React.SVGProps<SVGSVGElement>>, "string" | "max" | "accumulate" | "origin" | "end" | "alphabetic" | "hanging" | "ideographic" | "media" | "style" | "clipPath" | "filter" | "mask" | "result" | "fill" | "values" | "local" | "color" | "clip" | "stroke" | "mathematical" | "additive" | "key" | "children" | "cursor" | "direction" | "display" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "overflow" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "offset" | "textDecoration" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "type" | "radius" | "name" | "className" | "id" | "lang" | "tabIndex" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "target" | "href" | "method" | "min" | "crossOrigin" | "accentHeight" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan"> & {
1924
- ref?: ((instance: SVGSVGElement | null) => void) | React.RefObject<SVGSVGElement> | null | undefined;
1925
- }), {}, {
1926
- readonly space: string[];
1927
- readonly palette: {
1928
- success: string[];
1929
- warning: string[];
1930
- error: string[];
1931
- primary: string[];
1932
- secondary: string[];
1933
- neutral: string[];
1934
- };
1935
- readonly fontFamily: {
1936
- body: string;
1937
- monospace: string;
1938
- };
1939
- readonly fontSize: string[];
1940
- readonly lineHeight: number[];
1941
- readonly radius: string[];
1942
- readonly borderWidth: string[];
1943
- readonly grid: number[];
1944
- readonly shadows: {
1945
- small: string;
1946
- big: string;
1947
- pill: string;
1948
- bigCentered: string;
1949
- popover: string;
1950
- secondaryNavActiveItem: string;
1951
- };
1952
- readonly sizes: {
1953
- PageHeaderIcon: number;
1954
- };
1955
- readonly zIndex: {
1956
- Base: number;
1957
- Overlay: number;
1958
- FormControl: number;
1959
- SecondaryNav: number;
1960
- SecondaryNavActiveItem: number;
1961
- PrimaryNav: number;
1962
- PopOver: number;
1963
- PageHeaderSearch: number;
1964
- Modal: number;
1965
- Tether: number;
1966
- GlobalNav: number;
1967
- Toast: number;
1968
- };
1969
- readonly color: {
1970
- Dune: string;
1971
- CuriousBlue: string;
1972
- FlushMahogany: string;
1973
- Maroon: string;
1974
- PinkSwan: string;
1975
- Matisse: string;
1976
- HummingBird: string;
1977
- Primary: string;
1978
- PrimaryContrast: string;
1979
- PrimaryFade: string;
1980
- PrimaryLight: string;
1981
- PrimaryLightFade: string;
1982
- PrimaryLightHighlight: string;
1983
- PrimaryAccent: string;
1984
- DarkBackground: string;
1985
- DarkBar: string;
1986
- DarkHover: string;
1987
- DarkPrimary: string;
1988
- DarkSecondary: string;
1989
- LightBackground: string;
1990
- LightBar: string;
1991
- LightDisabled: string;
1992
- LightDivider: string;
1993
- LightDividerNew: string;
1994
- LightHint: string;
1995
- LightHover: string;
1996
- LightPrimary: string;
1997
- LightSecondary: string;
1998
- BorderGrey: string;
1999
- Blue: string;
2000
- BlueFade: string;
2001
- Green: string;
2002
- GreenFade: string;
2003
- GreenBackground: string;
2004
- Red: string;
2005
- RedFade: string;
2006
- Yellow: string;
2007
- YellowFade: string;
2008
- YellowHighlight: string;
2009
- Orange: string;
2010
- OrangeFill: string;
2011
- OrangeBackground: string;
2012
- Error: string;
2013
- ErrorFade: string;
2014
- ErrorBackground: string;
2015
- DraggableDraggingBackground: string;
2016
- Aquamarine: string;
2017
- Azure: string;
2018
- AzureNew: string;
2019
- AzureFade: string;
2020
- AzureHighlight: string;
2021
- Silver: string;
2022
- BlueNavy: string;
2023
- Black: string;
2024
- TurquoiseBlue: string;
2025
- SummerSky: string;
2026
- Mondo: string;
2027
- HeavyMetal: string;
2028
- BokaraGrey: string;
2029
- Cyan: string;
2030
- Eucalyptus: string;
2031
- Flamingo: string;
2032
- Zorba: string;
2033
- Flint: string;
2034
- Maya: string;
2035
- Bondi: string;
2036
- Emerald: string;
2037
- Carissma: string;
2038
- Solitude: string;
2039
- WhiteSmoke: string;
2040
- Violet: string;
2041
- FireBrick: string;
2042
- Purple: string;
2043
- Buckthorn: string;
2044
- };
2045
- readonly gradient: {
2046
- main: string;
2047
- neutral: string;
2048
- };
2049
- }>;
2050
- declare type CellBodyProps = {
2051
- type: string;
25
+ export declare const ColumnHeaderContainer: StyledComponent<{
26
+ theme?: import("@emotion/react").Theme | undefined;
27
+ as?: React.ElementType<any> | undefined;
28
+ } & ColumnHeaderContainerProps, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
29
+ export declare const ColumnHeaderLabel: StyledComponent<{
30
+ theme?: import("@emotion/react").Theme | undefined;
31
+ as?: React.ElementType<any> | undefined;
32
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
33
+ export declare const ColumnHeaderIcon: StyledComponent<{
34
+ theme?: import("@emotion/react").Theme | undefined;
35
+ as?: React.ElementType<any> | undefined;
36
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
37
+ declare type CellProps = {
38
+ editable?: boolean;
39
+ indent?: boolean;
40
+ input?: boolean;
41
+ isLast?: boolean;
42
+ modified?: boolean;
2052
43
  rightAlign?: boolean;
44
+ invalid?: boolean;
45
+ };
46
+ export declare const Cell: StyledComponent<{
47
+ theme?: import("@emotion/react").Theme | undefined;
48
+ as?: React.ElementType<any> | undefined;
49
+ } & CellProps, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
50
+ declare type RowProps = {
51
+ zebra?: boolean;
52
+ selected?: boolean;
53
+ selecting?: boolean;
54
+ header?: boolean;
55
+ };
56
+ export declare const Row: StyledComponent<{
57
+ theme?: import("@emotion/react").Theme | undefined;
58
+ as?: React.ElementType<any> | undefined;
59
+ } & RowProps, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
60
+ export declare const TableContainer: StyledComponent<any, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
61
+ export declare const FilterHeader: StyledComponent<{
62
+ theme?: import("@emotion/react").Theme | undefined;
63
+ as?: React.ElementType<any> | undefined;
64
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
65
+ export declare const FilterButtons: StyledComponent<{
66
+ theme?: import("@emotion/react").Theme | undefined;
67
+ as?: React.ElementType<any> | undefined;
68
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
69
+ export declare const RightFilterButton: StyledComponent<any, {}, {}>;
70
+ export declare const FilterSeparator: StyledComponent<{
71
+ theme?: import("@emotion/react").Theme | undefined;
72
+ as?: React.ElementType<any> | undefined;
73
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
74
+ declare type SortButtonProps = {
75
+ active?: boolean;
76
+ icon?: React.ReactNode;
77
+ label: string;
78
+ onClick: () => void;
2053
79
  };
2054
- export declare const CellBody: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, CellBodyProps, {
2055
- readonly space: string[];
2056
- readonly palette: {
2057
- success: string[];
2058
- warning: string[];
2059
- error: string[];
2060
- primary: string[];
2061
- secondary: string[];
2062
- neutral: string[];
2063
- };
2064
- readonly fontFamily: {
2065
- body: string;
2066
- monospace: string;
2067
- };
2068
- readonly fontSize: string[];
2069
- readonly lineHeight: number[];
2070
- readonly radius: string[];
2071
- readonly borderWidth: string[];
2072
- readonly grid: number[];
2073
- readonly shadows: {
2074
- small: string;
2075
- big: string;
2076
- pill: string;
2077
- bigCentered: string;
2078
- popover: string;
2079
- secondaryNavActiveItem: string;
2080
- };
2081
- readonly sizes: {
2082
- PageHeaderIcon: number;
2083
- };
2084
- readonly zIndex: {
2085
- Base: number;
2086
- Overlay: number;
2087
- FormControl: number;
2088
- SecondaryNav: number;
2089
- SecondaryNavActiveItem: number;
2090
- PrimaryNav: number;
2091
- PopOver: number;
2092
- PageHeaderSearch: number;
2093
- Modal: number;
2094
- Tether: number;
2095
- GlobalNav: number;
2096
- Toast: number;
2097
- };
2098
- readonly color: {
2099
- Dune: string;
2100
- CuriousBlue: string;
2101
- FlushMahogany: string;
2102
- Maroon: string;
2103
- PinkSwan: string;
2104
- Matisse: string;
2105
- HummingBird: string;
2106
- Primary: string;
2107
- PrimaryContrast: string;
2108
- PrimaryFade: string;
2109
- PrimaryLight: string;
2110
- PrimaryLightFade: string;
2111
- PrimaryLightHighlight: string;
2112
- PrimaryAccent: string;
2113
- DarkBackground: string;
2114
- DarkBar: string;
2115
- DarkHover: string;
2116
- DarkPrimary: string;
2117
- DarkSecondary: string;
2118
- LightBackground: string;
2119
- LightBar: string;
2120
- LightDisabled: string;
2121
- LightDivider: string;
2122
- LightDividerNew: string;
2123
- LightHint: string;
2124
- LightHover: string;
2125
- LightPrimary: string;
2126
- LightSecondary: string;
2127
- BorderGrey: string;
2128
- Blue: string;
2129
- BlueFade: string;
2130
- Green: string;
2131
- GreenFade: string;
2132
- GreenBackground: string;
2133
- Red: string;
2134
- RedFade: string;
2135
- Yellow: string;
2136
- YellowFade: string;
2137
- YellowHighlight: string;
2138
- Orange: string;
2139
- OrangeFill: string;
2140
- OrangeBackground: string;
2141
- Error: string;
2142
- ErrorFade: string;
2143
- ErrorBackground: string;
2144
- DraggableDraggingBackground: string;
2145
- Aquamarine: string;
2146
- Azure: string;
2147
- AzureNew: string;
2148
- AzureFade: string;
2149
- AzureHighlight: string;
2150
- Silver: string;
2151
- BlueNavy: string;
2152
- Black: string;
2153
- TurquoiseBlue: string;
2154
- SummerSky: string;
2155
- Mondo: string;
2156
- HeavyMetal: string;
2157
- BokaraGrey: string;
2158
- Cyan: string;
2159
- Eucalyptus: string;
2160
- Flamingo: string;
2161
- Zorba: string;
2162
- Flint: string;
2163
- Maya: string;
2164
- Bondi: string;
2165
- Emerald: string;
2166
- Carissma: string;
2167
- Solitude: string;
2168
- WhiteSmoke: string;
2169
- Violet: string;
2170
- FireBrick: string;
2171
- Purple: string;
2172
- Buckthorn: string;
2173
- };
2174
- readonly gradient: {
2175
- main: string;
2176
- neutral: string;
2177
- };
2178
- }>;
2179
- export declare const Spacer: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}, {
2180
- readonly space: string[];
2181
- readonly palette: {
2182
- success: string[];
2183
- warning: string[];
2184
- error: string[];
2185
- primary: string[];
2186
- secondary: string[];
2187
- neutral: string[];
2188
- };
2189
- readonly fontFamily: {
2190
- body: string;
2191
- monospace: string;
2192
- };
2193
- readonly fontSize: string[];
2194
- readonly lineHeight: number[];
2195
- readonly radius: string[];
2196
- readonly borderWidth: string[];
2197
- readonly grid: number[];
2198
- readonly shadows: {
2199
- small: string;
2200
- big: string;
2201
- pill: string;
2202
- bigCentered: string;
2203
- popover: string;
2204
- secondaryNavActiveItem: string;
2205
- };
2206
- readonly sizes: {
2207
- PageHeaderIcon: number;
2208
- };
2209
- readonly zIndex: {
2210
- Base: number;
2211
- Overlay: number;
2212
- FormControl: number;
2213
- SecondaryNav: number;
2214
- SecondaryNavActiveItem: number;
2215
- PrimaryNav: number;
2216
- PopOver: number;
2217
- PageHeaderSearch: number;
2218
- Modal: number;
2219
- Tether: number;
2220
- GlobalNav: number;
2221
- Toast: number;
2222
- };
2223
- readonly color: {
2224
- Dune: string;
2225
- CuriousBlue: string;
2226
- FlushMahogany: string;
2227
- Maroon: string;
2228
- PinkSwan: string;
2229
- Matisse: string;
2230
- HummingBird: string;
2231
- Primary: string;
2232
- PrimaryContrast: string;
2233
- PrimaryFade: string;
2234
- PrimaryLight: string;
2235
- PrimaryLightFade: string;
2236
- PrimaryLightHighlight: string;
2237
- PrimaryAccent: string;
2238
- DarkBackground: string;
2239
- DarkBar: string;
2240
- DarkHover: string;
2241
- DarkPrimary: string;
2242
- DarkSecondary: string;
2243
- LightBackground: string;
2244
- LightBar: string;
2245
- LightDisabled: string;
2246
- LightDivider: string;
2247
- LightDividerNew: string;
2248
- LightHint: string;
2249
- LightHover: string;
2250
- LightPrimary: string;
2251
- LightSecondary: string;
2252
- BorderGrey: string;
2253
- Blue: string;
2254
- BlueFade: string;
2255
- Green: string;
2256
- GreenFade: string;
2257
- GreenBackground: string;
2258
- Red: string;
2259
- RedFade: string;
2260
- Yellow: string;
2261
- YellowFade: string;
2262
- YellowHighlight: string;
2263
- Orange: string;
2264
- OrangeFill: string;
2265
- OrangeBackground: string;
2266
- Error: string;
2267
- ErrorFade: string;
2268
- ErrorBackground: string;
2269
- DraggableDraggingBackground: string;
2270
- Aquamarine: string;
2271
- Azure: string;
2272
- AzureNew: string;
2273
- AzureFade: string;
2274
- AzureHighlight: string;
2275
- Silver: string;
2276
- BlueNavy: string;
2277
- Black: string;
2278
- TurquoiseBlue: string;
2279
- SummerSky: string;
2280
- Mondo: string;
2281
- HeavyMetal: string;
2282
- BokaraGrey: string;
2283
- Cyan: string;
2284
- Eucalyptus: string;
2285
- Flamingo: string;
2286
- Zorba: string;
2287
- Flint: string;
2288
- Maya: string;
2289
- Bondi: string;
2290
- Emerald: string;
2291
- Carissma: string;
2292
- Solitude: string;
2293
- WhiteSmoke: string;
2294
- Violet: string;
2295
- FireBrick: string;
2296
- Purple: string;
2297
- Buckthorn: string;
2298
- };
2299
- readonly gradient: {
2300
- main: string;
2301
- neutral: string;
2302
- };
80
+ export declare const SortButton: StyledComponent<{
81
+ icon: React.ReactNode;
82
+ label: string;
83
+ } & {
84
+ theme?: import("@emotion/react").Theme | undefined;
85
+ } & SortButtonProps, {}, {}>;
86
+ declare type InlineInputProps = {
87
+ textAlign?: 'right' | 'left';
88
+ };
89
+ export declare const InlineInput: StyledComponent<{
90
+ className?: string | undefined;
91
+ disabled?: boolean | undefined;
92
+ 'data-instrumentation'?: string | undefined;
93
+ id?: string | undefined;
94
+ inline?: boolean | undefined;
95
+ inputRef?: any;
96
+ invalid?: boolean | undefined;
97
+ max?: number | undefined;
98
+ min?: number | undefined;
99
+ name: string;
100
+ onBlur?: ((event: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void) | undefined;
101
+ onChange: (arg0: {
102
+ name: string;
103
+ value?: string | number | undefined;
104
+ }) => void;
105
+ placeholder?: string | undefined;
106
+ type?: ("number" | ("password" | "textarea" | "text" | "url" | "email" | "datetime-local")) | undefined;
107
+ value: string | number;
108
+ variant?: ("primary" | "secondary" | {
109
+ borderBottomColor: string;
110
+ color: string;
111
+ focusBorderColor: string;
112
+ placeholderColor: string;
113
+ }) | undefined;
114
+ } & Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange"> & Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "onChange"> & {
115
+ theme?: import("@emotion/react").Theme | undefined;
116
+ } & InlineInputProps, {}, {
117
+ ref?: React.Ref<Input<"number" | ("password" | "textarea" | "text" | "url" | "email" | "datetime-local")>> | undefined;
2303
118
  }>;
2304
- export declare const OperatorSelect: StyledComponent<import("../Select").SelectComponentProps | ({
2305
- arrowIcon?: React.ComponentClass<import("react-select").IndicatorProps<any>, any> | React.FunctionComponent<import("react-select").IndicatorProps<any>> | undefined;
119
+ export declare const SelectWrapper: StyledComponent<{
120
+ theme?: import("@emotion/react").Theme | undefined;
121
+ as?: React.ElementType<any> | undefined;
122
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
123
+ export declare const SymbolDropdownIcon: StyledComponent<((React.SVGProps<SVGSVGElement> | (React.SVGProps<SVGSVGElement> & {
124
+ children?: React.ReactNode;
125
+ })) & {
126
+ theme?: import("@emotion/react").Theme | undefined;
127
+ }) & {}, {}, {}>;
128
+ declare type CellBodyProps = {
129
+ type: string;
130
+ rightAlign?: boolean;
131
+ };
132
+ export declare const CellBody: StyledComponent<{
133
+ theme?: import("@emotion/react").Theme | undefined;
134
+ as?: React.ElementType<any> | undefined;
135
+ } & CellBodyProps, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
136
+ export declare const Spacer: StyledComponent<{
137
+ theme?: import("@emotion/react").Theme | undefined;
138
+ as?: React.ElementType<any> | undefined;
139
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
140
+ export declare const OperatorSelect: StyledComponent<((import("../Select").SelectComponentProps | ({
141
+ arrowIcon?: import("react-select").IndicatorComponentType<any> | undefined;
2306
142
  closeMenuOnSelect?: boolean | undefined;
2307
143
  componentStyles?: import("../Select").SelectComponentStyles | undefined;
2308
144
  creatable?: boolean | undefined;
@@ -2312,8 +148,8 @@ export declare const OperatorSelect: StyledComponent<import("../Select").SelectC
2312
148
  'data-instrumentation'?: string | undefined;
2313
149
  disabled?: boolean | undefined;
2314
150
  getIconForOption?: ((props: import("../Select/components").OptionRendererProps) => React.ReactNode) | undefined;
2315
- getLabelForOption?: ((option: string | number | boolean) => string) | undefined;
2316
- getOptgroupForOption?: ((value?: string | number | boolean | undefined) => string) | undefined;
151
+ getLabelForOption?: ((option: import("../Select").OptionValue) => string) | undefined;
152
+ getOptgroupForOption?: ((value?: import("../Select").OptionValue | undefined) => string) | undefined;
2317
153
  getSingleValueSecondaryText?: ((value?: string | undefined) => string) | undefined;
2318
154
  guessMenuWidth?: boolean | undefined;
2319
155
  invalid?: boolean | undefined;
@@ -2333,14 +169,17 @@ export declare const OperatorSelect: StyledComponent<import("../Select").SelectC
2333
169
  searchOptGroup?: boolean | undefined;
2334
170
  textOnly?: boolean | undefined;
2335
171
  selectRef?: React.MutableRefObject<HTMLInputElement | null> | ((instance: HTMLInputElement | null) => void) | undefined;
2336
- style?: import("@emotion/serialize").CSSObject | undefined;
172
+ style?: import("@emotion/styled").CSSObject | undefined;
2337
173
  value?: string | number | any[] | undefined;
2338
174
  warning?: boolean | undefined;
2339
175
  width?: string | undefined;
2340
- } & Pick<import("react-select").Props<{
176
+ } & Omit<import("react-select").Props<{
2341
177
  label: string;
2342
178
  value: string;
2343
- }>, string | number> & import("../Select/components/CreatableSelect").CreatableReactSelectProps), {}, {
179
+ }>, "theme"> & import("../Select/components/CreatableSelect").CreatableReactSelectProps)) & {
180
+ theme?: import("@emotion/react").Theme | undefined;
181
+ }) & {}, {}, {}>;
182
+ export declare const CategoryInput: typeof Input & StyledComponent<any, {}, {
2344
183
  readonly space: string[];
2345
184
  readonly palette: {
2346
185
  success: string[];
@@ -2464,260 +303,230 @@ export declare const OperatorSelect: StyledComponent<import("../Select").SelectC
2464
303
  main: string;
2465
304
  neutral: string;
2466
305
  };
306
+ } & {
307
+ overrides?: {
308
+ Badge: {
309
+ Root: symbol;
310
+ Error: symbol;
311
+ Neutral: symbol;
312
+ Success: symbol;
313
+ Warning: symbol;
314
+ };
315
+ Button: {
316
+ Root: symbol;
317
+ };
318
+ Card: {
319
+ Root: symbol;
320
+ };
321
+ Checkbox: {
322
+ CheckIcon: symbol;
323
+ Input: symbol;
324
+ Label: symbol;
325
+ VisualCheckbox: symbol;
326
+ };
327
+ CollapsibleToggle: {
328
+ Root: symbol;
329
+ ToggleButton: symbol;
330
+ };
331
+ Color: {
332
+ Root: symbol;
333
+ };
334
+ DataGrid: {
335
+ Root: symbol;
336
+ CategoryInput: symbol;
337
+ CategoryOptionsContainer: symbol;
338
+ Cell: symbol;
339
+ CollapsibleIcon: symbol;
340
+ ColumnHeaderActionsContainer: symbol;
341
+ ColumnHeaderContainer: symbol;
342
+ ColumnHeaderIcon: symbol;
343
+ ColumnHeaderLabel: symbol;
344
+ ColumnHeaderPopover: symbol;
345
+ FilterButtons: symbol;
346
+ FilterHeader: symbol;
347
+ FilterSeparator: symbol;
348
+ RightFilterButton: symbol;
349
+ Row: symbol;
350
+ SortButton: symbol;
351
+ TableContainer: symbol;
352
+ };
353
+ DatePicker: {
354
+ Root: symbol;
355
+ Container: symbol;
356
+ NavBar: symbol;
357
+ NavButtonPrev: symbol;
358
+ NavButtonNext: symbol;
359
+ Caption: symbol;
360
+ Weekdays: symbol;
361
+ WeekdaysRow: symbol;
362
+ Weekday: symbol;
363
+ Body: symbol;
364
+ Week: symbol;
365
+ Day: symbol;
366
+ Today: symbol;
367
+ Selected: symbol;
368
+ Disabled: symbol;
369
+ Outside: symbol;
370
+ };
371
+ DropdownButton: {
372
+ Root: symbol;
373
+ ActionTrigger: symbol;
374
+ DropdownTrigger: symbol;
375
+ DropdownTriggerContainer: symbol;
376
+ GetPopoverItemClassName: symbol;
377
+ Popover: symbol;
378
+ SecondaryAction: symbol;
379
+ };
380
+ Icon: {
381
+ Root: symbol;
382
+ };
383
+ Input: {
384
+ Root: symbol;
385
+ };
386
+ FormFieldAddon: {
387
+ Root: symbol;
388
+ AddonError: symbol;
389
+ AddonHint: symbol;
390
+ AddonWarning: symbol;
391
+ };
392
+ FormLabel: {
393
+ Root: symbol;
394
+ };
395
+ Link: {
396
+ Root: symbol;
397
+ };
398
+ Menu: {
399
+ Box: symbol;
400
+ Divider: symbol;
401
+ Item: symbol;
402
+ };
403
+ Modal: {
404
+ Backdrop: symbol;
405
+ CloseIcon: symbol;
406
+ ConfirmationLabel: symbol;
407
+ Dialog: symbol;
408
+ ErrorIcon: symbol;
409
+ Footer: symbol;
410
+ Header: symbol;
411
+ ModalBody: symbol;
412
+ ModalTitle: symbol;
413
+ ModalSubtitle: symbol;
414
+ NavButton: symbol;
415
+ NavButtonIconWrapper: symbol;
416
+ NavWrapper: symbol;
417
+ };
418
+ MultiSelect: {
419
+ Root: symbol;
420
+ ClearButton: symbol;
421
+ Counter: symbol;
422
+ DefaultRowRenderer: symbol;
423
+ ListContainer: symbol;
424
+ ListItem: symbol;
425
+ SearchIcon: symbol;
426
+ SearchInputStyled: symbol;
427
+ SearchInputWrapper: symbol;
428
+ SelectDivider: symbol;
429
+ SelectSpacer: symbol;
430
+ };
431
+ Popover: {
432
+ Root: symbol;
433
+ Arrow: symbol;
434
+ ArrowBase: symbol;
435
+ };
436
+ Radio: {
437
+ Root: symbol;
438
+ Input: symbol;
439
+ VisualBox: symbol;
440
+ VisualRadio: symbol;
441
+ };
442
+ Section: {
443
+ Root: symbol;
444
+ Header: symbol;
445
+ IconContainer: symbol;
446
+ Content: symbol;
447
+ ContentPadder: symbol;
448
+ };
449
+ Select: {
450
+ ArrowDownIcon: symbol;
451
+ Control: symbol;
452
+ DataGridControlStyles: symbol;
453
+ DisableControlStyles: symbol;
454
+ DisabledMultiValueLabel: symbol;
455
+ DisabledMultiValueStyles: symbol;
456
+ FocusedControlStyles: symbol;
457
+ InvalidControlStyles: symbol;
458
+ WarningControlStyles: symbol;
459
+ ListContainer: symbol;
460
+ Menu: symbol;
461
+ MultiValue: symbol;
462
+ MultiValueLabel: symbol;
463
+ MultiValueRemove: symbol;
464
+ NoResultsMessage: symbol;
465
+ Option: symbol;
466
+ Placeholder: symbol;
467
+ SingleValue: symbol;
468
+ StyledRow: symbol;
469
+ ValueContainer: symbol;
470
+ };
471
+ Shuttle: {
472
+ Root: symbol;
473
+ MiddleMenuButton: symbol;
474
+ };
475
+ Tagger: {
476
+ Root: symbol;
477
+ PopupSelector: symbol;
478
+ PopupSelectorListItem: symbol;
479
+ PopupSelectorListContainer: symbol;
480
+ PopupSelectorSearchListContainer: symbol;
481
+ PopupSelectorSearchInputContainer: symbol;
482
+ PopupSelectorTextarea: symbol;
483
+ };
484
+ Toast: {
485
+ Root: symbol;
486
+ Error: symbol;
487
+ ErrorIcon: symbol;
488
+ Warning: symbol;
489
+ WarningIcon: symbol;
490
+ Default: symbol;
491
+ DefaultIcon: symbol;
492
+ Success: symbol;
493
+ SuccessIcon: symbol;
494
+ ToastText: symbol;
495
+ ToastTitle: symbol;
496
+ ToastExitDivider: symbol;
497
+ ToastContent: symbol;
498
+ ToastExitIconWrapper: symbol;
499
+ };
500
+ Toggle: {
501
+ Root: symbol;
502
+ ToggleKnob: symbol;
503
+ };
504
+ UserAvatar: {
505
+ Root: symbol;
506
+ AvatarFallback: symbol;
507
+ };
508
+ View: {
509
+ Root: symbol;
510
+ };
511
+ } | undefined;
512
+ name?: "v4" | "v5" | undefined;
513
+ icons?: {
514
+ [name: string]: {
515
+ [name: string]: string | number | symbol;
516
+ };
517
+ } | undefined;
2467
518
  }>;
2468
- export declare const CategoryInput: typeof Input & StyledComponent<any, {}, Theme>;
2469
- export declare const CategoryCheckbox: StyledComponent<Pick<import("../Checkbox").CheckboxProps & React.RefAttributes<Checkbox>, "label" | "title" | "key" | "ref" | "readOnly" | "name" | "className" | "onChange" | "value" | "wrapLabel"> & Partial<Pick<import("../Checkbox").CheckboxProps & React.RefAttributes<Checkbox>, "disabled" | "data-instrumentation">> & Partial<Pick<{
519
+ export declare const CategoryCheckbox: StyledComponent<Pick<import("../Checkbox").CheckboxProps, "label" | "title" | "className" | "readOnly" | "name" | "onChange" | "value" | "wrapLabel"> & Partial<Pick<import("../Checkbox").CheckboxProps, "disabled" | "data-instrumentation">> & Partial<Pick<{
2470
520
  disabled: boolean;
2471
521
  'data-instrumentation': string;
2472
- }, never>>, {}, {
2473
- readonly space: string[];
2474
- readonly palette: {
2475
- success: string[];
2476
- warning: string[];
2477
- error: string[];
2478
- primary: string[];
2479
- secondary: string[];
2480
- neutral: string[];
2481
- };
2482
- readonly fontFamily: {
2483
- body: string;
2484
- monospace: string;
2485
- };
2486
- readonly fontSize: string[];
2487
- readonly lineHeight: number[];
2488
- readonly radius: string[];
2489
- readonly borderWidth: string[];
2490
- readonly grid: number[];
2491
- readonly shadows: {
2492
- small: string;
2493
- big: string;
2494
- pill: string;
2495
- bigCentered: string;
2496
- popover: string;
2497
- secondaryNavActiveItem: string;
2498
- };
2499
- readonly sizes: {
2500
- PageHeaderIcon: number;
2501
- };
2502
- readonly zIndex: {
2503
- Base: number;
2504
- Overlay: number;
2505
- FormControl: number;
2506
- SecondaryNav: number;
2507
- SecondaryNavActiveItem: number;
2508
- PrimaryNav: number;
2509
- PopOver: number;
2510
- PageHeaderSearch: number;
2511
- Modal: number;
2512
- Tether: number;
2513
- GlobalNav: number;
2514
- Toast: number;
2515
- };
2516
- readonly color: {
2517
- Dune: string;
2518
- CuriousBlue: string;
2519
- FlushMahogany: string;
2520
- Maroon: string;
2521
- PinkSwan: string;
2522
- Matisse: string;
2523
- HummingBird: string;
2524
- Primary: string;
2525
- PrimaryContrast: string;
2526
- PrimaryFade: string;
2527
- PrimaryLight: string;
2528
- PrimaryLightFade: string;
2529
- PrimaryLightHighlight: string;
2530
- PrimaryAccent: string;
2531
- DarkBackground: string;
2532
- DarkBar: string;
2533
- DarkHover: string;
2534
- DarkPrimary: string;
2535
- DarkSecondary: string;
2536
- LightBackground: string;
2537
- LightBar: string;
2538
- LightDisabled: string;
2539
- LightDivider: string;
2540
- LightDividerNew: string;
2541
- LightHint: string;
2542
- LightHover: string;
2543
- LightPrimary: string;
2544
- LightSecondary: string;
2545
- BorderGrey: string;
2546
- Blue: string;
2547
- BlueFade: string;
2548
- Green: string;
2549
- GreenFade: string;
2550
- GreenBackground: string;
2551
- Red: string;
2552
- RedFade: string;
2553
- Yellow: string;
2554
- YellowFade: string;
2555
- YellowHighlight: string;
2556
- Orange: string;
2557
- OrangeFill: string;
2558
- OrangeBackground: string;
2559
- Error: string;
2560
- ErrorFade: string;
2561
- ErrorBackground: string;
2562
- DraggableDraggingBackground: string;
2563
- Aquamarine: string;
2564
- Azure: string;
2565
- AzureNew: string;
2566
- AzureFade: string;
2567
- AzureHighlight: string;
2568
- Silver: string;
2569
- BlueNavy: string;
2570
- Black: string;
2571
- TurquoiseBlue: string;
2572
- SummerSky: string;
2573
- Mondo: string;
2574
- HeavyMetal: string;
2575
- BokaraGrey: string;
2576
- Cyan: string;
2577
- Eucalyptus: string;
2578
- Flamingo: string;
2579
- Zorba: string;
2580
- Flint: string;
2581
- Maya: string;
2582
- Bondi: string;
2583
- Emerald: string;
2584
- Carissma: string;
2585
- Solitude: string;
2586
- WhiteSmoke: string;
2587
- Violet: string;
2588
- FireBrick: string;
2589
- Purple: string;
2590
- Buckthorn: string;
2591
- };
2592
- readonly gradient: {
2593
- main: string;
2594
- neutral: string;
2595
- };
2596
- }>;
2597
- export declare const CategoryOptionsContainer: StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}, {
2598
- readonly space: string[];
2599
- readonly palette: {
2600
- success: string[];
2601
- warning: string[];
2602
- error: string[];
2603
- primary: string[];
2604
- secondary: string[];
2605
- neutral: string[];
2606
- };
2607
- readonly fontFamily: {
2608
- body: string;
2609
- monospace: string;
2610
- };
2611
- readonly fontSize: string[];
2612
- readonly lineHeight: number[];
2613
- readonly radius: string[];
2614
- readonly borderWidth: string[];
2615
- readonly grid: number[];
2616
- readonly shadows: {
2617
- small: string;
2618
- big: string;
2619
- pill: string;
2620
- bigCentered: string;
2621
- popover: string;
2622
- secondaryNavActiveItem: string;
2623
- };
2624
- readonly sizes: {
2625
- PageHeaderIcon: number;
2626
- };
2627
- readonly zIndex: {
2628
- Base: number;
2629
- Overlay: number;
2630
- FormControl: number;
2631
- SecondaryNav: number;
2632
- SecondaryNavActiveItem: number;
2633
- PrimaryNav: number;
2634
- PopOver: number;
2635
- PageHeaderSearch: number;
2636
- Modal: number;
2637
- Tether: number;
2638
- GlobalNav: number;
2639
- Toast: number;
2640
- };
2641
- readonly color: {
2642
- Dune: string;
2643
- CuriousBlue: string;
2644
- FlushMahogany: string;
2645
- Maroon: string;
2646
- PinkSwan: string;
2647
- Matisse: string;
2648
- HummingBird: string;
2649
- Primary: string;
2650
- PrimaryContrast: string;
2651
- PrimaryFade: string;
2652
- PrimaryLight: string;
2653
- PrimaryLightFade: string;
2654
- PrimaryLightHighlight: string;
2655
- PrimaryAccent: string;
2656
- DarkBackground: string;
2657
- DarkBar: string;
2658
- DarkHover: string;
2659
- DarkPrimary: string;
2660
- DarkSecondary: string;
2661
- LightBackground: string;
2662
- LightBar: string;
2663
- LightDisabled: string;
2664
- LightDivider: string;
2665
- LightDividerNew: string;
2666
- LightHint: string;
2667
- LightHover: string;
2668
- LightPrimary: string;
2669
- LightSecondary: string;
2670
- BorderGrey: string;
2671
- Blue: string;
2672
- BlueFade: string;
2673
- Green: string;
2674
- GreenFade: string;
2675
- GreenBackground: string;
2676
- Red: string;
2677
- RedFade: string;
2678
- Yellow: string;
2679
- YellowFade: string;
2680
- YellowHighlight: string;
2681
- Orange: string;
2682
- OrangeFill: string;
2683
- OrangeBackground: string;
2684
- Error: string;
2685
- ErrorFade: string;
2686
- ErrorBackground: string;
2687
- DraggableDraggingBackground: string;
2688
- Aquamarine: string;
2689
- Azure: string;
2690
- AzureNew: string;
2691
- AzureFade: string;
2692
- AzureHighlight: string;
2693
- Silver: string;
2694
- BlueNavy: string;
2695
- Black: string;
2696
- TurquoiseBlue: string;
2697
- SummerSky: string;
2698
- Mondo: string;
2699
- HeavyMetal: string;
2700
- BokaraGrey: string;
2701
- Cyan: string;
2702
- Eucalyptus: string;
2703
- Flamingo: string;
2704
- Zorba: string;
2705
- Flint: string;
2706
- Maya: string;
2707
- Bondi: string;
2708
- Emerald: string;
2709
- Carissma: string;
2710
- Solitude: string;
2711
- WhiteSmoke: string;
2712
- Violet: string;
2713
- FireBrick: string;
2714
- Purple: string;
2715
- Buckthorn: string;
2716
- };
2717
- readonly gradient: {
2718
- main: string;
2719
- neutral: string;
2720
- };
522
+ }, never>> & {
523
+ theme?: import("@emotion/react").Theme | undefined;
524
+ }, {}, {
525
+ ref?: React.Ref<Checkbox> | undefined;
2721
526
  }>;
527
+ export declare const CategoryOptionsContainer: StyledComponent<{
528
+ theme?: import("@emotion/react").Theme | undefined;
529
+ as?: React.ElementType<any> | undefined;
530
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2722
531
  export {};
2723
532
  //# sourceMappingURL=elements.d.ts.map