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,1843 +1,74 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="types/@emotion/styled" />
3
- export declare const AddLink: import("@emotion/styled-base").StyledComponent<Partial<import("../../Button").UnstyledButtonProps> & import("react").RefAttributes<import("../../Button").UnstyledButton>, Pick<Partial<import("../../Button").UnstyledButtonProps> & import("react").RefAttributes<import("../../Button").UnstyledButton>, "small" | "disabled" | "loading" | "form" | "title" | "circle" | "icon" | "children" | "primary" | "theme" | "type" | "plain" | "ignoreFocus" | "borderless" | "borderlessAlt" | "danger" | "dangerAlt" | "colorFocus" | "className" | "id" | "onKeyPress" | "onClick" | "onMouseDown" | "target" | "rel" | "autofocus" | "blurOnClick" | "component" | "data-instrumentation" | "disabledTitle" | "getRef" | "href" | "hasError" | "hoverless">, {
4
- readonly space: string[];
5
- readonly palette: {
6
- success: string[];
7
- warning: string[];
8
- error: string[];
9
- primary: string[];
10
- secondary: string[];
11
- neutral: string[];
12
- };
13
- readonly fontFamily: {
14
- body: string;
15
- monospace: string;
16
- };
17
- readonly fontSize: string[];
18
- readonly lineHeight: number[];
19
- readonly radius: string[];
20
- readonly borderWidth: string[];
21
- readonly grid: number[];
22
- readonly shadows: {
23
- small: string;
24
- big: string;
25
- pill: string;
26
- bigCentered: string;
27
- popover: string;
28
- secondaryNavActiveItem: string;
29
- };
30
- readonly sizes: {
31
- PageHeaderIcon: number;
32
- };
33
- readonly zIndex: {
34
- Base: number;
35
- Overlay: number;
36
- FormControl: number;
37
- SecondaryNav: number;
38
- SecondaryNavActiveItem: number;
39
- PrimaryNav: number;
40
- PopOver: number;
41
- PageHeaderSearch: number;
42
- Modal: number;
43
- Tether: number;
44
- GlobalNav: number;
45
- Toast: number;
46
- };
47
- readonly color: {
48
- Dune: string;
49
- CuriousBlue: string;
50
- FlushMahogany: string;
51
- Maroon: string;
52
- PinkSwan: string;
53
- Matisse: string;
54
- HummingBird: string;
55
- Primary: string;
56
- PrimaryContrast: string;
57
- PrimaryFade: string;
58
- PrimaryLight: string;
59
- PrimaryLightFade: string;
60
- PrimaryLightHighlight: string;
61
- PrimaryAccent: string;
62
- DarkBackground: string;
63
- DarkBar: string;
64
- DarkHover: string;
65
- DarkPrimary: string;
66
- DarkSecondary: string;
67
- LightBackground: string;
68
- LightBar: string;
69
- LightDisabled: string;
70
- LightDivider: string;
71
- LightDividerNew: string;
72
- LightHint: string;
73
- LightHover: string;
74
- LightPrimary: string;
75
- LightSecondary: string;
76
- BorderGrey: string;
77
- Blue: string;
78
- BlueFade: string;
79
- Green: string;
80
- GreenFade: string;
81
- GreenBackground: string;
82
- Red: string;
83
- RedFade: string;
84
- Yellow: string;
85
- YellowFade: string;
86
- YellowHighlight: string;
87
- Orange: string;
88
- OrangeFill: string;
89
- OrangeBackground: string;
90
- Error: string;
91
- ErrorFade: string;
92
- ErrorBackground: string;
93
- DraggableDraggingBackground: string;
94
- Aquamarine: string;
95
- Azure: string;
96
- AzureNew: string;
97
- AzureFade: string;
98
- AzureHighlight: string;
99
- Silver: string;
100
- BlueNavy: string;
101
- Black: string;
102
- TurquoiseBlue: string;
103
- SummerSky: string;
104
- Mondo: string;
105
- HeavyMetal: string;
106
- BokaraGrey: string;
107
- Cyan: string;
108
- Eucalyptus: string;
109
- Flamingo: string;
110
- Zorba: string;
111
- Flint: string;
112
- Maya: string;
113
- Bondi: string;
114
- Emerald: string;
115
- Carissma: string;
116
- Solitude: string;
117
- WhiteSmoke: string;
118
- Violet: string;
119
- FireBrick: string;
120
- Purple: string;
121
- Buckthorn: string;
122
- };
123
- readonly gradient: {
124
- main: string;
125
- neutral: string;
126
- };
127
- }>;
128
- export declare const AddLinkPopover: import("@emotion/styled-base").StyledComponent<import("react").PropsWithChildren<import("../../Popover").PopoverProps>, Pick<import("react").PropsWithChildren<import("../../Popover").PopoverProps>, "style" | "children" | "backgroundColor" | "borderColor" | "className" | "data-instrumentation" | "placement" | "arrowHidden" | "tooltipPopover" | "arrowOffsetLeft" | "arrowOffsetTop">, {
129
- readonly space: string[];
130
- readonly palette: {
131
- success: string[];
132
- warning: string[];
133
- error: string[];
134
- primary: string[];
135
- secondary: string[];
136
- neutral: string[];
137
- };
138
- readonly fontFamily: {
139
- body: string;
140
- monospace: string;
141
- };
142
- readonly fontSize: string[];
143
- readonly lineHeight: number[];
144
- readonly radius: string[];
145
- readonly borderWidth: string[];
146
- readonly grid: number[];
147
- readonly shadows: {
148
- small: string;
149
- big: string;
150
- pill: string;
151
- bigCentered: string;
152
- popover: string;
153
- secondaryNavActiveItem: string;
154
- };
155
- readonly sizes: {
156
- PageHeaderIcon: number;
157
- };
158
- readonly zIndex: {
159
- Base: number;
160
- Overlay: number;
161
- FormControl: number;
162
- SecondaryNav: number;
163
- SecondaryNavActiveItem: number;
164
- PrimaryNav: number;
165
- PopOver: number;
166
- PageHeaderSearch: number;
167
- Modal: number;
168
- Tether: number;
169
- GlobalNav: number;
170
- Toast: number;
171
- };
172
- readonly color: {
173
- Dune: string;
174
- CuriousBlue: string;
175
- FlushMahogany: string;
176
- Maroon: string;
177
- PinkSwan: string;
178
- Matisse: string;
179
- HummingBird: string;
180
- Primary: string;
181
- PrimaryContrast: string;
182
- PrimaryFade: string;
183
- PrimaryLight: string;
184
- PrimaryLightFade: string;
185
- PrimaryLightHighlight: string;
186
- PrimaryAccent: string;
187
- DarkBackground: string;
188
- DarkBar: string;
189
- DarkHover: string;
190
- DarkPrimary: string;
191
- DarkSecondary: string;
192
- LightBackground: string;
193
- LightBar: string;
194
- LightDisabled: string;
195
- LightDivider: string;
196
- LightDividerNew: string;
197
- LightHint: string;
198
- LightHover: string;
199
- LightPrimary: string;
200
- LightSecondary: string;
201
- BorderGrey: string;
202
- Blue: string;
203
- BlueFade: string;
204
- Green: string;
205
- GreenFade: string;
206
- GreenBackground: string;
207
- Red: string;
208
- RedFade: string;
209
- Yellow: string;
210
- YellowFade: string;
211
- YellowHighlight: string;
212
- Orange: string;
213
- OrangeFill: string;
214
- OrangeBackground: string;
215
- Error: string;
216
- ErrorFade: string;
217
- ErrorBackground: string;
218
- DraggableDraggingBackground: string;
219
- Aquamarine: string;
220
- Azure: string;
221
- AzureNew: string;
222
- AzureFade: string;
223
- AzureHighlight: string;
224
- Silver: string;
225
- BlueNavy: string;
226
- Black: string;
227
- TurquoiseBlue: string;
228
- SummerSky: string;
229
- Mondo: string;
230
- HeavyMetal: string;
231
- BokaraGrey: string;
232
- Cyan: string;
233
- Eucalyptus: string;
234
- Flamingo: string;
235
- Zorba: string;
236
- Flint: string;
237
- Maya: string;
238
- Bondi: string;
239
- Emerald: string;
240
- Carissma: string;
241
- Solitude: string;
242
- WhiteSmoke: string;
243
- Violet: string;
244
- FireBrick: string;
245
- Purple: string;
246
- Buckthorn: string;
247
- };
248
- readonly gradient: {
249
- main: string;
250
- neutral: string;
251
- };
252
- }>;
253
- export declare const ListContainer: import("@emotion/styled-base").StyledComponent<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, any, {
254
- readonly space: string[];
255
- readonly palette: {
256
- success: string[];
257
- warning: string[];
258
- error: string[];
259
- primary: string[];
260
- secondary: string[];
261
- neutral: string[];
262
- };
263
- readonly fontFamily: {
264
- body: string;
265
- monospace: string;
266
- };
267
- readonly fontSize: string[];
268
- readonly lineHeight: number[];
269
- readonly radius: string[];
270
- readonly borderWidth: string[];
271
- readonly grid: number[];
272
- readonly shadows: {
273
- small: string;
274
- big: string;
275
- pill: string;
276
- bigCentered: string;
277
- popover: string;
278
- secondaryNavActiveItem: string;
279
- };
280
- readonly sizes: {
281
- PageHeaderIcon: number;
282
- };
283
- readonly zIndex: {
284
- Base: number;
285
- Overlay: number;
286
- FormControl: number;
287
- SecondaryNav: number;
288
- SecondaryNavActiveItem: number;
289
- PrimaryNav: number;
290
- PopOver: number;
291
- PageHeaderSearch: number;
292
- Modal: number;
293
- Tether: number;
294
- GlobalNav: number;
295
- Toast: number;
296
- };
297
- readonly color: {
298
- Dune: string;
299
- CuriousBlue: string;
300
- FlushMahogany: string;
301
- Maroon: string;
302
- PinkSwan: string;
303
- Matisse: string;
304
- HummingBird: string;
305
- Primary: string;
306
- PrimaryContrast: string;
307
- PrimaryFade: string;
308
- PrimaryLight: string;
309
- PrimaryLightFade: string;
310
- PrimaryLightHighlight: string;
311
- PrimaryAccent: string;
312
- DarkBackground: string;
313
- DarkBar: string;
314
- DarkHover: string;
315
- DarkPrimary: string;
316
- DarkSecondary: string;
317
- LightBackground: string;
318
- LightBar: string;
319
- LightDisabled: string;
320
- LightDivider: string;
321
- LightDividerNew: string;
322
- LightHint: string;
323
- LightHover: string;
324
- LightPrimary: string;
325
- LightSecondary: string;
326
- BorderGrey: string;
327
- Blue: string;
328
- BlueFade: string;
329
- Green: string;
330
- GreenFade: string;
331
- GreenBackground: string;
332
- Red: string;
333
- RedFade: string;
334
- Yellow: string;
335
- YellowFade: string;
336
- YellowHighlight: string;
337
- Orange: string;
338
- OrangeFill: string;
339
- OrangeBackground: string;
340
- Error: string;
341
- ErrorFade: string;
342
- ErrorBackground: string;
343
- DraggableDraggingBackground: string;
344
- Aquamarine: string;
345
- Azure: string;
346
- AzureNew: string;
347
- AzureFade: string;
348
- AzureHighlight: string;
349
- Silver: string;
350
- BlueNavy: string;
351
- Black: string;
352
- TurquoiseBlue: string;
353
- SummerSky: string;
354
- Mondo: string;
355
- HeavyMetal: string;
356
- BokaraGrey: string;
357
- Cyan: string;
358
- Eucalyptus: string;
359
- Flamingo: string;
360
- Zorba: string;
361
- Flint: string;
362
- Maya: string;
363
- Bondi: string;
364
- Emerald: string;
365
- Carissma: string;
366
- Solitude: string;
367
- WhiteSmoke: string;
368
- Violet: string;
369
- FireBrick: string;
370
- Purple: string;
371
- Buckthorn: string;
372
- };
373
- readonly gradient: {
374
- main: string;
375
- neutral: string;
376
- };
377
- }>;
378
- export declare const SearchListContainer: import("@emotion/styled-base").StyledComponent<Pick<import("react").PropsWithChildren<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
379
- border?: {
380
- width?: string | number | undefined;
381
- style?: string | undefined;
382
- color?: string | undefined;
383
- } | undefined;
384
- } & Partial<import("../../mixins/border").Border & import("../../mixins/spacing").Spacing> & {
385
- theme?: {
386
- readonly space: string[];
387
- readonly palette: {
388
- success: string[];
389
- warning: string[];
390
- error: string[];
391
- primary: string[];
392
- secondary: string[];
393
- neutral: string[];
394
- };
395
- readonly fontFamily: {
396
- body: string;
397
- monospace: string;
398
- };
399
- readonly fontSize: string[];
400
- readonly lineHeight: number[];
401
- readonly radius: string[];
402
- readonly borderWidth: string[];
403
- readonly grid: number[];
404
- readonly shadows: {
405
- small: string;
406
- big: string;
407
- pill: string;
408
- bigCentered: string;
409
- popover: string;
410
- secondaryNavActiveItem: string;
411
- };
412
- readonly sizes: {
413
- PageHeaderIcon: number;
414
- };
415
- readonly zIndex: {
416
- Base: number;
417
- Overlay: number;
418
- FormControl: number;
419
- SecondaryNav: number;
420
- SecondaryNavActiveItem: number;
421
- PrimaryNav: number;
422
- PopOver: number;
423
- PageHeaderSearch: number;
424
- Modal: number;
425
- Tether: number;
426
- GlobalNav: number;
427
- Toast: number;
428
- };
429
- readonly color: {
430
- Dune: string;
431
- CuriousBlue: string;
432
- FlushMahogany: string;
433
- Maroon: string;
434
- PinkSwan: string;
435
- Matisse: string;
436
- HummingBird: string;
437
- Primary: string;
438
- PrimaryContrast: string;
439
- PrimaryFade: string;
440
- PrimaryLight: string;
441
- PrimaryLightFade: string;
442
- PrimaryLightHighlight: string;
443
- PrimaryAccent: string;
444
- DarkBackground: string;
445
- DarkBar: string;
446
- DarkHover: string;
447
- DarkPrimary: string;
448
- DarkSecondary: string;
449
- LightBackground: string;
450
- LightBar: string;
451
- LightDisabled: string;
452
- LightDivider: string;
453
- LightDividerNew: string;
454
- LightHint: string;
455
- LightHover: string;
456
- LightPrimary: string;
457
- LightSecondary: string;
458
- BorderGrey: string;
459
- Blue: string;
460
- BlueFade: string;
461
- Green: string;
462
- GreenFade: string;
463
- GreenBackground: string;
464
- Red: string;
465
- RedFade: string;
466
- Yellow: string;
467
- YellowFade: string;
468
- YellowHighlight: string;
469
- Orange: string;
470
- OrangeFill: string;
471
- OrangeBackground: string;
472
- Error: string;
473
- ErrorFade: string;
474
- ErrorBackground: string;
475
- DraggableDraggingBackground: string;
476
- Aquamarine: string;
477
- Azure: string;
478
- AzureNew: string;
479
- AzureFade: string;
480
- AzureHighlight: string;
481
- Silver: string;
482
- BlueNavy: string;
483
- Black: string;
484
- TurquoiseBlue: string;
485
- SummerSky: string;
486
- Mondo: string;
487
- HeavyMetal: string;
488
- BokaraGrey: string;
489
- Cyan: string;
490
- Eucalyptus: string;
491
- Flamingo: string;
492
- Zorba: string;
493
- Flint: string;
494
- Maya: string;
495
- Bondi: string;
496
- Emerald: string;
497
- Carissma: string;
498
- Solitude: string;
499
- WhiteSmoke: string;
500
- Violet: string;
501
- FireBrick: string;
502
- Purple: string;
503
- Buckthorn: string;
504
- };
505
- readonly gradient: {
506
- main: string;
507
- neutral: string;
508
- };
509
- } | undefined;
510
- }>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "border" | "padding" | "key" | "children" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "translate" | "borderBottom" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "margin" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "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" | "marginHorizontal" | "marginVertical" | "paddingHorizontal" | "paddingVertical"> & {
511
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
512
- }, any, {
513
- readonly space: string[];
514
- readonly palette: {
515
- success: string[];
516
- warning: string[];
517
- error: string[];
518
- primary: string[];
519
- secondary: string[];
520
- neutral: string[];
521
- };
522
- readonly fontFamily: {
523
- body: string;
524
- monospace: string;
525
- };
526
- readonly fontSize: string[];
527
- readonly lineHeight: number[];
528
- readonly radius: string[];
529
- readonly borderWidth: string[];
530
- readonly grid: number[];
531
- readonly shadows: {
532
- small: string;
533
- big: string;
534
- pill: string;
535
- bigCentered: string;
536
- popover: string;
537
- secondaryNavActiveItem: string;
538
- };
539
- readonly sizes: {
540
- PageHeaderIcon: number;
541
- };
542
- readonly zIndex: {
543
- Base: number;
544
- Overlay: number;
545
- FormControl: number;
546
- SecondaryNav: number;
547
- SecondaryNavActiveItem: number;
548
- PrimaryNav: number;
549
- PopOver: number;
550
- PageHeaderSearch: number;
551
- Modal: number;
552
- Tether: number;
553
- GlobalNav: number;
554
- Toast: number;
555
- };
556
- readonly color: {
557
- Dune: string;
558
- CuriousBlue: string;
559
- FlushMahogany: string;
560
- Maroon: string;
561
- PinkSwan: string;
562
- Matisse: string;
563
- HummingBird: string;
564
- Primary: string;
565
- PrimaryContrast: string;
566
- PrimaryFade: string;
567
- PrimaryLight: string;
568
- PrimaryLightFade: string;
569
- PrimaryLightHighlight: string;
570
- PrimaryAccent: string;
571
- DarkBackground: string;
572
- DarkBar: string;
573
- DarkHover: string;
574
- DarkPrimary: string;
575
- DarkSecondary: string;
576
- LightBackground: string;
577
- LightBar: string;
578
- LightDisabled: string;
579
- LightDivider: string;
580
- LightDividerNew: string;
581
- LightHint: string;
582
- LightHover: string;
583
- LightPrimary: string;
584
- LightSecondary: string;
585
- BorderGrey: string;
586
- Blue: string;
587
- BlueFade: string;
588
- Green: string;
589
- GreenFade: string;
590
- GreenBackground: string;
591
- Red: string;
592
- RedFade: string;
593
- Yellow: string;
594
- YellowFade: string;
595
- YellowHighlight: string;
596
- Orange: string;
597
- OrangeFill: string;
598
- OrangeBackground: string;
599
- Error: string;
600
- ErrorFade: string;
601
- ErrorBackground: string;
602
- DraggableDraggingBackground: string;
603
- Aquamarine: string;
604
- Azure: string;
605
- AzureNew: string;
606
- AzureFade: string;
607
- AzureHighlight: string;
608
- Silver: string;
609
- BlueNavy: string;
610
- Black: string;
611
- TurquoiseBlue: string;
612
- SummerSky: string;
613
- Mondo: string;
614
- HeavyMetal: string;
615
- BokaraGrey: string;
616
- Cyan: string;
617
- Eucalyptus: string;
618
- Flamingo: string;
619
- Zorba: string;
620
- Flint: string;
621
- Maya: string;
622
- Bondi: string;
623
- Emerald: string;
624
- Carissma: string;
625
- Solitude: string;
626
- WhiteSmoke: string;
627
- Violet: string;
628
- FireBrick: string;
629
- Purple: string;
630
- Buckthorn: string;
631
- };
632
- readonly gradient: {
633
- main: string;
634
- neutral: string;
635
- };
636
- }>;
637
- export declare const ListItem: import("@emotion/styled-base").StyledComponent<Pick<import("react").PropsWithChildren<import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement> & import("../../Link").LinkProps & {
638
- theme?: {
639
- readonly space: string[];
640
- readonly palette: {
641
- success: string[];
642
- warning: string[];
643
- error: string[];
644
- primary: string[];
645
- secondary: string[];
646
- neutral: string[];
647
- };
648
- readonly fontFamily: {
649
- body: string;
650
- monospace: string;
651
- };
652
- readonly fontSize: string[];
653
- readonly lineHeight: number[];
654
- readonly radius: string[];
655
- readonly borderWidth: string[];
656
- readonly grid: number[];
657
- readonly shadows: {
658
- small: string;
659
- big: string;
660
- pill: string;
661
- bigCentered: string;
662
- popover: string;
663
- secondaryNavActiveItem: string;
664
- };
665
- readonly sizes: {
666
- PageHeaderIcon: number;
667
- };
668
- readonly zIndex: {
669
- Base: number;
670
- Overlay: number;
671
- FormControl: number;
672
- SecondaryNav: number;
673
- SecondaryNavActiveItem: number;
674
- PrimaryNav: number;
675
- PopOver: number;
676
- PageHeaderSearch: number;
677
- Modal: number;
678
- Tether: number;
679
- GlobalNav: number;
680
- Toast: number;
681
- };
682
- readonly color: {
683
- Dune: string;
684
- CuriousBlue: string;
685
- FlushMahogany: string;
686
- Maroon: string;
687
- PinkSwan: string;
688
- Matisse: string;
689
- HummingBird: string;
690
- Primary: string;
691
- PrimaryContrast: string;
692
- PrimaryFade: string;
693
- PrimaryLight: string;
694
- PrimaryLightFade: string;
695
- PrimaryLightHighlight: string;
696
- PrimaryAccent: string;
697
- DarkBackground: string;
698
- DarkBar: string;
699
- DarkHover: string;
700
- DarkPrimary: string;
701
- DarkSecondary: string;
702
- LightBackground: string;
703
- LightBar: string;
704
- LightDisabled: string;
705
- LightDivider: string;
706
- LightDividerNew: string;
707
- LightHint: string;
708
- LightHover: string;
709
- LightPrimary: string;
710
- LightSecondary: string;
711
- BorderGrey: string;
712
- Blue: string;
713
- BlueFade: string;
714
- Green: string;
715
- GreenFade: string;
716
- GreenBackground: string;
717
- Red: string;
718
- RedFade: string;
719
- Yellow: string;
720
- YellowFade: string;
721
- YellowHighlight: string;
722
- Orange: string;
723
- OrangeFill: string;
724
- OrangeBackground: string;
725
- Error: string;
726
- ErrorFade: string;
727
- ErrorBackground: string;
728
- DraggableDraggingBackground: string;
729
- Aquamarine: string;
730
- Azure: string;
731
- AzureNew: string;
732
- AzureFade: string;
733
- AzureHighlight: string;
734
- Silver: string;
735
- BlueNavy: string;
736
- Black: string;
737
- TurquoiseBlue: string;
738
- SummerSky: string;
739
- Mondo: string;
740
- HeavyMetal: string;
741
- BokaraGrey: string;
742
- Cyan: string;
743
- Eucalyptus: string;
744
- Flamingo: string;
745
- Zorba: string;
746
- Flint: string;
747
- Maya: string;
748
- Bondi: string;
749
- Emerald: string;
750
- Carissma: string;
751
- Solitude: string;
752
- WhiteSmoke: string;
753
- Violet: string;
754
- FireBrick: string;
755
- Purple: string;
756
- Buckthorn: string;
757
- };
758
- readonly gradient: {
759
- main: string;
760
- neutral: string;
761
- };
762
- } | undefined;
763
- }>, "disabled" | "media" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "key" | "children" | "translate" | "theme" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "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" | "target" | "rel" | "data-instrumentation" | "href" | "download" | "hrefLang" | "ping" | "referrerPolicy"> & {
764
- ref?: ((instance: HTMLAnchorElement | null) => void) | import("react").RefObject<HTMLAnchorElement> | null | undefined;
765
- }, {
2
+ import Input from '../../Input';
3
+ export declare const AddLink: import("@emotion/styled").StyledComponent<Partial<import("../../Button").UnstyledButtonProps> & import("react").RefAttributes<import("../../Button").UnstyledButton> & {
4
+ theme?: import("@emotion/react").Theme | undefined;
5
+ }, {}, {}>;
6
+ export declare const AddLinkPopover: import("@emotion/styled").StyledComponent<import("../../Popover").PopoverProps & {
7
+ children?: import("react").ReactNode;
8
+ } & {
9
+ theme?: import("@emotion/react").Theme | undefined;
10
+ }, {}, {}>;
11
+ export declare const ListContainer: import("@emotion/styled").StyledComponent<any, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
12
+ export declare const SearchListContainer: import("@emotion/styled").StyledComponent<any, {}, {}>;
13
+ export declare const ListItem: import("@emotion/styled").StyledComponent<{
14
+ theme?: import("@emotion/react").Theme | undefined;
15
+ as?: import("react").ElementType<any> | undefined;
16
+ } & Partial<import("../../mixins/border").Border & import("../../mixins/color").Color & import("../../mixins/spacing").Spacing> & import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & {
17
+ children?: import("react").ReactNode;
18
+ } & {
19
+ theme?: import("@emotion/react").Theme | undefined;
20
+ } & import("../../Link").LinkProps & import("react").ClassAttributes<HTMLAnchorElement> & import("react").AnchorHTMLAttributes<HTMLAnchorElement> & {
766
21
  hovered: boolean;
767
- }, {
768
- readonly space: string[];
769
- readonly palette: {
770
- success: string[];
771
- warning: string[];
772
- error: string[];
773
- primary: string[];
774
- secondary: string[];
775
- neutral: string[];
776
- };
777
- readonly fontFamily: {
778
- body: string;
779
- monospace: string;
780
- };
781
- readonly fontSize: string[];
782
- readonly lineHeight: number[];
783
- readonly radius: string[];
784
- readonly borderWidth: string[];
785
- readonly grid: number[];
786
- readonly shadows: {
787
- small: string;
788
- big: string;
789
- pill: string;
790
- bigCentered: string;
791
- popover: string;
792
- secondaryNavActiveItem: string;
793
- };
794
- readonly sizes: {
795
- PageHeaderIcon: number;
796
- };
797
- readonly zIndex: {
798
- Base: number;
799
- Overlay: number;
800
- FormControl: number;
801
- SecondaryNav: number;
802
- SecondaryNavActiveItem: number;
803
- PrimaryNav: number;
804
- PopOver: number;
805
- PageHeaderSearch: number;
806
- Modal: number;
807
- Tether: number;
808
- GlobalNav: number;
809
- Toast: number;
810
- };
811
- readonly color: {
812
- Dune: string;
813
- CuriousBlue: string;
814
- FlushMahogany: string;
815
- Maroon: string;
816
- PinkSwan: string;
817
- Matisse: string;
818
- HummingBird: string;
819
- Primary: string;
820
- PrimaryContrast: string;
821
- PrimaryFade: string;
822
- PrimaryLight: string;
823
- PrimaryLightFade: string;
824
- PrimaryLightHighlight: string;
825
- PrimaryAccent: string;
826
- DarkBackground: string;
827
- DarkBar: string;
828
- DarkHover: string;
829
- DarkPrimary: string;
830
- DarkSecondary: string;
831
- LightBackground: string;
832
- LightBar: string;
833
- LightDisabled: string;
834
- LightDivider: string;
835
- LightDividerNew: string;
836
- LightHint: string;
837
- LightHover: string;
838
- LightPrimary: string;
839
- LightSecondary: string;
840
- BorderGrey: string;
841
- Blue: string;
842
- BlueFade: string;
843
- Green: string;
844
- GreenFade: string;
845
- GreenBackground: string;
846
- Red: string;
847
- RedFade: string;
848
- Yellow: string;
849
- YellowFade: string;
850
- YellowHighlight: string;
851
- Orange: string;
852
- OrangeFill: string;
853
- OrangeBackground: string;
854
- Error: string;
855
- ErrorFade: string;
856
- ErrorBackground: string;
857
- DraggableDraggingBackground: string;
858
- Aquamarine: string;
859
- Azure: string;
860
- AzureNew: string;
861
- AzureFade: string;
862
- AzureHighlight: string;
863
- Silver: string;
864
- BlueNavy: string;
865
- Black: string;
866
- TurquoiseBlue: string;
867
- SummerSky: string;
868
- Mondo: string;
869
- HeavyMetal: string;
870
- BokaraGrey: string;
871
- Cyan: string;
872
- Eucalyptus: string;
873
- Flamingo: string;
874
- Zorba: string;
875
- Flint: string;
876
- Maya: string;
877
- Bondi: string;
878
- Emerald: string;
879
- Carissma: string;
880
- Solitude: string;
881
- WhiteSmoke: string;
882
- Violet: string;
883
- FireBrick: string;
884
- Purple: string;
885
- Buckthorn: string;
886
- };
887
- readonly gradient: {
888
- main: string;
889
- neutral: string;
890
- };
891
- }>;
892
- export declare const NoResults: import("@emotion/styled-base").StyledComponent<Pick<import("react").PropsWithChildren<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
893
- border?: {
894
- width?: string | number | undefined;
895
- style?: string | undefined;
896
- color?: string | undefined;
897
- } | undefined;
898
- } & Partial<import("../../mixins/border").Border & import("../../mixins/spacing").Spacing> & {
899
- theme?: {
900
- readonly space: string[];
901
- readonly palette: {
902
- success: string[];
903
- warning: string[];
904
- error: string[];
905
- primary: string[];
906
- secondary: string[];
907
- neutral: string[];
908
- };
909
- readonly fontFamily: {
910
- body: string;
911
- monospace: string;
912
- };
913
- readonly fontSize: string[];
914
- readonly lineHeight: number[];
915
- readonly radius: string[];
916
- readonly borderWidth: string[];
917
- readonly grid: number[];
918
- readonly shadows: {
919
- small: string;
920
- big: string;
921
- pill: string;
922
- bigCentered: string;
923
- popover: string;
924
- secondaryNavActiveItem: string;
925
- };
926
- readonly sizes: {
927
- PageHeaderIcon: number;
928
- };
929
- readonly zIndex: {
930
- Base: number;
931
- Overlay: number;
932
- FormControl: number;
933
- SecondaryNav: number;
934
- SecondaryNavActiveItem: number;
935
- PrimaryNav: number;
936
- PopOver: number;
937
- PageHeaderSearch: number;
938
- Modal: number;
939
- Tether: number;
940
- GlobalNav: number;
941
- Toast: number;
942
- };
943
- readonly color: {
944
- Dune: string;
945
- CuriousBlue: string;
946
- FlushMahogany: string;
947
- Maroon: string;
948
- PinkSwan: string;
949
- Matisse: string;
950
- HummingBird: string;
951
- Primary: string;
952
- PrimaryContrast: string;
953
- PrimaryFade: string;
954
- PrimaryLight: string;
955
- PrimaryLightFade: string;
956
- PrimaryLightHighlight: string;
957
- PrimaryAccent: string;
958
- DarkBackground: string;
959
- DarkBar: string;
960
- DarkHover: string;
961
- DarkPrimary: string;
962
- DarkSecondary: string;
963
- LightBackground: string;
964
- LightBar: string;
965
- LightDisabled: string;
966
- LightDivider: string;
967
- LightDividerNew: string;
968
- LightHint: string;
969
- LightHover: string;
970
- LightPrimary: string;
971
- LightSecondary: string;
972
- BorderGrey: string;
973
- Blue: string;
974
- BlueFade: string;
975
- Green: string;
976
- GreenFade: string;
977
- GreenBackground: string;
978
- Red: string;
979
- RedFade: string;
980
- Yellow: string;
981
- YellowFade: string;
982
- YellowHighlight: string;
983
- Orange: string;
984
- OrangeFill: string;
985
- OrangeBackground: string;
986
- Error: string;
987
- ErrorFade: string;
988
- ErrorBackground: string;
989
- DraggableDraggingBackground: string;
990
- Aquamarine: string;
991
- Azure: string;
992
- AzureNew: string;
993
- AzureFade: string;
994
- AzureHighlight: string;
995
- Silver: string;
996
- BlueNavy: string;
997
- Black: string;
998
- TurquoiseBlue: string;
999
- SummerSky: string;
1000
- Mondo: string;
1001
- HeavyMetal: string;
1002
- BokaraGrey: string;
1003
- Cyan: string;
1004
- Eucalyptus: string;
1005
- Flamingo: string;
1006
- Zorba: string;
1007
- Flint: string;
1008
- Maya: string;
1009
- Bondi: string;
1010
- Emerald: string;
1011
- Carissma: string;
1012
- Solitude: string;
1013
- WhiteSmoke: string;
1014
- Violet: string;
1015
- FireBrick: string;
1016
- Purple: string;
1017
- Buckthorn: string;
1018
- };
1019
- readonly gradient: {
1020
- main: string;
1021
- neutral: string;
1022
- };
1023
- } | undefined;
1024
- }>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "border" | "padding" | "key" | "children" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "translate" | "borderBottom" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "margin" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "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" | "marginHorizontal" | "marginVertical" | "paddingHorizontal" | "paddingVertical"> & {
1025
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
1026
- }, Pick<Pick<import("react").PropsWithChildren<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
1027
- border?: {
1028
- width?: string | number | undefined;
1029
- style?: string | undefined;
1030
- color?: string | undefined;
1031
- } | undefined;
1032
- } & Partial<import("../../mixins/border").Border & import("../../mixins/spacing").Spacing> & {
1033
- theme?: {
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
- } | undefined;
1158
- }>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "border" | "padding" | "key" | "children" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "translate" | "borderBottom" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "margin" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "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" | "marginHorizontal" | "marginVertical" | "paddingHorizontal" | "paddingVertical"> & {
1159
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
1160
- }, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "border" | "padding" | "children" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "translate" | "borderBottom" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "margin" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "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" | "marginHorizontal" | "marginVertical" | "paddingHorizontal" | "paddingVertical">, {
1161
- readonly space: string[];
1162
- readonly palette: {
1163
- success: string[];
1164
- warning: string[];
1165
- error: string[];
1166
- primary: string[];
1167
- secondary: string[];
1168
- neutral: string[];
1169
- };
1170
- readonly fontFamily: {
1171
- body: string;
1172
- monospace: string;
1173
- };
1174
- readonly fontSize: string[];
1175
- readonly lineHeight: number[];
1176
- readonly radius: string[];
1177
- readonly borderWidth: string[];
1178
- readonly grid: number[];
1179
- readonly shadows: {
1180
- small: string;
1181
- big: string;
1182
- pill: string;
1183
- bigCentered: string;
1184
- popover: string;
1185
- secondaryNavActiveItem: string;
1186
- };
1187
- readonly sizes: {
1188
- PageHeaderIcon: number;
1189
- };
1190
- readonly zIndex: {
1191
- Base: number;
1192
- Overlay: number;
1193
- FormControl: number;
1194
- SecondaryNav: number;
1195
- SecondaryNavActiveItem: number;
1196
- PrimaryNav: number;
1197
- PopOver: number;
1198
- PageHeaderSearch: number;
1199
- Modal: number;
1200
- Tether: number;
1201
- GlobalNav: number;
1202
- Toast: number;
1203
- };
1204
- readonly color: {
1205
- Dune: string;
1206
- CuriousBlue: string;
1207
- FlushMahogany: string;
1208
- Maroon: string;
1209
- PinkSwan: string;
1210
- Matisse: string;
1211
- HummingBird: string;
1212
- Primary: string;
1213
- PrimaryContrast: string;
1214
- PrimaryFade: string;
1215
- PrimaryLight: string;
1216
- PrimaryLightFade: string;
1217
- PrimaryLightHighlight: string;
1218
- PrimaryAccent: string;
1219
- DarkBackground: string;
1220
- DarkBar: string;
1221
- DarkHover: string;
1222
- DarkPrimary: string;
1223
- DarkSecondary: string;
1224
- LightBackground: string;
1225
- LightBar: string;
1226
- LightDisabled: string;
1227
- LightDivider: string;
1228
- LightDividerNew: string;
1229
- LightHint: string;
1230
- LightHover: string;
1231
- LightPrimary: string;
1232
- LightSecondary: string;
1233
- BorderGrey: string;
1234
- Blue: string;
1235
- BlueFade: string;
1236
- Green: string;
1237
- GreenFade: string;
1238
- GreenBackground: string;
1239
- Red: string;
1240
- RedFade: string;
1241
- Yellow: string;
1242
- YellowFade: string;
1243
- YellowHighlight: string;
1244
- Orange: string;
1245
- OrangeFill: string;
1246
- OrangeBackground: string;
1247
- Error: string;
1248
- ErrorFade: string;
1249
- ErrorBackground: string;
1250
- DraggableDraggingBackground: string;
1251
- Aquamarine: string;
1252
- Azure: string;
1253
- AzureNew: string;
1254
- AzureFade: string;
1255
- AzureHighlight: string;
1256
- Silver: string;
1257
- BlueNavy: string;
1258
- Black: string;
1259
- TurquoiseBlue: string;
1260
- SummerSky: string;
1261
- Mondo: string;
1262
- HeavyMetal: string;
1263
- BokaraGrey: string;
1264
- Cyan: string;
1265
- Eucalyptus: string;
1266
- Flamingo: string;
1267
- Zorba: string;
1268
- Flint: string;
1269
- Maya: string;
1270
- Bondi: string;
1271
- Emerald: string;
1272
- Carissma: string;
1273
- Solitude: string;
1274
- WhiteSmoke: string;
1275
- Violet: string;
1276
- FireBrick: string;
1277
- Purple: string;
1278
- Buckthorn: string;
1279
- };
1280
- readonly gradient: {
1281
- main: string;
1282
- neutral: string;
1283
- };
1284
- }>;
1285
- export declare const SearchInputContainer: import("@emotion/styled-base").StyledComponent<Pick<import("react").PropsWithChildren<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
22
+ }, {}, {}>;
23
+ export declare const NoResults: import("@emotion/styled").StyledComponent<{
24
+ theme?: import("@emotion/react").Theme | undefined;
25
+ as?: import("react").ElementType<any> | undefined;
26
+ } & {
1286
27
  border?: {
1287
28
  width?: string | number | undefined;
1288
29
  style?: string | undefined;
1289
30
  color?: string | undefined;
1290
31
  } | undefined;
1291
- } & Partial<import("../../mixins/border").Border & import("../../mixins/spacing").Spacing> & {
1292
- theme?: {
1293
- readonly space: string[];
1294
- readonly palette: {
1295
- success: string[];
1296
- warning: string[];
1297
- error: string[];
1298
- primary: string[];
1299
- secondary: string[];
1300
- neutral: string[];
1301
- };
1302
- readonly fontFamily: {
1303
- body: string;
1304
- monospace: string;
1305
- };
1306
- readonly fontSize: string[];
1307
- readonly lineHeight: number[];
1308
- readonly radius: string[];
1309
- readonly borderWidth: string[];
1310
- readonly grid: number[];
1311
- readonly shadows: {
1312
- small: string;
1313
- big: string;
1314
- pill: string;
1315
- bigCentered: string;
1316
- popover: string;
1317
- secondaryNavActiveItem: string;
1318
- };
1319
- readonly sizes: {
1320
- PageHeaderIcon: number;
1321
- };
1322
- readonly zIndex: {
1323
- Base: number;
1324
- Overlay: number;
1325
- FormControl: number;
1326
- SecondaryNav: number;
1327
- SecondaryNavActiveItem: number;
1328
- PrimaryNav: number;
1329
- PopOver: number;
1330
- PageHeaderSearch: number;
1331
- Modal: number;
1332
- Tether: number;
1333
- GlobalNav: number;
1334
- Toast: number;
1335
- };
1336
- readonly color: {
1337
- Dune: string;
1338
- CuriousBlue: string;
1339
- FlushMahogany: string;
1340
- Maroon: string;
1341
- PinkSwan: string;
1342
- Matisse: string;
1343
- HummingBird: string;
1344
- Primary: string;
1345
- PrimaryContrast: string;
1346
- PrimaryFade: string;
1347
- PrimaryLight: string;
1348
- PrimaryLightFade: string;
1349
- PrimaryLightHighlight: string;
1350
- PrimaryAccent: string;
1351
- DarkBackground: string;
1352
- DarkBar: string;
1353
- DarkHover: string;
1354
- DarkPrimary: string;
1355
- DarkSecondary: string;
1356
- LightBackground: string;
1357
- LightBar: string;
1358
- LightDisabled: string;
1359
- LightDivider: string;
1360
- LightDividerNew: string;
1361
- LightHint: string;
1362
- LightHover: string;
1363
- LightPrimary: string;
1364
- LightSecondary: string;
1365
- BorderGrey: string;
1366
- Blue: string;
1367
- BlueFade: string;
1368
- Green: string;
1369
- GreenFade: string;
1370
- GreenBackground: string;
1371
- Red: string;
1372
- RedFade: string;
1373
- Yellow: string;
1374
- YellowFade: string;
1375
- YellowHighlight: string;
1376
- Orange: string;
1377
- OrangeFill: string;
1378
- OrangeBackground: string;
1379
- Error: string;
1380
- ErrorFade: string;
1381
- ErrorBackground: string;
1382
- DraggableDraggingBackground: string;
1383
- Aquamarine: string;
1384
- Azure: string;
1385
- AzureNew: string;
1386
- AzureFade: string;
1387
- AzureHighlight: string;
1388
- Silver: string;
1389
- BlueNavy: string;
1390
- Black: string;
1391
- TurquoiseBlue: string;
1392
- SummerSky: string;
1393
- Mondo: string;
1394
- HeavyMetal: string;
1395
- BokaraGrey: string;
1396
- Cyan: string;
1397
- Eucalyptus: string;
1398
- Flamingo: string;
1399
- Zorba: string;
1400
- Flint: string;
1401
- Maya: string;
1402
- Bondi: string;
1403
- Emerald: string;
1404
- Carissma: string;
1405
- Solitude: string;
1406
- WhiteSmoke: string;
1407
- Violet: string;
1408
- FireBrick: string;
1409
- Purple: string;
1410
- Buckthorn: string;
1411
- };
1412
- readonly gradient: {
1413
- main: string;
1414
- neutral: string;
1415
- };
1416
- } | undefined;
1417
- }>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "border" | "padding" | "key" | "children" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "translate" | "borderBottom" | "borderLeft" | "borderRadius" | "borderRight" | "borderTop" | "margin" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "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" | "marginHorizontal" | "marginVertical" | "paddingHorizontal" | "paddingVertical"> & {
1418
- ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
1419
- }, any, {
1420
- readonly space: string[];
1421
- readonly palette: {
1422
- success: string[];
1423
- warning: string[];
1424
- error: string[];
1425
- primary: string[];
1426
- secondary: string[];
1427
- neutral: string[];
1428
- };
1429
- readonly fontFamily: {
1430
- body: string;
1431
- monospace: string;
1432
- };
1433
- readonly fontSize: string[];
1434
- readonly lineHeight: number[];
1435
- readonly radius: string[];
1436
- readonly borderWidth: string[];
1437
- readonly grid: number[];
1438
- readonly shadows: {
1439
- small: string;
1440
- big: string;
1441
- pill: string;
1442
- bigCentered: string;
1443
- popover: string;
1444
- secondaryNavActiveItem: string;
1445
- };
1446
- readonly sizes: {
1447
- PageHeaderIcon: number;
1448
- };
1449
- readonly zIndex: {
1450
- Base: number;
1451
- Overlay: number;
1452
- FormControl: number;
1453
- SecondaryNav: number;
1454
- SecondaryNavActiveItem: number;
1455
- PrimaryNav: number;
1456
- PopOver: number;
1457
- PageHeaderSearch: number;
1458
- Modal: number;
1459
- Tether: number;
1460
- GlobalNav: number;
1461
- Toast: number;
1462
- };
1463
- readonly color: {
1464
- Dune: string;
1465
- CuriousBlue: string;
1466
- FlushMahogany: string;
1467
- Maroon: string;
1468
- PinkSwan: string;
1469
- Matisse: string;
1470
- HummingBird: string;
1471
- Primary: string;
1472
- PrimaryContrast: string;
1473
- PrimaryFade: string;
1474
- PrimaryLight: string;
1475
- PrimaryLightFade: string;
1476
- PrimaryLightHighlight: string;
1477
- PrimaryAccent: string;
1478
- DarkBackground: string;
1479
- DarkBar: string;
1480
- DarkHover: string;
1481
- DarkPrimary: string;
1482
- DarkSecondary: string;
1483
- LightBackground: string;
1484
- LightBar: string;
1485
- LightDisabled: string;
1486
- LightDivider: string;
1487
- LightDividerNew: string;
1488
- LightHint: string;
1489
- LightHover: string;
1490
- LightPrimary: string;
1491
- LightSecondary: string;
1492
- BorderGrey: string;
1493
- Blue: string;
1494
- BlueFade: string;
1495
- Green: string;
1496
- GreenFade: string;
1497
- GreenBackground: string;
1498
- Red: string;
1499
- RedFade: string;
1500
- Yellow: string;
1501
- YellowFade: string;
1502
- YellowHighlight: string;
1503
- Orange: string;
1504
- OrangeFill: string;
1505
- OrangeBackground: string;
1506
- Error: string;
1507
- ErrorFade: string;
1508
- ErrorBackground: string;
1509
- DraggableDraggingBackground: string;
1510
- Aquamarine: string;
1511
- Azure: string;
1512
- AzureNew: string;
1513
- AzureFade: string;
1514
- AzureHighlight: string;
1515
- Silver: string;
1516
- BlueNavy: string;
1517
- Black: string;
1518
- TurquoiseBlue: string;
1519
- SummerSky: string;
1520
- Mondo: string;
1521
- HeavyMetal: string;
1522
- BokaraGrey: string;
1523
- Cyan: string;
1524
- Eucalyptus: string;
1525
- Flamingo: string;
1526
- Zorba: string;
1527
- Flint: string;
1528
- Maya: string;
1529
- Bondi: string;
1530
- Emerald: string;
1531
- Carissma: string;
1532
- Solitude: string;
1533
- WhiteSmoke: string;
1534
- Violet: string;
1535
- FireBrick: string;
1536
- Purple: string;
1537
- Buckthorn: string;
1538
- };
1539
- readonly gradient: {
1540
- main: string;
1541
- neutral: string;
1542
- };
1543
- }>;
1544
- export declare const SearchInput: import("@emotion/styled-base").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<{
1545
- invalid: boolean;
1546
- disabled: boolean;
1547
- 'data-instrumentation': string;
1548
- placeholder: string;
1549
- type: string;
1550
- }, never>>, Pick<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<{
1551
- invalid: boolean;
1552
- disabled: boolean;
1553
- 'data-instrumentation': string;
1554
- placeholder: string;
1555
- type: string;
1556
- }, never>>, "max" | "required" | "disabled" | "hidden" | "dir" | "form" | "slot" | "style" | "title" | "pattern" | "invalid" | "color" | "multiple" | "size" | "inline" | "wrap" | "children" | "list" | "step" | "height" | "translate" | "width" | "type" | "readOnly" | "checked" | "name" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "id" | "lang" | "placeholder" | "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" | "data-instrumentation" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "min" | "crossOrigin" | "accept" | "alt" | "autoComplete" | "capture" | "maxLength" | "minLength" | "src" | "variant" | "cols" | "dirName" | "rows" | "inputRef">, {
1557
- readonly space: string[];
1558
- readonly palette: {
1559
- success: string[];
1560
- warning: string[];
1561
- error: string[];
1562
- primary: string[];
1563
- secondary: string[];
1564
- neutral: string[];
1565
- };
1566
- readonly fontFamily: {
1567
- body: string;
1568
- monospace: string;
1569
- };
1570
- readonly fontSize: string[];
1571
- readonly lineHeight: number[];
1572
- readonly radius: string[];
1573
- readonly borderWidth: string[];
1574
- readonly grid: number[];
1575
- readonly shadows: {
1576
- small: string;
1577
- big: string;
1578
- pill: string;
1579
- bigCentered: string;
1580
- popover: string;
1581
- secondaryNavActiveItem: string;
1582
- };
1583
- readonly sizes: {
1584
- PageHeaderIcon: number;
1585
- };
1586
- readonly zIndex: {
1587
- Base: number;
1588
- Overlay: number;
1589
- FormControl: number;
1590
- SecondaryNav: number;
1591
- SecondaryNavActiveItem: number;
1592
- PrimaryNav: number;
1593
- PopOver: number;
1594
- PageHeaderSearch: number;
1595
- Modal: number;
1596
- Tether: number;
1597
- GlobalNav: number;
1598
- Toast: number;
1599
- };
1600
- readonly color: {
1601
- Dune: string;
1602
- CuriousBlue: string;
1603
- FlushMahogany: string;
1604
- Maroon: string;
1605
- PinkSwan: string;
1606
- Matisse: string;
1607
- HummingBird: string;
1608
- Primary: string;
1609
- PrimaryContrast: string;
1610
- PrimaryFade: string;
1611
- PrimaryLight: string;
1612
- PrimaryLightFade: string;
1613
- PrimaryLightHighlight: string;
1614
- PrimaryAccent: string;
1615
- DarkBackground: string;
1616
- DarkBar: string;
1617
- DarkHover: string;
1618
- DarkPrimary: string;
1619
- DarkSecondary: string;
1620
- LightBackground: string;
1621
- LightBar: string;
1622
- LightDisabled: string;
1623
- LightDivider: string;
1624
- LightDividerNew: string;
1625
- LightHint: string;
1626
- LightHover: string;
1627
- LightPrimary: string;
1628
- LightSecondary: string;
1629
- BorderGrey: string;
1630
- Blue: string;
1631
- BlueFade: string;
1632
- Green: string;
1633
- GreenFade: string;
1634
- GreenBackground: string;
1635
- Red: string;
1636
- RedFade: string;
1637
- Yellow: string;
1638
- YellowFade: string;
1639
- YellowHighlight: string;
1640
- Orange: string;
1641
- OrangeFill: string;
1642
- OrangeBackground: string;
1643
- Error: string;
1644
- ErrorFade: string;
1645
- ErrorBackground: string;
1646
- DraggableDraggingBackground: string;
1647
- Aquamarine: string;
1648
- Azure: string;
1649
- AzureNew: string;
1650
- AzureFade: string;
1651
- AzureHighlight: string;
1652
- Silver: string;
1653
- BlueNavy: string;
1654
- Black: string;
1655
- TurquoiseBlue: string;
1656
- SummerSky: string;
1657
- Mondo: string;
1658
- HeavyMetal: string;
1659
- BokaraGrey: string;
1660
- Cyan: string;
1661
- Eucalyptus: string;
1662
- Flamingo: string;
1663
- Zorba: string;
1664
- Flint: string;
1665
- Maya: string;
1666
- Bondi: string;
1667
- Emerald: string;
1668
- Carissma: string;
1669
- Solitude: string;
1670
- WhiteSmoke: string;
1671
- Violet: string;
1672
- FireBrick: string;
1673
- Purple: string;
1674
- Buckthorn: string;
1675
- };
1676
- readonly gradient: {
1677
- main: string;
1678
- neutral: string;
1679
- };
32
+ } & Partial<import("../../mixins/border").Border & import("../../mixins/spacing").Spacing> & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
33
+ children?: import("react").ReactNode;
34
+ } & {
35
+ theme?: import("@emotion/react").Theme | undefined;
36
+ }, {}, {}>;
37
+ export declare const SearchInputContainer: import("@emotion/styled").StyledComponent<any, {}, {}>;
38
+ export declare const SearchInput: import("@emotion/styled").StyledComponent<{
39
+ className?: string | undefined;
40
+ disabled?: boolean | undefined;
41
+ 'data-instrumentation'?: string | undefined;
42
+ id?: string | undefined;
43
+ inline?: boolean | undefined;
44
+ inputRef?: any;
45
+ invalid?: boolean | undefined;
46
+ max?: number | undefined;
47
+ min?: number | undefined;
48
+ name: string;
49
+ onBlur?: ((event: import("react").FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void) | undefined;
50
+ onChange: (arg0: {
51
+ name: string;
52
+ value?: string | number | undefined;
53
+ }) => void;
54
+ placeholder?: string | undefined;
55
+ type?: ("number" | ("password" | "textarea" | "text" | "url" | "email" | "datetime-local")) | undefined;
56
+ value: string | number;
57
+ variant?: ("primary" | "secondary" | {
58
+ borderBottomColor: string;
59
+ color: string;
60
+ focusBorderColor: string;
61
+ placeholderColor: string;
62
+ }) | undefined;
63
+ } & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "onChange"> & Omit<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, "onChange"> & {
64
+ theme?: import("@emotion/react").Theme | undefined;
65
+ }, {}, {
66
+ ref?: import("react").Ref<Input<"number" | ("password" | "textarea" | "text" | "url" | "email" | "datetime-local")>> | undefined;
1680
67
  }>;
1681
- export declare const Textarea: import("@emotion/styled-base").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<{
1682
- invalid: boolean;
1683
- disabled: boolean;
1684
- 'data-instrumentation': string;
1685
- placeholder: string;
1686
- type: string;
1687
- }, never>>, any, {
1688
- readonly space: string[];
1689
- readonly palette: {
1690
- success: string[];
1691
- warning: string[];
1692
- error: string[];
1693
- primary: string[];
1694
- secondary: string[];
1695
- neutral: string[];
1696
- };
1697
- readonly fontFamily: {
1698
- body: string;
1699
- monospace: string;
1700
- };
1701
- readonly fontSize: string[];
1702
- readonly lineHeight: number[];
1703
- readonly radius: string[];
1704
- readonly borderWidth: string[];
1705
- readonly grid: number[];
1706
- readonly shadows: {
1707
- small: string;
1708
- big: string;
1709
- pill: string;
1710
- bigCentered: string;
1711
- popover: string;
1712
- secondaryNavActiveItem: string;
1713
- };
1714
- readonly sizes: {
1715
- PageHeaderIcon: number;
1716
- };
1717
- readonly zIndex: {
1718
- Base: number;
1719
- Overlay: number;
1720
- FormControl: number;
1721
- SecondaryNav: number;
1722
- SecondaryNavActiveItem: number;
1723
- PrimaryNav: number;
1724
- PopOver: number;
1725
- PageHeaderSearch: number;
1726
- Modal: number;
1727
- Tether: number;
1728
- GlobalNav: number;
1729
- Toast: number;
1730
- };
1731
- readonly color: {
1732
- Dune: string;
1733
- CuriousBlue: string;
1734
- FlushMahogany: string;
1735
- Maroon: string;
1736
- PinkSwan: string;
1737
- Matisse: string;
1738
- HummingBird: string;
1739
- Primary: string;
1740
- PrimaryContrast: string;
1741
- PrimaryFade: string;
1742
- PrimaryLight: string;
1743
- PrimaryLightFade: string;
1744
- PrimaryLightHighlight: string;
1745
- PrimaryAccent: string;
1746
- DarkBackground: string;
1747
- DarkBar: string;
1748
- DarkHover: string;
1749
- DarkPrimary: string;
1750
- DarkSecondary: string;
1751
- LightBackground: string;
1752
- LightBar: string;
1753
- LightDisabled: string;
1754
- LightDivider: string;
1755
- LightDividerNew: string;
1756
- LightHint: string;
1757
- LightHover: string;
1758
- LightPrimary: string;
1759
- LightSecondary: string;
1760
- BorderGrey: string;
1761
- Blue: string;
1762
- BlueFade: string;
1763
- Green: string;
1764
- GreenFade: string;
1765
- GreenBackground: string;
1766
- Red: string;
1767
- RedFade: string;
1768
- Yellow: string;
1769
- YellowFade: string;
1770
- YellowHighlight: string;
1771
- Orange: string;
1772
- OrangeFill: string;
1773
- OrangeBackground: string;
1774
- Error: string;
1775
- ErrorFade: string;
1776
- ErrorBackground: string;
1777
- DraggableDraggingBackground: string;
1778
- Aquamarine: string;
1779
- Azure: string;
1780
- AzureNew: string;
1781
- AzureFade: string;
1782
- AzureHighlight: string;
1783
- Silver: string;
1784
- BlueNavy: string;
1785
- Black: string;
1786
- TurquoiseBlue: string;
1787
- SummerSky: string;
1788
- Mondo: string;
1789
- HeavyMetal: string;
1790
- BokaraGrey: string;
1791
- Cyan: string;
1792
- Eucalyptus: string;
1793
- Flamingo: string;
1794
- Zorba: string;
1795
- Flint: string;
1796
- Maya: string;
1797
- Bondi: string;
1798
- Emerald: string;
1799
- Carissma: string;
1800
- Solitude: string;
1801
- WhiteSmoke: string;
1802
- Violet: string;
1803
- FireBrick: string;
1804
- Purple: string;
1805
- Buckthorn: string;
1806
- };
1807
- readonly gradient: {
1808
- main: string;
1809
- neutral: string;
1810
- };
68
+ export declare const Textarea: import("@emotion/styled").StyledComponent<any, {}, {
69
+ ref?: import("react").Ref<Input<"number" | ("password" | "textarea" | "text" | "url" | "email" | "datetime-local")>> | undefined;
1811
70
  }>;
1812
- export declare const Header: import("@emotion/styled-base").StyledComponent<Pick<{
1813
- children: import("react").ReactNode;
1814
- h1?: boolean | undefined;
1815
- h2?: boolean | undefined;
1816
- h3?: boolean | undefined;
1817
- h4?: boolean | undefined;
1818
- h5?: boolean | undefined;
1819
- subtitle?: boolean | undefined;
1820
- title?: boolean | undefined;
1821
- tag?: "h1" | "h2" | "h3" | "h4" | "h5" | undefined;
1822
- } & Partial<import("../../ThemeProvider").ThemeProp>, "children" | "theme" | "tag"> & Partial<Pick<{
1823
- children: import("react").ReactNode;
1824
- h1?: boolean | undefined;
1825
- h2?: boolean | undefined;
1826
- h3?: boolean | undefined;
1827
- h4?: boolean | undefined;
1828
- h5?: boolean | undefined;
1829
- subtitle?: boolean | undefined;
1830
- title?: boolean | undefined;
1831
- tag?: "h1" | "h2" | "h3" | "h4" | "h5" | undefined;
1832
- } & Partial<import("../../ThemeProvider").ThemeProp>, "h1" | "h2" | "h3" | "h4" | "h5" | "title" | "subtitle">> & Partial<Pick<{
1833
- h1: boolean;
1834
- h2: boolean;
1835
- h3: boolean;
1836
- h4: boolean;
1837
- h5: boolean;
1838
- subtitle: boolean;
1839
- title: boolean;
1840
- }, never>>, Pick<Pick<{
71
+ export declare const Header: import("@emotion/styled").StyledComponent<Pick<{
1841
72
  children: import("react").ReactNode;
1842
73
  h1?: boolean | undefined;
1843
74
  h2?: boolean | undefined;
@@ -1865,254 +96,8 @@ export declare const Header: import("@emotion/styled-base").StyledComponent<Pick
1865
96
  h5: boolean;
1866
97
  subtitle: boolean;
1867
98
  title: boolean;
1868
- }, never>>, "h1" | "h2" | "h3" | "h4" | "h5" | "title" | "children" | "theme" | "subtitle" | "tag">, {
1869
- readonly space: string[];
1870
- readonly palette: {
1871
- success: string[];
1872
- warning: string[];
1873
- error: string[];
1874
- primary: string[];
1875
- secondary: string[];
1876
- neutral: string[];
1877
- };
1878
- readonly fontFamily: {
1879
- body: string;
1880
- monospace: string;
1881
- };
1882
- readonly fontSize: string[];
1883
- readonly lineHeight: number[];
1884
- readonly radius: string[];
1885
- readonly borderWidth: string[];
1886
- readonly grid: number[];
1887
- readonly shadows: {
1888
- small: string;
1889
- big: string;
1890
- pill: string;
1891
- bigCentered: string;
1892
- popover: string;
1893
- secondaryNavActiveItem: string;
1894
- };
1895
- readonly sizes: {
1896
- PageHeaderIcon: number;
1897
- };
1898
- readonly zIndex: {
1899
- Base: number;
1900
- Overlay: number;
1901
- FormControl: number;
1902
- SecondaryNav: number;
1903
- SecondaryNavActiveItem: number;
1904
- PrimaryNav: number;
1905
- PopOver: number;
1906
- PageHeaderSearch: number;
1907
- Modal: number;
1908
- Tether: number;
1909
- GlobalNav: number;
1910
- Toast: number;
1911
- };
1912
- readonly color: {
1913
- Dune: string;
1914
- CuriousBlue: string;
1915
- FlushMahogany: string;
1916
- Maroon: string;
1917
- PinkSwan: string;
1918
- Matisse: string;
1919
- HummingBird: string;
1920
- Primary: string;
1921
- PrimaryContrast: string;
1922
- PrimaryFade: string;
1923
- PrimaryLight: string;
1924
- PrimaryLightFade: string;
1925
- PrimaryLightHighlight: string;
1926
- PrimaryAccent: string;
1927
- DarkBackground: string;
1928
- DarkBar: string;
1929
- DarkHover: string;
1930
- DarkPrimary: string;
1931
- DarkSecondary: string;
1932
- LightBackground: string;
1933
- LightBar: string;
1934
- LightDisabled: string;
1935
- LightDivider: string;
1936
- LightDividerNew: string;
1937
- LightHint: string;
1938
- LightHover: string;
1939
- LightPrimary: string;
1940
- LightSecondary: string;
1941
- BorderGrey: string;
1942
- Blue: string;
1943
- BlueFade: string;
1944
- Green: string;
1945
- GreenFade: string;
1946
- GreenBackground: string;
1947
- Red: string;
1948
- RedFade: string;
1949
- Yellow: string;
1950
- YellowFade: string;
1951
- YellowHighlight: string;
1952
- Orange: string;
1953
- OrangeFill: string;
1954
- OrangeBackground: string;
1955
- Error: string;
1956
- ErrorFade: string;
1957
- ErrorBackground: string;
1958
- DraggableDraggingBackground: string;
1959
- Aquamarine: string;
1960
- Azure: string;
1961
- AzureNew: string;
1962
- AzureFade: string;
1963
- AzureHighlight: string;
1964
- Silver: string;
1965
- BlueNavy: string;
1966
- Black: string;
1967
- TurquoiseBlue: string;
1968
- SummerSky: string;
1969
- Mondo: string;
1970
- HeavyMetal: string;
1971
- BokaraGrey: string;
1972
- Cyan: string;
1973
- Eucalyptus: string;
1974
- Flamingo: string;
1975
- Zorba: string;
1976
- Flint: string;
1977
- Maya: string;
1978
- Bondi: string;
1979
- Emerald: string;
1980
- Carissma: string;
1981
- Solitude: string;
1982
- WhiteSmoke: string;
1983
- Violet: string;
1984
- FireBrick: string;
1985
- Purple: string;
1986
- Buckthorn: string;
1987
- };
1988
- readonly gradient: {
1989
- main: string;
1990
- neutral: string;
1991
- };
1992
- }>;
1993
- export declare const SelectorPopover: import("@emotion/styled-base").StyledComponent<import("react").PropsWithChildren<import("../../Popover").PopoverProps>, any, {
1994
- readonly space: string[];
1995
- readonly palette: {
1996
- success: string[];
1997
- warning: string[];
1998
- error: string[];
1999
- primary: string[];
2000
- secondary: string[];
2001
- neutral: string[];
2002
- };
2003
- readonly fontFamily: {
2004
- body: string;
2005
- monospace: string;
2006
- };
2007
- readonly fontSize: string[];
2008
- readonly lineHeight: number[];
2009
- readonly radius: string[];
2010
- readonly borderWidth: string[];
2011
- readonly grid: number[];
2012
- readonly shadows: {
2013
- small: string;
2014
- big: string;
2015
- pill: string;
2016
- bigCentered: string;
2017
- popover: string;
2018
- secondaryNavActiveItem: string;
2019
- };
2020
- readonly sizes: {
2021
- PageHeaderIcon: number;
2022
- };
2023
- readonly zIndex: {
2024
- Base: number;
2025
- Overlay: number;
2026
- FormControl: number;
2027
- SecondaryNav: number;
2028
- SecondaryNavActiveItem: number;
2029
- PrimaryNav: number;
2030
- PopOver: number;
2031
- PageHeaderSearch: number;
2032
- Modal: number;
2033
- Tether: number;
2034
- GlobalNav: number;
2035
- Toast: number;
2036
- };
2037
- readonly color: {
2038
- Dune: string;
2039
- CuriousBlue: string;
2040
- FlushMahogany: string;
2041
- Maroon: string;
2042
- PinkSwan: string;
2043
- Matisse: string;
2044
- HummingBird: string;
2045
- Primary: string;
2046
- PrimaryContrast: string;
2047
- PrimaryFade: string;
2048
- PrimaryLight: string;
2049
- PrimaryLightFade: string;
2050
- PrimaryLightHighlight: string;
2051
- PrimaryAccent: string;
2052
- DarkBackground: string;
2053
- DarkBar: string;
2054
- DarkHover: string;
2055
- DarkPrimary: string;
2056
- DarkSecondary: string;
2057
- LightBackground: string;
2058
- LightBar: string;
2059
- LightDisabled: string;
2060
- LightDivider: string;
2061
- LightDividerNew: string;
2062
- LightHint: string;
2063
- LightHover: string;
2064
- LightPrimary: string;
2065
- LightSecondary: string;
2066
- BorderGrey: string;
2067
- Blue: string;
2068
- BlueFade: string;
2069
- Green: string;
2070
- GreenFade: string;
2071
- GreenBackground: string;
2072
- Red: string;
2073
- RedFade: string;
2074
- Yellow: string;
2075
- YellowFade: string;
2076
- YellowHighlight: string;
2077
- Orange: string;
2078
- OrangeFill: string;
2079
- OrangeBackground: string;
2080
- Error: string;
2081
- ErrorFade: string;
2082
- ErrorBackground: string;
2083
- DraggableDraggingBackground: string;
2084
- Aquamarine: string;
2085
- Azure: string;
2086
- AzureNew: string;
2087
- AzureFade: string;
2088
- AzureHighlight: string;
2089
- Silver: string;
2090
- BlueNavy: string;
2091
- Black: string;
2092
- TurquoiseBlue: string;
2093
- SummerSky: string;
2094
- Mondo: string;
2095
- HeavyMetal: string;
2096
- BokaraGrey: string;
2097
- Cyan: string;
2098
- Eucalyptus: string;
2099
- Flamingo: string;
2100
- Zorba: string;
2101
- Flint: string;
2102
- Maya: string;
2103
- Bondi: string;
2104
- Emerald: string;
2105
- Carissma: string;
2106
- Solitude: string;
2107
- WhiteSmoke: string;
2108
- Violet: string;
2109
- FireBrick: string;
2110
- Purple: string;
2111
- Buckthorn: string;
2112
- };
2113
- readonly gradient: {
2114
- main: string;
2115
- neutral: string;
2116
- };
2117
- }>;
99
+ }, never>> & {
100
+ theme?: import("@emotion/react").Theme | undefined;
101
+ }, {}, {}>;
102
+ export declare const SelectorPopover: import("@emotion/styled").StyledComponent<any, {}, {}>;
2118
103
  //# sourceMappingURL=PopupSelectorElements.d.ts.map