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,4 +1,36 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ Object.defineProperty(exports, "DefaultRowRenderer", {
9
+ enumerable: true,
10
+ get: function get() {
11
+ return _elements.DefaultRowRenderer;
12
+ }
13
+ });
14
+ Object.defineProperty(exports, "MultiSelect", {
15
+ enumerable: true,
16
+ get: function get() {
17
+ return _MultiSelect.MultiSelect;
18
+ }
19
+ });
20
+ Object.defineProperty(exports, "default", {
21
+ enumerable: true,
22
+ get: function get() {
23
+ return _MultiSelect["default"];
24
+ }
25
+ });
26
+
27
+ var _MultiSelect = _interopRequireWildcard(require("./MultiSelect"));
28
+
29
+ var _elements = require("./elements");
30
+
31
+ function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
32
+
33
+ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
34
+
1
35
  if (typeof window !== "undefined" && !window.gs) window.gs = function () {};
2
- if (typeof window !== "undefined" && !window.gsC) window.gsC = function () {};
3
- export { default, MultiSelect } from './MultiSelect';
4
- export { DefaultRowRenderer } from './elements';
36
+ if (typeof window !== "undefined" && !window.gsC) window.gsC = function () {};
@@ -1,16 +1,26 @@
1
- import { jsx as ___EmotionJSX } from "@emotion/core";
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _NavigationItem = _interopRequireDefault(require("./NavigationItem"));
11
+
12
+ var _Logo = _interopRequireDefault(require("../Logo"));
13
+
14
+ var _react2 = require("@emotion/react");
15
+
16
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
+
2
18
  if (typeof window !== "undefined" && !window.gs) window.gs = function () {};
3
19
  if (typeof window !== "undefined" && !window.gsC) window.gsC = function () {};
4
20
 
5
- /* eslint-disable td/instrumentation */
6
- // this level of fine grained instrumentation is not needed
7
- import React from 'react';
8
- import NavigationItem from './NavigationItem';
9
- import Logo from '../Logo';
10
-
11
21
  var LogoItem = function LogoItem(_ref) {
12
22
  var onClick = _ref.onClick;
13
- return ___EmotionJSX(NavigationItem, {
23
+ return (0, _react2.jsx)(_NavigationItem["default"], {
14
24
  "data-gs": gs("src", "navigationbar", "logoitem.tsx", "navigation-item"),
15
25
  css: function css(theme) {
16
26
  return {
@@ -27,11 +37,12 @@ var LogoItem = function LogoItem(_ref) {
27
37
  },
28
38
  alignSelf: "center",
29
39
  onClick: onClick
30
- }, ___EmotionJSX(Logo, {
40
+ }, (0, _react2.jsx)(_Logo["default"], {
31
41
  "data-gs": gs("src", "navigationbar", "logoitem.tsx", "navigation-item", "logo"),
32
42
  width: "24",
33
43
  height: "16"
34
44
  }));
35
45
  };
36
46
 
37
- export default LogoItem;
47
+ var _default = LogoItem;
48
+ exports["default"] = _default;
@@ -1,135 +1,12 @@
1
- /// <reference types="types/@emotion/styled" />
2
1
  import React from 'react';
3
2
  import type { BoxProps } from '../Box';
4
3
  import type { Spacing } from '../mixins/spacing';
5
4
  import type { Border } from '../mixins/border';
6
5
  import NavigationItem from './NavigationItem';
7
6
  declare const Separator: React.FunctionComponent<{}>;
8
- declare const NavigationPill: import("@emotion/styled-base").StyledComponent<BoxProps, Pick<BoxProps, "reverse" | "flex" | "wrap" | "justify" | "alignContent" | "alignSelf" | "direction" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "className" | "id" | "grow" | "shrink" | "align" | "full">, {
9
- readonly space: string[];
10
- readonly palette: {
11
- success: string[];
12
- warning: string[];
13
- error: string[];
14
- primary: string[];
15
- secondary: string[];
16
- neutral: string[];
17
- };
18
- readonly fontFamily: {
19
- body: string;
20
- monospace: string;
21
- };
22
- readonly fontSize: string[];
23
- readonly lineHeight: number[];
24
- readonly radius: string[];
25
- readonly borderWidth: string[];
26
- readonly grid: number[];
27
- readonly shadows: {
28
- small: string;
29
- big: string;
30
- pill: string;
31
- bigCentered: string;
32
- popover: string;
33
- secondaryNavActiveItem: string;
34
- };
35
- readonly sizes: {
36
- PageHeaderIcon: number;
37
- };
38
- readonly zIndex: {
39
- Base: number;
40
- Overlay: number;
41
- FormControl: number;
42
- SecondaryNav: number;
43
- SecondaryNavActiveItem: number;
44
- PrimaryNav: number;
45
- PopOver: number;
46
- PageHeaderSearch: number;
47
- Modal: number;
48
- Tether: number;
49
- GlobalNav: number;
50
- Toast: number;
51
- };
52
- readonly color: {
53
- Dune: string;
54
- CuriousBlue: string;
55
- FlushMahogany: string;
56
- Maroon: string;
57
- PinkSwan: string;
58
- Matisse: string;
59
- HummingBird: string;
60
- Primary: string;
61
- PrimaryContrast: string;
62
- PrimaryFade: string;
63
- PrimaryLight: string;
64
- PrimaryLightFade: string;
65
- PrimaryLightHighlight: string;
66
- PrimaryAccent: string;
67
- DarkBackground: string;
68
- DarkBar: string;
69
- DarkHover: string;
70
- DarkPrimary: string;
71
- DarkSecondary: string;
72
- LightBackground: string;
73
- LightBar: string;
74
- LightDisabled: string;
75
- LightDivider: string;
76
- LightDividerNew: string;
77
- LightHint: string;
78
- LightHover: string;
79
- LightPrimary: string;
80
- LightSecondary: string;
81
- BorderGrey: string;
82
- Blue: string;
83
- BlueFade: string;
84
- Green: string;
85
- GreenFade: string;
86
- GreenBackground: string;
87
- Red: string;
88
- RedFade: string;
89
- Yellow: string;
90
- YellowFade: string;
91
- YellowHighlight: string;
92
- Orange: string;
93
- OrangeFill: string;
94
- OrangeBackground: string;
95
- Error: string;
96
- ErrorFade: string;
97
- ErrorBackground: string;
98
- DraggableDraggingBackground: string;
99
- Aquamarine: string;
100
- Azure: string;
101
- AzureNew: string;
102
- AzureFade: string;
103
- AzureHighlight: string;
104
- Silver: string;
105
- BlueNavy: string;
106
- Black: string;
107
- TurquoiseBlue: string;
108
- SummerSky: string;
109
- Mondo: string;
110
- HeavyMetal: string;
111
- BokaraGrey: string;
112
- Cyan: string;
113
- Eucalyptus: string;
114
- Flamingo: string;
115
- Zorba: string;
116
- Flint: string;
117
- Maya: string;
118
- Bondi: string;
119
- Emerald: string;
120
- Carissma: string;
121
- Solitude: string;
122
- WhiteSmoke: string;
123
- Violet: string;
124
- FireBrick: string;
125
- Purple: string;
126
- Buckthorn: string;
127
- };
128
- readonly gradient: {
129
- main: string;
130
- neutral: string;
131
- };
132
- }>;
7
+ declare const NavigationPill: import("@emotion/styled").StyledComponent<BoxProps & {
8
+ theme?: import("@emotion/react").Theme | undefined;
9
+ }, {}, {}>;
133
10
  export declare type NavigationBarSubComponents = {
134
11
  Separator: typeof Separator;
135
12
  NavigationItem: typeof NavigationItem;
@@ -141,259 +18,19 @@ declare type NavigationBarProps = BoxProps & Partial<Border & Spacing> & {
141
18
  logoAction?: () => void;
142
19
  props?: {};
143
20
  };
144
- export declare const StyledNavigationBar: import("@emotion/styled-base").StyledComponent<Pick<React.PropsWithChildren<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & BoxProps & Partial<Border & Spacing> & {
145
- theme?: {
146
- readonly space: string[];
147
- readonly palette: {
148
- success: string[];
149
- warning: string[];
150
- error: string[];
151
- primary: string[];
152
- secondary: string[];
153
- neutral: string[];
154
- };
155
- readonly fontFamily: {
156
- body: string;
157
- monospace: string;
158
- };
159
- readonly fontSize: string[];
160
- readonly lineHeight: number[];
161
- readonly radius: string[];
162
- readonly borderWidth: string[];
163
- readonly grid: number[];
164
- readonly shadows: {
165
- small: string;
166
- big: string;
167
- pill: string;
168
- bigCentered: string;
169
- popover: string;
170
- secondaryNavActiveItem: string;
171
- };
172
- readonly sizes: {
173
- PageHeaderIcon: number;
174
- };
175
- readonly zIndex: {
176
- Base: number;
177
- Overlay: number;
178
- FormControl: number;
179
- SecondaryNav: number;
180
- SecondaryNavActiveItem: number;
181
- PrimaryNav: number;
182
- PopOver: number;
183
- PageHeaderSearch: number;
184
- Modal: number;
185
- Tether: number;
186
- GlobalNav: number;
187
- Toast: number;
188
- };
189
- readonly color: {
190
- Dune: string;
191
- CuriousBlue: string;
192
- FlushMahogany: string;
193
- Maroon: string;
194
- PinkSwan: string;
195
- Matisse: string;
196
- HummingBird: string;
197
- Primary: string;
198
- PrimaryContrast: string;
199
- PrimaryFade: string;
200
- PrimaryLight: string;
201
- PrimaryLightFade: string;
202
- PrimaryLightHighlight: string;
203
- PrimaryAccent: string;
204
- DarkBackground: string;
205
- DarkBar: string;
206
- DarkHover: string;
207
- DarkPrimary: string;
208
- DarkSecondary: string;
209
- LightBackground: string;
210
- LightBar: string;
211
- LightDisabled: string;
212
- LightDivider: string;
213
- LightDividerNew: string;
214
- LightHint: string;
215
- LightHover: string;
216
- LightPrimary: string;
217
- LightSecondary: string;
218
- BorderGrey: string;
219
- Blue: string;
220
- BlueFade: string;
221
- Green: string;
222
- GreenFade: string;
223
- GreenBackground: string;
224
- Red: string;
225
- RedFade: string;
226
- Yellow: string;
227
- YellowFade: string;
228
- YellowHighlight: string;
229
- Orange: string;
230
- OrangeFill: string;
231
- OrangeBackground: string;
232
- Error: string;
233
- ErrorFade: string;
234
- ErrorBackground: string;
235
- DraggableDraggingBackground: string;
236
- Aquamarine: string;
237
- Azure: string;
238
- AzureNew: string;
239
- AzureFade: string;
240
- AzureHighlight: string;
241
- Silver: string;
242
- BlueNavy: string;
243
- Black: string;
244
- TurquoiseBlue: string;
245
- SummerSky: string;
246
- Mondo: string;
247
- HeavyMetal: string;
248
- BokaraGrey: string;
249
- Cyan: string;
250
- Eucalyptus: string;
251
- Flamingo: string;
252
- Zorba: string;
253
- Flint: string;
254
- Maya: string;
255
- Bondi: string;
256
- Emerald: string;
257
- Carissma: string;
258
- Solitude: string;
259
- WhiteSmoke: string;
260
- Violet: string;
261
- FireBrick: string;
262
- Purple: string;
263
- Buckthorn: string;
264
- };
265
- readonly gradient: {
266
- main: string;
267
- neutral: string;
268
- };
269
- } | undefined;
270
- }>, "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"> & {
271
- ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
272
- }, NavigationBarProps, {
273
- readonly space: string[];
274
- readonly palette: {
275
- success: string[];
276
- warning: string[];
277
- error: string[];
278
- primary: string[];
279
- secondary: string[];
280
- neutral: string[];
281
- };
282
- readonly fontFamily: {
283
- body: string;
284
- monospace: string;
285
- };
286
- readonly fontSize: string[];
287
- readonly lineHeight: number[];
288
- readonly radius: string[];
289
- readonly borderWidth: string[];
290
- readonly grid: number[];
291
- readonly shadows: {
292
- small: string;
293
- big: string;
294
- pill: string;
295
- bigCentered: string;
296
- popover: string;
297
- secondaryNavActiveItem: string;
298
- };
299
- readonly sizes: {
300
- PageHeaderIcon: number;
301
- };
302
- readonly zIndex: {
303
- Base: number;
304
- Overlay: number;
305
- FormControl: number;
306
- SecondaryNav: number;
307
- SecondaryNavActiveItem: number;
308
- PrimaryNav: number;
309
- PopOver: number;
310
- PageHeaderSearch: number;
311
- Modal: number;
312
- Tether: number;
313
- GlobalNav: number;
314
- Toast: number;
315
- };
316
- readonly color: {
317
- Dune: string;
318
- CuriousBlue: string;
319
- FlushMahogany: string;
320
- Maroon: string;
321
- PinkSwan: string;
322
- Matisse: string;
323
- HummingBird: string;
324
- Primary: string;
325
- PrimaryContrast: string;
326
- PrimaryFade: string;
327
- PrimaryLight: string;
328
- PrimaryLightFade: string;
329
- PrimaryLightHighlight: string;
330
- PrimaryAccent: string;
331
- DarkBackground: string;
332
- DarkBar: string;
333
- DarkHover: string;
334
- DarkPrimary: string;
335
- DarkSecondary: string;
336
- LightBackground: string;
337
- LightBar: string;
338
- LightDisabled: string;
339
- LightDivider: string;
340
- LightDividerNew: string;
341
- LightHint: string;
342
- LightHover: string;
343
- LightPrimary: string;
344
- LightSecondary: string;
345
- BorderGrey: string;
346
- Blue: string;
347
- BlueFade: string;
348
- Green: string;
349
- GreenFade: string;
350
- GreenBackground: string;
351
- Red: string;
352
- RedFade: string;
353
- Yellow: string;
354
- YellowFade: string;
355
- YellowHighlight: string;
356
- Orange: string;
357
- OrangeFill: string;
358
- OrangeBackground: string;
359
- Error: string;
360
- ErrorFade: string;
361
- ErrorBackground: string;
362
- DraggableDraggingBackground: string;
363
- Aquamarine: string;
364
- Azure: string;
365
- AzureNew: string;
366
- AzureFade: string;
367
- AzureHighlight: string;
368
- Silver: string;
369
- BlueNavy: string;
370
- Black: string;
371
- TurquoiseBlue: string;
372
- SummerSky: string;
373
- Mondo: string;
374
- HeavyMetal: string;
375
- BokaraGrey: string;
376
- Cyan: string;
377
- Eucalyptus: string;
378
- Flamingo: string;
379
- Zorba: string;
380
- Flint: string;
381
- Maya: string;
382
- Bondi: string;
383
- Emerald: string;
384
- Carissma: string;
385
- Solitude: string;
386
- WhiteSmoke: string;
387
- Violet: string;
388
- FireBrick: string;
389
- Purple: string;
390
- Buckthorn: string;
391
- };
392
- readonly gradient: {
393
- main: string;
394
- neutral: string;
395
- };
396
- }>;
21
+ export declare const StyledNavigationBar: import("@emotion/styled").StyledComponent<{
22
+ theme?: import("@emotion/react").Theme | undefined;
23
+ as?: React.ElementType<any> | undefined;
24
+ } & BoxProps & Partial<Border & Spacing> & React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
25
+ children?: React.ReactNode;
26
+ } & {
27
+ theme?: import("@emotion/react").Theme | undefined;
28
+ } & {
29
+ children: React.ReactNode;
30
+ showLogo?: boolean | undefined;
31
+ logoAction?: (() => void) | undefined;
32
+ props?: {} | undefined;
33
+ }, {}, {}>;
397
34
  declare const NavigationBar: React.FunctionComponent<NavigationBarProps> & NavigationBarSubComponents;
398
35
  export default NavigationBar;
399
36
  //# sourceMappingURL=NavigationBar.d.ts.map
@@ -1,33 +1,54 @@
1
- import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
2
- import _extends from "@babel/runtime/helpers/esm/extends";
3
- import _styled from "@emotion/styled-base";
4
- import { jsx as ___EmotionJSX } from "@emotion/core";
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = exports.StyledNavigationBar = void 0;
7
+
8
+ var _base = _interopRequireDefault(require("@emotion/styled/base"));
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _Box = _interopRequireDefault(require("../Box"));
13
+
14
+ var _NavigationItem = _interopRequireDefault(require("./NavigationItem"));
15
+
16
+ var _LogoItem = _interopRequireDefault(require("./LogoItem"));
17
+
18
+ var _react2 = require("@emotion/react");
19
+
20
+ var _excluded = ["children", "showLogo", "logoAction"];
21
+
22
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
23
+
24
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
25
+
26
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
27
+
28
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
29
+
5
30
  if (typeof window !== "undefined" && !window.gs) window.gs = function () {};
6
31
  if (typeof window !== "undefined" && !window.gsC) window.gsC = function () {};
7
32
 
8
- /* eslint-disable td/instrumentation */
9
- // this level of fine grained instrumentation is not needed
10
- import React from 'react';
11
- import Box from '../Box';
12
- import NavigationItem from './NavigationItem';
13
- import LogoItem from './LogoItem';
14
-
15
33
  var Separator = function Separator() {
16
- return ___EmotionJSX(Box, {
34
+ return (0, _react2.jsx)(_Box["default"], {
17
35
  "data-gs": gs("src", "navigationbar", "navigationbar.tsx", "box"),
18
36
  flex: true
19
37
  });
20
38
  };
21
39
 
22
- var NavigationPill = /*#__PURE__*/_styled(function (props) {
23
- return ___EmotionJSX(Box, _extends({
40
+ var NavigationPill = ( /*#__PURE__*/0, _base["default"])(function (props) {
41
+ return (0, _react2.jsx)(_Box["default"], _extends({
24
42
  "data-gs": gs("src", "navigationbar", "navigationbar.tsx", "box")
25
43
  }, props, {
26
44
  align: "stretch",
27
45
  direction: "column"
28
46
  }));
29
- }, {
30
- target: "e14c004z0"
47
+ }, process.env.NODE_ENV === "production" ? {
48
+ target: "e14c004z1"
49
+ } : {
50
+ target: "e14c004z1",
51
+ label: "NavigationPill"
31
52
  })(function (_ref) {
32
53
  var theme = _ref.theme;
33
54
  return {
@@ -45,10 +66,12 @@ var NavigationPill = /*#__PURE__*/_styled(function (props) {
45
66
  backgroundColor: theme.color.LightBackground
46
67
  };
47
68
  }, process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9OYXZpZ2F0aW9uQmFyL05hdmlnYXRpb25CYXIudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVl1QiIsImZpbGUiOiIuLi8uLi8uLi9zcmMvTmF2aWdhdGlvbkJhci9OYXZpZ2F0aW9uQmFyLnRzeCIsInNvdXJjZXNDb250ZW50IjpbIi8qIGVzbGludC1kaXNhYmxlIHRkL2luc3RydW1lbnRhdGlvbiAqL1xuLy8gdGhpcyBsZXZlbCBvZiBmaW5lIGdyYWluZWQgaW5zdHJ1bWVudGF0aW9uIGlzIG5vdCBuZWVkZWRcbmltcG9ydCBSZWFjdCBmcm9tICdyZWFjdCdcbmltcG9ydCBCb3ggZnJvbSAnLi4vQm94J1xuaW1wb3J0IHR5cGUgeyBCb3hQcm9wcyB9IGZyb20gJy4uL0JveCdcbmltcG9ydCB0eXBlIHsgU3BhY2luZyB9IGZyb20gJy4uL21peGlucy9zcGFjaW5nJ1xuaW1wb3J0IHR5cGUgeyBCb3JkZXIgfSBmcm9tICcuLi9taXhpbnMvYm9yZGVyJ1xuaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnXG5pbXBvcnQgTmF2aWdhdGlvbkl0ZW0gZnJvbSAnLi9OYXZpZ2F0aW9uSXRlbSdcbmltcG9ydCBMb2dvSXRlbSBmcm9tICcuL0xvZ29JdGVtJ1xuXG5jb25zdCBTZXBhcmF0b3I6IFJlYWN0LkZ1bmN0aW9uQ29tcG9uZW50PHt9PiA9ICgpID0+IDxCb3ggZmxleCAvPlxuY29uc3QgTmF2aWdhdGlvblBpbGwgPSBzdHlsZWQoKHByb3BzOiBCb3hQcm9wcykgPT4gKFxuICA8Qm94IHsuLi5wcm9wc30gYWxpZ249XCJzdHJldGNoXCIgZGlyZWN0aW9uPVwiY29sdW1uXCIgLz5cbikpKCh7IHRoZW1lIH0pID0+ICh7XG4gIHBvc2l0aW9uOiAncmVsYXRpdmUnLFxuICB3aWR0aDogJzIuNzVyZW0nLFxuICBib3JkZXJSYWRpdXM6ICcxLjVyZW0nLFxuICBtaW5IZWlnaHQ6ICcyOHJlbScsXG4gIHBhZGRpbmdUb3A6IHRoZW1lLnNwYWNlWzJdLFxuICBwYWRkaW5nQm90dG9tOiB0aGVtZS5zcGFjZVsyXSxcbiAgZmxleDogMSxcbiAgekluZGV4OiB0aGVtZS56SW5kZXguUHJpbWFyeU5hdixcbiAgbWFyZ2luVG9wOiB0aGVtZS5zcGFjZVszXSxcbiAgYm9yZGVyOiBgMXB4IHNvbGlkICR7dGhlbWUuY29sb3IuQm9rYXJhR3JleX1gLFxuICBib3hTaGFkb3c6IHRoZW1lLnNoYWRvd3MucGlsbCxcbiAgYmFja2dyb3VuZENvbG9yOiB0aGVtZS5jb2xvci5MaWdodEJhY2tncm91bmRcbn0pKVxuXG5OYXZpZ2F0aW9uUGlsbC5kaXNwbGF5TmFtZSA9ICdOYXZpZ2F0aW9uUGlsbCdcblxuZXhwb3J0IHR5cGUgTmF2aWdhdGlvbkJhclN1YkNvbXBvbmVudHMgPSB7XG4gIFNlcGFyYXRvcjogdHlwZW9mIFNlcGFyYXRvclxuICBOYXZpZ2F0aW9uSXRlbTogdHlwZW9mIE5hdmlnYXRpb25JdGVtXG4gIE5hdmlnYXRpb25QaWxsOiB0eXBlb2YgTmF2aWdhdGlvblBpbGxcbn1cbnR5cGUgTmF2aWdhdGlvbkJhclByb3BzID0gQm94UHJvcHMgJlxuICBQYXJ0aWFsPEJvcmRlciAmIFNwYWNpbmc+ICYge1xuICAgIGNoaWxkcmVuOiBSZWFjdC5SZWFjdE5vZGVcbiAgICBzaG93TG9nbz86IGJvb2xlYW5cbiAgICBsb2dvQWN0aW9uPzogKCkgPT4gdm9pZFxuICAgIHByb3BzPzoge31cbiAgfVxuXG5leHBvcnQgY29uc3QgU3R5bGVkTmF2aWdhdGlvbkJhciA9IHN0eWxlZChCb3gpPE5hdmlnYXRpb25CYXJQcm9wcz4oXG4gICh7IHRoZW1lIH0pID0+ICh7XG4gICAgcG9zaXRpb246ICdyZWxhdGl2ZScsXG4gICAgYWxpZ25JdGVtczogJ2ZsZXgtZW5kJyxcbiAgICBiYWNrZ3JvdW5kQ29sb3I6IHRoZW1lLmNvbG9yLldoaXRlU21va2UsXG4gICAgZm9udFNpemU6IHRoZW1lLmZvbnRTaXplWzFdLFxuICAgIHdpZHRoOiA1NCxcbiAgICBoZWlnaHQ6ICcxMDAlJyxcbiAgICBwYWRkaW5nQm90dG9tOiB0aGVtZS5zcGFjZVs0XVxuICB9KVxuKVxuXG5jb25zdCBOYXZpZ2F0aW9uQmFyOiBSZWFjdC5GdW5jdGlvbkNvbXBvbmVudDxOYXZpZ2F0aW9uQmFyUHJvcHM+ICZcbiAgTmF2aWdhdGlvbkJhclN1YkNvbXBvbmVudHMgPSAoe1xuICBjaGlsZHJlbixcbiAgc2hvd0xvZ28sXG4gIGxvZ29BY3Rpb24sXG4gIC4uLnByb3BzXG59OiBOYXZpZ2F0aW9uQmFyUHJvcHMpID0+IHtcbiAgcmV0dXJuIChcbiAgICA8U3R5bGVkTmF2aWdhdGlvbkJhciBhbGlnbj1cInN0cmV0Y2hcIiBkaXJlY3Rpb249XCJjb2x1bW5cIiB7Li4ucHJvcHN9PlxuICAgICAge3Nob3dMb2dvICYmIDxMb2dvSXRlbSBvbkNsaWNrPXtsb2dvQWN0aW9ufSAvPn1cbiAgICAgIHtjaGlsZHJlbn1cbiAgICA8L1N0eWxlZE5hdmlnYXRpb25CYXI+XG4gIClcbn1cblxuTmF2aWdhdGlvbkJhci5kaXNwbGF5TmFtZSA9ICdOYXZpZ2F0aW9uQmFyJ1xuXG5OYXZpZ2F0aW9uQmFyLlNlcGFyYXRvciA9IFNlcGFyYXRvclxuTmF2aWdhdGlvbkJhci5OYXZpZ2F0aW9uSXRlbSA9IE5hdmlnYXRpb25JdGVtXG5OYXZpZ2F0aW9uQmFyLk5hdmlnYXRpb25QaWxsID0gTmF2aWdhdGlvblBpbGxcblxuZXhwb3J0IGRlZmF1bHQgTmF2aWdhdGlvbkJhclxuIl19 */");
48
-
49
69
  NavigationPill.displayName = 'NavigationPill';
50
- export var StyledNavigationBar = /*#__PURE__*/_styled(Box, {
51
- target: "e14c004z1"
70
+ var StyledNavigationBar = ( /*#__PURE__*/0, _base["default"])(_Box["default"], process.env.NODE_ENV === "production" ? {
71
+ target: "e14c004z0"
72
+ } : {
73
+ target: "e14c004z0",
74
+ label: "StyledNavigationBar"
52
75
  })(function (_ref2) {
53
76
  var theme = _ref2.theme;
54
77
  return {
@@ -61,18 +84,19 @@ export var StyledNavigationBar = /*#__PURE__*/_styled(Box, {
61
84
  paddingBottom: theme.space[4]
62
85
  };
63
86
  }, process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9OYXZpZ2F0aW9uQmFyL05hdmlnYXRpb25CYXIudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQTRDbUMiLCJmaWxlIjoiLi4vLi4vLi4vc3JjL05hdmlnYXRpb25CYXIvTmF2aWdhdGlvbkJhci50c3giLCJzb3VyY2VzQ29udGVudCI6WyIvKiBlc2xpbnQtZGlzYWJsZSB0ZC9pbnN0cnVtZW50YXRpb24gKi9cbi8vIHRoaXMgbGV2ZWwgb2YgZmluZSBncmFpbmVkIGluc3RydW1lbnRhdGlvbiBpcyBub3QgbmVlZGVkXG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnXG5pbXBvcnQgQm94IGZyb20gJy4uL0JveCdcbmltcG9ydCB0eXBlIHsgQm94UHJvcHMgfSBmcm9tICcuLi9Cb3gnXG5pbXBvcnQgdHlwZSB7IFNwYWNpbmcgfSBmcm9tICcuLi9taXhpbnMvc3BhY2luZydcbmltcG9ydCB0eXBlIHsgQm9yZGVyIH0gZnJvbSAnLi4vbWl4aW5zL2JvcmRlcidcbmltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJ1xuaW1wb3J0IE5hdmlnYXRpb25JdGVtIGZyb20gJy4vTmF2aWdhdGlvbkl0ZW0nXG5pbXBvcnQgTG9nb0l0ZW0gZnJvbSAnLi9Mb2dvSXRlbSdcblxuY29uc3QgU2VwYXJhdG9yOiBSZWFjdC5GdW5jdGlvbkNvbXBvbmVudDx7fT4gPSAoKSA9PiA8Qm94IGZsZXggLz5cbmNvbnN0IE5hdmlnYXRpb25QaWxsID0gc3R5bGVkKChwcm9wczogQm94UHJvcHMpID0+IChcbiAgPEJveCB7Li4ucHJvcHN9IGFsaWduPVwic3RyZXRjaFwiIGRpcmVjdGlvbj1cImNvbHVtblwiIC8+XG4pKSgoeyB0aGVtZSB9KSA9PiAoe1xuICBwb3NpdGlvbjogJ3JlbGF0aXZlJyxcbiAgd2lkdGg6ICcyLjc1cmVtJyxcbiAgYm9yZGVyUmFkaXVzOiAnMS41cmVtJyxcbiAgbWluSGVpZ2h0OiAnMjhyZW0nLFxuICBwYWRkaW5nVG9wOiB0aGVtZS5zcGFjZVsyXSxcbiAgcGFkZGluZ0JvdHRvbTogdGhlbWUuc3BhY2VbMl0sXG4gIGZsZXg6IDEsXG4gIHpJbmRleDogdGhlbWUuekluZGV4LlByaW1hcnlOYXYsXG4gIG1hcmdpblRvcDogdGhlbWUuc3BhY2VbM10sXG4gIGJvcmRlcjogYDFweCBzb2xpZCAke3RoZW1lLmNvbG9yLkJva2FyYUdyZXl9YCxcbiAgYm94U2hhZG93OiB0aGVtZS5zaGFkb3dzLnBpbGwsXG4gIGJhY2tncm91bmRDb2xvcjogdGhlbWUuY29sb3IuTGlnaHRCYWNrZ3JvdW5kXG59KSlcblxuTmF2aWdhdGlvblBpbGwuZGlzcGxheU5hbWUgPSAnTmF2aWdhdGlvblBpbGwnXG5cbmV4cG9ydCB0eXBlIE5hdmlnYXRpb25CYXJTdWJDb21wb25lbnRzID0ge1xuICBTZXBhcmF0b3I6IHR5cGVvZiBTZXBhcmF0b3JcbiAgTmF2aWdhdGlvbkl0ZW06IHR5cGVvZiBOYXZpZ2F0aW9uSXRlbVxuICBOYXZpZ2F0aW9uUGlsbDogdHlwZW9mIE5hdmlnYXRpb25QaWxsXG59XG50eXBlIE5hdmlnYXRpb25CYXJQcm9wcyA9IEJveFByb3BzICZcbiAgUGFydGlhbDxCb3JkZXIgJiBTcGFjaW5nPiAmIHtcbiAgICBjaGlsZHJlbjogUmVhY3QuUmVhY3ROb2RlXG4gICAgc2hvd0xvZ28/OiBib29sZWFuXG4gICAgbG9nb0FjdGlvbj86ICgpID0+IHZvaWRcbiAgICBwcm9wcz86IHt9XG4gIH1cblxuZXhwb3J0IGNvbnN0IFN0eWxlZE5hdmlnYXRpb25CYXIgPSBzdHlsZWQoQm94KTxOYXZpZ2F0aW9uQmFyUHJvcHM+KFxuICAoeyB0aGVtZSB9KSA9PiAoe1xuICAgIHBvc2l0aW9uOiAncmVsYXRpdmUnLFxuICAgIGFsaWduSXRlbXM6ICdmbGV4LWVuZCcsXG4gICAgYmFja2dyb3VuZENvbG9yOiB0aGVtZS5jb2xvci5XaGl0ZVNtb2tlLFxuICAgIGZvbnRTaXplOiB0aGVtZS5mb250U2l6ZVsxXSxcbiAgICB3aWR0aDogNTQsXG4gICAgaGVpZ2h0OiAnMTAwJScsXG4gICAgcGFkZGluZ0JvdHRvbTogdGhlbWUuc3BhY2VbNF1cbiAgfSlcbilcblxuY29uc3QgTmF2aWdhdGlvbkJhcjogUmVhY3QuRnVuY3Rpb25Db21wb25lbnQ8TmF2aWdhdGlvbkJhclByb3BzPiAmXG4gIE5hdmlnYXRpb25CYXJTdWJDb21wb25lbnRzID0gKHtcbiAgY2hpbGRyZW4sXG4gIHNob3dMb2dvLFxuICBsb2dvQWN0aW9uLFxuICAuLi5wcm9wc1xufTogTmF2aWdhdGlvbkJhclByb3BzKSA9PiB7XG4gIHJldHVybiAoXG4gICAgPFN0eWxlZE5hdmlnYXRpb25CYXIgYWxpZ249XCJzdHJldGNoXCIgZGlyZWN0aW9uPVwiY29sdW1uXCIgey4uLnByb3BzfT5cbiAgICAgIHtzaG93TG9nbyAmJiA8TG9nb0l0ZW0gb25DbGljaz17bG9nb0FjdGlvbn0gLz59XG4gICAgICB7Y2hpbGRyZW59XG4gICAgPC9TdHlsZWROYXZpZ2F0aW9uQmFyPlxuICApXG59XG5cbk5hdmlnYXRpb25CYXIuZGlzcGxheU5hbWUgPSAnTmF2aWdhdGlvbkJhcidcblxuTmF2aWdhdGlvbkJhci5TZXBhcmF0b3IgPSBTZXBhcmF0b3Jcbk5hdmlnYXRpb25CYXIuTmF2aWdhdGlvbkl0ZW0gPSBOYXZpZ2F0aW9uSXRlbVxuTmF2aWdhdGlvbkJhci5OYXZpZ2F0aW9uUGlsbCA9IE5hdmlnYXRpb25QaWxsXG5cbmV4cG9ydCBkZWZhdWx0IE5hdmlnYXRpb25CYXJcbiJdfQ== */");
87
+ exports.StyledNavigationBar = StyledNavigationBar;
64
88
 
65
89
  var NavigationBar = function NavigationBar(_ref3) {
66
90
  var children = _ref3.children,
67
91
  showLogo = _ref3.showLogo,
68
92
  logoAction = _ref3.logoAction,
69
- props = _objectWithoutProperties(_ref3, ["children", "showLogo", "logoAction"]);
93
+ props = _objectWithoutProperties(_ref3, _excluded);
70
94
 
71
- return ___EmotionJSX(StyledNavigationBar, _extends({
95
+ return (0, _react2.jsx)(StyledNavigationBar, _extends({
72
96
  "data-gs": gs("src", "navigationbar", "navigationbar.tsx", "styled-navigation-bar"),
73
97
  align: "stretch",
74
98
  direction: "column"
75
- }, props), showLogo && ___EmotionJSX(LogoItem, {
99
+ }, props), showLogo && (0, _react2.jsx)(_LogoItem["default"], {
76
100
  "data-gs": gs("src", "navigationbar", "navigationbar.tsx", "styled-navigation-bar", "logo-item"),
77
101
  onClick: logoAction
78
102
  }), children);
@@ -80,6 +104,7 @@ var NavigationBar = function NavigationBar(_ref3) {
80
104
 
81
105
  NavigationBar.displayName = 'NavigationBar';
82
106
  NavigationBar.Separator = Separator;
83
- NavigationBar.NavigationItem = NavigationItem;
107
+ NavigationBar.NavigationItem = _NavigationItem["default"];
84
108
  NavigationBar.NavigationPill = NavigationPill;
85
- export default NavigationBar;
109
+ var _default = NavigationBar;
110
+ exports["default"] = _default;