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,2541 +1,59 @@
1
- /// <reference types="types/@emotion/styled" />
2
1
  import React from 'react';
3
- export declare const Wrapper: import("@emotion/styled-base").StyledComponent<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
4
- theme?: {
5
- readonly space: string[];
6
- readonly palette: {
7
- success: string[];
8
- warning: string[];
9
- error: string[];
10
- primary: string[];
11
- secondary: string[];
12
- neutral: string[];
13
- };
14
- readonly fontFamily: {
15
- body: string;
16
- monospace: string;
17
- };
18
- readonly fontSize: string[];
19
- readonly lineHeight: number[];
20
- readonly radius: string[];
21
- readonly borderWidth: string[];
22
- readonly grid: number[];
23
- readonly shadows: {
24
- small: string;
25
- big: string;
26
- pill: string;
27
- bigCentered: string;
28
- popover: string;
29
- secondaryNavActiveItem: string;
30
- };
31
- readonly sizes: {
32
- PageHeaderIcon: number;
33
- };
34
- readonly zIndex: {
35
- Base: number;
36
- Overlay: number;
37
- FormControl: number;
38
- SecondaryNav: number;
39
- SecondaryNavActiveItem: number;
40
- PrimaryNav: number;
41
- PopOver: number;
42
- PageHeaderSearch: number;
43
- Modal: number;
44
- Tether: number;
45
- GlobalNav: number;
46
- Toast: number;
47
- };
48
- readonly color: {
49
- Dune: string;
50
- CuriousBlue: string;
51
- FlushMahogany: string;
52
- Maroon: string;
53
- PinkSwan: string;
54
- Matisse: string;
55
- HummingBird: string;
56
- Primary: string;
57
- PrimaryContrast: string;
58
- PrimaryFade: string;
59
- PrimaryLight: string;
60
- PrimaryLightFade: string;
61
- PrimaryLightHighlight: string;
62
- PrimaryAccent: string;
63
- DarkBackground: string;
64
- DarkBar: string;
65
- DarkHover: string;
66
- DarkPrimary: string;
67
- DarkSecondary: string;
68
- LightBackground: string;
69
- LightBar: string;
70
- LightDisabled: string;
71
- LightDivider: string;
72
- LightDividerNew: string;
73
- LightHint: string;
74
- LightHover: string;
75
- LightPrimary: string;
76
- LightSecondary: string;
77
- BorderGrey: string;
78
- Blue: string;
79
- BlueFade: string;
80
- Green: string;
81
- GreenFade: string;
82
- GreenBackground: string;
83
- Red: string;
84
- RedFade: string;
85
- Yellow: string;
86
- YellowFade: string;
87
- YellowHighlight: string;
88
- Orange: string;
89
- OrangeFill: string;
90
- OrangeBackground: string;
91
- Error: string;
92
- ErrorFade: string;
93
- ErrorBackground: string;
94
- DraggableDraggingBackground: string;
95
- Aquamarine: string;
96
- Azure: string;
97
- AzureNew: string;
98
- AzureFade: string;
99
- AzureHighlight: string;
100
- Silver: string;
101
- BlueNavy: string;
102
- Black: string;
103
- TurquoiseBlue: string;
104
- SummerSky: string;
105
- Mondo: string;
106
- HeavyMetal: string;
107
- BokaraGrey: string;
108
- Cyan: string;
109
- Eucalyptus: string;
110
- Flamingo: string;
111
- Zorba: string;
112
- Flint: string;
113
- Maya: string;
114
- Bondi: string;
115
- Emerald: string;
116
- Carissma: string;
117
- Solitude: string;
118
- WhiteSmoke: string;
119
- Violet: string;
120
- FireBrick: string;
121
- Purple: string;
122
- Buckthorn: string;
123
- };
124
- readonly gradient: {
125
- main: string;
126
- neutral: string;
127
- };
128
- } | undefined;
129
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
130
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
131
- }, Pick<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
132
- theme?: {
133
- readonly space: string[];
134
- readonly palette: {
135
- success: string[];
136
- warning: string[];
137
- error: string[];
138
- primary: string[];
139
- secondary: string[];
140
- neutral: string[];
141
- };
142
- readonly fontFamily: {
143
- body: string;
144
- monospace: string;
145
- };
146
- readonly fontSize: string[];
147
- readonly lineHeight: number[];
148
- readonly radius: string[];
149
- readonly borderWidth: string[];
150
- readonly grid: number[];
151
- readonly shadows: {
152
- small: string;
153
- big: string;
154
- pill: string;
155
- bigCentered: string;
156
- popover: string;
157
- secondaryNavActiveItem: string;
158
- };
159
- readonly sizes: {
160
- PageHeaderIcon: number;
161
- };
162
- readonly zIndex: {
163
- Base: number;
164
- Overlay: number;
165
- FormControl: number;
166
- SecondaryNav: number;
167
- SecondaryNavActiveItem: number;
168
- PrimaryNav: number;
169
- PopOver: number;
170
- PageHeaderSearch: number;
171
- Modal: number;
172
- Tether: number;
173
- GlobalNav: number;
174
- Toast: number;
175
- };
176
- readonly color: {
177
- Dune: string;
178
- CuriousBlue: string;
179
- FlushMahogany: string;
180
- Maroon: string;
181
- PinkSwan: string;
182
- Matisse: string;
183
- HummingBird: string;
184
- Primary: string;
185
- PrimaryContrast: string;
186
- PrimaryFade: string;
187
- PrimaryLight: string;
188
- PrimaryLightFade: string;
189
- PrimaryLightHighlight: string;
190
- PrimaryAccent: string;
191
- DarkBackground: string;
192
- DarkBar: string;
193
- DarkHover: string;
194
- DarkPrimary: string;
195
- DarkSecondary: string;
196
- LightBackground: string;
197
- LightBar: string;
198
- LightDisabled: string;
199
- LightDivider: string;
200
- LightDividerNew: string;
201
- LightHint: string;
202
- LightHover: string;
203
- LightPrimary: string;
204
- LightSecondary: string;
205
- BorderGrey: string;
206
- Blue: string;
207
- BlueFade: string;
208
- Green: string;
209
- GreenFade: string;
210
- GreenBackground: string;
211
- Red: string;
212
- RedFade: string;
213
- Yellow: string;
214
- YellowFade: string;
215
- YellowHighlight: string;
216
- Orange: string;
217
- OrangeFill: string;
218
- OrangeBackground: string;
219
- Error: string;
220
- ErrorFade: string;
221
- ErrorBackground: string;
222
- DraggableDraggingBackground: string;
223
- Aquamarine: string;
224
- Azure: string;
225
- AzureNew: string;
226
- AzureFade: string;
227
- AzureHighlight: string;
228
- Silver: string;
229
- BlueNavy: string;
230
- Black: string;
231
- TurquoiseBlue: string;
232
- SummerSky: string;
233
- Mondo: string;
234
- HeavyMetal: string;
235
- BokaraGrey: string;
236
- Cyan: string;
237
- Eucalyptus: string;
238
- Flamingo: string;
239
- Zorba: string;
240
- Flint: string;
241
- Maya: string;
242
- Bondi: string;
243
- Emerald: string;
244
- Carissma: string;
245
- Solitude: string;
246
- WhiteSmoke: string;
247
- Violet: string;
248
- FireBrick: string;
249
- Purple: string;
250
- Buckthorn: string;
251
- };
252
- readonly gradient: {
253
- main: string;
254
- neutral: string;
255
- };
256
- } | undefined;
257
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
258
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
259
- }, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full">, {
260
- readonly space: string[];
261
- readonly palette: {
262
- success: string[];
263
- warning: string[];
264
- error: string[];
265
- primary: string[];
266
- secondary: string[];
267
- neutral: string[];
268
- };
269
- readonly fontFamily: {
270
- body: string;
271
- monospace: string;
272
- };
273
- readonly fontSize: string[];
274
- readonly lineHeight: number[];
275
- readonly radius: string[];
276
- readonly borderWidth: string[];
277
- readonly grid: number[];
278
- readonly shadows: {
279
- small: string;
280
- big: string;
281
- pill: string;
282
- bigCentered: string;
283
- popover: string;
284
- secondaryNavActiveItem: string;
285
- };
286
- readonly sizes: {
287
- PageHeaderIcon: number;
288
- };
289
- readonly zIndex: {
290
- Base: number;
291
- Overlay: number;
292
- FormControl: number;
293
- SecondaryNav: number;
294
- SecondaryNavActiveItem: number;
295
- PrimaryNav: number;
296
- PopOver: number;
297
- PageHeaderSearch: number;
298
- Modal: number;
299
- Tether: number;
300
- GlobalNav: number;
301
- Toast: number;
302
- };
303
- readonly color: {
304
- Dune: string;
305
- CuriousBlue: string;
306
- FlushMahogany: string;
307
- Maroon: string;
308
- PinkSwan: string;
309
- Matisse: string;
310
- HummingBird: string;
311
- Primary: string;
312
- PrimaryContrast: string;
313
- PrimaryFade: string;
314
- PrimaryLight: string;
315
- PrimaryLightFade: string;
316
- PrimaryLightHighlight: string;
317
- PrimaryAccent: string;
318
- DarkBackground: string;
319
- DarkBar: string;
320
- DarkHover: string;
321
- DarkPrimary: string;
322
- DarkSecondary: string;
323
- LightBackground: string;
324
- LightBar: string;
325
- LightDisabled: string;
326
- LightDivider: string;
327
- LightDividerNew: string;
328
- LightHint: string;
329
- LightHover: string;
330
- LightPrimary: string;
331
- LightSecondary: string;
332
- BorderGrey: string;
333
- Blue: string;
334
- BlueFade: string;
335
- Green: string;
336
- GreenFade: string;
337
- GreenBackground: string;
338
- Red: string;
339
- RedFade: string;
340
- Yellow: string;
341
- YellowFade: string;
342
- YellowHighlight: string;
343
- Orange: string;
344
- OrangeFill: string;
345
- OrangeBackground: string;
346
- Error: string;
347
- ErrorFade: string;
348
- ErrorBackground: string;
349
- DraggableDraggingBackground: string;
350
- Aquamarine: string;
351
- Azure: string;
352
- AzureNew: string;
353
- AzureFade: string;
354
- AzureHighlight: string;
355
- Silver: string;
356
- BlueNavy: string;
357
- Black: string;
358
- TurquoiseBlue: string;
359
- SummerSky: string;
360
- Mondo: string;
361
- HeavyMetal: string;
362
- BokaraGrey: string;
363
- Cyan: string;
364
- Eucalyptus: string;
365
- Flamingo: string;
366
- Zorba: string;
367
- Flint: string;
368
- Maya: string;
369
- Bondi: string;
370
- Emerald: string;
371
- Carissma: string;
372
- Solitude: string;
373
- WhiteSmoke: string;
374
- Violet: string;
375
- FireBrick: string;
376
- Purple: string;
377
- Buckthorn: string;
378
- };
379
- readonly gradient: {
380
- main: string;
381
- neutral: string;
382
- };
383
- }>;
384
- export declare const TitleBar: import("@emotion/styled-base").StyledComponent<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & 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
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
511
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
512
- }, Pick<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
513
- theme?: {
514
- readonly space: string[];
515
- readonly palette: {
516
- success: string[];
517
- warning: string[];
518
- error: string[];
519
- primary: string[];
520
- secondary: string[];
521
- neutral: string[];
522
- };
523
- readonly fontFamily: {
524
- body: string;
525
- monospace: string;
526
- };
527
- readonly fontSize: string[];
528
- readonly lineHeight: number[];
529
- readonly radius: string[];
530
- readonly borderWidth: string[];
531
- readonly grid: number[];
532
- readonly shadows: {
533
- small: string;
534
- big: string;
535
- pill: string;
536
- bigCentered: string;
537
- popover: string;
538
- secondaryNavActiveItem: string;
539
- };
540
- readonly sizes: {
541
- PageHeaderIcon: number;
542
- };
543
- readonly zIndex: {
544
- Base: number;
545
- Overlay: number;
546
- FormControl: number;
547
- SecondaryNav: number;
548
- SecondaryNavActiveItem: number;
549
- PrimaryNav: number;
550
- PopOver: number;
551
- PageHeaderSearch: number;
552
- Modal: number;
553
- Tether: number;
554
- GlobalNav: number;
555
- Toast: number;
556
- };
557
- readonly color: {
558
- Dune: string;
559
- CuriousBlue: string;
560
- FlushMahogany: string;
561
- Maroon: string;
562
- PinkSwan: string;
563
- Matisse: string;
564
- HummingBird: string;
565
- Primary: string;
566
- PrimaryContrast: string;
567
- PrimaryFade: string;
568
- PrimaryLight: string;
569
- PrimaryLightFade: string;
570
- PrimaryLightHighlight: string;
571
- PrimaryAccent: string;
572
- DarkBackground: string;
573
- DarkBar: string;
574
- DarkHover: string;
575
- DarkPrimary: string;
576
- DarkSecondary: string;
577
- LightBackground: string;
578
- LightBar: string;
579
- LightDisabled: string;
580
- LightDivider: string;
581
- LightDividerNew: string;
582
- LightHint: string;
583
- LightHover: string;
584
- LightPrimary: string;
585
- LightSecondary: string;
586
- BorderGrey: string;
587
- Blue: string;
588
- BlueFade: string;
589
- Green: string;
590
- GreenFade: string;
591
- GreenBackground: string;
592
- Red: string;
593
- RedFade: string;
594
- Yellow: string;
595
- YellowFade: string;
596
- YellowHighlight: string;
597
- Orange: string;
598
- OrangeFill: string;
599
- OrangeBackground: string;
600
- Error: string;
601
- ErrorFade: string;
602
- ErrorBackground: string;
603
- DraggableDraggingBackground: string;
604
- Aquamarine: string;
605
- Azure: string;
606
- AzureNew: string;
607
- AzureFade: string;
608
- AzureHighlight: string;
609
- Silver: string;
610
- BlueNavy: string;
611
- Black: string;
612
- TurquoiseBlue: string;
613
- SummerSky: string;
614
- Mondo: string;
615
- HeavyMetal: string;
616
- BokaraGrey: string;
617
- Cyan: string;
618
- Eucalyptus: string;
619
- Flamingo: string;
620
- Zorba: string;
621
- Flint: string;
622
- Maya: string;
623
- Bondi: string;
624
- Emerald: string;
625
- Carissma: string;
626
- Solitude: string;
627
- WhiteSmoke: string;
628
- Violet: string;
629
- FireBrick: string;
630
- Purple: string;
631
- Buckthorn: string;
632
- };
633
- readonly gradient: {
634
- main: string;
635
- neutral: string;
636
- };
637
- } | undefined;
638
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
639
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
640
- }, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full">, {
641
- readonly space: string[];
642
- readonly palette: {
643
- success: string[];
644
- warning: string[];
645
- error: string[];
646
- primary: string[];
647
- secondary: string[];
648
- neutral: string[];
649
- };
650
- readonly fontFamily: {
651
- body: string;
652
- monospace: string;
653
- };
654
- readonly fontSize: string[];
655
- readonly lineHeight: number[];
656
- readonly radius: string[];
657
- readonly borderWidth: string[];
658
- readonly grid: number[];
659
- readonly shadows: {
660
- small: string;
661
- big: string;
662
- pill: string;
663
- bigCentered: string;
664
- popover: string;
665
- secondaryNavActiveItem: string;
666
- };
667
- readonly sizes: {
668
- PageHeaderIcon: number;
669
- };
670
- readonly zIndex: {
671
- Base: number;
672
- Overlay: number;
673
- FormControl: number;
674
- SecondaryNav: number;
675
- SecondaryNavActiveItem: number;
676
- PrimaryNav: number;
677
- PopOver: number;
678
- PageHeaderSearch: number;
679
- Modal: number;
680
- Tether: number;
681
- GlobalNav: number;
682
- Toast: number;
683
- };
684
- readonly color: {
685
- Dune: string;
686
- CuriousBlue: string;
687
- FlushMahogany: string;
688
- Maroon: string;
689
- PinkSwan: string;
690
- Matisse: string;
691
- HummingBird: string;
692
- Primary: string;
693
- PrimaryContrast: string;
694
- PrimaryFade: string;
695
- PrimaryLight: string;
696
- PrimaryLightFade: string;
697
- PrimaryLightHighlight: string;
698
- PrimaryAccent: string;
699
- DarkBackground: string;
700
- DarkBar: string;
701
- DarkHover: string;
702
- DarkPrimary: string;
703
- DarkSecondary: string;
704
- LightBackground: string;
705
- LightBar: string;
706
- LightDisabled: string;
707
- LightDivider: string;
708
- LightDividerNew: string;
709
- LightHint: string;
710
- LightHover: string;
711
- LightPrimary: string;
712
- LightSecondary: string;
713
- BorderGrey: string;
714
- Blue: string;
715
- BlueFade: string;
716
- Green: string;
717
- GreenFade: string;
718
- GreenBackground: string;
719
- Red: string;
720
- RedFade: string;
721
- Yellow: string;
722
- YellowFade: string;
723
- YellowHighlight: string;
724
- Orange: string;
725
- OrangeFill: string;
726
- OrangeBackground: string;
727
- Error: string;
728
- ErrorFade: string;
729
- ErrorBackground: string;
730
- DraggableDraggingBackground: string;
731
- Aquamarine: string;
732
- Azure: string;
733
- AzureNew: string;
734
- AzureFade: string;
735
- AzureHighlight: string;
736
- Silver: string;
737
- BlueNavy: string;
738
- Black: string;
739
- TurquoiseBlue: string;
740
- SummerSky: string;
741
- Mondo: string;
742
- HeavyMetal: string;
743
- BokaraGrey: string;
744
- Cyan: string;
745
- Eucalyptus: string;
746
- Flamingo: string;
747
- Zorba: string;
748
- Flint: string;
749
- Maya: string;
750
- Bondi: string;
751
- Emerald: string;
752
- Carissma: string;
753
- Solitude: string;
754
- WhiteSmoke: string;
755
- Violet: string;
756
- FireBrick: string;
757
- Purple: string;
758
- Buckthorn: string;
759
- };
760
- readonly gradient: {
761
- main: string;
762
- neutral: string;
763
- };
764
- }>;
765
- export declare const TitleArea: import("@emotion/styled-base").StyledComponent<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
766
- theme?: {
767
- readonly space: string[];
768
- readonly palette: {
769
- success: string[];
770
- warning: string[];
771
- error: string[];
772
- primary: string[];
773
- secondary: string[];
774
- neutral: string[];
775
- };
776
- readonly fontFamily: {
777
- body: string;
778
- monospace: string;
779
- };
780
- readonly fontSize: string[];
781
- readonly lineHeight: number[];
782
- readonly radius: string[];
783
- readonly borderWidth: string[];
784
- readonly grid: number[];
785
- readonly shadows: {
786
- small: string;
787
- big: string;
788
- pill: string;
789
- bigCentered: string;
790
- popover: string;
791
- secondaryNavActiveItem: string;
792
- };
793
- readonly sizes: {
794
- PageHeaderIcon: number;
795
- };
796
- readonly zIndex: {
797
- Base: number;
798
- Overlay: number;
799
- FormControl: number;
800
- SecondaryNav: number;
801
- SecondaryNavActiveItem: number;
802
- PrimaryNav: number;
803
- PopOver: number;
804
- PageHeaderSearch: number;
805
- Modal: number;
806
- Tether: number;
807
- GlobalNav: number;
808
- Toast: number;
809
- };
810
- readonly color: {
811
- Dune: string;
812
- CuriousBlue: string;
813
- FlushMahogany: string;
814
- Maroon: string;
815
- PinkSwan: string;
816
- Matisse: string;
817
- HummingBird: string;
818
- Primary: string;
819
- PrimaryContrast: string;
820
- PrimaryFade: string;
821
- PrimaryLight: string;
822
- PrimaryLightFade: string;
823
- PrimaryLightHighlight: string;
824
- PrimaryAccent: string;
825
- DarkBackground: string;
826
- DarkBar: string;
827
- DarkHover: string;
828
- DarkPrimary: string;
829
- DarkSecondary: string;
830
- LightBackground: string;
831
- LightBar: string;
832
- LightDisabled: string;
833
- LightDivider: string;
834
- LightDividerNew: string;
835
- LightHint: string;
836
- LightHover: string;
837
- LightPrimary: string;
838
- LightSecondary: string;
839
- BorderGrey: string;
840
- Blue: string;
841
- BlueFade: string;
842
- Green: string;
843
- GreenFade: string;
844
- GreenBackground: string;
845
- Red: string;
846
- RedFade: string;
847
- Yellow: string;
848
- YellowFade: string;
849
- YellowHighlight: string;
850
- Orange: string;
851
- OrangeFill: string;
852
- OrangeBackground: string;
853
- Error: string;
854
- ErrorFade: string;
855
- ErrorBackground: string;
856
- DraggableDraggingBackground: string;
857
- Aquamarine: string;
858
- Azure: string;
859
- AzureNew: string;
860
- AzureFade: string;
861
- AzureHighlight: string;
862
- Silver: string;
863
- BlueNavy: string;
864
- Black: string;
865
- TurquoiseBlue: string;
866
- SummerSky: string;
867
- Mondo: string;
868
- HeavyMetal: string;
869
- BokaraGrey: string;
870
- Cyan: string;
871
- Eucalyptus: string;
872
- Flamingo: string;
873
- Zorba: string;
874
- Flint: string;
875
- Maya: string;
876
- Bondi: string;
877
- Emerald: string;
878
- Carissma: string;
879
- Solitude: string;
880
- WhiteSmoke: string;
881
- Violet: string;
882
- FireBrick: string;
883
- Purple: string;
884
- Buckthorn: string;
885
- };
886
- readonly gradient: {
887
- main: string;
888
- neutral: string;
889
- };
890
- } | undefined;
891
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
892
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
893
- }, Pick<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
894
- theme?: {
895
- readonly space: string[];
896
- readonly palette: {
897
- success: string[];
898
- warning: string[];
899
- error: string[];
900
- primary: string[];
901
- secondary: string[];
902
- neutral: string[];
903
- };
904
- readonly fontFamily: {
905
- body: string;
906
- monospace: string;
907
- };
908
- readonly fontSize: string[];
909
- readonly lineHeight: number[];
910
- readonly radius: string[];
911
- readonly borderWidth: string[];
912
- readonly grid: number[];
913
- readonly shadows: {
914
- small: string;
915
- big: string;
916
- pill: string;
917
- bigCentered: string;
918
- popover: string;
919
- secondaryNavActiveItem: string;
920
- };
921
- readonly sizes: {
922
- PageHeaderIcon: number;
923
- };
924
- readonly zIndex: {
925
- Base: number;
926
- Overlay: number;
927
- FormControl: number;
928
- SecondaryNav: number;
929
- SecondaryNavActiveItem: number;
930
- PrimaryNav: number;
931
- PopOver: number;
932
- PageHeaderSearch: number;
933
- Modal: number;
934
- Tether: number;
935
- GlobalNav: number;
936
- Toast: number;
937
- };
938
- readonly color: {
939
- Dune: string;
940
- CuriousBlue: string;
941
- FlushMahogany: string;
942
- Maroon: string;
943
- PinkSwan: string;
944
- Matisse: string;
945
- HummingBird: string;
946
- Primary: string;
947
- PrimaryContrast: string;
948
- PrimaryFade: string;
949
- PrimaryLight: string;
950
- PrimaryLightFade: string;
951
- PrimaryLightHighlight: string;
952
- PrimaryAccent: string;
953
- DarkBackground: string;
954
- DarkBar: string;
955
- DarkHover: string;
956
- DarkPrimary: string;
957
- DarkSecondary: string;
958
- LightBackground: string;
959
- LightBar: string;
960
- LightDisabled: string;
961
- LightDivider: string;
962
- LightDividerNew: string;
963
- LightHint: string;
964
- LightHover: string;
965
- LightPrimary: string;
966
- LightSecondary: string;
967
- BorderGrey: string;
968
- Blue: string;
969
- BlueFade: string;
970
- Green: string;
971
- GreenFade: string;
972
- GreenBackground: string;
973
- Red: string;
974
- RedFade: string;
975
- Yellow: string;
976
- YellowFade: string;
977
- YellowHighlight: string;
978
- Orange: string;
979
- OrangeFill: string;
980
- OrangeBackground: string;
981
- Error: string;
982
- ErrorFade: string;
983
- ErrorBackground: string;
984
- DraggableDraggingBackground: string;
985
- Aquamarine: string;
986
- Azure: string;
987
- AzureNew: string;
988
- AzureFade: string;
989
- AzureHighlight: string;
990
- Silver: string;
991
- BlueNavy: string;
992
- Black: string;
993
- TurquoiseBlue: string;
994
- SummerSky: string;
995
- Mondo: string;
996
- HeavyMetal: string;
997
- BokaraGrey: string;
998
- Cyan: string;
999
- Eucalyptus: string;
1000
- Flamingo: string;
1001
- Zorba: string;
1002
- Flint: string;
1003
- Maya: string;
1004
- Bondi: string;
1005
- Emerald: string;
1006
- Carissma: string;
1007
- Solitude: string;
1008
- WhiteSmoke: string;
1009
- Violet: string;
1010
- FireBrick: string;
1011
- Purple: string;
1012
- Buckthorn: string;
1013
- };
1014
- readonly gradient: {
1015
- main: string;
1016
- neutral: string;
1017
- };
1018
- } | undefined;
1019
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
1020
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
1021
- }, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full">, {
1022
- readonly space: string[];
1023
- readonly palette: {
1024
- success: string[];
1025
- warning: string[];
1026
- error: string[];
1027
- primary: string[];
1028
- secondary: string[];
1029
- neutral: string[];
1030
- };
1031
- readonly fontFamily: {
1032
- body: string;
1033
- monospace: string;
1034
- };
1035
- readonly fontSize: string[];
1036
- readonly lineHeight: number[];
1037
- readonly radius: string[];
1038
- readonly borderWidth: string[];
1039
- readonly grid: number[];
1040
- readonly shadows: {
1041
- small: string;
1042
- big: string;
1043
- pill: string;
1044
- bigCentered: string;
1045
- popover: string;
1046
- secondaryNavActiveItem: string;
1047
- };
1048
- readonly sizes: {
1049
- PageHeaderIcon: number;
1050
- };
1051
- readonly zIndex: {
1052
- Base: number;
1053
- Overlay: number;
1054
- FormControl: number;
1055
- SecondaryNav: number;
1056
- SecondaryNavActiveItem: number;
1057
- PrimaryNav: number;
1058
- PopOver: number;
1059
- PageHeaderSearch: number;
1060
- Modal: number;
1061
- Tether: number;
1062
- GlobalNav: number;
1063
- Toast: number;
1064
- };
1065
- readonly color: {
1066
- Dune: string;
1067
- CuriousBlue: string;
1068
- FlushMahogany: string;
1069
- Maroon: string;
1070
- PinkSwan: string;
1071
- Matisse: string;
1072
- HummingBird: string;
1073
- Primary: string;
1074
- PrimaryContrast: string;
1075
- PrimaryFade: string;
1076
- PrimaryLight: string;
1077
- PrimaryLightFade: string;
1078
- PrimaryLightHighlight: string;
1079
- PrimaryAccent: string;
1080
- DarkBackground: string;
1081
- DarkBar: string;
1082
- DarkHover: string;
1083
- DarkPrimary: string;
1084
- DarkSecondary: string;
1085
- LightBackground: string;
1086
- LightBar: string;
1087
- LightDisabled: string;
1088
- LightDivider: string;
1089
- LightDividerNew: string;
1090
- LightHint: string;
1091
- LightHover: string;
1092
- LightPrimary: string;
1093
- LightSecondary: string;
1094
- BorderGrey: string;
1095
- Blue: string;
1096
- BlueFade: string;
1097
- Green: string;
1098
- GreenFade: string;
1099
- GreenBackground: string;
1100
- Red: string;
1101
- RedFade: string;
1102
- Yellow: string;
1103
- YellowFade: string;
1104
- YellowHighlight: string;
1105
- Orange: string;
1106
- OrangeFill: string;
1107
- OrangeBackground: string;
1108
- Error: string;
1109
- ErrorFade: string;
1110
- ErrorBackground: string;
1111
- DraggableDraggingBackground: string;
1112
- Aquamarine: string;
1113
- Azure: string;
1114
- AzureNew: string;
1115
- AzureFade: string;
1116
- AzureHighlight: string;
1117
- Silver: string;
1118
- BlueNavy: string;
1119
- Black: string;
1120
- TurquoiseBlue: string;
1121
- SummerSky: string;
1122
- Mondo: string;
1123
- HeavyMetal: string;
1124
- BokaraGrey: string;
1125
- Cyan: string;
1126
- Eucalyptus: string;
1127
- Flamingo: string;
1128
- Zorba: string;
1129
- Flint: string;
1130
- Maya: string;
1131
- Bondi: string;
1132
- Emerald: string;
1133
- Carissma: string;
1134
- Solitude: string;
1135
- WhiteSmoke: string;
1136
- Violet: string;
1137
- FireBrick: string;
1138
- Purple: string;
1139
- Buckthorn: string;
1140
- };
1141
- readonly gradient: {
1142
- main: string;
1143
- neutral: string;
1144
- };
1145
- }>;
1146
- export declare const WrappedIcon: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "hidden" | "dir" | "slot" | "style" | "title" | "color" | "children" | "translate" | "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">, {
1147
- readonly space: string[];
1148
- readonly palette: {
1149
- success: string[];
1150
- warning: string[];
1151
- error: string[];
1152
- primary: string[];
1153
- secondary: string[];
1154
- neutral: string[];
1155
- };
1156
- readonly fontFamily: {
1157
- body: string;
1158
- monospace: string;
1159
- };
1160
- readonly fontSize: string[];
1161
- readonly lineHeight: number[];
1162
- readonly radius: string[];
1163
- readonly borderWidth: string[];
1164
- readonly grid: number[];
1165
- readonly shadows: {
1166
- small: string;
1167
- big: string;
1168
- pill: string;
1169
- bigCentered: string;
1170
- popover: string;
1171
- secondaryNavActiveItem: string;
1172
- };
1173
- readonly sizes: {
1174
- PageHeaderIcon: number;
1175
- };
1176
- readonly zIndex: {
1177
- Base: number;
1178
- Overlay: number;
1179
- FormControl: number;
1180
- SecondaryNav: number;
1181
- SecondaryNavActiveItem: number;
1182
- PrimaryNav: number;
1183
- PopOver: number;
1184
- PageHeaderSearch: number;
1185
- Modal: number;
1186
- Tether: number;
1187
- GlobalNav: number;
1188
- Toast: number;
1189
- };
1190
- readonly color: {
1191
- Dune: string;
1192
- CuriousBlue: string;
1193
- FlushMahogany: string;
1194
- Maroon: string;
1195
- PinkSwan: string;
1196
- Matisse: string;
1197
- HummingBird: string;
1198
- Primary: string;
1199
- PrimaryContrast: string;
1200
- PrimaryFade: string;
1201
- PrimaryLight: string;
1202
- PrimaryLightFade: string;
1203
- PrimaryLightHighlight: string;
1204
- PrimaryAccent: string;
1205
- DarkBackground: string;
1206
- DarkBar: string;
1207
- DarkHover: string;
1208
- DarkPrimary: string;
1209
- DarkSecondary: string;
1210
- LightBackground: string;
1211
- LightBar: string;
1212
- LightDisabled: string;
1213
- LightDivider: string;
1214
- LightDividerNew: string;
1215
- LightHint: string;
1216
- LightHover: string;
1217
- LightPrimary: string;
1218
- LightSecondary: string;
1219
- BorderGrey: string;
1220
- Blue: string;
1221
- BlueFade: string;
1222
- Green: string;
1223
- GreenFade: string;
1224
- GreenBackground: string;
1225
- Red: string;
1226
- RedFade: string;
1227
- Yellow: string;
1228
- YellowFade: string;
1229
- YellowHighlight: string;
1230
- Orange: string;
1231
- OrangeFill: string;
1232
- OrangeBackground: string;
1233
- Error: string;
1234
- ErrorFade: string;
1235
- ErrorBackground: string;
1236
- DraggableDraggingBackground: string;
1237
- Aquamarine: string;
1238
- Azure: string;
1239
- AzureNew: string;
1240
- AzureFade: string;
1241
- AzureHighlight: string;
1242
- Silver: string;
1243
- BlueNavy: string;
1244
- Black: string;
1245
- TurquoiseBlue: string;
1246
- SummerSky: string;
1247
- Mondo: string;
1248
- HeavyMetal: string;
1249
- BokaraGrey: string;
1250
- Cyan: string;
1251
- Eucalyptus: string;
1252
- Flamingo: string;
1253
- Zorba: string;
1254
- Flint: string;
1255
- Maya: string;
1256
- Bondi: string;
1257
- Emerald: string;
1258
- Carissma: string;
1259
- Solitude: string;
1260
- WhiteSmoke: string;
1261
- Violet: string;
1262
- FireBrick: string;
1263
- Purple: string;
1264
- Buckthorn: string;
1265
- };
1266
- readonly gradient: {
1267
- main: string;
1268
- neutral: string;
1269
- };
1270
- }>;
1271
- export declare const Title: import("@emotion/styled-base").StyledComponent<import("../RightTruncatedText").TruncatedTextProps, Pick<import("../RightTruncatedText").TruncatedTextProps, "title" | "text" | "className" | "id">, {
1272
- readonly space: string[];
1273
- readonly palette: {
1274
- success: string[];
1275
- warning: string[];
1276
- error: string[];
1277
- primary: string[];
1278
- secondary: string[];
1279
- neutral: string[];
1280
- };
1281
- readonly fontFamily: {
1282
- body: string;
1283
- monospace: string;
1284
- };
1285
- readonly fontSize: string[];
1286
- readonly lineHeight: number[];
1287
- readonly radius: string[];
1288
- readonly borderWidth: string[];
1289
- readonly grid: number[];
1290
- readonly shadows: {
1291
- small: string;
1292
- big: string;
1293
- pill: string;
1294
- bigCentered: string;
1295
- popover: string;
1296
- secondaryNavActiveItem: string;
1297
- };
1298
- readonly sizes: {
1299
- PageHeaderIcon: number;
1300
- };
1301
- readonly zIndex: {
1302
- Base: number;
1303
- Overlay: number;
1304
- FormControl: number;
1305
- SecondaryNav: number;
1306
- SecondaryNavActiveItem: number;
1307
- PrimaryNav: number;
1308
- PopOver: number;
1309
- PageHeaderSearch: number;
1310
- Modal: number;
1311
- Tether: number;
1312
- GlobalNav: number;
1313
- Toast: number;
1314
- };
1315
- readonly color: {
1316
- Dune: string;
1317
- CuriousBlue: string;
1318
- FlushMahogany: string;
1319
- Maroon: string;
1320
- PinkSwan: string;
1321
- Matisse: string;
1322
- HummingBird: string;
1323
- Primary: string;
1324
- PrimaryContrast: string;
1325
- PrimaryFade: string;
1326
- PrimaryLight: string;
1327
- PrimaryLightFade: string;
1328
- PrimaryLightHighlight: string;
1329
- PrimaryAccent: string;
1330
- DarkBackground: string;
1331
- DarkBar: string;
1332
- DarkHover: string;
1333
- DarkPrimary: string;
1334
- DarkSecondary: string;
1335
- LightBackground: string;
1336
- LightBar: string;
1337
- LightDisabled: string;
1338
- LightDivider: string;
1339
- LightDividerNew: string;
1340
- LightHint: string;
1341
- LightHover: string;
1342
- LightPrimary: string;
1343
- LightSecondary: string;
1344
- BorderGrey: string;
1345
- Blue: string;
1346
- BlueFade: string;
1347
- Green: string;
1348
- GreenFade: string;
1349
- GreenBackground: string;
1350
- Red: string;
1351
- RedFade: string;
1352
- Yellow: string;
1353
- YellowFade: string;
1354
- YellowHighlight: string;
1355
- Orange: string;
1356
- OrangeFill: string;
1357
- OrangeBackground: string;
1358
- Error: string;
1359
- ErrorFade: string;
1360
- ErrorBackground: string;
1361
- DraggableDraggingBackground: string;
1362
- Aquamarine: string;
1363
- Azure: string;
1364
- AzureNew: string;
1365
- AzureFade: string;
1366
- AzureHighlight: string;
1367
- Silver: string;
1368
- BlueNavy: string;
1369
- Black: string;
1370
- TurquoiseBlue: string;
1371
- SummerSky: string;
1372
- Mondo: string;
1373
- HeavyMetal: string;
1374
- BokaraGrey: string;
1375
- Cyan: string;
1376
- Eucalyptus: string;
1377
- Flamingo: string;
1378
- Zorba: string;
1379
- Flint: string;
1380
- Maya: string;
1381
- Bondi: string;
1382
- Emerald: string;
1383
- Carissma: string;
1384
- Solitude: string;
1385
- WhiteSmoke: string;
1386
- Violet: string;
1387
- FireBrick: string;
1388
- Purple: string;
1389
- Buckthorn: string;
1390
- };
1391
- readonly gradient: {
1392
- main: string;
1393
- neutral: string;
1394
- };
1395
- }>;
1396
- export declare const Main: import("@emotion/styled-base").StyledComponent<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
1397
- theme?: {
1398
- readonly space: string[];
1399
- readonly palette: {
1400
- success: string[];
1401
- warning: string[];
1402
- error: string[];
1403
- primary: string[];
1404
- secondary: string[];
1405
- neutral: string[];
1406
- };
1407
- readonly fontFamily: {
1408
- body: string;
1409
- monospace: string;
1410
- };
1411
- readonly fontSize: string[];
1412
- readonly lineHeight: number[];
1413
- readonly radius: string[];
1414
- readonly borderWidth: string[];
1415
- readonly grid: number[];
1416
- readonly shadows: {
1417
- small: string;
1418
- big: string;
1419
- pill: string;
1420
- bigCentered: string;
1421
- popover: string;
1422
- secondaryNavActiveItem: string;
1423
- };
1424
- readonly sizes: {
1425
- PageHeaderIcon: number;
1426
- };
1427
- readonly zIndex: {
1428
- Base: number;
1429
- Overlay: number;
1430
- FormControl: number;
1431
- SecondaryNav: number;
1432
- SecondaryNavActiveItem: number;
1433
- PrimaryNav: number;
1434
- PopOver: number;
1435
- PageHeaderSearch: number;
1436
- Modal: number;
1437
- Tether: number;
1438
- GlobalNav: number;
1439
- Toast: number;
1440
- };
1441
- readonly color: {
1442
- Dune: string;
1443
- CuriousBlue: string;
1444
- FlushMahogany: string;
1445
- Maroon: string;
1446
- PinkSwan: string;
1447
- Matisse: string;
1448
- HummingBird: string;
1449
- Primary: string;
1450
- PrimaryContrast: string;
1451
- PrimaryFade: string;
1452
- PrimaryLight: string;
1453
- PrimaryLightFade: string;
1454
- PrimaryLightHighlight: string;
1455
- PrimaryAccent: string;
1456
- DarkBackground: string;
1457
- DarkBar: string;
1458
- DarkHover: string;
1459
- DarkPrimary: string;
1460
- DarkSecondary: string;
1461
- LightBackground: string;
1462
- LightBar: string;
1463
- LightDisabled: string;
1464
- LightDivider: string;
1465
- LightDividerNew: string;
1466
- LightHint: string;
1467
- LightHover: string;
1468
- LightPrimary: string;
1469
- LightSecondary: string;
1470
- BorderGrey: string;
1471
- Blue: string;
1472
- BlueFade: string;
1473
- Green: string;
1474
- GreenFade: string;
1475
- GreenBackground: string;
1476
- Red: string;
1477
- RedFade: string;
1478
- Yellow: string;
1479
- YellowFade: string;
1480
- YellowHighlight: string;
1481
- Orange: string;
1482
- OrangeFill: string;
1483
- OrangeBackground: string;
1484
- Error: string;
1485
- ErrorFade: string;
1486
- ErrorBackground: string;
1487
- DraggableDraggingBackground: string;
1488
- Aquamarine: string;
1489
- Azure: string;
1490
- AzureNew: string;
1491
- AzureFade: string;
1492
- AzureHighlight: string;
1493
- Silver: string;
1494
- BlueNavy: string;
1495
- Black: string;
1496
- TurquoiseBlue: string;
1497
- SummerSky: string;
1498
- Mondo: string;
1499
- HeavyMetal: string;
1500
- BokaraGrey: string;
1501
- Cyan: string;
1502
- Eucalyptus: string;
1503
- Flamingo: string;
1504
- Zorba: string;
1505
- Flint: string;
1506
- Maya: string;
1507
- Bondi: string;
1508
- Emerald: string;
1509
- Carissma: string;
1510
- Solitude: string;
1511
- WhiteSmoke: string;
1512
- Violet: string;
1513
- FireBrick: string;
1514
- Purple: string;
1515
- Buckthorn: string;
1516
- };
1517
- readonly gradient: {
1518
- main: string;
1519
- neutral: string;
1520
- };
1521
- } | undefined;
1522
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
1523
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
1524
- }, Pick<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
1525
- theme?: {
1526
- readonly space: string[];
1527
- readonly palette: {
1528
- success: string[];
1529
- warning: string[];
1530
- error: string[];
1531
- primary: string[];
1532
- secondary: string[];
1533
- neutral: string[];
1534
- };
1535
- readonly fontFamily: {
1536
- body: string;
1537
- monospace: string;
1538
- };
1539
- readonly fontSize: string[];
1540
- readonly lineHeight: number[];
1541
- readonly radius: string[];
1542
- readonly borderWidth: string[];
1543
- readonly grid: number[];
1544
- readonly shadows: {
1545
- small: string;
1546
- big: string;
1547
- pill: string;
1548
- bigCentered: string;
1549
- popover: string;
1550
- secondaryNavActiveItem: string;
1551
- };
1552
- readonly sizes: {
1553
- PageHeaderIcon: number;
1554
- };
1555
- readonly zIndex: {
1556
- Base: number;
1557
- Overlay: number;
1558
- FormControl: number;
1559
- SecondaryNav: number;
1560
- SecondaryNavActiveItem: number;
1561
- PrimaryNav: number;
1562
- PopOver: number;
1563
- PageHeaderSearch: number;
1564
- Modal: number;
1565
- Tether: number;
1566
- GlobalNav: number;
1567
- Toast: number;
1568
- };
1569
- readonly color: {
1570
- Dune: string;
1571
- CuriousBlue: string;
1572
- FlushMahogany: string;
1573
- Maroon: string;
1574
- PinkSwan: string;
1575
- Matisse: string;
1576
- HummingBird: string;
1577
- Primary: string;
1578
- PrimaryContrast: string;
1579
- PrimaryFade: string;
1580
- PrimaryLight: string;
1581
- PrimaryLightFade: string;
1582
- PrimaryLightHighlight: string;
1583
- PrimaryAccent: string;
1584
- DarkBackground: string;
1585
- DarkBar: string;
1586
- DarkHover: string;
1587
- DarkPrimary: string;
1588
- DarkSecondary: string;
1589
- LightBackground: string;
1590
- LightBar: string;
1591
- LightDisabled: string;
1592
- LightDivider: string;
1593
- LightDividerNew: string;
1594
- LightHint: string;
1595
- LightHover: string;
1596
- LightPrimary: string;
1597
- LightSecondary: string;
1598
- BorderGrey: string;
1599
- Blue: string;
1600
- BlueFade: string;
1601
- Green: string;
1602
- GreenFade: string;
1603
- GreenBackground: string;
1604
- Red: string;
1605
- RedFade: string;
1606
- Yellow: string;
1607
- YellowFade: string;
1608
- YellowHighlight: string;
1609
- Orange: string;
1610
- OrangeFill: string;
1611
- OrangeBackground: string;
1612
- Error: string;
1613
- ErrorFade: string;
1614
- ErrorBackground: string;
1615
- DraggableDraggingBackground: string;
1616
- Aquamarine: string;
1617
- Azure: string;
1618
- AzureNew: string;
1619
- AzureFade: string;
1620
- AzureHighlight: string;
1621
- Silver: string;
1622
- BlueNavy: string;
1623
- Black: string;
1624
- TurquoiseBlue: string;
1625
- SummerSky: string;
1626
- Mondo: string;
1627
- HeavyMetal: string;
1628
- BokaraGrey: string;
1629
- Cyan: string;
1630
- Eucalyptus: string;
1631
- Flamingo: string;
1632
- Zorba: string;
1633
- Flint: string;
1634
- Maya: string;
1635
- Bondi: string;
1636
- Emerald: string;
1637
- Carissma: string;
1638
- Solitude: string;
1639
- WhiteSmoke: string;
1640
- Violet: string;
1641
- FireBrick: string;
1642
- Purple: string;
1643
- Buckthorn: string;
1644
- };
1645
- readonly gradient: {
1646
- main: string;
1647
- neutral: string;
1648
- };
1649
- } | undefined;
1650
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
1651
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
1652
- }, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full">, {
1653
- readonly space: string[];
1654
- readonly palette: {
1655
- success: string[];
1656
- warning: string[];
1657
- error: string[];
1658
- primary: string[];
1659
- secondary: string[];
1660
- neutral: string[];
1661
- };
1662
- readonly fontFamily: {
1663
- body: string;
1664
- monospace: string;
1665
- };
1666
- readonly fontSize: string[];
1667
- readonly lineHeight: number[];
1668
- readonly radius: string[];
1669
- readonly borderWidth: string[];
1670
- readonly grid: number[];
1671
- readonly shadows: {
1672
- small: string;
1673
- big: string;
1674
- pill: string;
1675
- bigCentered: string;
1676
- popover: string;
1677
- secondaryNavActiveItem: string;
1678
- };
1679
- readonly sizes: {
1680
- PageHeaderIcon: number;
1681
- };
1682
- readonly zIndex: {
1683
- Base: number;
1684
- Overlay: number;
1685
- FormControl: number;
1686
- SecondaryNav: number;
1687
- SecondaryNavActiveItem: number;
1688
- PrimaryNav: number;
1689
- PopOver: number;
1690
- PageHeaderSearch: number;
1691
- Modal: number;
1692
- Tether: number;
1693
- GlobalNav: number;
1694
- Toast: number;
1695
- };
1696
- readonly color: {
1697
- Dune: string;
1698
- CuriousBlue: string;
1699
- FlushMahogany: string;
1700
- Maroon: string;
1701
- PinkSwan: string;
1702
- Matisse: string;
1703
- HummingBird: string;
1704
- Primary: string;
1705
- PrimaryContrast: string;
1706
- PrimaryFade: string;
1707
- PrimaryLight: string;
1708
- PrimaryLightFade: string;
1709
- PrimaryLightHighlight: string;
1710
- PrimaryAccent: string;
1711
- DarkBackground: string;
1712
- DarkBar: string;
1713
- DarkHover: string;
1714
- DarkPrimary: string;
1715
- DarkSecondary: string;
1716
- LightBackground: string;
1717
- LightBar: string;
1718
- LightDisabled: string;
1719
- LightDivider: string;
1720
- LightDividerNew: string;
1721
- LightHint: string;
1722
- LightHover: string;
1723
- LightPrimary: string;
1724
- LightSecondary: string;
1725
- BorderGrey: string;
1726
- Blue: string;
1727
- BlueFade: string;
1728
- Green: string;
1729
- GreenFade: string;
1730
- GreenBackground: string;
1731
- Red: string;
1732
- RedFade: string;
1733
- Yellow: string;
1734
- YellowFade: string;
1735
- YellowHighlight: string;
1736
- Orange: string;
1737
- OrangeFill: string;
1738
- OrangeBackground: string;
1739
- Error: string;
1740
- ErrorFade: string;
1741
- ErrorBackground: string;
1742
- DraggableDraggingBackground: string;
1743
- Aquamarine: string;
1744
- Azure: string;
1745
- AzureNew: string;
1746
- AzureFade: string;
1747
- AzureHighlight: string;
1748
- Silver: string;
1749
- BlueNavy: string;
1750
- Black: string;
1751
- TurquoiseBlue: string;
1752
- SummerSky: string;
1753
- Mondo: string;
1754
- HeavyMetal: string;
1755
- BokaraGrey: string;
1756
- Cyan: string;
1757
- Eucalyptus: string;
1758
- Flamingo: string;
1759
- Zorba: string;
1760
- Flint: string;
1761
- Maya: string;
1762
- Bondi: string;
1763
- Emerald: string;
1764
- Carissma: string;
1765
- Solitude: string;
1766
- WhiteSmoke: string;
1767
- Violet: string;
1768
- FireBrick: string;
1769
- Purple: string;
1770
- Buckthorn: string;
1771
- };
1772
- readonly gradient: {
1773
- main: string;
1774
- neutral: string;
1775
- };
1776
- }>;
1777
- export declare const HeaderWrapper: import("@emotion/styled-base").StyledComponent<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
1778
- theme?: {
1779
- readonly space: string[];
1780
- readonly palette: {
1781
- success: string[];
1782
- warning: string[];
1783
- error: string[];
1784
- primary: string[];
1785
- secondary: string[];
1786
- neutral: string[];
1787
- };
1788
- readonly fontFamily: {
1789
- body: string;
1790
- monospace: string;
1791
- };
1792
- readonly fontSize: string[];
1793
- readonly lineHeight: number[];
1794
- readonly radius: string[];
1795
- readonly borderWidth: string[];
1796
- readonly grid: number[];
1797
- readonly shadows: {
1798
- small: string;
1799
- big: string;
1800
- pill: string;
1801
- bigCentered: string;
1802
- popover: string;
1803
- secondaryNavActiveItem: string;
1804
- };
1805
- readonly sizes: {
1806
- PageHeaderIcon: number;
1807
- };
1808
- readonly zIndex: {
1809
- Base: number;
1810
- Overlay: number;
1811
- FormControl: number;
1812
- SecondaryNav: number;
1813
- SecondaryNavActiveItem: number;
1814
- PrimaryNav: number;
1815
- PopOver: number;
1816
- PageHeaderSearch: number;
1817
- Modal: number;
1818
- Tether: number;
1819
- GlobalNav: number;
1820
- Toast: number;
1821
- };
1822
- readonly color: {
1823
- Dune: string;
1824
- CuriousBlue: string;
1825
- FlushMahogany: string;
1826
- Maroon: string;
1827
- PinkSwan: string;
1828
- Matisse: string;
1829
- HummingBird: string;
1830
- Primary: string;
1831
- PrimaryContrast: string;
1832
- PrimaryFade: string;
1833
- PrimaryLight: string;
1834
- PrimaryLightFade: string;
1835
- PrimaryLightHighlight: string;
1836
- PrimaryAccent: string;
1837
- DarkBackground: string;
1838
- DarkBar: string;
1839
- DarkHover: string;
1840
- DarkPrimary: string;
1841
- DarkSecondary: string;
1842
- LightBackground: string;
1843
- LightBar: string;
1844
- LightDisabled: string;
1845
- LightDivider: string;
1846
- LightDividerNew: string;
1847
- LightHint: string;
1848
- LightHover: string;
1849
- LightPrimary: string;
1850
- LightSecondary: string;
1851
- BorderGrey: string;
1852
- Blue: string;
1853
- BlueFade: string;
1854
- Green: string;
1855
- GreenFade: string;
1856
- GreenBackground: string;
1857
- Red: string;
1858
- RedFade: string;
1859
- Yellow: string;
1860
- YellowFade: string;
1861
- YellowHighlight: string;
1862
- Orange: string;
1863
- OrangeFill: string;
1864
- OrangeBackground: string;
1865
- Error: string;
1866
- ErrorFade: string;
1867
- ErrorBackground: string;
1868
- DraggableDraggingBackground: string;
1869
- Aquamarine: string;
1870
- Azure: string;
1871
- AzureNew: string;
1872
- AzureFade: string;
1873
- AzureHighlight: string;
1874
- Silver: string;
1875
- BlueNavy: string;
1876
- Black: string;
1877
- TurquoiseBlue: string;
1878
- SummerSky: string;
1879
- Mondo: string;
1880
- HeavyMetal: string;
1881
- BokaraGrey: string;
1882
- Cyan: string;
1883
- Eucalyptus: string;
1884
- Flamingo: string;
1885
- Zorba: string;
1886
- Flint: string;
1887
- Maya: string;
1888
- Bondi: string;
1889
- Emerald: string;
1890
- Carissma: string;
1891
- Solitude: string;
1892
- WhiteSmoke: string;
1893
- Violet: string;
1894
- FireBrick: string;
1895
- Purple: string;
1896
- Buckthorn: string;
1897
- };
1898
- readonly gradient: {
1899
- main: string;
1900
- neutral: string;
1901
- };
1902
- } | undefined;
1903
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
1904
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
1905
- }, Pick<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
1906
- theme?: {
1907
- readonly space: string[];
1908
- readonly palette: {
1909
- success: string[];
1910
- warning: string[];
1911
- error: string[];
1912
- primary: string[];
1913
- secondary: string[];
1914
- neutral: string[];
1915
- };
1916
- readonly fontFamily: {
1917
- body: string;
1918
- monospace: string;
1919
- };
1920
- readonly fontSize: string[];
1921
- readonly lineHeight: number[];
1922
- readonly radius: string[];
1923
- readonly borderWidth: string[];
1924
- readonly grid: number[];
1925
- readonly shadows: {
1926
- small: string;
1927
- big: string;
1928
- pill: string;
1929
- bigCentered: string;
1930
- popover: string;
1931
- secondaryNavActiveItem: string;
1932
- };
1933
- readonly sizes: {
1934
- PageHeaderIcon: number;
1935
- };
1936
- readonly zIndex: {
1937
- Base: number;
1938
- Overlay: number;
1939
- FormControl: number;
1940
- SecondaryNav: number;
1941
- SecondaryNavActiveItem: number;
1942
- PrimaryNav: number;
1943
- PopOver: number;
1944
- PageHeaderSearch: number;
1945
- Modal: number;
1946
- Tether: number;
1947
- GlobalNav: number;
1948
- Toast: number;
1949
- };
1950
- readonly color: {
1951
- Dune: string;
1952
- CuriousBlue: string;
1953
- FlushMahogany: string;
1954
- Maroon: string;
1955
- PinkSwan: string;
1956
- Matisse: string;
1957
- HummingBird: string;
1958
- Primary: string;
1959
- PrimaryContrast: string;
1960
- PrimaryFade: string;
1961
- PrimaryLight: string;
1962
- PrimaryLightFade: string;
1963
- PrimaryLightHighlight: string;
1964
- PrimaryAccent: string;
1965
- DarkBackground: string;
1966
- DarkBar: string;
1967
- DarkHover: string;
1968
- DarkPrimary: string;
1969
- DarkSecondary: string;
1970
- LightBackground: string;
1971
- LightBar: string;
1972
- LightDisabled: string;
1973
- LightDivider: string;
1974
- LightDividerNew: string;
1975
- LightHint: string;
1976
- LightHover: string;
1977
- LightPrimary: string;
1978
- LightSecondary: string;
1979
- BorderGrey: string;
1980
- Blue: string;
1981
- BlueFade: string;
1982
- Green: string;
1983
- GreenFade: string;
1984
- GreenBackground: string;
1985
- Red: string;
1986
- RedFade: string;
1987
- Yellow: string;
1988
- YellowFade: string;
1989
- YellowHighlight: string;
1990
- Orange: string;
1991
- OrangeFill: string;
1992
- OrangeBackground: string;
1993
- Error: string;
1994
- ErrorFade: string;
1995
- ErrorBackground: string;
1996
- DraggableDraggingBackground: string;
1997
- Aquamarine: string;
1998
- Azure: string;
1999
- AzureNew: string;
2000
- AzureFade: string;
2001
- AzureHighlight: string;
2002
- Silver: string;
2003
- BlueNavy: string;
2004
- Black: string;
2005
- TurquoiseBlue: string;
2006
- SummerSky: string;
2007
- Mondo: string;
2008
- HeavyMetal: string;
2009
- BokaraGrey: string;
2010
- Cyan: string;
2011
- Eucalyptus: string;
2012
- Flamingo: string;
2013
- Zorba: string;
2014
- Flint: string;
2015
- Maya: string;
2016
- Bondi: string;
2017
- Emerald: string;
2018
- Carissma: string;
2019
- Solitude: string;
2020
- WhiteSmoke: string;
2021
- Violet: string;
2022
- FireBrick: string;
2023
- Purple: string;
2024
- Buckthorn: string;
2025
- };
2026
- readonly gradient: {
2027
- main: string;
2028
- neutral: string;
2029
- };
2030
- } | undefined;
2031
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
2032
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
2033
- }, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full">, {
2034
- readonly space: string[];
2035
- readonly palette: {
2036
- success: string[];
2037
- warning: string[];
2038
- error: string[];
2039
- primary: string[];
2040
- secondary: string[];
2041
- neutral: string[];
2042
- };
2043
- readonly fontFamily: {
2044
- body: string;
2045
- monospace: string;
2046
- };
2047
- readonly fontSize: string[];
2048
- readonly lineHeight: number[];
2049
- readonly radius: string[];
2050
- readonly borderWidth: string[];
2051
- readonly grid: number[];
2052
- readonly shadows: {
2053
- small: string;
2054
- big: string;
2055
- pill: string;
2056
- bigCentered: string;
2057
- popover: string;
2058
- secondaryNavActiveItem: string;
2059
- };
2060
- readonly sizes: {
2061
- PageHeaderIcon: number;
2062
- };
2063
- readonly zIndex: {
2064
- Base: number;
2065
- Overlay: number;
2066
- FormControl: number;
2067
- SecondaryNav: number;
2068
- SecondaryNavActiveItem: number;
2069
- PrimaryNav: number;
2070
- PopOver: number;
2071
- PageHeaderSearch: number;
2072
- Modal: number;
2073
- Tether: number;
2074
- GlobalNav: number;
2075
- Toast: number;
2076
- };
2077
- readonly color: {
2078
- Dune: string;
2079
- CuriousBlue: string;
2080
- FlushMahogany: string;
2081
- Maroon: string;
2082
- PinkSwan: string;
2083
- Matisse: string;
2084
- HummingBird: string;
2085
- Primary: string;
2086
- PrimaryContrast: string;
2087
- PrimaryFade: string;
2088
- PrimaryLight: string;
2089
- PrimaryLightFade: string;
2090
- PrimaryLightHighlight: string;
2091
- PrimaryAccent: string;
2092
- DarkBackground: string;
2093
- DarkBar: string;
2094
- DarkHover: string;
2095
- DarkPrimary: string;
2096
- DarkSecondary: string;
2097
- LightBackground: string;
2098
- LightBar: string;
2099
- LightDisabled: string;
2100
- LightDivider: string;
2101
- LightDividerNew: string;
2102
- LightHint: string;
2103
- LightHover: string;
2104
- LightPrimary: string;
2105
- LightSecondary: string;
2106
- BorderGrey: string;
2107
- Blue: string;
2108
- BlueFade: string;
2109
- Green: string;
2110
- GreenFade: string;
2111
- GreenBackground: string;
2112
- Red: string;
2113
- RedFade: string;
2114
- Yellow: string;
2115
- YellowFade: string;
2116
- YellowHighlight: string;
2117
- Orange: string;
2118
- OrangeFill: string;
2119
- OrangeBackground: string;
2120
- Error: string;
2121
- ErrorFade: string;
2122
- ErrorBackground: string;
2123
- DraggableDraggingBackground: string;
2124
- Aquamarine: string;
2125
- Azure: string;
2126
- AzureNew: string;
2127
- AzureFade: string;
2128
- AzureHighlight: string;
2129
- Silver: string;
2130
- BlueNavy: string;
2131
- Black: string;
2132
- TurquoiseBlue: string;
2133
- SummerSky: string;
2134
- Mondo: string;
2135
- HeavyMetal: string;
2136
- BokaraGrey: string;
2137
- Cyan: string;
2138
- Eucalyptus: string;
2139
- Flamingo: string;
2140
- Zorba: string;
2141
- Flint: string;
2142
- Maya: string;
2143
- Bondi: string;
2144
- Emerald: string;
2145
- Carissma: string;
2146
- Solitude: string;
2147
- WhiteSmoke: string;
2148
- Violet: string;
2149
- FireBrick: string;
2150
- Purple: string;
2151
- Buckthorn: string;
2152
- };
2153
- readonly gradient: {
2154
- main: string;
2155
- neutral: string;
2156
- };
2157
- }>;
2158
- export declare const CanvasContent: import("@emotion/styled-base").StyledComponent<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
2159
- theme?: {
2160
- readonly space: string[];
2161
- readonly palette: {
2162
- success: string[];
2163
- warning: string[];
2164
- error: string[];
2165
- primary: string[];
2166
- secondary: string[];
2167
- neutral: string[];
2168
- };
2169
- readonly fontFamily: {
2170
- body: string;
2171
- monospace: string;
2172
- };
2173
- readonly fontSize: string[];
2174
- readonly lineHeight: number[];
2175
- readonly radius: string[];
2176
- readonly borderWidth: string[];
2177
- readonly grid: number[];
2178
- readonly shadows: {
2179
- small: string;
2180
- big: string;
2181
- pill: string;
2182
- bigCentered: string;
2183
- popover: string;
2184
- secondaryNavActiveItem: string;
2185
- };
2186
- readonly sizes: {
2187
- PageHeaderIcon: number;
2188
- };
2189
- readonly zIndex: {
2190
- Base: number;
2191
- Overlay: number;
2192
- FormControl: number;
2193
- SecondaryNav: number;
2194
- SecondaryNavActiveItem: number;
2195
- PrimaryNav: number;
2196
- PopOver: number;
2197
- PageHeaderSearch: number;
2198
- Modal: number;
2199
- Tether: number;
2200
- GlobalNav: number;
2201
- Toast: number;
2202
- };
2203
- readonly color: {
2204
- Dune: string;
2205
- CuriousBlue: string;
2206
- FlushMahogany: string;
2207
- Maroon: string;
2208
- PinkSwan: string;
2209
- Matisse: string;
2210
- HummingBird: string;
2211
- Primary: string;
2212
- PrimaryContrast: string;
2213
- PrimaryFade: string;
2214
- PrimaryLight: string;
2215
- PrimaryLightFade: string;
2216
- PrimaryLightHighlight: string;
2217
- PrimaryAccent: string;
2218
- DarkBackground: string;
2219
- DarkBar: string;
2220
- DarkHover: string;
2221
- DarkPrimary: string;
2222
- DarkSecondary: string;
2223
- LightBackground: string;
2224
- LightBar: string;
2225
- LightDisabled: string;
2226
- LightDivider: string;
2227
- LightDividerNew: string;
2228
- LightHint: string;
2229
- LightHover: string;
2230
- LightPrimary: string;
2231
- LightSecondary: string;
2232
- BorderGrey: string;
2233
- Blue: string;
2234
- BlueFade: string;
2235
- Green: string;
2236
- GreenFade: string;
2237
- GreenBackground: string;
2238
- Red: string;
2239
- RedFade: string;
2240
- Yellow: string;
2241
- YellowFade: string;
2242
- YellowHighlight: string;
2243
- Orange: string;
2244
- OrangeFill: string;
2245
- OrangeBackground: string;
2246
- Error: string;
2247
- ErrorFade: string;
2248
- ErrorBackground: string;
2249
- DraggableDraggingBackground: string;
2250
- Aquamarine: string;
2251
- Azure: string;
2252
- AzureNew: string;
2253
- AzureFade: string;
2254
- AzureHighlight: string;
2255
- Silver: string;
2256
- BlueNavy: string;
2257
- Black: string;
2258
- TurquoiseBlue: string;
2259
- SummerSky: string;
2260
- Mondo: string;
2261
- HeavyMetal: string;
2262
- BokaraGrey: string;
2263
- Cyan: string;
2264
- Eucalyptus: string;
2265
- Flamingo: string;
2266
- Zorba: string;
2267
- Flint: string;
2268
- Maya: string;
2269
- Bondi: string;
2270
- Emerald: string;
2271
- Carissma: string;
2272
- Solitude: string;
2273
- WhiteSmoke: string;
2274
- Violet: string;
2275
- FireBrick: string;
2276
- Purple: string;
2277
- Buckthorn: string;
2278
- };
2279
- readonly gradient: {
2280
- main: string;
2281
- neutral: string;
2282
- };
2283
- } | undefined;
2284
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
2285
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
2286
- }, Pick<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & {
2287
- theme?: {
2288
- readonly space: string[];
2289
- readonly palette: {
2290
- success: string[];
2291
- warning: string[];
2292
- error: string[];
2293
- primary: string[];
2294
- secondary: string[];
2295
- neutral: string[];
2296
- };
2297
- readonly fontFamily: {
2298
- body: string;
2299
- monospace: string;
2300
- };
2301
- readonly fontSize: string[];
2302
- readonly lineHeight: number[];
2303
- readonly radius: string[];
2304
- readonly borderWidth: string[];
2305
- readonly grid: number[];
2306
- readonly shadows: {
2307
- small: string;
2308
- big: string;
2309
- pill: string;
2310
- bigCentered: string;
2311
- popover: string;
2312
- secondaryNavActiveItem: string;
2313
- };
2314
- readonly sizes: {
2315
- PageHeaderIcon: number;
2316
- };
2317
- readonly zIndex: {
2318
- Base: number;
2319
- Overlay: number;
2320
- FormControl: number;
2321
- SecondaryNav: number;
2322
- SecondaryNavActiveItem: number;
2323
- PrimaryNav: number;
2324
- PopOver: number;
2325
- PageHeaderSearch: number;
2326
- Modal: number;
2327
- Tether: number;
2328
- GlobalNav: number;
2329
- Toast: number;
2330
- };
2331
- readonly color: {
2332
- Dune: string;
2333
- CuriousBlue: string;
2334
- FlushMahogany: string;
2335
- Maroon: string;
2336
- PinkSwan: string;
2337
- Matisse: string;
2338
- HummingBird: string;
2339
- Primary: string;
2340
- PrimaryContrast: string;
2341
- PrimaryFade: string;
2342
- PrimaryLight: string;
2343
- PrimaryLightFade: string;
2344
- PrimaryLightHighlight: string;
2345
- PrimaryAccent: string;
2346
- DarkBackground: string;
2347
- DarkBar: string;
2348
- DarkHover: string;
2349
- DarkPrimary: string;
2350
- DarkSecondary: string;
2351
- LightBackground: string;
2352
- LightBar: string;
2353
- LightDisabled: string;
2354
- LightDivider: string;
2355
- LightDividerNew: string;
2356
- LightHint: string;
2357
- LightHover: string;
2358
- LightPrimary: string;
2359
- LightSecondary: string;
2360
- BorderGrey: string;
2361
- Blue: string;
2362
- BlueFade: string;
2363
- Green: string;
2364
- GreenFade: string;
2365
- GreenBackground: string;
2366
- Red: string;
2367
- RedFade: string;
2368
- Yellow: string;
2369
- YellowFade: string;
2370
- YellowHighlight: string;
2371
- Orange: string;
2372
- OrangeFill: string;
2373
- OrangeBackground: string;
2374
- Error: string;
2375
- ErrorFade: string;
2376
- ErrorBackground: string;
2377
- DraggableDraggingBackground: string;
2378
- Aquamarine: string;
2379
- Azure: string;
2380
- AzureNew: string;
2381
- AzureFade: string;
2382
- AzureHighlight: string;
2383
- Silver: string;
2384
- BlueNavy: string;
2385
- Black: string;
2386
- TurquoiseBlue: string;
2387
- SummerSky: string;
2388
- Mondo: string;
2389
- HeavyMetal: string;
2390
- BokaraGrey: string;
2391
- Cyan: string;
2392
- Eucalyptus: string;
2393
- Flamingo: string;
2394
- Zorba: string;
2395
- Flint: string;
2396
- Maya: string;
2397
- Bondi: string;
2398
- Emerald: string;
2399
- Carissma: string;
2400
- Solitude: string;
2401
- WhiteSmoke: string;
2402
- Violet: string;
2403
- FireBrick: string;
2404
- Purple: string;
2405
- Buckthorn: string;
2406
- };
2407
- readonly gradient: {
2408
- main: string;
2409
- neutral: string;
2410
- };
2411
- } | undefined;
2412
- }>, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "key" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full"> & {
2413
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
2414
- }, "reverse" | "hidden" | "dir" | "slot" | "style" | "title" | "color" | "flex" | "wrap" | "justify" | "border" | "padding" | "children" | "alignContent" | "alignSelf" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "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" | "grow" | "shrink" | "align" | "full">, {
2415
- readonly space: string[];
2416
- readonly palette: {
2417
- success: string[];
2418
- warning: string[];
2419
- error: string[];
2420
- primary: string[];
2421
- secondary: string[];
2422
- neutral: string[];
2423
- };
2424
- readonly fontFamily: {
2425
- body: string;
2426
- monospace: string;
2427
- };
2428
- readonly fontSize: string[];
2429
- readonly lineHeight: number[];
2430
- readonly radius: string[];
2431
- readonly borderWidth: string[];
2432
- readonly grid: number[];
2433
- readonly shadows: {
2434
- small: string;
2435
- big: string;
2436
- pill: string;
2437
- bigCentered: string;
2438
- popover: string;
2439
- secondaryNavActiveItem: string;
2440
- };
2441
- readonly sizes: {
2442
- PageHeaderIcon: number;
2443
- };
2444
- readonly zIndex: {
2445
- Base: number;
2446
- Overlay: number;
2447
- FormControl: number;
2448
- SecondaryNav: number;
2449
- SecondaryNavActiveItem: number;
2450
- PrimaryNav: number;
2451
- PopOver: number;
2452
- PageHeaderSearch: number;
2453
- Modal: number;
2454
- Tether: number;
2455
- GlobalNav: number;
2456
- Toast: number;
2457
- };
2458
- readonly color: {
2459
- Dune: string;
2460
- CuriousBlue: string;
2461
- FlushMahogany: string;
2462
- Maroon: string;
2463
- PinkSwan: string;
2464
- Matisse: string;
2465
- HummingBird: string;
2466
- Primary: string;
2467
- PrimaryContrast: string;
2468
- PrimaryFade: string;
2469
- PrimaryLight: string;
2470
- PrimaryLightFade: string;
2471
- PrimaryLightHighlight: string;
2472
- PrimaryAccent: string;
2473
- DarkBackground: string;
2474
- DarkBar: string;
2475
- DarkHover: string;
2476
- DarkPrimary: string;
2477
- DarkSecondary: string;
2478
- LightBackground: string;
2479
- LightBar: string;
2480
- LightDisabled: string;
2481
- LightDivider: string;
2482
- LightDividerNew: string;
2483
- LightHint: string;
2484
- LightHover: string;
2485
- LightPrimary: string;
2486
- LightSecondary: string;
2487
- BorderGrey: string;
2488
- Blue: string;
2489
- BlueFade: string;
2490
- Green: string;
2491
- GreenFade: string;
2492
- GreenBackground: string;
2493
- Red: string;
2494
- RedFade: string;
2495
- Yellow: string;
2496
- YellowFade: string;
2497
- YellowHighlight: string;
2498
- Orange: string;
2499
- OrangeFill: string;
2500
- OrangeBackground: string;
2501
- Error: string;
2502
- ErrorFade: string;
2503
- ErrorBackground: string;
2504
- DraggableDraggingBackground: string;
2505
- Aquamarine: string;
2506
- Azure: string;
2507
- AzureNew: string;
2508
- AzureFade: string;
2509
- AzureHighlight: string;
2510
- Silver: string;
2511
- BlueNavy: string;
2512
- Black: string;
2513
- TurquoiseBlue: string;
2514
- SummerSky: string;
2515
- Mondo: string;
2516
- HeavyMetal: string;
2517
- BokaraGrey: string;
2518
- Cyan: string;
2519
- Eucalyptus: string;
2520
- Flamingo: string;
2521
- Zorba: string;
2522
- Flint: string;
2523
- Maya: string;
2524
- Bondi: string;
2525
- Emerald: string;
2526
- Carissma: string;
2527
- Solitude: string;
2528
- WhiteSmoke: string;
2529
- Violet: string;
2530
- FireBrick: string;
2531
- Purple: string;
2532
- Buckthorn: string;
2533
- };
2534
- readonly gradient: {
2535
- main: string;
2536
- neutral: string;
2537
- };
2538
- }>;
2
+ export declare const Wrapper: import("@emotion/styled").StyledComponent<{
3
+ theme?: import("@emotion/react").Theme | undefined;
4
+ as?: React.ElementType<any> | undefined;
5
+ } & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
6
+ children?: React.ReactNode;
7
+ } & {
8
+ theme?: import("@emotion/react").Theme | undefined;
9
+ }, {}, {}>;
10
+ export declare const TitleBar: import("@emotion/styled").StyledComponent<{
11
+ theme?: import("@emotion/react").Theme | undefined;
12
+ as?: React.ElementType<any> | undefined;
13
+ } & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
14
+ children?: React.ReactNode;
15
+ } & {
16
+ theme?: import("@emotion/react").Theme | undefined;
17
+ }, {}, {}>;
18
+ export declare const TitleArea: import("@emotion/styled").StyledComponent<{
19
+ theme?: import("@emotion/react").Theme | undefined;
20
+ as?: React.ElementType<any> | undefined;
21
+ } & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
22
+ children?: React.ReactNode;
23
+ } & {
24
+ theme?: import("@emotion/react").Theme | undefined;
25
+ }, {}, {}>;
26
+ export declare const WrappedIcon: import("@emotion/styled").StyledComponent<{
27
+ theme?: import("@emotion/react").Theme | undefined;
28
+ as?: React.ElementType<any> | undefined;
29
+ }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
30
+ export declare const Title: import("@emotion/styled").StyledComponent<import("../RightTruncatedText").TruncatedTextProps & {
31
+ theme?: import("@emotion/react").Theme | undefined;
32
+ }, {}, {}>;
33
+ export declare const Main: import("@emotion/styled").StyledComponent<{
34
+ theme?: import("@emotion/react").Theme | undefined;
35
+ as?: React.ElementType<any> | undefined;
36
+ } & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
37
+ children?: React.ReactNode;
38
+ } & {
39
+ theme?: import("@emotion/react").Theme | undefined;
40
+ }, {}, {}>;
41
+ export declare const HeaderWrapper: import("@emotion/styled").StyledComponent<{
42
+ theme?: import("@emotion/react").Theme | undefined;
43
+ as?: React.ElementType<any> | undefined;
44
+ } & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
45
+ children?: React.ReactNode;
46
+ } & {
47
+ theme?: import("@emotion/react").Theme | undefined;
48
+ }, {}, {}>;
49
+ export declare const CanvasContent: import("@emotion/styled").StyledComponent<{
50
+ theme?: import("@emotion/react").Theme | undefined;
51
+ as?: React.ElementType<any> | undefined;
52
+ } & import("../Box").BoxProps & Partial<import("../mixins/border").Border & import("../mixins/spacing").Spacing> & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
53
+ children?: React.ReactNode;
54
+ } & {
55
+ theme?: import("@emotion/react").Theme | undefined;
56
+ }, {}, {}>;
2539
57
  declare type CanvasHeaderProps = {
2540
58
  children?: React.ReactNode;
2541
59
  };