@aivenio/aquarium 0.0.1

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 (1195) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +190 -0
  3. package/dist/_variables.scss +155 -0
  4. package/dist/_variables_timescale.scss +155 -0
  5. package/dist/atoms.cjs +3131 -0
  6. package/dist/atoms.mjs +3105 -0
  7. package/dist/src/common/Alert/Alert.d.ts +19 -0
  8. package/dist/src/common/Alert/Alert.js +74 -0
  9. package/dist/src/common/Banner/Banner.d.ts +24 -0
  10. package/dist/src/common/Banner/Banner.js +52 -0
  11. package/dist/src/common/Checkbox/Checkbox.d.ts +13 -0
  12. package/dist/src/common/Checkbox/Checkbox.js +35 -0
  13. package/dist/src/common/Chip/Chip.d.ts +11 -0
  14. package/dist/src/common/Chip/Chip.js +24 -0
  15. package/dist/src/common/Dialog/Dialog.d.ts +10 -0
  16. package/dist/src/common/Dialog/Dialog.js +18 -0
  17. package/dist/src/common/DropdownMenu/DropdownMenu.d.ts +33 -0
  18. package/dist/src/common/DropdownMenu/DropdownMenu.js +50 -0
  19. package/dist/src/common/InputGroup/InputGroup.d.ts +11 -0
  20. package/dist/src/common/InputGroup/InputGroup.js +24 -0
  21. package/dist/src/common/Modal/Modal.d.ts +28 -0
  22. package/dist/src/common/Modal/Modal.js +59 -0
  23. package/dist/src/common/Popover/Popover.d.ts +8 -0
  24. package/dist/src/common/Popover/Popover.js +21 -0
  25. package/dist/src/common/PopoverDialog/PopoverDialog.d.ts +11 -0
  26. package/dist/src/common/PopoverDialog/PopoverDialog.js +42 -0
  27. package/dist/src/common/ProgressBar/ProgressBar.d.ts +20 -0
  28. package/dist/src/common/ProgressBar/ProgressBar.js +36 -0
  29. package/dist/src/common/RadioButton/RadioButton.d.ts +11 -0
  30. package/dist/src/common/RadioButton/RadioButton.js +30 -0
  31. package/dist/src/common/Select/Select.d.ts +76 -0
  32. package/dist/src/common/Select/Select.js +118 -0
  33. package/dist/src/common/Table/Table.d.ts +49 -0
  34. package/dist/src/common/Table/Table.js +81 -0
  35. package/dist/src/common/Table/Table.utils.d.ts +19 -0
  36. package/dist/src/common/Table/Table.utils.js +41 -0
  37. package/dist/src/common/Typography/Typography.d.ts +11 -0
  38. package/dist/src/common/Typography/Typography.js +17 -0
  39. package/dist/src/common/index.d.ts +12 -0
  40. package/dist/src/common/index.js +13 -0
  41. package/dist/src/components/Alert/Alert.d.ts +18 -0
  42. package/dist/src/components/Alert/Alert.js +12 -0
  43. package/dist/src/components/Avatar/Avatar.d.ts +20 -0
  44. package/dist/src/components/Avatar/Avatar.js +9 -0
  45. package/dist/src/components/Badge/Badge.d.ts +36 -0
  46. package/dist/src/components/Badge/Badge.js +46 -0
  47. package/dist/src/components/Banner/Banner.d.ts +51 -0
  48. package/dist/src/components/Banner/Banner.js +45 -0
  49. package/dist/src/components/Box/Box.d.ts +53 -0
  50. package/dist/src/components/Box/Box.js +55 -0
  51. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +36 -0
  52. package/dist/src/components/Breadcrumbs/Breadcrumbs.js +86 -0
  53. package/dist/src/components/Button/Button.d.ts +134 -0
  54. package/dist/src/components/Button/Button.js +104 -0
  55. package/dist/src/components/Card/Card.d.ts +68 -0
  56. package/dist/src/components/Card/Card.js +46 -0
  57. package/dist/src/components/Checkbox/Checkbox.d.ts +10 -0
  58. package/dist/src/components/Checkbox/Checkbox.js +33 -0
  59. package/dist/src/components/CheckboxGroup/CheckboxGroup.d.ts +45 -0
  60. package/dist/src/components/CheckboxGroup/CheckboxGroup.js +60 -0
  61. package/dist/src/components/Chip/Chip.d.ts +76 -0
  62. package/dist/src/components/Chip/Chip.js +63 -0
  63. package/dist/src/components/ChoiceChip/ChoiceChip.d.ts +24 -0
  64. package/dist/src/components/ChoiceChip/ChoiceChip.js +34 -0
  65. package/dist/src/components/Combobox/Combobox.d.ts +30 -0
  66. package/dist/src/components/Combobox/Combobox.js +109 -0
  67. package/dist/src/components/Context/Context.d.ts +10 -0
  68. package/dist/src/components/Context/Context.js +18 -0
  69. package/dist/src/components/ControlLabel/ControlLabel.d.ts +12 -0
  70. package/dist/src/components/ControlLabel/ControlLabel.js +26 -0
  71. package/dist/src/components/DataTable/DataTable.d.ts +107 -0
  72. package/dist/src/components/DataTable/DataTable.js +54 -0
  73. package/dist/src/components/Dialog/Dialog.d.ts +19 -0
  74. package/dist/src/components/Dialog/Dialog.js +18 -0
  75. package/dist/src/components/Divider/Divider.d.ts +27 -0
  76. package/dist/src/components/Divider/Divider.js +47 -0
  77. package/dist/src/components/Dropdown/Dropdown.d.ts +28 -0
  78. package/dist/src/components/Dropdown/Dropdown.js +87 -0
  79. package/dist/src/components/DropdownMenu/DropdownMenu.d.ts +103 -0
  80. package/dist/src/components/DropdownMenu/DropdownMenu.js +131 -0
  81. package/dist/src/components/Element/Element.d.ts +10 -0
  82. package/dist/src/components/Element/Element.js +18 -0
  83. package/dist/src/components/EmptyState/EmptyState.d.ts +62 -0
  84. package/dist/src/components/EmptyState/EmptyState.js +74 -0
  85. package/dist/src/components/Flexbox/Flexbox.d.ts +20 -0
  86. package/dist/src/components/Flexbox/Flexbox.js +19 -0
  87. package/dist/src/components/Flexbox/FlexboxItem.d.ts +17 -0
  88. package/dist/src/components/Flexbox/FlexboxItem.js +16 -0
  89. package/dist/src/components/Grid/Grid.d.ts +32 -0
  90. package/dist/src/components/Grid/Grid.js +31 -0
  91. package/dist/src/components/Grid/GridItem.d.ts +21 -0
  92. package/dist/src/components/Grid/GridItem.js +20 -0
  93. package/dist/src/components/Icon/Icon.d.ts +9 -0
  94. package/dist/src/components/Icon/Icon.js +26 -0
  95. package/dist/src/components/Input/Input.d.ts +28 -0
  96. package/dist/src/components/Input/Input.js +79 -0
  97. package/dist/src/components/List/List.d.ts +19 -0
  98. package/dist/src/components/List/List.js +6 -0
  99. package/dist/src/components/ListItem/ListItem.d.ts +7 -0
  100. package/dist/src/components/ListItem/ListItem.js +10 -0
  101. package/dist/src/components/Modal/Modal.d.ts +31 -0
  102. package/dist/src/components/Modal/Modal.js +57 -0
  103. package/dist/src/components/MultiInput/InputChip.d.ts +8 -0
  104. package/dist/src/components/MultiInput/InputChip.js +37 -0
  105. package/dist/src/components/MultiInput/MultiInput.d.ts +35 -0
  106. package/dist/src/components/MultiInput/MultiInput.js +150 -0
  107. package/dist/src/components/MultiSelect/MultiSelect.d.ts +21 -0
  108. package/dist/src/components/MultiSelect/MultiSelect.js +134 -0
  109. package/dist/src/components/NativeSelect/NativeSelect.d.ts +19 -0
  110. package/dist/src/components/NativeSelect/NativeSelect.js +56 -0
  111. package/dist/src/components/PageHeader/PageHeader.d.ts +34 -0
  112. package/dist/src/components/PageHeader/PageHeader.js +40 -0
  113. package/dist/src/components/Pagination/Pagination.d.ts +37 -0
  114. package/dist/src/components/Pagination/Pagination.js +63 -0
  115. package/dist/src/components/Popover/Popover.d.ts +34 -0
  116. package/dist/src/components/Popover/Popover.js +79 -0
  117. package/dist/src/components/Popover/PopoverContext.d.ts +7 -0
  118. package/dist/src/components/Popover/PopoverContext.js +10 -0
  119. package/dist/src/components/Popover/PopoverWrapper.d.ts +15 -0
  120. package/dist/src/components/Popover/PopoverWrapper.js +36 -0
  121. package/dist/src/components/PopoverDialog/PopoverDialog.d.ts +12 -0
  122. package/dist/src/components/PopoverDialog/PopoverDialog.js +28 -0
  123. package/dist/src/components/Portal/Portal.d.ts +7 -0
  124. package/dist/src/components/Portal/Portal.js +3 -0
  125. package/dist/src/components/Positioner/Positioner.d.ts +21 -0
  126. package/dist/src/components/Positioner/Positioner.js +97 -0
  127. package/dist/src/components/ProgressBar/ProgressBar.d.ts +45 -0
  128. package/dist/src/components/ProgressBar/ProgressBar.js +21 -0
  129. package/dist/src/components/RadioButton/RadioButton.d.ts +10 -0
  130. package/dist/src/components/RadioButton/RadioButton.js +33 -0
  131. package/dist/src/components/RadioButtonGroup/RadioButtonGroup.d.ts +55 -0
  132. package/dist/src/components/RadioButtonGroup/RadioButtonGroup.js +64 -0
  133. package/dist/src/components/SegmentedControl/SegmentedControl.d.ts +23 -0
  134. package/dist/src/components/SegmentedControl/SegmentedControl.js +51 -0
  135. package/dist/src/components/Select/Select.d.ts +55 -0
  136. package/dist/src/components/Select/Select.js +143 -0
  137. package/dist/src/components/Skeleton/Skeleton.d.ts +25 -0
  138. package/dist/src/components/Skeleton/Skeleton.js +15 -0
  139. package/dist/src/components/Switch/Switch.d.ts +12 -0
  140. package/dist/src/components/Switch/Switch.js +51 -0
  141. package/dist/src/components/SwitchGroup/SwitchGroup.d.ts +45 -0
  142. package/dist/src/components/SwitchGroup/SwitchGroup.js +58 -0
  143. package/dist/src/components/Table/Table.d.ts +14 -0
  144. package/dist/src/components/Table/Table.js +31 -0
  145. package/dist/src/components/Tabs/Tabs.d.ts +91 -0
  146. package/dist/src/components/Tabs/Tabs.js +184 -0
  147. package/dist/src/components/TagLabel/TagLabel.d.ts +16 -0
  148. package/dist/src/components/TagLabel/TagLabel.js +21 -0
  149. package/dist/src/components/Tailwindify/Tailwindify.d.ts +38 -0
  150. package/dist/src/components/Tailwindify/Tailwindify.js +71 -0
  151. package/dist/src/components/Textarea/Textarea.d.ts +15 -0
  152. package/dist/src/components/Textarea/Textarea.js +44 -0
  153. package/dist/src/components/Tooltip/Tooltip.d.ts +44 -0
  154. package/dist/src/components/Tooltip/Tooltip.js +110 -0
  155. package/dist/src/components/Tooltip/useTooltipTriggerState.d.ts +19 -0
  156. package/dist/src/components/Tooltip/useTooltipTriggerState.js +142 -0
  157. package/dist/src/components/Typography/Typography.d.ts +11 -0
  158. package/dist/src/components/Typography/Typography.js +49 -0
  159. package/dist/src/components/index.d.ts +65 -0
  160. package/dist/src/components/index.js +62 -0
  161. package/dist/src/icons/add.d.ts +9 -0
  162. package/dist/src/icons/add.js +11 -0
  163. package/dist/src/icons/addColumnLeft.d.ts +9 -0
  164. package/dist/src/icons/addColumnLeft.js +11 -0
  165. package/dist/src/icons/addColumnRight.d.ts +9 -0
  166. package/dist/src/icons/addColumnRight.js +11 -0
  167. package/dist/src/icons/addRowBottom.d.ts +9 -0
  168. package/dist/src/icons/addRowBottom.js +11 -0
  169. package/dist/src/icons/addRowTop.d.ts +9 -0
  170. package/dist/src/icons/addRowTop.js +11 -0
  171. package/dist/src/icons/addToArtifact.d.ts +9 -0
  172. package/dist/src/icons/addToArtifact.js +11 -0
  173. package/dist/src/icons/addToFolder.d.ts +9 -0
  174. package/dist/src/icons/addToFolder.js +11 -0
  175. package/dist/src/icons/airplane.d.ts +9 -0
  176. package/dist/src/icons/airplane.js +11 -0
  177. package/dist/src/icons/alignCenter.d.ts +9 -0
  178. package/dist/src/icons/alignCenter.js +11 -0
  179. package/dist/src/icons/alignJustify.d.ts +9 -0
  180. package/dist/src/icons/alignJustify.js +11 -0
  181. package/dist/src/icons/alignLeft.d.ts +9 -0
  182. package/dist/src/icons/alignLeft.js +11 -0
  183. package/dist/src/icons/alignRight.d.ts +9 -0
  184. package/dist/src/icons/alignRight.js +11 -0
  185. package/dist/src/icons/alignmentBottom.d.ts +9 -0
  186. package/dist/src/icons/alignmentBottom.js +11 -0
  187. package/dist/src/icons/alignmentHorizontalCenter.d.ts +9 -0
  188. package/dist/src/icons/alignmentHorizontalCenter.js +11 -0
  189. package/dist/src/icons/alignmentLeft.d.ts +9 -0
  190. package/dist/src/icons/alignmentLeft.js +11 -0
  191. package/dist/src/icons/alignmentRight.d.ts +9 -0
  192. package/dist/src/icons/alignmentRight.js +11 -0
  193. package/dist/src/icons/alignmentTop.d.ts +9 -0
  194. package/dist/src/icons/alignmentTop.js +11 -0
  195. package/dist/src/icons/alignmentVerticalCenter.d.ts +9 -0
  196. package/dist/src/icons/alignmentVerticalCenter.js +11 -0
  197. package/dist/src/icons/annotation.d.ts +9 -0
  198. package/dist/src/icons/annotation.js +11 -0
  199. package/dist/src/icons/application.d.ts +9 -0
  200. package/dist/src/icons/application.js +11 -0
  201. package/dist/src/icons/applications.d.ts +9 -0
  202. package/dist/src/icons/applications.js +11 -0
  203. package/dist/src/icons/archive.d.ts +9 -0
  204. package/dist/src/icons/archive.js +11 -0
  205. package/dist/src/icons/arrowBottomLeft.d.ts +9 -0
  206. package/dist/src/icons/arrowBottomLeft.js +11 -0
  207. package/dist/src/icons/arrowBottomRight.d.ts +9 -0
  208. package/dist/src/icons/arrowBottomRight.js +11 -0
  209. package/dist/src/icons/arrowDown.d.ts +9 -0
  210. package/dist/src/icons/arrowDown.js +11 -0
  211. package/dist/src/icons/arrowLeft.d.ts +9 -0
  212. package/dist/src/icons/arrowLeft.js +11 -0
  213. package/dist/src/icons/arrowRight.d.ts +9 -0
  214. package/dist/src/icons/arrowRight.js +11 -0
  215. package/dist/src/icons/arrowTopLeft.d.ts +9 -0
  216. package/dist/src/icons/arrowTopLeft.js +11 -0
  217. package/dist/src/icons/arrowTopRight.d.ts +9 -0
  218. package/dist/src/icons/arrowTopRight.js +11 -0
  219. package/dist/src/icons/arrowUp.d.ts +9 -0
  220. package/dist/src/icons/arrowUp.js +11 -0
  221. package/dist/src/icons/arrowsHorizontal.d.ts +9 -0
  222. package/dist/src/icons/arrowsHorizontal.js +11 -0
  223. package/dist/src/icons/arrowsVertical.d.ts +9 -0
  224. package/dist/src/icons/arrowsVertical.js +11 -0
  225. package/dist/src/icons/asterisk.d.ts +9 -0
  226. package/dist/src/icons/asterisk.js +11 -0
  227. package/dist/src/icons/automaticUpdates.d.ts +9 -0
  228. package/dist/src/icons/automaticUpdates.js +11 -0
  229. package/dist/src/icons/badge.d.ts +9 -0
  230. package/dist/src/icons/badge.js +11 -0
  231. package/dist/src/icons/banCircle.d.ts +9 -0
  232. package/dist/src/icons/banCircle.js +11 -0
  233. package/dist/src/icons/bankAccount.d.ts +9 -0
  234. package/dist/src/icons/bankAccount.js +11 -0
  235. package/dist/src/icons/barcode.d.ts +9 -0
  236. package/dist/src/icons/barcode.js +11 -0
  237. package/dist/src/icons/blockedPerson.d.ts +9 -0
  238. package/dist/src/icons/blockedPerson.js +11 -0
  239. package/dist/src/icons/bold.d.ts +9 -0
  240. package/dist/src/icons/bold.js +11 -0
  241. package/dist/src/icons/book.d.ts +9 -0
  242. package/dist/src/icons/book.js +11 -0
  243. package/dist/src/icons/bookmark.d.ts +9 -0
  244. package/dist/src/icons/bookmark.js +11 -0
  245. package/dist/src/icons/box.d.ts +9 -0
  246. package/dist/src/icons/box.js +11 -0
  247. package/dist/src/icons/briefcase.d.ts +9 -0
  248. package/dist/src/icons/briefcase.js +11 -0
  249. package/dist/src/icons/bringData.d.ts +9 -0
  250. package/dist/src/icons/bringData.js +11 -0
  251. package/dist/src/icons/build.d.ts +9 -0
  252. package/dist/src/icons/build.js +11 -0
  253. package/dist/src/icons/calculator.d.ts +9 -0
  254. package/dist/src/icons/calculator.js +11 -0
  255. package/dist/src/icons/calendar.d.ts +9 -0
  256. package/dist/src/icons/calendar.js +11 -0
  257. package/dist/src/icons/camera.d.ts +9 -0
  258. package/dist/src/icons/camera.js +11 -0
  259. package/dist/src/icons/caretDown.d.ts +9 -0
  260. package/dist/src/icons/caretDown.js +11 -0
  261. package/dist/src/icons/caretLeft.d.ts +9 -0
  262. package/dist/src/icons/caretLeft.js +11 -0
  263. package/dist/src/icons/caretRight.d.ts +9 -0
  264. package/dist/src/icons/caretRight.js +11 -0
  265. package/dist/src/icons/caretUp.d.ts +9 -0
  266. package/dist/src/icons/caretUp.js +11 -0
  267. package/dist/src/icons/cellTower.d.ts +9 -0
  268. package/dist/src/icons/cellTower.js +11 -0
  269. package/dist/src/icons/changes.d.ts +9 -0
  270. package/dist/src/icons/changes.js +11 -0
  271. package/dist/src/icons/chart.d.ts +9 -0
  272. package/dist/src/icons/chart.js +11 -0
  273. package/dist/src/icons/chat.d.ts +9 -0
  274. package/dist/src/icons/chat.js +11 -0
  275. package/dist/src/icons/chevronBackward.d.ts +9 -0
  276. package/dist/src/icons/chevronBackward.js +11 -0
  277. package/dist/src/icons/chevronDown.d.ts +9 -0
  278. package/dist/src/icons/chevronDown.js +11 -0
  279. package/dist/src/icons/chevronForward.d.ts +9 -0
  280. package/dist/src/icons/chevronForward.js +11 -0
  281. package/dist/src/icons/chevronLeft.d.ts +9 -0
  282. package/dist/src/icons/chevronLeft.js +11 -0
  283. package/dist/src/icons/chevronRight.d.ts +9 -0
  284. package/dist/src/icons/chevronRight.js +11 -0
  285. package/dist/src/icons/chevronUp.d.ts +9 -0
  286. package/dist/src/icons/chevronUp.js +11 -0
  287. package/dist/src/icons/circle.d.ts +9 -0
  288. package/dist/src/icons/circle.js +11 -0
  289. package/dist/src/icons/circleArrowDown.d.ts +9 -0
  290. package/dist/src/icons/circleArrowDown.js +11 -0
  291. package/dist/src/icons/circleArrowLeft.d.ts +9 -0
  292. package/dist/src/icons/circleArrowLeft.js +11 -0
  293. package/dist/src/icons/circleArrowRight.d.ts +9 -0
  294. package/dist/src/icons/circleArrowRight.js +11 -0
  295. package/dist/src/icons/circleArrowUp.d.ts +9 -0
  296. package/dist/src/icons/circleArrowUp.js +11 -0
  297. package/dist/src/icons/citation.d.ts +9 -0
  298. package/dist/src/icons/citation.js +11 -0
  299. package/dist/src/icons/clean.d.ts +9 -0
  300. package/dist/src/icons/clean.js +11 -0
  301. package/dist/src/icons/clipboard.d.ts +9 -0
  302. package/dist/src/icons/clipboard.js +11 -0
  303. package/dist/src/icons/cloud.d.ts +9 -0
  304. package/dist/src/icons/cloud.js +11 -0
  305. package/dist/src/icons/cloudDownload.d.ts +9 -0
  306. package/dist/src/icons/cloudDownload.js +11 -0
  307. package/dist/src/icons/cloudUpload.d.ts +9 -0
  308. package/dist/src/icons/cloudUpload.js +11 -0
  309. package/dist/src/icons/code.d.ts +9 -0
  310. package/dist/src/icons/code.js +11 -0
  311. package/dist/src/icons/codeBlock.d.ts +9 -0
  312. package/dist/src/icons/codeBlock.js +11 -0
  313. package/dist/src/icons/cog.d.ts +9 -0
  314. package/dist/src/icons/cog.js +11 -0
  315. package/dist/src/icons/collapseAll.d.ts +9 -0
  316. package/dist/src/icons/collapseAll.js +11 -0
  317. package/dist/src/icons/columnLayout.d.ts +9 -0
  318. package/dist/src/icons/columnLayout.js +11 -0
  319. package/dist/src/icons/comment.d.ts +9 -0
  320. package/dist/src/icons/comment.js +11 -0
  321. package/dist/src/icons/comparison.d.ts +9 -0
  322. package/dist/src/icons/comparison.js +11 -0
  323. package/dist/src/icons/compass.d.ts +9 -0
  324. package/dist/src/icons/compass.js +11 -0
  325. package/dist/src/icons/compressed.d.ts +9 -0
  326. package/dist/src/icons/compressed.js +11 -0
  327. package/dist/src/icons/confirm.d.ts +9 -0
  328. package/dist/src/icons/confirm.js +11 -0
  329. package/dist/src/icons/console.d.ts +9 -0
  330. package/dist/src/icons/console.js +11 -0
  331. package/dist/src/icons/contrast.d.ts +9 -0
  332. package/dist/src/icons/contrast.js +11 -0
  333. package/dist/src/icons/control.d.ts +9 -0
  334. package/dist/src/icons/control.js +11 -0
  335. package/dist/src/icons/creditCard.d.ts +9 -0
  336. package/dist/src/icons/creditCard.js +11 -0
  337. package/dist/src/icons/cross.d.ts +9 -0
  338. package/dist/src/icons/cross.js +11 -0
  339. package/dist/src/icons/crown.d.ts +9 -0
  340. package/dist/src/icons/crown.js +11 -0
  341. package/dist/src/icons/cube.d.ts +9 -0
  342. package/dist/src/icons/cube.js +11 -0
  343. package/dist/src/icons/cubeAdd.d.ts +9 -0
  344. package/dist/src/icons/cubeAdd.js +11 -0
  345. package/dist/src/icons/cubeRemove.d.ts +9 -0
  346. package/dist/src/icons/cubeRemove.js +11 -0
  347. package/dist/src/icons/curvedRangeChart.d.ts +9 -0
  348. package/dist/src/icons/curvedRangeChart.js +11 -0
  349. package/dist/src/icons/cut.d.ts +9 -0
  350. package/dist/src/icons/cut.js +11 -0
  351. package/dist/src/icons/dashboard.d.ts +9 -0
  352. package/dist/src/icons/dashboard.js +11 -0
  353. package/dist/src/icons/dataLineage.d.ts +9 -0
  354. package/dist/src/icons/dataLineage.js +11 -0
  355. package/dist/src/icons/database.d.ts +9 -0
  356. package/dist/src/icons/database.js +11 -0
  357. package/dist/src/icons/delete.d.ts +9 -0
  358. package/dist/src/icons/delete.js +11 -0
  359. package/dist/src/icons/delta.d.ts +9 -0
  360. package/dist/src/icons/delta.js +11 -0
  361. package/dist/src/icons/deriveColumn.d.ts +9 -0
  362. package/dist/src/icons/deriveColumn.js +11 -0
  363. package/dist/src/icons/desktop.d.ts +9 -0
  364. package/dist/src/icons/desktop.js +11 -0
  365. package/dist/src/icons/diagnosis.d.ts +9 -0
  366. package/dist/src/icons/diagnosis.js +11 -0
  367. package/dist/src/icons/diagramTree.d.ts +9 -0
  368. package/dist/src/icons/diagramTree.js +11 -0
  369. package/dist/src/icons/directionLeft.d.ts +9 -0
  370. package/dist/src/icons/directionLeft.js +11 -0
  371. package/dist/src/icons/directionRight.d.ts +9 -0
  372. package/dist/src/icons/directionRight.js +11 -0
  373. package/dist/src/icons/disable.d.ts +9 -0
  374. package/dist/src/icons/disable.js +11 -0
  375. package/dist/src/icons/document.d.ts +9 -0
  376. package/dist/src/icons/document.js +11 -0
  377. package/dist/src/icons/documentOpen.d.ts +9 -0
  378. package/dist/src/icons/documentOpen.js +11 -0
  379. package/dist/src/icons/documentShare.d.ts +9 -0
  380. package/dist/src/icons/documentShare.js +11 -0
  381. package/dist/src/icons/dollar.d.ts +9 -0
  382. package/dist/src/icons/dollar.js +11 -0
  383. package/dist/src/icons/dot.d.ts +9 -0
  384. package/dist/src/icons/dot.js +11 -0
  385. package/dist/src/icons/doubleCaretHorizontal.d.ts +9 -0
  386. package/dist/src/icons/doubleCaretHorizontal.js +11 -0
  387. package/dist/src/icons/doubleCaretVertical.d.ts +9 -0
  388. package/dist/src/icons/doubleCaretVertical.js +11 -0
  389. package/dist/src/icons/doubleChevronDown.d.ts +9 -0
  390. package/dist/src/icons/doubleChevronDown.js +11 -0
  391. package/dist/src/icons/doubleChevronLeft.d.ts +9 -0
  392. package/dist/src/icons/doubleChevronLeft.js +11 -0
  393. package/dist/src/icons/doubleChevronRight.d.ts +9 -0
  394. package/dist/src/icons/doubleChevronRight.js +11 -0
  395. package/dist/src/icons/doubleChevronUp.d.ts +9 -0
  396. package/dist/src/icons/doubleChevronUp.js +11 -0
  397. package/dist/src/icons/doughnutChart.d.ts +9 -0
  398. package/dist/src/icons/doughnutChart.js +11 -0
  399. package/dist/src/icons/download.d.ts +9 -0
  400. package/dist/src/icons/download.js +11 -0
  401. package/dist/src/icons/dragHandleHorizontal.d.ts +9 -0
  402. package/dist/src/icons/dragHandleHorizontal.js +11 -0
  403. package/dist/src/icons/dragHandleVertical.d.ts +9 -0
  404. package/dist/src/icons/dragHandleVertical.js +11 -0
  405. package/dist/src/icons/draw.d.ts +9 -0
  406. package/dist/src/icons/draw.js +11 -0
  407. package/dist/src/icons/driveTime.d.ts +9 -0
  408. package/dist/src/icons/driveTime.js +11 -0
  409. package/dist/src/icons/duplicate.d.ts +9 -0
  410. package/dist/src/icons/duplicate.js +11 -0
  411. package/dist/src/icons/edit.d.ts +9 -0
  412. package/dist/src/icons/edit.js +11 -0
  413. package/dist/src/icons/eject.d.ts +9 -0
  414. package/dist/src/icons/eject.js +11 -0
  415. package/dist/src/icons/endorsed.d.ts +9 -0
  416. package/dist/src/icons/endorsed.js +11 -0
  417. package/dist/src/icons/envelope.d.ts +9 -0
  418. package/dist/src/icons/envelope.js +11 -0
  419. package/dist/src/icons/equals.d.ts +9 -0
  420. package/dist/src/icons/equals.js +11 -0
  421. package/dist/src/icons/eraser.d.ts +9 -0
  422. package/dist/src/icons/eraser.js +11 -0
  423. package/dist/src/icons/error.d.ts +9 -0
  424. package/dist/src/icons/error.js +11 -0
  425. package/dist/src/icons/euro.d.ts +9 -0
  426. package/dist/src/icons/euro.js +11 -0
  427. package/dist/src/icons/exchange.d.ts +9 -0
  428. package/dist/src/icons/exchange.js +11 -0
  429. package/dist/src/icons/excludeRow.d.ts +9 -0
  430. package/dist/src/icons/excludeRow.js +11 -0
  431. package/dist/src/icons/expandAll.d.ts +9 -0
  432. package/dist/src/icons/expandAll.js +11 -0
  433. package/dist/src/icons/export.d.ts +9 -0
  434. package/dist/src/icons/export.js +11 -0
  435. package/dist/src/icons/eyeOff.d.ts +9 -0
  436. package/dist/src/icons/eyeOff.js +11 -0
  437. package/dist/src/icons/eyeOn.d.ts +9 -0
  438. package/dist/src/icons/eyeOn.js +11 -0
  439. package/dist/src/icons/eyeOpen.d.ts +9 -0
  440. package/dist/src/icons/eyeOpen.js +11 -0
  441. package/dist/src/icons/fastBackward.d.ts +9 -0
  442. package/dist/src/icons/fastBackward.js +11 -0
  443. package/dist/src/icons/fastForward.d.ts +9 -0
  444. package/dist/src/icons/fastForward.js +11 -0
  445. package/dist/src/icons/feed.d.ts +9 -0
  446. package/dist/src/icons/feed.js +11 -0
  447. package/dist/src/icons/feedSubscribed.d.ts +9 -0
  448. package/dist/src/icons/feedSubscribed.js +11 -0
  449. package/dist/src/icons/film.d.ts +9 -0
  450. package/dist/src/icons/film.js +11 -0
  451. package/dist/src/icons/filter.d.ts +9 -0
  452. package/dist/src/icons/filter.js +11 -0
  453. package/dist/src/icons/filterKeep.d.ts +9 -0
  454. package/dist/src/icons/filterKeep.js +11 -0
  455. package/dist/src/icons/filterList.d.ts +9 -0
  456. package/dist/src/icons/filterList.js +11 -0
  457. package/dist/src/icons/filterOpen.d.ts +9 -0
  458. package/dist/src/icons/filterOpen.js +11 -0
  459. package/dist/src/icons/filterRemove.d.ts +9 -0
  460. package/dist/src/icons/filterRemove.js +11 -0
  461. package/dist/src/icons/flag.d.ts +9 -0
  462. package/dist/src/icons/flag.js +11 -0
  463. package/dist/src/icons/flame.d.ts +9 -0
  464. package/dist/src/icons/flame.js +11 -0
  465. package/dist/src/icons/flash.d.ts +9 -0
  466. package/dist/src/icons/flash.js +11 -0
  467. package/dist/src/icons/floppyDisk.d.ts +9 -0
  468. package/dist/src/icons/floppyDisk.js +11 -0
  469. package/dist/src/icons/flowBranch.d.ts +9 -0
  470. package/dist/src/icons/flowBranch.js +11 -0
  471. package/dist/src/icons/flowEnd.d.ts +9 -0
  472. package/dist/src/icons/flowEnd.js +11 -0
  473. package/dist/src/icons/flowLinear.d.ts +9 -0
  474. package/dist/src/icons/flowLinear.js +11 -0
  475. package/dist/src/icons/flowReview.d.ts +9 -0
  476. package/dist/src/icons/flowReview.js +11 -0
  477. package/dist/src/icons/flowReviewBranch.d.ts +9 -0
  478. package/dist/src/icons/flowReviewBranch.js +11 -0
  479. package/dist/src/icons/flows.d.ts +9 -0
  480. package/dist/src/icons/flows.js +11 -0
  481. package/dist/src/icons/folderClose.d.ts +9 -0
  482. package/dist/src/icons/folderClose.js +11 -0
  483. package/dist/src/icons/folderNew.d.ts +9 -0
  484. package/dist/src/icons/folderNew.js +11 -0
  485. package/dist/src/icons/folderOpen.d.ts +9 -0
  486. package/dist/src/icons/folderOpen.js +11 -0
  487. package/dist/src/icons/folderShared.d.ts +9 -0
  488. package/dist/src/icons/folderShared.js +11 -0
  489. package/dist/src/icons/folderSharedOpen.d.ts +9 -0
  490. package/dist/src/icons/folderSharedOpen.js +11 -0
  491. package/dist/src/icons/follower.d.ts +9 -0
  492. package/dist/src/icons/follower.js +11 -0
  493. package/dist/src/icons/following.d.ts +9 -0
  494. package/dist/src/icons/following.js +11 -0
  495. package/dist/src/icons/font.d.ts +9 -0
  496. package/dist/src/icons/font.js +11 -0
  497. package/dist/src/icons/fork.d.ts +9 -0
  498. package/dist/src/icons/fork.js +11 -0
  499. package/dist/src/icons/form.d.ts +9 -0
  500. package/dist/src/icons/form.js +11 -0
  501. package/dist/src/icons/fullCircle.d.ts +9 -0
  502. package/dist/src/icons/fullCircle.js +11 -0
  503. package/dist/src/icons/fullStackedChart.d.ts +9 -0
  504. package/dist/src/icons/fullStackedChart.js +11 -0
  505. package/dist/src/icons/fullscreen.d.ts +9 -0
  506. package/dist/src/icons/fullscreen.js +11 -0
  507. package/dist/src/icons/function.d.ts +9 -0
  508. package/dist/src/icons/function.js +11 -0
  509. package/dist/src/icons/ganttChart.d.ts +9 -0
  510. package/dist/src/icons/ganttChart.js +11 -0
  511. package/dist/src/icons/geolocation.d.ts +9 -0
  512. package/dist/src/icons/geolocation.js +11 -0
  513. package/dist/src/icons/geosearch.d.ts +9 -0
  514. package/dist/src/icons/geosearch.js +11 -0
  515. package/dist/src/icons/gitBranch.d.ts +9 -0
  516. package/dist/src/icons/gitBranch.js +11 -0
  517. package/dist/src/icons/gitCommit.d.ts +9 -0
  518. package/dist/src/icons/gitCommit.js +11 -0
  519. package/dist/src/icons/gitMerge.d.ts +9 -0
  520. package/dist/src/icons/gitMerge.js +11 -0
  521. package/dist/src/icons/gitNewBranch.d.ts +9 -0
  522. package/dist/src/icons/gitNewBranch.js +11 -0
  523. package/dist/src/icons/gitPull.d.ts +9 -0
  524. package/dist/src/icons/gitPull.js +11 -0
  525. package/dist/src/icons/gitPush.d.ts +9 -0
  526. package/dist/src/icons/gitPush.js +11 -0
  527. package/dist/src/icons/gitRepo.d.ts +9 -0
  528. package/dist/src/icons/gitRepo.js +11 -0
  529. package/dist/src/icons/glass.d.ts +9 -0
  530. package/dist/src/icons/glass.js +11 -0
  531. package/dist/src/icons/globe.d.ts +9 -0
  532. package/dist/src/icons/globe.js +11 -0
  533. package/dist/src/icons/globeNetwork.d.ts +9 -0
  534. package/dist/src/icons/globeNetwork.js +11 -0
  535. package/dist/src/icons/graph.d.ts +9 -0
  536. package/dist/src/icons/graph.js +11 -0
  537. package/dist/src/icons/graphRemove.d.ts +9 -0
  538. package/dist/src/icons/graphRemove.js +11 -0
  539. package/dist/src/icons/greaterThan.d.ts +9 -0
  540. package/dist/src/icons/greaterThan.js +11 -0
  541. package/dist/src/icons/greaterThanOrEqualTo.d.ts +9 -0
  542. package/dist/src/icons/greaterThanOrEqualTo.js +11 -0
  543. package/dist/src/icons/grid.d.ts +9 -0
  544. package/dist/src/icons/grid.js +11 -0
  545. package/dist/src/icons/gridView.d.ts +9 -0
  546. package/dist/src/icons/gridView.js +11 -0
  547. package/dist/src/icons/groupObjects.d.ts +9 -0
  548. package/dist/src/icons/groupObjects.js +11 -0
  549. package/dist/src/icons/groupedBarChart.d.ts +9 -0
  550. package/dist/src/icons/groupedBarChart.js +11 -0
  551. package/dist/src/icons/hand.d.ts +9 -0
  552. package/dist/src/icons/hand.js +11 -0
  553. package/dist/src/icons/handDown.d.ts +9 -0
  554. package/dist/src/icons/handDown.js +11 -0
  555. package/dist/src/icons/handLeft.d.ts +9 -0
  556. package/dist/src/icons/handLeft.js +11 -0
  557. package/dist/src/icons/handRight.d.ts +9 -0
  558. package/dist/src/icons/handRight.js +11 -0
  559. package/dist/src/icons/handUp.d.ts +9 -0
  560. package/dist/src/icons/handUp.js +11 -0
  561. package/dist/src/icons/header.d.ts +9 -0
  562. package/dist/src/icons/header.js +11 -0
  563. package/dist/src/icons/headerOne.d.ts +9 -0
  564. package/dist/src/icons/headerOne.js +11 -0
  565. package/dist/src/icons/headerTwo.d.ts +9 -0
  566. package/dist/src/icons/headerTwo.js +11 -0
  567. package/dist/src/icons/headset.d.ts +9 -0
  568. package/dist/src/icons/headset.js +11 -0
  569. package/dist/src/icons/heart.d.ts +9 -0
  570. package/dist/src/icons/heart.js +11 -0
  571. package/dist/src/icons/heartBroken.d.ts +9 -0
  572. package/dist/src/icons/heartBroken.js +11 -0
  573. package/dist/src/icons/heatGrid.d.ts +9 -0
  574. package/dist/src/icons/heatGrid.js +11 -0
  575. package/dist/src/icons/heatmap.d.ts +9 -0
  576. package/dist/src/icons/heatmap.js +11 -0
  577. package/dist/src/icons/help.d.ts +9 -0
  578. package/dist/src/icons/help.js +11 -0
  579. package/dist/src/icons/helperManagement.d.ts +9 -0
  580. package/dist/src/icons/helperManagement.js +11 -0
  581. package/dist/src/icons/highlight.d.ts +9 -0
  582. package/dist/src/icons/highlight.js +11 -0
  583. package/dist/src/icons/history.d.ts +9 -0
  584. package/dist/src/icons/history.js +11 -0
  585. package/dist/src/icons/home.d.ts +9 -0
  586. package/dist/src/icons/home.js +11 -0
  587. package/dist/src/icons/horizontalBarChart.d.ts +9 -0
  588. package/dist/src/icons/horizontalBarChart.js +11 -0
  589. package/dist/src/icons/horizontalBarChartAsc.d.ts +9 -0
  590. package/dist/src/icons/horizontalBarChartAsc.js +11 -0
  591. package/dist/src/icons/horizontalBarChartDesc.d.ts +9 -0
  592. package/dist/src/icons/horizontalBarChartDesc.js +11 -0
  593. package/dist/src/icons/horizontalDistribution.d.ts +9 -0
  594. package/dist/src/icons/horizontalDistribution.js +11 -0
  595. package/dist/src/icons/idNumber.d.ts +9 -0
  596. package/dist/src/icons/idNumber.js +11 -0
  597. package/dist/src/icons/imageRotateLeft.d.ts +9 -0
  598. package/dist/src/icons/imageRotateLeft.js +11 -0
  599. package/dist/src/icons/imageRotateRight.d.ts +9 -0
  600. package/dist/src/icons/imageRotateRight.js +11 -0
  601. package/dist/src/icons/import.d.ts +9 -0
  602. package/dist/src/icons/import.js +11 -0
  603. package/dist/src/icons/inbox.d.ts +9 -0
  604. package/dist/src/icons/inbox.js +11 -0
  605. package/dist/src/icons/inboxFiltered.d.ts +9 -0
  606. package/dist/src/icons/inboxFiltered.js +11 -0
  607. package/dist/src/icons/inboxGeo.d.ts +9 -0
  608. package/dist/src/icons/inboxGeo.js +11 -0
  609. package/dist/src/icons/inboxSearch.d.ts +9 -0
  610. package/dist/src/icons/inboxSearch.js +11 -0
  611. package/dist/src/icons/inboxUpdate.d.ts +9 -0
  612. package/dist/src/icons/inboxUpdate.js +11 -0
  613. package/dist/src/icons/index.d.ts +490 -0
  614. package/dist/src/icons/index.js +490 -0
  615. package/dist/src/icons/infoSign.d.ts +9 -0
  616. package/dist/src/icons/infoSign.js +11 -0
  617. package/dist/src/icons/inheritance.d.ts +9 -0
  618. package/dist/src/icons/inheritance.js +11 -0
  619. package/dist/src/icons/innerJoin.d.ts +9 -0
  620. package/dist/src/icons/innerJoin.js +11 -0
  621. package/dist/src/icons/insert.d.ts +9 -0
  622. package/dist/src/icons/insert.js +11 -0
  623. package/dist/src/icons/intersection.d.ts +9 -0
  624. package/dist/src/icons/intersection.js +11 -0
  625. package/dist/src/icons/ipAddress.d.ts +9 -0
  626. package/dist/src/icons/ipAddress.js +11 -0
  627. package/dist/src/icons/issue.d.ts +9 -0
  628. package/dist/src/icons/issue.js +11 -0
  629. package/dist/src/icons/issueClosed.d.ts +9 -0
  630. package/dist/src/icons/issueClosed.js +11 -0
  631. package/dist/src/icons/issueNew.d.ts +9 -0
  632. package/dist/src/icons/issueNew.js +11 -0
  633. package/dist/src/icons/italic.d.ts +9 -0
  634. package/dist/src/icons/italic.js +11 -0
  635. package/dist/src/icons/joinTable.d.ts +9 -0
  636. package/dist/src/icons/joinTable.js +11 -0
  637. package/dist/src/icons/key.d.ts +9 -0
  638. package/dist/src/icons/key.js +11 -0
  639. package/dist/src/icons/keyBackspace.d.ts +9 -0
  640. package/dist/src/icons/keyBackspace.js +11 -0
  641. package/dist/src/icons/keyCommand.d.ts +9 -0
  642. package/dist/src/icons/keyCommand.js +11 -0
  643. package/dist/src/icons/keyControl.d.ts +9 -0
  644. package/dist/src/icons/keyControl.js +11 -0
  645. package/dist/src/icons/keyDelete.d.ts +9 -0
  646. package/dist/src/icons/keyDelete.js +11 -0
  647. package/dist/src/icons/keyEnter.d.ts +9 -0
  648. package/dist/src/icons/keyEnter.js +11 -0
  649. package/dist/src/icons/keyEscape.d.ts +9 -0
  650. package/dist/src/icons/keyEscape.js +11 -0
  651. package/dist/src/icons/keyOption.d.ts +9 -0
  652. package/dist/src/icons/keyOption.js +11 -0
  653. package/dist/src/icons/keyShift.d.ts +9 -0
  654. package/dist/src/icons/keyShift.js +11 -0
  655. package/dist/src/icons/keyTab.d.ts +9 -0
  656. package/dist/src/icons/keyTab.js +11 -0
  657. package/dist/src/icons/knownVehicle.d.ts +9 -0
  658. package/dist/src/icons/knownVehicle.js +11 -0
  659. package/dist/src/icons/labTest.d.ts +9 -0
  660. package/dist/src/icons/labTest.js +11 -0
  661. package/dist/src/icons/label.d.ts +9 -0
  662. package/dist/src/icons/label.js +11 -0
  663. package/dist/src/icons/layer.d.ts +9 -0
  664. package/dist/src/icons/layer.js +11 -0
  665. package/dist/src/icons/layers.d.ts +9 -0
  666. package/dist/src/icons/layers.js +11 -0
  667. package/dist/src/icons/layout.d.ts +9 -0
  668. package/dist/src/icons/layout.js +11 -0
  669. package/dist/src/icons/layoutAuto.d.ts +9 -0
  670. package/dist/src/icons/layoutAuto.js +11 -0
  671. package/dist/src/icons/layoutBalloon.d.ts +9 -0
  672. package/dist/src/icons/layoutBalloon.js +11 -0
  673. package/dist/src/icons/layoutCircle.d.ts +9 -0
  674. package/dist/src/icons/layoutCircle.js +11 -0
  675. package/dist/src/icons/layoutGrid.d.ts +9 -0
  676. package/dist/src/icons/layoutGrid.js +11 -0
  677. package/dist/src/icons/layoutGroupBy.d.ts +9 -0
  678. package/dist/src/icons/layoutGroupBy.js +11 -0
  679. package/dist/src/icons/layoutHierarchy.d.ts +9 -0
  680. package/dist/src/icons/layoutHierarchy.js +11 -0
  681. package/dist/src/icons/layoutLinear.d.ts +9 -0
  682. package/dist/src/icons/layoutLinear.js +11 -0
  683. package/dist/src/icons/layoutSkewGrid.d.ts +9 -0
  684. package/dist/src/icons/layoutSkewGrid.js +11 -0
  685. package/dist/src/icons/layoutSortedClusters.d.ts +9 -0
  686. package/dist/src/icons/layoutSortedClusters.js +11 -0
  687. package/dist/src/icons/learning.d.ts +9 -0
  688. package/dist/src/icons/learning.js +11 -0
  689. package/dist/src/icons/leftJoin.d.ts +9 -0
  690. package/dist/src/icons/leftJoin.js +11 -0
  691. package/dist/src/icons/lessThan.d.ts +9 -0
  692. package/dist/src/icons/lessThan.js +11 -0
  693. package/dist/src/icons/lessThanOrEqualTo.d.ts +9 -0
  694. package/dist/src/icons/lessThanOrEqualTo.js +11 -0
  695. package/dist/src/icons/lifesaver.d.ts +9 -0
  696. package/dist/src/icons/lifesaver.js +11 -0
  697. package/dist/src/icons/lightbulb.d.ts +9 -0
  698. package/dist/src/icons/lightbulb.js +11 -0
  699. package/dist/src/icons/link.d.ts +9 -0
  700. package/dist/src/icons/link.js +11 -0
  701. package/dist/src/icons/list.d.ts +9 -0
  702. package/dist/src/icons/list.js +11 -0
  703. package/dist/src/icons/listColumns.d.ts +9 -0
  704. package/dist/src/icons/listColumns.js +11 -0
  705. package/dist/src/icons/listDetailView.d.ts +9 -0
  706. package/dist/src/icons/listDetailView.js +11 -0
  707. package/dist/src/icons/loading.d.ts +9 -0
  708. package/dist/src/icons/loading.js +11 -0
  709. package/dist/src/icons/locate.d.ts +9 -0
  710. package/dist/src/icons/locate.js +11 -0
  711. package/dist/src/icons/lock.d.ts +9 -0
  712. package/dist/src/icons/lock.js +11 -0
  713. package/dist/src/icons/logIn.d.ts +9 -0
  714. package/dist/src/icons/logIn.js +11 -0
  715. package/dist/src/icons/logOut.d.ts +9 -0
  716. package/dist/src/icons/logOut.js +11 -0
  717. package/dist/src/icons/manual.d.ts +9 -0
  718. package/dist/src/icons/manual.js +11 -0
  719. package/dist/src/icons/manuallyEnteredData.d.ts +9 -0
  720. package/dist/src/icons/manuallyEnteredData.js +11 -0
  721. package/dist/src/icons/map.d.ts +9 -0
  722. package/dist/src/icons/map.js +11 -0
  723. package/dist/src/icons/mapCreate.d.ts +9 -0
  724. package/dist/src/icons/mapCreate.js +11 -0
  725. package/dist/src/icons/mapMarker.d.ts +9 -0
  726. package/dist/src/icons/mapMarker.js +11 -0
  727. package/dist/src/icons/maximize.d.ts +9 -0
  728. package/dist/src/icons/maximize.js +11 -0
  729. package/dist/src/icons/media.d.ts +9 -0
  730. package/dist/src/icons/media.js +11 -0
  731. package/dist/src/icons/menu.d.ts +9 -0
  732. package/dist/src/icons/menu.js +11 -0
  733. package/dist/src/icons/menuClosed.d.ts +9 -0
  734. package/dist/src/icons/menuClosed.js +11 -0
  735. package/dist/src/icons/menuOpen.d.ts +9 -0
  736. package/dist/src/icons/menuOpen.js +11 -0
  737. package/dist/src/icons/mergeColumns.d.ts +9 -0
  738. package/dist/src/icons/mergeColumns.js +11 -0
  739. package/dist/src/icons/mergeLinks.d.ts +9 -0
  740. package/dist/src/icons/mergeLinks.js +11 -0
  741. package/dist/src/icons/minimize.d.ts +9 -0
  742. package/dist/src/icons/minimize.js +11 -0
  743. package/dist/src/icons/minus.d.ts +9 -0
  744. package/dist/src/icons/minus.js +11 -0
  745. package/dist/src/icons/mobilePhone.d.ts +9 -0
  746. package/dist/src/icons/mobilePhone.js +11 -0
  747. package/dist/src/icons/mobileVideo.d.ts +9 -0
  748. package/dist/src/icons/mobileVideo.js +11 -0
  749. package/dist/src/icons/moon.d.ts +9 -0
  750. package/dist/src/icons/moon.js +11 -0
  751. package/dist/src/icons/more.d.ts +9 -0
  752. package/dist/src/icons/more.js +11 -0
  753. package/dist/src/icons/mountain.d.ts +9 -0
  754. package/dist/src/icons/mountain.js +11 -0
  755. package/dist/src/icons/move.d.ts +9 -0
  756. package/dist/src/icons/move.js +11 -0
  757. package/dist/src/icons/moveProject.d.ts +9 -0
  758. package/dist/src/icons/moveProject.js +11 -0
  759. package/dist/src/icons/mugshot.d.ts +9 -0
  760. package/dist/src/icons/mugshot.js +11 -0
  761. package/dist/src/icons/multiSelect.d.ts +9 -0
  762. package/dist/src/icons/multiSelect.js +11 -0
  763. package/dist/src/icons/music.d.ts +9 -0
  764. package/dist/src/icons/music.js +11 -0
  765. package/dist/src/icons/newDrawing.d.ts +9 -0
  766. package/dist/src/icons/newDrawing.js +11 -0
  767. package/dist/src/icons/newGridItem.d.ts +9 -0
  768. package/dist/src/icons/newGridItem.js +11 -0
  769. package/dist/src/icons/newLayer.d.ts +9 -0
  770. package/dist/src/icons/newLayer.js +11 -0
  771. package/dist/src/icons/newLayers.d.ts +9 -0
  772. package/dist/src/icons/newLayers.js +11 -0
  773. package/dist/src/icons/newLink.d.ts +9 -0
  774. package/dist/src/icons/newLink.js +11 -0
  775. package/dist/src/icons/newObject.d.ts +9 -0
  776. package/dist/src/icons/newObject.js +11 -0
  777. package/dist/src/icons/newPerson.d.ts +9 -0
  778. package/dist/src/icons/newPerson.js +11 -0
  779. package/dist/src/icons/newPrescription.d.ts +9 -0
  780. package/dist/src/icons/newPrescription.js +11 -0
  781. package/dist/src/icons/newTextBox.d.ts +9 -0
  782. package/dist/src/icons/newTextBox.js +11 -0
  783. package/dist/src/icons/ninja.d.ts +9 -0
  784. package/dist/src/icons/ninja.js +11 -0
  785. package/dist/src/icons/notEqualTo.d.ts +9 -0
  786. package/dist/src/icons/notEqualTo.js +11 -0
  787. package/dist/src/icons/notifications.d.ts +9 -0
  788. package/dist/src/icons/notifications.js +11 -0
  789. package/dist/src/icons/notificationsUpdated.d.ts +9 -0
  790. package/dist/src/icons/notificationsUpdated.js +11 -0
  791. package/dist/src/icons/numberedList.d.ts +9 -0
  792. package/dist/src/icons/numberedList.js +11 -0
  793. package/dist/src/icons/numerical.d.ts +9 -0
  794. package/dist/src/icons/numerical.js +11 -0
  795. package/dist/src/icons/office.d.ts +9 -0
  796. package/dist/src/icons/office.js +11 -0
  797. package/dist/src/icons/offline.d.ts +9 -0
  798. package/dist/src/icons/offline.js +11 -0
  799. package/dist/src/icons/oilField.d.ts +9 -0
  800. package/dist/src/icons/oilField.js +11 -0
  801. package/dist/src/icons/oneColumn.d.ts +9 -0
  802. package/dist/src/icons/oneColumn.js +11 -0
  803. package/dist/src/icons/outdated.d.ts +9 -0
  804. package/dist/src/icons/outdated.js +11 -0
  805. package/dist/src/icons/pageLayout.d.ts +9 -0
  806. package/dist/src/icons/pageLayout.js +11 -0
  807. package/dist/src/icons/panelStats.d.ts +9 -0
  808. package/dist/src/icons/panelStats.js +11 -0
  809. package/dist/src/icons/panelTable.d.ts +9 -0
  810. package/dist/src/icons/panelTable.js +11 -0
  811. package/dist/src/icons/paperclip.d.ts +9 -0
  812. package/dist/src/icons/paperclip.js +11 -0
  813. package/dist/src/icons/paragraph.d.ts +9 -0
  814. package/dist/src/icons/paragraph.js +11 -0
  815. package/dist/src/icons/path.d.ts +9 -0
  816. package/dist/src/icons/path.js +11 -0
  817. package/dist/src/icons/pathSearch.d.ts +9 -0
  818. package/dist/src/icons/pathSearch.js +11 -0
  819. package/dist/src/icons/pause.d.ts +9 -0
  820. package/dist/src/icons/pause.js +11 -0
  821. package/dist/src/icons/people.d.ts +9 -0
  822. package/dist/src/icons/people.js +11 -0
  823. package/dist/src/icons/percentage.d.ts +9 -0
  824. package/dist/src/icons/percentage.js +11 -0
  825. package/dist/src/icons/person.d.ts +9 -0
  826. package/dist/src/icons/person.js +11 -0
  827. package/dist/src/icons/phone.d.ts +9 -0
  828. package/dist/src/icons/phone.js +11 -0
  829. package/dist/src/icons/pieChart.d.ts +9 -0
  830. package/dist/src/icons/pieChart.js +11 -0
  831. package/dist/src/icons/pin.d.ts +9 -0
  832. package/dist/src/icons/pin.js +11 -0
  833. package/dist/src/icons/pivot.d.ts +9 -0
  834. package/dist/src/icons/pivot.js +11 -0
  835. package/dist/src/icons/pivotTable.d.ts +9 -0
  836. package/dist/src/icons/pivotTable.js +11 -0
  837. package/dist/src/icons/play.d.ts +9 -0
  838. package/dist/src/icons/play.js +11 -0
  839. package/dist/src/icons/plus.d.ts +9 -0
  840. package/dist/src/icons/plus.js +11 -0
  841. package/dist/src/icons/polygonFilter.d.ts +9 -0
  842. package/dist/src/icons/polygonFilter.js +11 -0
  843. package/dist/src/icons/power.d.ts +9 -0
  844. package/dist/src/icons/power.js +11 -0
  845. package/dist/src/icons/predictiveAnalysis.d.ts +9 -0
  846. package/dist/src/icons/predictiveAnalysis.js +11 -0
  847. package/dist/src/icons/prescription.d.ts +9 -0
  848. package/dist/src/icons/prescription.js +11 -0
  849. package/dist/src/icons/presentation.d.ts +9 -0
  850. package/dist/src/icons/presentation.js +11 -0
  851. package/dist/src/icons/print.d.ts +9 -0
  852. package/dist/src/icons/print.js +11 -0
  853. package/dist/src/icons/projects.d.ts +9 -0
  854. package/dist/src/icons/projects.js +11 -0
  855. package/dist/src/icons/properties.d.ts +9 -0
  856. package/dist/src/icons/properties.js +11 -0
  857. package/dist/src/icons/property.d.ts +9 -0
  858. package/dist/src/icons/property.js +11 -0
  859. package/dist/src/icons/publishFunction.d.ts +9 -0
  860. package/dist/src/icons/publishFunction.js +11 -0
  861. package/dist/src/icons/pulse.d.ts +9 -0
  862. package/dist/src/icons/pulse.js +11 -0
  863. package/dist/src/icons/questionMark.d.ts +9 -0
  864. package/dist/src/icons/questionMark.js +11 -0
  865. package/dist/src/icons/random.d.ts +9 -0
  866. package/dist/src/icons/random.js +11 -0
  867. package/dist/src/icons/record.d.ts +9 -0
  868. package/dist/src/icons/record.js +11 -0
  869. package/dist/src/icons/redo.d.ts +9 -0
  870. package/dist/src/icons/redo.js +11 -0
  871. package/dist/src/icons/refresh.d.ts +9 -0
  872. package/dist/src/icons/refresh.js +11 -0
  873. package/dist/src/icons/regressionChart.d.ts +9 -0
  874. package/dist/src/icons/regressionChart.js +11 -0
  875. package/dist/src/icons/remove.d.ts +9 -0
  876. package/dist/src/icons/remove.js +11 -0
  877. package/dist/src/icons/removeColumn.d.ts +9 -0
  878. package/dist/src/icons/removeColumn.js +11 -0
  879. package/dist/src/icons/removeColumnLeft.d.ts +9 -0
  880. package/dist/src/icons/removeColumnLeft.js +11 -0
  881. package/dist/src/icons/removeColumnRight.d.ts +9 -0
  882. package/dist/src/icons/removeColumnRight.js +11 -0
  883. package/dist/src/icons/removeRowBottom.d.ts +9 -0
  884. package/dist/src/icons/removeRowBottom.js +11 -0
  885. package/dist/src/icons/removeRowTop.d.ts +9 -0
  886. package/dist/src/icons/removeRowTop.js +11 -0
  887. package/dist/src/icons/repeat.d.ts +9 -0
  888. package/dist/src/icons/repeat.js +11 -0
  889. package/dist/src/icons/reset.d.ts +9 -0
  890. package/dist/src/icons/reset.js +11 -0
  891. package/dist/src/icons/resolve.d.ts +9 -0
  892. package/dist/src/icons/resolve.js +11 -0
  893. package/dist/src/icons/rig.d.ts +9 -0
  894. package/dist/src/icons/rig.js +11 -0
  895. package/dist/src/icons/rightJoin.d.ts +9 -0
  896. package/dist/src/icons/rightJoin.js +11 -0
  897. package/dist/src/icons/ring.d.ts +9 -0
  898. package/dist/src/icons/ring.js +11 -0
  899. package/dist/src/icons/rotateDocument.d.ts +9 -0
  900. package/dist/src/icons/rotateDocument.js +11 -0
  901. package/dist/src/icons/rotatePage.d.ts +9 -0
  902. package/dist/src/icons/rotatePage.js +11 -0
  903. package/dist/src/icons/satellite.d.ts +9 -0
  904. package/dist/src/icons/satellite.js +11 -0
  905. package/dist/src/icons/saved.d.ts +9 -0
  906. package/dist/src/icons/saved.js +11 -0
  907. package/dist/src/icons/scatterPlot.d.ts +9 -0
  908. package/dist/src/icons/scatterPlot.js +11 -0
  909. package/dist/src/icons/search.d.ts +9 -0
  910. package/dist/src/icons/search.js +11 -0
  911. package/dist/src/icons/searchAround.d.ts +9 -0
  912. package/dist/src/icons/searchAround.js +11 -0
  913. package/dist/src/icons/searchTemplate.d.ts +9 -0
  914. package/dist/src/icons/searchTemplate.js +11 -0
  915. package/dist/src/icons/searchText.d.ts +9 -0
  916. package/dist/src/icons/searchText.js +11 -0
  917. package/dist/src/icons/segmentedControl.d.ts +9 -0
  918. package/dist/src/icons/segmentedControl.js +11 -0
  919. package/dist/src/icons/select.d.ts +9 -0
  920. package/dist/src/icons/select.js +11 -0
  921. package/dist/src/icons/selection.d.ts +9 -0
  922. package/dist/src/icons/selection.js +11 -0
  923. package/dist/src/icons/sendTo.d.ts +9 -0
  924. package/dist/src/icons/sendTo.js +11 -0
  925. package/dist/src/icons/sendToGraph.d.ts +9 -0
  926. package/dist/src/icons/sendToGraph.js +11 -0
  927. package/dist/src/icons/sendToMap.d.ts +9 -0
  928. package/dist/src/icons/sendToMap.js +11 -0
  929. package/dist/src/icons/seriesAdd.d.ts +9 -0
  930. package/dist/src/icons/seriesAdd.js +11 -0
  931. package/dist/src/icons/seriesConfiguration.d.ts +9 -0
  932. package/dist/src/icons/seriesConfiguration.js +11 -0
  933. package/dist/src/icons/seriesDerived.d.ts +9 -0
  934. package/dist/src/icons/seriesDerived.js +11 -0
  935. package/dist/src/icons/seriesFiltered.d.ts +9 -0
  936. package/dist/src/icons/seriesFiltered.js +11 -0
  937. package/dist/src/icons/seriesSearch.d.ts +9 -0
  938. package/dist/src/icons/seriesSearch.js +11 -0
  939. package/dist/src/icons/settings.d.ts +9 -0
  940. package/dist/src/icons/settings.js +11 -0
  941. package/dist/src/icons/share.d.ts +9 -0
  942. package/dist/src/icons/share.js +11 -0
  943. package/dist/src/icons/shield.d.ts +9 -0
  944. package/dist/src/icons/shield.js +11 -0
  945. package/dist/src/icons/shop.d.ts +9 -0
  946. package/dist/src/icons/shop.js +11 -0
  947. package/dist/src/icons/shoppingCart.d.ts +9 -0
  948. package/dist/src/icons/shoppingCart.js +11 -0
  949. package/dist/src/icons/signalSearch.d.ts +9 -0
  950. package/dist/src/icons/signalSearch.js +11 -0
  951. package/dist/src/icons/simCard.d.ts +9 -0
  952. package/dist/src/icons/simCard.js +11 -0
  953. package/dist/src/icons/slash.d.ts +9 -0
  954. package/dist/src/icons/slash.js +11 -0
  955. package/dist/src/icons/smallCross.d.ts +9 -0
  956. package/dist/src/icons/smallCross.js +11 -0
  957. package/dist/src/icons/smallMinus.d.ts +9 -0
  958. package/dist/src/icons/smallMinus.js +11 -0
  959. package/dist/src/icons/smallPlus.d.ts +9 -0
  960. package/dist/src/icons/smallPlus.js +11 -0
  961. package/dist/src/icons/smallTick.d.ts +9 -0
  962. package/dist/src/icons/smallTick.js +11 -0
  963. package/dist/src/icons/snowflake.d.ts +9 -0
  964. package/dist/src/icons/snowflake.js +11 -0
  965. package/dist/src/icons/socialMedia.d.ts +9 -0
  966. package/dist/src/icons/socialMedia.js +11 -0
  967. package/dist/src/icons/sort.d.ts +9 -0
  968. package/dist/src/icons/sort.js +11 -0
  969. package/dist/src/icons/sortAlphabetical.d.ts +9 -0
  970. package/dist/src/icons/sortAlphabetical.js +11 -0
  971. package/dist/src/icons/sortAlphabeticalDesc.d.ts +9 -0
  972. package/dist/src/icons/sortAlphabeticalDesc.js +11 -0
  973. package/dist/src/icons/sortAsc.d.ts +9 -0
  974. package/dist/src/icons/sortAsc.js +11 -0
  975. package/dist/src/icons/sortDesc.d.ts +9 -0
  976. package/dist/src/icons/sortDesc.js +11 -0
  977. package/dist/src/icons/sortNumerical.d.ts +9 -0
  978. package/dist/src/icons/sortNumerical.js +11 -0
  979. package/dist/src/icons/sortNumericalDesc.d.ts +9 -0
  980. package/dist/src/icons/sortNumericalDesc.js +11 -0
  981. package/dist/src/icons/splitColumns.d.ts +9 -0
  982. package/dist/src/icons/splitColumns.js +11 -0
  983. package/dist/src/icons/square.d.ts +9 -0
  984. package/dist/src/icons/square.js +11 -0
  985. package/dist/src/icons/stackedChart.d.ts +9 -0
  986. package/dist/src/icons/stackedChart.js +11 -0
  987. package/dist/src/icons/star.d.ts +9 -0
  988. package/dist/src/icons/star.js +11 -0
  989. package/dist/src/icons/starEmpty.d.ts +9 -0
  990. package/dist/src/icons/starEmpty.js +11 -0
  991. package/dist/src/icons/stepBackward.d.ts +9 -0
  992. package/dist/src/icons/stepBackward.js +11 -0
  993. package/dist/src/icons/stepChart.d.ts +9 -0
  994. package/dist/src/icons/stepChart.js +11 -0
  995. package/dist/src/icons/stepForward.d.ts +9 -0
  996. package/dist/src/icons/stepForward.js +11 -0
  997. package/dist/src/icons/stop.d.ts +9 -0
  998. package/dist/src/icons/stop.js +11 -0
  999. package/dist/src/icons/stopwatch.d.ts +9 -0
  1000. package/dist/src/icons/stopwatch.js +11 -0
  1001. package/dist/src/icons/strikethrough.d.ts +9 -0
  1002. package/dist/src/icons/strikethrough.js +11 -0
  1003. package/dist/src/icons/style.d.ts +9 -0
  1004. package/dist/src/icons/style.js +11 -0
  1005. package/dist/src/icons/swapHorizontal.d.ts +9 -0
  1006. package/dist/src/icons/swapHorizontal.js +11 -0
  1007. package/dist/src/icons/swapVertical.d.ts +9 -0
  1008. package/dist/src/icons/swapVertical.js +11 -0
  1009. package/dist/src/icons/symbolCircle.d.ts +9 -0
  1010. package/dist/src/icons/symbolCircle.js +11 -0
  1011. package/dist/src/icons/symbolCross.d.ts +9 -0
  1012. package/dist/src/icons/symbolCross.js +11 -0
  1013. package/dist/src/icons/symbolDiamond.d.ts +9 -0
  1014. package/dist/src/icons/symbolDiamond.js +11 -0
  1015. package/dist/src/icons/symbolSquare.d.ts +9 -0
  1016. package/dist/src/icons/symbolSquare.js +11 -0
  1017. package/dist/src/icons/symbolTriangleDown.d.ts +9 -0
  1018. package/dist/src/icons/symbolTriangleDown.js +11 -0
  1019. package/dist/src/icons/symbolTriangleUp.d.ts +9 -0
  1020. package/dist/src/icons/symbolTriangleUp.js +11 -0
  1021. package/dist/src/icons/tag.d.ts +9 -0
  1022. package/dist/src/icons/tag.js +11 -0
  1023. package/dist/src/icons/takeAction.d.ts +9 -0
  1024. package/dist/src/icons/takeAction.js +11 -0
  1025. package/dist/src/icons/taxi.d.ts +9 -0
  1026. package/dist/src/icons/taxi.js +11 -0
  1027. package/dist/src/icons/terraform.d.ts +9 -0
  1028. package/dist/src/icons/terraform.js +11 -0
  1029. package/dist/src/icons/textHighlight.d.ts +9 -0
  1030. package/dist/src/icons/textHighlight.js +11 -0
  1031. package/dist/src/icons/th.d.ts +9 -0
  1032. package/dist/src/icons/th.js +11 -0
  1033. package/dist/src/icons/thDerived.d.ts +9 -0
  1034. package/dist/src/icons/thDerived.js +11 -0
  1035. package/dist/src/icons/thDisconnect.d.ts +9 -0
  1036. package/dist/src/icons/thDisconnect.js +11 -0
  1037. package/dist/src/icons/thFiltered.d.ts +9 -0
  1038. package/dist/src/icons/thFiltered.js +11 -0
  1039. package/dist/src/icons/thList.d.ts +9 -0
  1040. package/dist/src/icons/thList.js +11 -0
  1041. package/dist/src/icons/thumbsDown.d.ts +9 -0
  1042. package/dist/src/icons/thumbsDown.js +11 -0
  1043. package/dist/src/icons/thumbsUp.d.ts +9 -0
  1044. package/dist/src/icons/thumbsUp.js +11 -0
  1045. package/dist/src/icons/tick.d.ts +9 -0
  1046. package/dist/src/icons/tick.js +11 -0
  1047. package/dist/src/icons/tickCircle.d.ts +9 -0
  1048. package/dist/src/icons/tickCircle.js +11 -0
  1049. package/dist/src/icons/time.d.ts +9 -0
  1050. package/dist/src/icons/time.js +11 -0
  1051. package/dist/src/icons/timelineAreaChart.d.ts +9 -0
  1052. package/dist/src/icons/timelineAreaChart.js +11 -0
  1053. package/dist/src/icons/timelineBarChart.d.ts +9 -0
  1054. package/dist/src/icons/timelineBarChart.js +11 -0
  1055. package/dist/src/icons/timelineEvents.d.ts +9 -0
  1056. package/dist/src/icons/timelineEvents.js +11 -0
  1057. package/dist/src/icons/timelineLineChart.d.ts +9 -0
  1058. package/dist/src/icons/timelineLineChart.js +11 -0
  1059. package/dist/src/icons/tint.d.ts +9 -0
  1060. package/dist/src/icons/tint.js +11 -0
  1061. package/dist/src/icons/torch.d.ts +9 -0
  1062. package/dist/src/icons/torch.js +11 -0
  1063. package/dist/src/icons/tractor.d.ts +9 -0
  1064. package/dist/src/icons/tractor.js +11 -0
  1065. package/dist/src/icons/train.d.ts +9 -0
  1066. package/dist/src/icons/train.js +11 -0
  1067. package/dist/src/icons/translate.d.ts +9 -0
  1068. package/dist/src/icons/translate.js +11 -0
  1069. package/dist/src/icons/trash.d.ts +9 -0
  1070. package/dist/src/icons/trash.js +11 -0
  1071. package/dist/src/icons/tree.d.ts +9 -0
  1072. package/dist/src/icons/tree.js +11 -0
  1073. package/dist/src/icons/trendingDown.d.ts +9 -0
  1074. package/dist/src/icons/trendingDown.js +11 -0
  1075. package/dist/src/icons/trendingUp.d.ts +9 -0
  1076. package/dist/src/icons/trendingUp.js +11 -0
  1077. package/dist/src/icons/truck.d.ts +9 -0
  1078. package/dist/src/icons/truck.js +11 -0
  1079. package/dist/src/icons/twoColumns.d.ts +9 -0
  1080. package/dist/src/icons/twoColumns.js +11 -0
  1081. package/dist/src/icons/unarchive.d.ts +9 -0
  1082. package/dist/src/icons/unarchive.js +11 -0
  1083. package/dist/src/icons/underline.d.ts +9 -0
  1084. package/dist/src/icons/underline.js +11 -0
  1085. package/dist/src/icons/undo.d.ts +9 -0
  1086. package/dist/src/icons/undo.js +11 -0
  1087. package/dist/src/icons/ungroupObjects.d.ts +9 -0
  1088. package/dist/src/icons/ungroupObjects.js +11 -0
  1089. package/dist/src/icons/unknownVehicle.d.ts +9 -0
  1090. package/dist/src/icons/unknownVehicle.js +11 -0
  1091. package/dist/src/icons/unlock.d.ts +9 -0
  1092. package/dist/src/icons/unlock.js +11 -0
  1093. package/dist/src/icons/unpin.d.ts +9 -0
  1094. package/dist/src/icons/unpin.js +11 -0
  1095. package/dist/src/icons/unresolve.d.ts +9 -0
  1096. package/dist/src/icons/unresolve.js +11 -0
  1097. package/dist/src/icons/updated.d.ts +9 -0
  1098. package/dist/src/icons/updated.js +11 -0
  1099. package/dist/src/icons/upload.d.ts +9 -0
  1100. package/dist/src/icons/upload.js +11 -0
  1101. package/dist/src/icons/user.d.ts +9 -0
  1102. package/dist/src/icons/user.js +11 -0
  1103. package/dist/src/icons/variable.d.ts +9 -0
  1104. package/dist/src/icons/variable.js +11 -0
  1105. package/dist/src/icons/verticalBarChartAsc.d.ts +9 -0
  1106. package/dist/src/icons/verticalBarChartAsc.js +11 -0
  1107. package/dist/src/icons/verticalBarChartDesc.d.ts +9 -0
  1108. package/dist/src/icons/verticalBarChartDesc.js +11 -0
  1109. package/dist/src/icons/verticalDistribution.d.ts +9 -0
  1110. package/dist/src/icons/verticalDistribution.js +11 -0
  1111. package/dist/src/icons/video.d.ts +9 -0
  1112. package/dist/src/icons/video.js +11 -0
  1113. package/dist/src/icons/volumeDown.d.ts +9 -0
  1114. package/dist/src/icons/volumeDown.js +11 -0
  1115. package/dist/src/icons/volumeOff.d.ts +9 -0
  1116. package/dist/src/icons/volumeOff.js +11 -0
  1117. package/dist/src/icons/volumeUp.d.ts +9 -0
  1118. package/dist/src/icons/volumeUp.js +11 -0
  1119. package/dist/src/icons/walk.d.ts +9 -0
  1120. package/dist/src/icons/walk.js +11 -0
  1121. package/dist/src/icons/warningSign.d.ts +9 -0
  1122. package/dist/src/icons/warningSign.js +11 -0
  1123. package/dist/src/icons/waterfallChart.d.ts +9 -0
  1124. package/dist/src/icons/waterfallChart.js +11 -0
  1125. package/dist/src/icons/widget.d.ts +9 -0
  1126. package/dist/src/icons/widget.js +11 -0
  1127. package/dist/src/icons/widgetButton.d.ts +9 -0
  1128. package/dist/src/icons/widgetButton.js +11 -0
  1129. package/dist/src/icons/widgetFooter.d.ts +9 -0
  1130. package/dist/src/icons/widgetFooter.js +11 -0
  1131. package/dist/src/icons/widgetHeader.d.ts +9 -0
  1132. package/dist/src/icons/widgetHeader.js +11 -0
  1133. package/dist/src/icons/wrench.d.ts +9 -0
  1134. package/dist/src/icons/wrench.js +11 -0
  1135. package/dist/src/icons/zoomIn.d.ts +9 -0
  1136. package/dist/src/icons/zoomIn.js +11 -0
  1137. package/dist/src/icons/zoomOut.d.ts +9 -0
  1138. package/dist/src/icons/zoomOut.js +11 -0
  1139. package/dist/src/icons/zoomToFit.d.ts +9 -0
  1140. package/dist/src/icons/zoomToFit.js +11 -0
  1141. package/dist/src/js/resolveTheme.d.ts +6 -0
  1142. package/dist/src/js/resolveTheme.js +22 -0
  1143. package/dist/src/system.d.ts +15 -0
  1144. package/dist/src/system.js +19 -0
  1145. package/dist/src/utils/breakpoints.d.ts +11 -0
  1146. package/dist/src/utils/breakpoints.js +45 -0
  1147. package/dist/src/utils/constants.d.ts +4 -0
  1148. package/dist/src/utils/constants.js +8 -0
  1149. package/dist/src/utils/createComponent.d.ts +3 -0
  1150. package/dist/src/utils/createComponent.js +29 -0
  1151. package/dist/src/utils/form/CharCounter/CharCounter.d.ts +8 -0
  1152. package/dist/src/utils/form/CharCounter/CharCounter.js +6 -0
  1153. package/dist/src/utils/form/FormControl/FormControl.d.ts +7 -0
  1154. package/dist/src/utils/form/FormControl/FormControl.js +6 -0
  1155. package/dist/src/utils/form/HelperText/HelperText.d.ts +39 -0
  1156. package/dist/src/utils/form/HelperText/HelperText.js +20 -0
  1157. package/dist/src/utils/form/InputAdornment/InputAdornment.d.ts +14 -0
  1158. package/dist/src/utils/form/InputAdornment/InputAdornment.js +21 -0
  1159. package/dist/src/utils/form/Label/Label.d.ts +80 -0
  1160. package/dist/src/utils/form/Label/Label.js +89 -0
  1161. package/dist/src/utils/object.d.ts +4 -0
  1162. package/dist/src/utils/object.js +19 -0
  1163. package/dist/src/utils/positioner.d.ts +28 -0
  1164. package/dist/src/utils/positioner.js +111 -0
  1165. package/dist/src/utils/setupTests.d.ts +1 -0
  1166. package/dist/src/utils/setupTests.js +2 -0
  1167. package/dist/src/utils/string.d.ts +1 -0
  1168. package/dist/src/utils/string.js +2 -0
  1169. package/dist/src/utils/tailwind.d.ts +4 -0
  1170. package/dist/src/utils/tailwind.js +18 -0
  1171. package/dist/src/utils/useStyle.d.ts +11 -0
  1172. package/dist/src/utils/useStyle.js +70 -0
  1173. package/dist/src/utils/useWindowSize.d.ts +5 -0
  1174. package/dist/src/utils/useWindowSize.js +27 -0
  1175. package/dist/styles.css +2136 -0
  1176. package/dist/styles_timescaledb.css +2136 -0
  1177. package/dist/system.cjs +7685 -0
  1178. package/dist/system.mjs +7561 -0
  1179. package/dist/tailwind.config.js +150 -0
  1180. package/dist/tailwind.theme.json +520 -0
  1181. package/dist/tokens.json +866 -0
  1182. package/dist/tsconfig.module.tsbuildinfo +1 -0
  1183. package/dist/types/ActionType.d.ts +20 -0
  1184. package/dist/types/ActionType.js +2 -0
  1185. package/dist/types/IconProps.d.ts +4 -0
  1186. package/dist/types/IconProps.js +2 -0
  1187. package/dist/types/designTokens.d.ts +57 -0
  1188. package/dist/types/designTokens.js +5 -0
  1189. package/dist/types/tailwind.d.ts +42 -0
  1190. package/dist/types/tailwind.js +2 -0
  1191. package/dist/types/tailwindGenerated.d.ts +1 -0
  1192. package/dist/types/tailwindGenerated.js +3 -0
  1193. package/dist/types/utils.d.ts +5 -0
  1194. package/dist/types/utils.js +3 -0
  1195. package/package.json +183 -0
package/dist/atoms.mjs ADDED
@@ -0,0 +1,3105 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __commonJS = (cb, mod) => function __require() {
8
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
19
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
20
+ mod
21
+ ));
22
+
23
+ // src/icons/chevronDown.js
24
+ var require_chevronDown = __commonJS({
25
+ "src/icons/chevronDown.js"(exports) {
26
+ "use strict";
27
+ var data = {
28
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="M16 6c-.28 0-.53.11-.71.29L10 11.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6c.18.18.43.29.71.29.28 0 .53-.11.71-.29l6-6A1.003 1.003 0 0016 6Z" clip-rule="evenodd"/>',
29
+ "left": 0,
30
+ "top": 0,
31
+ "width": 20,
32
+ "height": 20
33
+ };
34
+ exports.__esModule = true;
35
+ exports.default = data;
36
+ }
37
+ });
38
+
39
+ // src/icons/loading.js
40
+ var require_loading = __commonJS({
41
+ "src/icons/loading.js"(exports) {
42
+ "use strict";
43
+ var data = {
44
+ "body": '<g fill="none" fill-rule="evenodd" stroke="currentColor" stroke-width="3" transform="translate(1 1)"><circle cx="18" cy="18" r="18" stroke-opacity=".5"/><path d="M36 18c0-9.94-8.06-18-18-18"><animateTransform attributeName="transform" dur="1s" from="0 18 18" repeatCount="indefinite" to="360 18 18" type="rotate"/></path></g>',
45
+ "left": 0,
46
+ "top": 0,
47
+ "width": 40,
48
+ "height": 40
49
+ };
50
+ exports.__esModule = true;
51
+ exports.default = data;
52
+ }
53
+ });
54
+
55
+ // tokens.json
56
+ var require_tokens = __commonJS({
57
+ "tokens.json"(exports, module) {
58
+ module.exports = {
59
+ themes: {
60
+ timescale: {
61
+ colors: {
62
+ "error-100": "#aa0000",
63
+ "error-90": "#b90000",
64
+ "error-80": "#c50001",
65
+ "error-70": "#d80005",
66
+ "error-60": "#e70000",
67
+ "error-50": "#e62728",
68
+ "error-40": "#e0504f",
69
+ "error-30": "#ed7975",
70
+ "error-20": "#ffadb3",
71
+ "error-10": "#ffcbd2",
72
+ "error-5": "#fee8e7",
73
+ "error-0": "#fef2f1",
74
+ "warning-100": "#fe6d00",
75
+ "warning-90": "#ff9003",
76
+ "warning-80": "#fd9f00",
77
+ "warning-70": "#ffb300",
78
+ "warning-60": "#ffc107",
79
+ "warning-50": "#fdc926",
80
+ "warning-40": "#fdd44d",
81
+ "warning-30": "#fddf81",
82
+ "warning-20": "#feebb2",
83
+ "warning-10": "#fff2cd",
84
+ "warning-5": "#fff8ea",
85
+ "warning-0": "#fffdf9",
86
+ "success-100": "#006f00",
87
+ "success-90": "#008e00",
88
+ "success-80": "#009f00",
89
+ "success-70": "#00b300",
90
+ "success-60": "#00c300",
91
+ "success-50": "#40ce37",
92
+ "success-40": "#60db57",
93
+ "success-30": "#89eb80",
94
+ "success-20": "#afffa7",
95
+ "success-10": "#cbffc9",
96
+ "success-5": "#ecf7ed",
97
+ "success-0": "#f5faf5",
98
+ "info-100": "#02569a",
99
+ "info-90": "#0174ba",
100
+ "info-80": "#0788d1",
101
+ "info-70": "#0399e3",
102
+ "info-60": "#02a8f3",
103
+ "info-50": "#28b4f4",
104
+ "info-40": "#4cc2f7",
105
+ "info-30": "#7fd1f7",
106
+ "info-20": "#b4e5fb",
107
+ "info-10": "#e0f5fe",
108
+ "info-5": "#effaff",
109
+ "info-0": "#f9fdff",
110
+ "grey-100": "#19191d",
111
+ "grey-90": "#292a31",
112
+ "grey-80": "#3a3a44",
113
+ "grey-70": "#4a4b57",
114
+ "grey-60": "#5a5b6a",
115
+ "grey-50": "#787885",
116
+ "grey-40": "#9696a0",
117
+ "grey-30": "#b4b4bb",
118
+ "grey-20": "#d2d2d6",
119
+ "grey-10": "#e1e1e3",
120
+ "grey-5": "#ededf0",
121
+ "grey-0": "#f7f7fa",
122
+ "secondary-100": "#e11d16",
123
+ "secondary-90": "#eb4610",
124
+ "secondary-80": "#f3580d",
125
+ "secondary-70": "#f96a02",
126
+ "secondary-60": "#ff7700",
127
+ "secondary-50": "#fc871a",
128
+ "secondary-40": "#fb9a3e",
129
+ "secondary-30": "#fab26e",
130
+ "secondary-20": "#f8c99c",
131
+ "secondary-10": "#fee8d0",
132
+ "secondary-5": "#fff3e8",
133
+ "secondary-0": "#fffbf8",
134
+ "primary-100": "#02569a",
135
+ "primary-90": "#0174ba",
136
+ "primary-80": "#0788d1",
137
+ "primary-70": "#0399e3",
138
+ "primary-60": "#02a8f3",
139
+ "primary-50": "#28b4f4",
140
+ "primary-40": "#4cc2f7",
141
+ "primary-30": "#7fd1f7",
142
+ "primary-20": "#b4e5fb",
143
+ "primary-10": "#e0f5fe",
144
+ "primary-5": "#effaff",
145
+ "primary-0": "#f9fdff"
146
+ },
147
+ typography: {
148
+ sizes: [
149
+ {
150
+ name: "caption-small",
151
+ className: "typography-caption-small",
152
+ style: {
153
+ fontFamily: "Inter",
154
+ fontSize: "10px",
155
+ fontWeight: 400,
156
+ fontStyle: "normal",
157
+ lineHeight: 1.2,
158
+ letterSpacing: 0,
159
+ textTransform: "none"
160
+ },
161
+ fontPostScriptName: null
162
+ },
163
+ {
164
+ name: "caption-default",
165
+ className: "typography-caption-default",
166
+ style: {
167
+ fontFamily: "Inter",
168
+ fontSize: "12px",
169
+ fontWeight: 400,
170
+ fontStyle: "normal",
171
+ lineHeight: 1.26,
172
+ letterSpacing: 0,
173
+ textTransform: "none"
174
+ },
175
+ fontPostScriptName: null
176
+ },
177
+ {
178
+ name: "overline-small",
179
+ className: "typography-overline-small",
180
+ style: {
181
+ fontFamily: "Inter",
182
+ fontSize: "10px",
183
+ fontWeight: 400,
184
+ fontStyle: "normal",
185
+ lineHeight: 1,
186
+ letterSpacing: 0,
187
+ textTransform: "uppercase"
188
+ },
189
+ fontPostScriptName: null
190
+ },
191
+ {
192
+ name: "overline-default",
193
+ className: "typography-overline-default",
194
+ style: {
195
+ fontFamily: "Inter",
196
+ fontSize: "12px",
197
+ fontWeight: 400,
198
+ fontStyle: "normal",
199
+ lineHeight: 1,
200
+ letterSpacing: 0,
201
+ textTransform: "uppercase"
202
+ },
203
+ fontPostScriptName: null
204
+ },
205
+ {
206
+ name: "button-small",
207
+ className: "typography-button-small",
208
+ style: {
209
+ fontFamily: "Inter",
210
+ fontSize: "12px",
211
+ fontWeight: 500,
212
+ fontStyle: "normal",
213
+ lineHeight: 1,
214
+ letterSpacing: 0,
215
+ textTransform: "none"
216
+ },
217
+ fontPostScriptName: "Inter-Medium"
218
+ },
219
+ {
220
+ name: "button-medium",
221
+ className: "typography-button-medium",
222
+ style: {
223
+ fontFamily: "Inter",
224
+ fontSize: "14px",
225
+ fontWeight: 400,
226
+ fontStyle: "normal",
227
+ lineHeight: 1,
228
+ letterSpacing: 0,
229
+ textTransform: "none"
230
+ },
231
+ fontPostScriptName: "Inter-SemiBold"
232
+ },
233
+ {
234
+ name: "button-large",
235
+ className: "typography-button-large",
236
+ style: {
237
+ fontFamily: "Inter",
238
+ fontSize: "16px",
239
+ fontWeight: 500,
240
+ fontStyle: "normal",
241
+ lineHeight: 1.5,
242
+ letterSpacing: 0,
243
+ textTransform: "none"
244
+ },
245
+ fontPostScriptName: "Inter-Medium"
246
+ },
247
+ {
248
+ name: "body-small",
249
+ className: "typography-body-small",
250
+ style: {
251
+ fontFamily: "Inter",
252
+ fontSize: "14px",
253
+ fontWeight: 400,
254
+ fontStyle: "normal",
255
+ lineHeight: 1.43,
256
+ letterSpacing: 0,
257
+ textTransform: "none"
258
+ },
259
+ fontPostScriptName: null
260
+ },
261
+ {
262
+ name: "body-small-medium",
263
+ className: "typography-body-small-medium",
264
+ style: {
265
+ fontFamily: "Inter",
266
+ fontSize: "14px",
267
+ fontWeight: 500,
268
+ fontStyle: "normal",
269
+ lineHeight: 1.43,
270
+ letterSpacing: 0,
271
+ textTransform: "none"
272
+ },
273
+ fontPostScriptName: "Inter-SemiBold"
274
+ },
275
+ {
276
+ name: "body-default",
277
+ className: "typography-body-default",
278
+ style: {
279
+ fontFamily: "Inter",
280
+ fontSize: "16px",
281
+ fontWeight: 400,
282
+ fontStyle: "normal",
283
+ lineHeight: 1.5,
284
+ letterSpacing: 0,
285
+ textTransform: "none"
286
+ },
287
+ fontPostScriptName: null
288
+ },
289
+ {
290
+ name: "body-default-medium",
291
+ className: "typography-body-default-medium",
292
+ style: {
293
+ fontFamily: "Inter",
294
+ fontSize: "16px",
295
+ fontWeight: 500,
296
+ fontStyle: "normal",
297
+ lineHeight: 1.5,
298
+ letterSpacing: 0,
299
+ textTransform: "none"
300
+ },
301
+ fontPostScriptName: "Inter-SemiBold"
302
+ },
303
+ {
304
+ name: "body-large",
305
+ className: "typography-body-large",
306
+ style: {
307
+ fontFamily: "Inter",
308
+ fontSize: "20px",
309
+ fontWeight: 400,
310
+ fontStyle: "normal",
311
+ lineHeight: 1.58,
312
+ letterSpacing: 0,
313
+ textTransform: "none"
314
+ },
315
+ fontPostScriptName: null
316
+ },
317
+ {
318
+ name: "body-large-medium",
319
+ className: "typography-body-large-medium",
320
+ style: {
321
+ fontFamily: "Inter",
322
+ fontSize: "20px",
323
+ fontWeight: 400,
324
+ fontStyle: "normal",
325
+ lineHeight: 1.2,
326
+ letterSpacing: 0,
327
+ textTransform: "none"
328
+ },
329
+ fontPostScriptName: "Inter-SemiBold"
330
+ },
331
+ {
332
+ name: "heading-large",
333
+ className: "typography-heading-large",
334
+ style: {
335
+ fontFamily: "Inter",
336
+ fontSize: "20px",
337
+ fontWeight: 700,
338
+ fontStyle: "normal",
339
+ lineHeight: 1.5,
340
+ letterSpacing: 0.15,
341
+ textTransform: "none"
342
+ },
343
+ fontPostScriptName: "Inter-Bold"
344
+ },
345
+ {
346
+ name: "heading-xl",
347
+ className: "typography-heading-xl",
348
+ style: {
349
+ fontFamily: "Inter",
350
+ fontSize: "24px",
351
+ fontWeight: 700,
352
+ fontStyle: "normal",
353
+ lineHeight: 1.5,
354
+ letterSpacing: 0,
355
+ textTransform: "none"
356
+ },
357
+ fontPostScriptName: "Inter-Bold"
358
+ },
359
+ {
360
+ name: "heading-2xl",
361
+ className: "typography-heading-2xl",
362
+ style: {
363
+ fontFamily: "Inter",
364
+ fontSize: "34px",
365
+ fontWeight: 700,
366
+ fontStyle: "normal",
367
+ lineHeight: 1.28,
368
+ letterSpacing: 0,
369
+ textTransform: "none"
370
+ },
371
+ fontPostScriptName: "Inter-Bold"
372
+ },
373
+ {
374
+ name: "heading-3xl",
375
+ className: "typography-heading-3xl",
376
+ style: {
377
+ fontFamily: "Inter",
378
+ fontSize: "48px",
379
+ fontWeight: 700,
380
+ fontStyle: "normal",
381
+ lineHeight: 1.24,
382
+ letterSpacing: -0.48,
383
+ textTransform: "none"
384
+ },
385
+ fontPostScriptName: "Inter-Bold"
386
+ },
387
+ {
388
+ name: "heading-4xl",
389
+ className: "typography-heading-4xl",
390
+ style: {
391
+ fontFamily: "Inter",
392
+ fontSize: "60px",
393
+ fontWeight: 700,
394
+ fontStyle: "normal",
395
+ lineHeight: 1.2,
396
+ letterSpacing: -1.5,
397
+ textTransform: "none"
398
+ },
399
+ fontPostScriptName: "Inter-Bold"
400
+ },
401
+ {
402
+ name: "heading-5xl",
403
+ className: "typography-heading-5xl",
404
+ style: {
405
+ fontFamily: "Inter",
406
+ fontSize: "76px",
407
+ fontWeight: 700,
408
+ fontStyle: "normal",
409
+ lineHeight: 1.2,
410
+ letterSpacing: -1.98,
411
+ textTransform: "none"
412
+ },
413
+ fontPostScriptName: "Inter-Bold"
414
+ }
415
+ ]
416
+ },
417
+ elevations: {
418
+ "24dp": "0px 24px 48px rgba(90, 91, 106, 0.08), 0px 12px 24px rgba(58, 58, 68, 0.08)",
419
+ "16dp": "0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12)",
420
+ "8dp": "0px 8px 16px rgba(90, 91, 106, 0.16), 0px 4px 8px rgba(58, 58, 68, 0.16)",
421
+ "4dp": "0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20)",
422
+ "2dp": "0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24)"
423
+ },
424
+ spacing: {
425
+ layout01: {
426
+ px: 16,
427
+ rem: 1
428
+ },
429
+ layout02: {
430
+ px: 24,
431
+ rem: 1.5
432
+ },
433
+ layout03: {
434
+ px: 32,
435
+ rem: 2
436
+ },
437
+ layout04: {
438
+ px: 48,
439
+ rem: 3
440
+ },
441
+ layout05: {
442
+ px: 64,
443
+ rem: 4
444
+ },
445
+ layout06: {
446
+ px: 96,
447
+ rem: 6
448
+ },
449
+ layout07: {
450
+ px: 160,
451
+ rem: 10
452
+ },
453
+ spacing01: {
454
+ px: 2,
455
+ rem: 0.125
456
+ },
457
+ spacing02: {
458
+ px: 4,
459
+ rem: 0.25
460
+ },
461
+ spacing03: {
462
+ px: 8,
463
+ rem: 0.5
464
+ },
465
+ spacing04: {
466
+ px: 12,
467
+ rem: 0.75
468
+ },
469
+ spacing05: {
470
+ px: 16,
471
+ rem: 1
472
+ },
473
+ spacing06: {
474
+ px: 24,
475
+ rem: 1.5
476
+ },
477
+ spacing07: {
478
+ px: 32,
479
+ rem: 2
480
+ },
481
+ spacing08: {
482
+ px: 40,
483
+ rem: 2.5
484
+ },
485
+ spacing09: {
486
+ px: 48,
487
+ rem: 3
488
+ }
489
+ }
490
+ },
491
+ aiven: {
492
+ colors: {
493
+ "error-100": "#aa0000",
494
+ "error-90": "#b90000",
495
+ "error-80": "#c50001",
496
+ "error-70": "#d80005",
497
+ "error-60": "#e70000",
498
+ "error-50": "#e62728",
499
+ "error-40": "#e0504f",
500
+ "error-30": "#ed7975",
501
+ "error-20": "#ffadb3",
502
+ "error-10": "#ffcbd2",
503
+ "error-5": "#fee8e7",
504
+ "error-0": "#fef2f1",
505
+ "warning-100": "#fe6d00",
506
+ "warning-90": "#ff9003",
507
+ "warning-80": "#fd9f00",
508
+ "warning-70": "#ffb300",
509
+ "warning-60": "#ffc107",
510
+ "warning-50": "#fdc926",
511
+ "warning-40": "#fdd44d",
512
+ "warning-30": "#fddf81",
513
+ "warning-20": "#feebb2",
514
+ "warning-10": "#fff2cd",
515
+ "warning-5": "#fff8ea",
516
+ "warning-0": "#fffdf9",
517
+ "success-100": "#006f00",
518
+ "success-90": "#008e00",
519
+ "success-80": "#009f00",
520
+ "success-70": "#00b300",
521
+ "success-60": "#00c300",
522
+ "success-50": "#40ce37",
523
+ "success-40": "#60db57",
524
+ "success-30": "#89eb80",
525
+ "success-20": "#afffa7",
526
+ "success-10": "#cbffc9",
527
+ "success-5": "#ecf7ed",
528
+ "success-0": "#f5faf5",
529
+ "info-100": "#02569a",
530
+ "info-90": "#0174ba",
531
+ "info-80": "#0788d1",
532
+ "info-70": "#0399e3",
533
+ "info-60": "#02a8f3",
534
+ "info-50": "#28b4f4",
535
+ "info-40": "#4cc2f7",
536
+ "info-30": "#7fd1f7",
537
+ "info-20": "#b4e5fb",
538
+ "info-10": "#e0f5fe",
539
+ "info-5": "#effaff",
540
+ "info-0": "#f9fdff",
541
+ "grey-100": "#19191d",
542
+ "grey-90": "#292a31",
543
+ "grey-80": "#3a3a44",
544
+ "grey-70": "#4a4b57",
545
+ "grey-60": "#5a5b6a",
546
+ "grey-50": "#787885",
547
+ "grey-40": "#9696a0",
548
+ "grey-30": "#b4b4bb",
549
+ "grey-10": "#e1e1e3",
550
+ "grey-5": "#ededf0",
551
+ "grey-0": "#f7f7fa",
552
+ "secondary-100": "#e11d16",
553
+ "secondary-90": "#eb4610",
554
+ "secondary-80": "#f3580d",
555
+ "secondary-70": "#f96a02",
556
+ "secondary-60": "#ff7700",
557
+ "secondary-50": "#fc871a",
558
+ "secondary-40": "#fb9a3e",
559
+ "secondary-30": "#fab26e",
560
+ "secondary-20": "#f8c99c",
561
+ "secondary-10": "#fee8d0",
562
+ "secondary-5": "#fff3e8",
563
+ "secondary-0": "#fffbf8",
564
+ "primary-100": "#a70045",
565
+ "primary-90": "#c60443",
566
+ "primary-80": "#e41a4a",
567
+ "primary-70": "#ff3554",
568
+ "primary-60": "#ff5275",
569
+ "primary-50": "#ff6f94",
570
+ "primary-40": "#ff8db0",
571
+ "primary-30": "#ffa9c9",
572
+ "primary-20": "#ffc4de",
573
+ "primary-10": "#ffdeef",
574
+ "primary-5": "#ffe8f4",
575
+ "primary-0": "#fff9fc",
576
+ "grey-20": "#d2d2d6"
577
+ },
578
+ typography: {
579
+ sizes: [
580
+ {
581
+ name: "caption-small",
582
+ className: "typography-caption-small",
583
+ style: {
584
+ fontFamily: "Inter",
585
+ fontSize: "10px",
586
+ fontWeight: 400,
587
+ fontStyle: "normal",
588
+ lineHeight: 1.2,
589
+ letterSpacing: 0,
590
+ textTransform: "none"
591
+ },
592
+ fontPostScriptName: null
593
+ },
594
+ {
595
+ name: "caption-default",
596
+ className: "typography-caption-default",
597
+ style: {
598
+ fontFamily: "Inter",
599
+ fontSize: "12px",
600
+ fontWeight: 400,
601
+ fontStyle: "normal",
602
+ lineHeight: 1.26,
603
+ letterSpacing: 0,
604
+ textTransform: "none"
605
+ },
606
+ fontPostScriptName: null
607
+ },
608
+ {
609
+ name: "overline-small",
610
+ className: "typography-overline-small",
611
+ style: {
612
+ fontFamily: "Inter",
613
+ fontSize: "10px",
614
+ fontWeight: 400,
615
+ fontStyle: "normal",
616
+ lineHeight: 1,
617
+ letterSpacing: 0,
618
+ textTransform: "uppercase"
619
+ },
620
+ fontPostScriptName: null
621
+ },
622
+ {
623
+ name: "overline-default",
624
+ className: "typography-overline-default",
625
+ style: {
626
+ fontFamily: "Inter",
627
+ fontSize: "12px",
628
+ fontWeight: 400,
629
+ fontStyle: "normal",
630
+ lineHeight: 1,
631
+ letterSpacing: 0,
632
+ textTransform: "uppercase"
633
+ },
634
+ fontPostScriptName: null
635
+ },
636
+ {
637
+ name: "button-small",
638
+ className: "typography-button-small",
639
+ style: {
640
+ fontFamily: "Inter",
641
+ fontSize: "12px",
642
+ fontWeight: 500,
643
+ fontStyle: "normal",
644
+ lineHeight: 1,
645
+ letterSpacing: 0,
646
+ textTransform: "none"
647
+ },
648
+ fontPostScriptName: "Inter-Medium"
649
+ },
650
+ {
651
+ name: "button-medium",
652
+ className: "typography-button-medium",
653
+ style: {
654
+ fontFamily: "Inter",
655
+ fontSize: "14px",
656
+ fontWeight: 400,
657
+ fontStyle: "normal",
658
+ lineHeight: 1,
659
+ letterSpacing: 0,
660
+ textTransform: "none"
661
+ },
662
+ fontPostScriptName: "Inter-SemiBold"
663
+ },
664
+ {
665
+ name: "button-large",
666
+ className: "typography-button-large",
667
+ style: {
668
+ fontFamily: "Inter",
669
+ fontSize: "16px",
670
+ fontWeight: 500,
671
+ fontStyle: "normal",
672
+ lineHeight: 1.5,
673
+ letterSpacing: 0,
674
+ textTransform: "none"
675
+ },
676
+ fontPostScriptName: "Inter-Medium"
677
+ },
678
+ {
679
+ name: "body-small",
680
+ className: "typography-body-small",
681
+ style: {
682
+ fontFamily: "Inter",
683
+ fontSize: "14px",
684
+ fontWeight: 400,
685
+ fontStyle: "normal",
686
+ lineHeight: 1.43,
687
+ letterSpacing: 0,
688
+ textTransform: "none"
689
+ },
690
+ fontPostScriptName: null
691
+ },
692
+ {
693
+ name: "body-small-medium",
694
+ className: "typography-body-small-medium",
695
+ style: {
696
+ fontFamily: "Inter",
697
+ fontSize: "14px",
698
+ fontWeight: 500,
699
+ fontStyle: "normal",
700
+ lineHeight: 1.43,
701
+ letterSpacing: 0,
702
+ textTransform: "none"
703
+ },
704
+ fontPostScriptName: "Inter-SemiBold"
705
+ },
706
+ {
707
+ name: "body-default",
708
+ className: "typography-body-default",
709
+ style: {
710
+ fontFamily: "Inter",
711
+ fontSize: "16px",
712
+ fontWeight: 400,
713
+ fontStyle: "normal",
714
+ lineHeight: 1.5,
715
+ letterSpacing: 0,
716
+ textTransform: "none"
717
+ },
718
+ fontPostScriptName: null
719
+ },
720
+ {
721
+ name: "body-default-medium",
722
+ className: "typography-body-default-medium",
723
+ style: {
724
+ fontFamily: "Inter",
725
+ fontSize: "16px",
726
+ fontWeight: 500,
727
+ fontStyle: "normal",
728
+ lineHeight: 1.5,
729
+ letterSpacing: 0,
730
+ textTransform: "none"
731
+ },
732
+ fontPostScriptName: "Inter-SemiBold"
733
+ },
734
+ {
735
+ name: "body-large",
736
+ className: "typography-body-large",
737
+ style: {
738
+ fontFamily: "Inter",
739
+ fontSize: "20px",
740
+ fontWeight: 400,
741
+ fontStyle: "normal",
742
+ lineHeight: 1.58,
743
+ letterSpacing: 0,
744
+ textTransform: "none"
745
+ },
746
+ fontPostScriptName: null
747
+ },
748
+ {
749
+ name: "body-large-medium",
750
+ className: "typography-body-large-medium",
751
+ style: {
752
+ fontFamily: "Inter",
753
+ fontSize: "20px",
754
+ fontWeight: 400,
755
+ fontStyle: "normal",
756
+ lineHeight: 1.2,
757
+ letterSpacing: 0,
758
+ textTransform: "none"
759
+ },
760
+ fontPostScriptName: "Inter-SemiBold"
761
+ },
762
+ {
763
+ name: "heading-large",
764
+ className: "typography-heading-large",
765
+ style: {
766
+ fontFamily: "Inter",
767
+ fontSize: "20px",
768
+ fontWeight: 700,
769
+ fontStyle: "normal",
770
+ lineHeight: 1.5,
771
+ letterSpacing: 0.15,
772
+ textTransform: "none"
773
+ },
774
+ fontPostScriptName: "Inter-Bold"
775
+ },
776
+ {
777
+ name: "heading-xl",
778
+ className: "typography-heading-xl",
779
+ style: {
780
+ fontFamily: "Inter",
781
+ fontSize: "24px",
782
+ fontWeight: 700,
783
+ fontStyle: "normal",
784
+ lineHeight: 1.5,
785
+ letterSpacing: 0,
786
+ textTransform: "none"
787
+ },
788
+ fontPostScriptName: "Inter-Bold"
789
+ },
790
+ {
791
+ name: "heading-2xl",
792
+ className: "typography-heading-2xl",
793
+ style: {
794
+ fontFamily: "Inter",
795
+ fontSize: "34px",
796
+ fontWeight: 700,
797
+ fontStyle: "normal",
798
+ lineHeight: 1.28,
799
+ letterSpacing: 0,
800
+ textTransform: "none"
801
+ },
802
+ fontPostScriptName: "Inter-Bold"
803
+ },
804
+ {
805
+ name: "heading-3xl",
806
+ className: "typography-heading-3xl",
807
+ style: {
808
+ fontFamily: "Inter",
809
+ fontSize: "48px",
810
+ fontWeight: 700,
811
+ fontStyle: "normal",
812
+ lineHeight: 1.24,
813
+ letterSpacing: -0.48,
814
+ textTransform: "none"
815
+ },
816
+ fontPostScriptName: "Inter-Bold"
817
+ },
818
+ {
819
+ name: "heading-4xl",
820
+ className: "typography-heading-4xl",
821
+ style: {
822
+ fontFamily: "Inter",
823
+ fontSize: "60px",
824
+ fontWeight: 700,
825
+ fontStyle: "normal",
826
+ lineHeight: 1.2,
827
+ letterSpacing: -1.5,
828
+ textTransform: "none"
829
+ },
830
+ fontPostScriptName: "Inter-Bold"
831
+ },
832
+ {
833
+ name: "heading-5xl",
834
+ className: "typography-heading-5xl",
835
+ style: {
836
+ fontFamily: "Inter",
837
+ fontSize: "76px",
838
+ fontWeight: 700,
839
+ fontStyle: "normal",
840
+ lineHeight: 1.2,
841
+ letterSpacing: -1.98,
842
+ textTransform: "none"
843
+ },
844
+ fontPostScriptName: "Inter-Bold"
845
+ }
846
+ ]
847
+ },
848
+ elevations: {
849
+ "24dp": "0px 24px 48px rgba(90, 91, 106, 0.08), 0px 12px 24px rgba(58, 58, 68, 0.08)",
850
+ "16dp": "0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12)",
851
+ "8dp": "0px 8px 16px rgba(90, 91, 106, 0.16), 0px 4px 8px rgba(58, 58, 68, 0.16)",
852
+ "4dp": "0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20)",
853
+ "2dp": "0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24)"
854
+ },
855
+ spacing: {
856
+ layout01: {
857
+ px: 16,
858
+ rem: 1
859
+ },
860
+ layout02: {
861
+ px: 24,
862
+ rem: 1.5
863
+ },
864
+ layout03: {
865
+ px: 32,
866
+ rem: 2
867
+ },
868
+ layout04: {
869
+ px: 48,
870
+ rem: 3
871
+ },
872
+ layout05: {
873
+ px: 64,
874
+ rem: 4
875
+ },
876
+ layout06: {
877
+ px: 96,
878
+ rem: 6
879
+ },
880
+ layout07: {
881
+ px: 160,
882
+ rem: 10
883
+ },
884
+ spacing01: {
885
+ px: 2,
886
+ rem: 0.125
887
+ },
888
+ spacing02: {
889
+ px: 4,
890
+ rem: 0.25
891
+ },
892
+ spacing03: {
893
+ px: 8,
894
+ rem: 0.5
895
+ },
896
+ spacing04: {
897
+ px: 12,
898
+ rem: 0.75
899
+ },
900
+ spacing05: {
901
+ px: 16,
902
+ rem: 1
903
+ },
904
+ spacing06: {
905
+ px: 24,
906
+ rem: 1.5
907
+ },
908
+ spacing07: {
909
+ px: 32,
910
+ rem: 2
911
+ },
912
+ spacing08: {
913
+ px: 40,
914
+ rem: 2.5
915
+ },
916
+ spacing09: {
917
+ px: 48,
918
+ rem: 3
919
+ }
920
+ }
921
+ }
922
+ }
923
+ };
924
+ }
925
+ });
926
+
927
+ // src/js/resolveTheme.js
928
+ var require_resolveTheme = __commonJS({
929
+ "src/js/resolveTheme.js"(exports, module) {
930
+ "use strict";
931
+ var tokensJson = require_tokens();
932
+ var themeName = process.env.THEME || process.env.STORYBOOK_THEME || "aiven";
933
+ if (!(themeName in tokensJson.themes)) {
934
+ throw new Error(`Could not find theme '${themeName}' from tokens.json`);
935
+ }
936
+ module.exports = {
937
+ theme: tokensJson.themes[themeName]
938
+ };
939
+ }
940
+ });
941
+
942
+ // src/icons/confirm.js
943
+ var require_confirm = __commonJS({
944
+ "src/icons/confirm.js"(exports) {
945
+ "use strict";
946
+ var data = {
947
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="M9.71 5.29a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29.28 0 .53-.11.71-.29l7-7a1.003 1.003 0 00-1.42-1.42L12 7.59l-2.29-2.3Zm7.93 2.32c.23.75.36 1.56.36 2.39 0 4.42-3.58 8-8 8s-8-3.58-8-8a7.998 7.998 0 0111.8-7.04l1.46-1.46C13.73.56 11.93 0 10 0 4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10c0-1.4-.29-2.73-.81-3.95l-1.55 1.56Z" clip-rule="evenodd"/>',
948
+ "left": 0,
949
+ "top": 0,
950
+ "width": 20,
951
+ "height": 20
952
+ };
953
+ exports.__esModule = true;
954
+ exports.default = data;
955
+ }
956
+ });
957
+
958
+ // src/icons/warningSign.js
959
+ var require_warningSign = __commonJS({
960
+ "src/icons/warningSign.js"(exports) {
961
+ "use strict";
962
+ var data = {
963
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="m19.86 17.52.01-.01-9-16-.01.01A.982.982 0 0010 1c-.37 0-.69.21-.86.52l-.01-.01-9 16 .01.01c-.08.14-.14.3-.14.48 0 .55.45 1 1 1h18c.55 0 1-.45 1-1 0-.18-.06-.34-.14-.48ZM11 17H9v-2h2v2Zm0-3H9V6h2v8Z" clip-rule="evenodd"/>',
964
+ "left": 0,
965
+ "top": 0,
966
+ "width": 20,
967
+ "height": 20
968
+ };
969
+ exports.__esModule = true;
970
+ exports.default = data;
971
+ }
972
+ });
973
+
974
+ // src/icons/error.js
975
+ var require_error = __commonJS({
976
+ "src/icons/error.js"(exports) {
977
+ "use strict";
978
+ var data = {
979
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0Zm1 16H9v-2h2v2Zm0-3H9V4h2v9Z" clip-rule="evenodd"/>',
980
+ "left": 0,
981
+ "top": 0,
982
+ "width": 20,
983
+ "height": 20
984
+ };
985
+ exports.__esModule = true;
986
+ exports.default = data;
987
+ }
988
+ });
989
+
990
+ // src/icons/infoSign.js
991
+ var require_infoSign = __commonJS({
992
+ "src/icons/infoSign.js"(exports) {
993
+ "use strict";
994
+ var data = {
995
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0ZM9 4h2v2H9V4Zm4 12H7v-1h2V8H8V7h3v8h2v1Z" clip-rule="evenodd"/>',
996
+ "left": 0,
997
+ "top": 0,
998
+ "width": 20,
999
+ "height": 20
1000
+ };
1001
+ exports.__esModule = true;
1002
+ exports.default = data;
1003
+ }
1004
+ });
1005
+
1006
+ // src/icons/cross.js
1007
+ var require_cross = __commonJS({
1008
+ "src/icons/cross.js"(exports) {
1009
+ "use strict";
1010
+ var data = {
1011
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="m11.41 10 4.29-4.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-4.29-4.3a1.003 1.003 0 00-1.42 1.42L8.59 10 4.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4.29-4.3 4.29 4.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10Z" clip-rule="evenodd"/>',
1012
+ "left": 0,
1013
+ "top": 0,
1014
+ "width": 20,
1015
+ "height": 20
1016
+ };
1017
+ exports.__esModule = true;
1018
+ exports.default = data;
1019
+ }
1020
+ });
1021
+
1022
+ // src/icons/tick.js
1023
+ var require_tick = __commonJS({
1024
+ "src/icons/tick.js"(exports) {
1025
+ "use strict";
1026
+ var data = {
1027
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="M17 4c-.28 0-.53.11-.71.29L7 13.59 3.71 10.3A.965.965 0 003 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29.28 0 .53-.11.71-.29l10-10A1.003 1.003 0 0017 4Z" clip-rule="evenodd"/>',
1028
+ "left": 0,
1029
+ "top": 0,
1030
+ "width": 20,
1031
+ "height": 20
1032
+ };
1033
+ exports.__esModule = true;
1034
+ exports.default = data;
1035
+ }
1036
+ });
1037
+
1038
+ // src/icons/minus.js
1039
+ var require_minus = __commonJS({
1040
+ "src/icons/minus.js"(exports) {
1041
+ "use strict";
1042
+ var data = {
1043
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="M16 9H4c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1Z" clip-rule="evenodd"/>',
1044
+ "left": 0,
1045
+ "top": 0,
1046
+ "width": 20,
1047
+ "height": 20
1048
+ };
1049
+ exports.__esModule = true;
1050
+ exports.default = data;
1051
+ }
1052
+ });
1053
+
1054
+ // src/icons/chevronUp.js
1055
+ var require_chevronUp = __commonJS({
1056
+ "src/icons/chevronUp.js"(exports) {
1057
+ "use strict";
1058
+ var data = {
1059
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="m16.71 12.29-6-6A.997.997 0 0010 6c-.28 0-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42L10 8.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71Z" clip-rule="evenodd"/>',
1060
+ "left": 0,
1061
+ "top": 0,
1062
+ "width": 20,
1063
+ "height": 20
1064
+ };
1065
+ exports.__esModule = true;
1066
+ exports.default = data;
1067
+ }
1068
+ });
1069
+
1070
+ // src/icons/search.js
1071
+ var require_search = __commonJS({
1072
+ "src/icons/search.js"(exports) {
1073
+ "use strict";
1074
+ var data = {
1075
+ "body": '<path fill="currentColor" fill-rule="evenodd" d="m19.56 17.44-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12ZM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6Z" clip-rule="evenodd"/>',
1076
+ "left": 0,
1077
+ "top": 0,
1078
+ "width": 20,
1079
+ "height": 20
1080
+ };
1081
+ exports.__esModule = true;
1082
+ exports.default = data;
1083
+ }
1084
+ });
1085
+
1086
+ // src/common/Alert/Alert.tsx
1087
+ import React8 from "react";
1088
+
1089
+ // src/utils/tailwind.ts
1090
+ import originalClassNames from "classnames";
1091
+ function cleanClassNames(classNames2) {
1092
+ const tokens = classNames2.split(/\s+/);
1093
+ return tokens.filter((item) => item).join(" ");
1094
+ }
1095
+ function tw(classesOrModifiers1, classesOrModifiers2, classesOrModifiers3, classesOrModifiers4, classesOrModifiers5, classesOrModifiers6, classesOrModifiers7, classesOrModifiers8, classesOrModifiers9, classesOrModifiers10) {
1096
+ const result = originalClassNames(
1097
+ classesOrModifiers1,
1098
+ classesOrModifiers2,
1099
+ classesOrModifiers3,
1100
+ classesOrModifiers4,
1101
+ classesOrModifiers5,
1102
+ classesOrModifiers6,
1103
+ classesOrModifiers7,
1104
+ classesOrModifiers8,
1105
+ classesOrModifiers9,
1106
+ classesOrModifiers10
1107
+ );
1108
+ return cleanClassNames(result);
1109
+ }
1110
+ var classNames = (...args) => {
1111
+ const result = originalClassNames(...args);
1112
+ return cleanClassNames(result);
1113
+ };
1114
+
1115
+ // src/components/Button/Button.tsx
1116
+ import React6 from "react";
1117
+
1118
+ // src/components/Icon/Icon.tsx
1119
+ import React from "react";
1120
+ import {
1121
+ Icon as IconifyIconComponent,
1122
+ InlineIcon as IconifyInlineIconComponent
1123
+ } from "@iconify/react";
1124
+ var Icon = React.forwardRef(({ color, className, ...rest }, ref) => {
1125
+ const classes = classNames(className, color && `text-${color}`);
1126
+ return /* @__PURE__ */ React.createElement(IconifyIconComponent, {
1127
+ ref: ref ?? void 0,
1128
+ className: classes !== "" ? classes : void 0,
1129
+ ...rest
1130
+ });
1131
+ });
1132
+ var InlineIcon = React.forwardRef(({ color, className, ...rest }, ref) => {
1133
+ const classes = classNames(color && `text-${color}`);
1134
+ return /* @__PURE__ */ React.createElement("span", {
1135
+ className: classNames(tw("children:inline-block inline-flex justify-center items-center"), className)
1136
+ }, /* @__PURE__ */ React.createElement(IconifyInlineIconComponent, {
1137
+ ref: ref ?? void 0,
1138
+ className: classes !== "" ? classes : void 0,
1139
+ ...rest
1140
+ }));
1141
+ });
1142
+
1143
+ // src/components/Flexbox/Flexbox.tsx
1144
+ import React4 from "react";
1145
+
1146
+ // src/components/Tailwindify/Tailwindify.tsx
1147
+ import React3 from "react";
1148
+ import get2 from "lodash/get";
1149
+ import isUndefined4 from "lodash/isUndefined";
1150
+
1151
+ // src/utils/useStyle.ts
1152
+ import { useContext } from "react";
1153
+ import get from "lodash/get";
1154
+ import isUndefined3 from "lodash/isUndefined";
1155
+ import isPlainObject2 from "lodash/isPlainObject";
1156
+
1157
+ // src/components/Context/Context.tsx
1158
+ import React2 from "react";
1159
+ import { ModalProvider } from "@react-aria/overlays";
1160
+
1161
+ // src/utils/breakpoints.ts
1162
+ import isUndefined from "lodash/isUndefined";
1163
+ import orderBy from "lodash/orderBy";
1164
+ import isPlainObject from "lodash/isPlainObject";
1165
+
1166
+ // tailwind.theme.json
1167
+ var tailwind_theme_default = {
1168
+ screens: {
1169
+ default: "0px",
1170
+ xs: "320px",
1171
+ sm: "672px",
1172
+ md: "1056px",
1173
+ lg: "1312px",
1174
+ xl: "1536px"
1175
+ },
1176
+ order: {
1177
+ "1": "1",
1178
+ "2": "2",
1179
+ "3": "3",
1180
+ "4": "4",
1181
+ "5": "5",
1182
+ "6": "6",
1183
+ "7": "7",
1184
+ "8": "8",
1185
+ "9": "9",
1186
+ "10": "10",
1187
+ "11": "11",
1188
+ "12": "12",
1189
+ first: "-9999",
1190
+ last: "9999",
1191
+ none: "0"
1192
+ },
1193
+ spacing: {
1194
+ "0": "0",
1195
+ "1": "2px",
1196
+ "2": "4px",
1197
+ "3": "8px",
1198
+ "4": "12px",
1199
+ "5": "16px",
1200
+ "6": "24px",
1201
+ "7": "32px",
1202
+ "8": "40px",
1203
+ "9": "48px",
1204
+ "1px": "1px",
1205
+ l1: "16px",
1206
+ l2: "24px",
1207
+ l3: "32px",
1208
+ l4: "48px",
1209
+ l5: "64px",
1210
+ l6: "96px",
1211
+ l7: "160px"
1212
+ },
1213
+ margin: {
1214
+ "0": "0",
1215
+ "1": "2px",
1216
+ "2": "4px",
1217
+ "3": "8px",
1218
+ "4": "12px",
1219
+ "5": "16px",
1220
+ "6": "24px",
1221
+ "7": "32px",
1222
+ "8": "40px",
1223
+ "9": "48px",
1224
+ "1px": "1px",
1225
+ l1: "16px",
1226
+ l2: "24px",
1227
+ l3: "32px",
1228
+ l4: "48px",
1229
+ l5: "64px",
1230
+ l6: "96px",
1231
+ l7: "160px",
1232
+ auto: "auto",
1233
+ "-1": "-2px",
1234
+ "-2": "-4px",
1235
+ "-3": "-8px",
1236
+ "-4": "-12px",
1237
+ "-5": "-16px",
1238
+ "-6": "-24px",
1239
+ "-7": "-32px",
1240
+ "-8": "-40px",
1241
+ "-9": "-48px",
1242
+ "-1px": "-1px",
1243
+ "-l1": "-16px",
1244
+ "-l2": "-24px",
1245
+ "-l3": "-32px",
1246
+ "-l4": "-48px",
1247
+ "-l5": "-64px",
1248
+ "-l6": "-96px",
1249
+ "-l7": "-160px"
1250
+ },
1251
+ padding: {
1252
+ "0": "0",
1253
+ "1": "2px",
1254
+ "2": "4px",
1255
+ "3": "8px",
1256
+ "4": "12px",
1257
+ "5": "16px",
1258
+ "6": "24px",
1259
+ "7": "32px",
1260
+ "8": "40px",
1261
+ "9": "48px",
1262
+ "1px": "1px",
1263
+ l1: "16px",
1264
+ l2: "24px",
1265
+ l3: "32px",
1266
+ l4: "48px",
1267
+ l5: "64px",
1268
+ l6: "96px",
1269
+ l7: "160px"
1270
+ },
1271
+ width: {
1272
+ "0": "0",
1273
+ "1": "2px",
1274
+ "2": "4px",
1275
+ "3": "8px",
1276
+ "4": "12px",
1277
+ "5": "16px",
1278
+ "6": "24px",
1279
+ "7": "32px",
1280
+ "8": "40px",
1281
+ "9": "48px",
1282
+ auto: "auto",
1283
+ "1px": "1px",
1284
+ l1: "16px",
1285
+ l2: "24px",
1286
+ l3: "32px",
1287
+ l4: "48px",
1288
+ l5: "64px",
1289
+ l6: "96px",
1290
+ l7: "160px",
1291
+ "1/2": "50%",
1292
+ "1/3": "33.333333%",
1293
+ "2/3": "66.666667%",
1294
+ "1/4": "25%",
1295
+ "2/4": "50%",
1296
+ "3/4": "75%",
1297
+ "1/5": "20%",
1298
+ "2/5": "40%",
1299
+ "3/5": "60%",
1300
+ "4/5": "80%",
1301
+ "1/6": "16.666667%",
1302
+ "2/6": "33.333333%",
1303
+ "3/6": "50%",
1304
+ "4/6": "66.666667%",
1305
+ "5/6": "83.333333%",
1306
+ "1/12": "8.333333%",
1307
+ "2/12": "16.666667%",
1308
+ "3/12": "25%",
1309
+ "4/12": "33.333333%",
1310
+ "5/12": "41.666667%",
1311
+ "6/12": "50%",
1312
+ "7/12": "58.333333%",
1313
+ "8/12": "66.666667%",
1314
+ "9/12": "75%",
1315
+ "10/12": "83.333333%",
1316
+ "11/12": "91.666667%",
1317
+ full: "100%",
1318
+ screen: "100vw",
1319
+ min: "min-content",
1320
+ max: "max-content",
1321
+ fit: "fit-content"
1322
+ },
1323
+ height: {
1324
+ "0": "0",
1325
+ "1": "2px",
1326
+ "2": "4px",
1327
+ "3": "8px",
1328
+ "4": "12px",
1329
+ "5": "16px",
1330
+ "6": "24px",
1331
+ "7": "32px",
1332
+ "8": "40px",
1333
+ "9": "48px",
1334
+ auto: "auto",
1335
+ "1px": "1px",
1336
+ l1: "16px",
1337
+ l2: "24px",
1338
+ l3: "32px",
1339
+ l4: "48px",
1340
+ l5: "64px",
1341
+ l6: "96px",
1342
+ l7: "160px",
1343
+ "1/2": "50%",
1344
+ "1/3": "33.333333%",
1345
+ "2/3": "66.666667%",
1346
+ "1/4": "25%",
1347
+ "2/4": "50%",
1348
+ "3/4": "75%",
1349
+ "1/5": "20%",
1350
+ "2/5": "40%",
1351
+ "3/5": "60%",
1352
+ "4/5": "80%",
1353
+ "1/6": "16.666667%",
1354
+ "2/6": "33.333333%",
1355
+ "3/6": "50%",
1356
+ "4/6": "66.666667%",
1357
+ "5/6": "83.333333%",
1358
+ full: "100%",
1359
+ screen: "100vh",
1360
+ min: "min-content",
1361
+ max: "max-content",
1362
+ fit: "fit-content"
1363
+ },
1364
+ maxWidth: {
1365
+ "0": "0rem",
1366
+ none: "none",
1367
+ xs: "20rem",
1368
+ sm: "24rem",
1369
+ md: "28rem",
1370
+ lg: "32rem",
1371
+ xl: "36rem",
1372
+ "2xl": "42rem",
1373
+ "3xl": "48rem",
1374
+ "4xl": "56rem",
1375
+ "5xl": "64rem",
1376
+ "6xl": "72rem",
1377
+ "7xl": "80rem",
1378
+ full: "100%",
1379
+ min: "min-content",
1380
+ max: "max-content",
1381
+ fit: "fit-content",
1382
+ prose: "65ch",
1383
+ "screen-default": "0px",
1384
+ "screen-xs": "320px",
1385
+ "screen-sm": "672px",
1386
+ "screen-md": "1056px",
1387
+ "screen-lg": "1312px",
1388
+ "screen-xl": "1536px"
1389
+ },
1390
+ maxHeight: {
1391
+ "0": "0",
1392
+ "1": "2px",
1393
+ "2": "4px",
1394
+ "3": "8px",
1395
+ "4": "12px",
1396
+ "5": "16px",
1397
+ "6": "24px",
1398
+ "7": "32px",
1399
+ "8": "40px",
1400
+ "9": "48px",
1401
+ "1px": "1px",
1402
+ l1: "16px",
1403
+ l2: "24px",
1404
+ l3: "32px",
1405
+ l4: "48px",
1406
+ l5: "64px",
1407
+ l6: "96px",
1408
+ l7: "160px",
1409
+ full: "100%",
1410
+ screen: "100vh",
1411
+ min: "min-content",
1412
+ max: "max-content",
1413
+ fit: "fit-content"
1414
+ },
1415
+ minWidth: {
1416
+ "0": "0px",
1417
+ full: "100%",
1418
+ min: "min-content",
1419
+ max: "max-content",
1420
+ fit: "fit-content"
1421
+ },
1422
+ minHeight: {
1423
+ "0": "0px",
1424
+ full: "100%",
1425
+ screen: "100vh",
1426
+ min: "min-content",
1427
+ max: "max-content",
1428
+ fit: "fit-content"
1429
+ },
1430
+ flex: {
1431
+ "1": "1 1 0%",
1432
+ auto: "1 1 auto",
1433
+ initial: "0 1 auto",
1434
+ none: "none"
1435
+ },
1436
+ flexGrow: { "0": "0", DEFAULT: "1" },
1437
+ flexShrink: { "0": "0", DEFAULT: "1" },
1438
+ backgroundColor: {
1439
+ "error-100": "#aa0000",
1440
+ "error-90": "#b90000",
1441
+ "error-80": "#c50001",
1442
+ "error-70": "#d80005",
1443
+ "error-60": "#e70000",
1444
+ "error-50": "#e62728",
1445
+ "error-40": "#e0504f",
1446
+ "error-30": "#ed7975",
1447
+ "error-20": "#ffadb3",
1448
+ "error-10": "#ffcbd2",
1449
+ "error-5": "#fee8e7",
1450
+ "error-0": "#fef2f1",
1451
+ "warning-100": "#fe6d00",
1452
+ "warning-90": "#ff9003",
1453
+ "warning-80": "#fd9f00",
1454
+ "warning-70": "#ffb300",
1455
+ "warning-60": "#ffc107",
1456
+ "warning-50": "#fdc926",
1457
+ "warning-40": "#fdd44d",
1458
+ "warning-30": "#fddf81",
1459
+ "warning-20": "#feebb2",
1460
+ "warning-10": "#fff2cd",
1461
+ "warning-5": "#fff8ea",
1462
+ "warning-0": "#fffdf9",
1463
+ "success-100": "#006f00",
1464
+ "success-90": "#008e00",
1465
+ "success-80": "#009f00",
1466
+ "success-70": "#00b300",
1467
+ "success-60": "#00c300",
1468
+ "success-50": "#40ce37",
1469
+ "success-40": "#60db57",
1470
+ "success-30": "#89eb80",
1471
+ "success-20": "#afffa7",
1472
+ "success-10": "#cbffc9",
1473
+ "success-5": "#ecf7ed",
1474
+ "success-0": "#f5faf5",
1475
+ "info-100": "#02569a",
1476
+ "info-90": "#0174ba",
1477
+ "info-80": "#0788d1",
1478
+ "info-70": "#0399e3",
1479
+ "info-60": "#02a8f3",
1480
+ "info-50": "#28b4f4",
1481
+ "info-40": "#4cc2f7",
1482
+ "info-30": "#7fd1f7",
1483
+ "info-20": "#b4e5fb",
1484
+ "info-10": "#e0f5fe",
1485
+ "info-5": "#effaff",
1486
+ "info-0": "#f9fdff",
1487
+ "grey-100": "#19191d",
1488
+ "grey-90": "#292a31",
1489
+ "grey-80": "#3a3a44",
1490
+ "grey-70": "#4a4b57",
1491
+ "grey-60": "#5a5b6a",
1492
+ "grey-50": "#787885",
1493
+ "grey-40": "#9696a0",
1494
+ "grey-30": "#b4b4bb",
1495
+ "grey-10": "#e1e1e3",
1496
+ "grey-5": "#ededf0",
1497
+ "grey-0": "#f7f7fa",
1498
+ "secondary-100": "#e11d16",
1499
+ "secondary-90": "#eb4610",
1500
+ "secondary-80": "#f3580d",
1501
+ "secondary-70": "#f96a02",
1502
+ "secondary-60": "#ff7700",
1503
+ "secondary-50": "#fc871a",
1504
+ "secondary-40": "#fb9a3e",
1505
+ "secondary-30": "#fab26e",
1506
+ "secondary-20": "#f8c99c",
1507
+ "secondary-10": "#fee8d0",
1508
+ "secondary-5": "#fff3e8",
1509
+ "secondary-0": "#fffbf8",
1510
+ "primary-100": "#a70045",
1511
+ "primary-90": "#c60443",
1512
+ "primary-80": "#e41a4a",
1513
+ "primary-70": "#ff3554",
1514
+ "primary-60": "#ff5275",
1515
+ "primary-50": "#ff6f94",
1516
+ "primary-40": "#ff8db0",
1517
+ "primary-30": "#ffa9c9",
1518
+ "primary-20": "#ffc4de",
1519
+ "primary-10": "#ffdeef",
1520
+ "primary-5": "#ffe8f4",
1521
+ "primary-0": "#fff9fc",
1522
+ "grey-20": "#d2d2d6",
1523
+ transparent: "transparent",
1524
+ white: "white",
1525
+ current: "currentColor",
1526
+ "navyBlue-100": "#30375E"
1527
+ },
1528
+ gap: {
1529
+ "0": "0",
1530
+ "1": "2px",
1531
+ "2": "4px",
1532
+ "3": "8px",
1533
+ "4": "12px",
1534
+ "5": "16px",
1535
+ "6": "24px",
1536
+ "7": "32px",
1537
+ "8": "40px",
1538
+ "9": "48px",
1539
+ "1px": "1px",
1540
+ l1: "16px",
1541
+ l2: "24px",
1542
+ l3: "32px",
1543
+ l4: "48px",
1544
+ l5: "64px",
1545
+ l6: "96px",
1546
+ l7: "160px"
1547
+ },
1548
+ gridAutoColumns: {
1549
+ auto: "auto",
1550
+ min: "min-content",
1551
+ max: "max-content",
1552
+ fr: "minmax(0, 1fr)"
1553
+ },
1554
+ gridAutoRows: {
1555
+ auto: "auto",
1556
+ min: "min-content",
1557
+ max: "max-content",
1558
+ fr: "minmax(0, 1fr)"
1559
+ },
1560
+ gridColumn: {
1561
+ auto: "auto",
1562
+ "span-1": "span 1 / span 1",
1563
+ "span-2": "span 2 / span 2",
1564
+ "span-3": "span 3 / span 3",
1565
+ "span-4": "span 4 / span 4",
1566
+ "span-5": "span 5 / span 5",
1567
+ "span-6": "span 6 / span 6",
1568
+ "span-7": "span 7 / span 7",
1569
+ "span-8": "span 8 / span 8",
1570
+ "span-9": "span 9 / span 9",
1571
+ "span-10": "span 10 / span 10",
1572
+ "span-11": "span 11 / span 11",
1573
+ "span-12": "span 12 / span 12",
1574
+ "span-full": "1 / -1"
1575
+ },
1576
+ gridColumnEnd: {
1577
+ "1": "1",
1578
+ "2": "2",
1579
+ "3": "3",
1580
+ "4": "4",
1581
+ "5": "5",
1582
+ "6": "6",
1583
+ "7": "7",
1584
+ "8": "8",
1585
+ "9": "9",
1586
+ "10": "10",
1587
+ "11": "11",
1588
+ "12": "12",
1589
+ "13": "13",
1590
+ auto: "auto"
1591
+ },
1592
+ gridColumnStart: {
1593
+ "1": "1",
1594
+ "2": "2",
1595
+ "3": "3",
1596
+ "4": "4",
1597
+ "5": "5",
1598
+ "6": "6",
1599
+ "7": "7",
1600
+ "8": "8",
1601
+ "9": "9",
1602
+ "10": "10",
1603
+ "11": "11",
1604
+ "12": "12",
1605
+ "13": "13",
1606
+ auto: "auto"
1607
+ },
1608
+ gridRow: {
1609
+ auto: "auto",
1610
+ "span-1": "span 1 / span 1",
1611
+ "span-2": "span 2 / span 2",
1612
+ "span-3": "span 3 / span 3",
1613
+ "span-4": "span 4 / span 4",
1614
+ "span-5": "span 5 / span 5",
1615
+ "span-6": "span 6 / span 6",
1616
+ "span-full": "1 / -1"
1617
+ },
1618
+ gridRowStart: {
1619
+ "1": "1",
1620
+ "2": "2",
1621
+ "3": "3",
1622
+ "4": "4",
1623
+ "5": "5",
1624
+ "6": "6",
1625
+ "7": "7",
1626
+ auto: "auto"
1627
+ },
1628
+ gridRowEnd: {
1629
+ "1": "1",
1630
+ "2": "2",
1631
+ "3": "3",
1632
+ "4": "4",
1633
+ "5": "5",
1634
+ "6": "6",
1635
+ "7": "7",
1636
+ auto: "auto"
1637
+ },
1638
+ gridTemplateColumns: {
1639
+ "1": "repeat(1, minmax(0, 1fr))",
1640
+ "2": "repeat(2, minmax(0, 1fr))",
1641
+ "3": "repeat(3, minmax(0, 1fr))",
1642
+ "4": "repeat(4, minmax(0, 1fr))",
1643
+ "5": "repeat(5, minmax(0, 1fr))",
1644
+ "6": "repeat(6, minmax(0, 1fr))",
1645
+ "7": "repeat(7, minmax(0, 1fr))",
1646
+ "8": "repeat(8, minmax(0, 1fr))",
1647
+ "9": "repeat(9, minmax(0, 1fr))",
1648
+ "10": "repeat(10, minmax(0, 1fr))",
1649
+ "11": "repeat(11, minmax(0, 1fr))",
1650
+ "12": "repeat(12, minmax(0, 1fr))",
1651
+ none: "none"
1652
+ },
1653
+ gridTemplateRows: {
1654
+ "1": "repeat(1, minmax(0, 1fr))",
1655
+ "2": "repeat(2, minmax(0, 1fr))",
1656
+ "3": "repeat(3, minmax(0, 1fr))",
1657
+ "4": "repeat(4, minmax(0, 1fr))",
1658
+ "5": "repeat(5, minmax(0, 1fr))",
1659
+ "6": "repeat(6, minmax(0, 1fr))",
1660
+ none: "none"
1661
+ },
1662
+ keyframes: {
1663
+ spin: { to: { transform: "rotate(360deg)" } },
1664
+ ping: { "75%, 100%": { transform: "scale(2)", opacity: "0" } },
1665
+ pulse: { "50%": { opacity: ".5" } },
1666
+ bounce: {
1667
+ "0%, 100%": {
1668
+ transform: "translateY(-25%)",
1669
+ animationTimingFunction: "cubic-bezier(0.8,0,1,1)"
1670
+ },
1671
+ "50%": {
1672
+ transform: "none",
1673
+ animationTimingFunction: "cubic-bezier(0,0,0.2,1)"
1674
+ }
1675
+ },
1676
+ "positioner-fade-in": { from: { opacity: "0" }, to: { opacity: "1" } }
1677
+ },
1678
+ animation: {
1679
+ none: "none",
1680
+ spin: "spin 1s linear infinite",
1681
+ ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
1682
+ pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
1683
+ bounce: "bounce 1s infinite",
1684
+ "positioner-fade-in": "positioner-fade-in 300ms ease-in-out"
1685
+ }
1686
+ };
1687
+
1688
+ // src/utils/breakpoints.ts
1689
+ var { screens: allBreakpoints } = tailwind_theme_default;
1690
+ var SCREEN_TO_PX_MAPPING = getPxMapping(allBreakpoints);
1691
+ var BREAKPOINT_PRIORITY = orderBy(
1692
+ Object.keys(SCREEN_TO_PX_MAPPING).map((key) => {
1693
+ return {
1694
+ breakpoint: key,
1695
+ pxValue: SCREEN_TO_PX_MAPPING[key]
1696
+ };
1697
+ }),
1698
+ (bp) => bp.pxValue,
1699
+ "desc"
1700
+ );
1701
+ function getPxMapping(breakpoints) {
1702
+ return Object.keys(breakpoints).reduce((acc, key) => {
1703
+ const minWidthInPx = breakpoints[key];
1704
+ if (!minWidthInPx.endsWith("px")) {
1705
+ throw new Error(`Unexpected breakpoint value found: '${minWidthInPx}'. Expecting it to be in px unit.`);
1706
+ }
1707
+ return {
1708
+ ...acc,
1709
+ [key]: parseInt(minWidthInPx, 10)
1710
+ };
1711
+ }, {});
1712
+ }
1713
+ function getMatches(windowSize) {
1714
+ const mapping = getPxMapping(allBreakpoints);
1715
+ return Object.keys(allBreakpoints).reduce((acc, key) => {
1716
+ const isMatch = !isUndefined(windowSize) && windowSize.width > 0 ? windowSize.width > mapping[key] : key === "default" ? true : false;
1717
+ return {
1718
+ ...acc,
1719
+ [key]: isMatch
1720
+ };
1721
+ }, {});
1722
+ }
1723
+ function selectBreakpointValue(value, matches) {
1724
+ const bp = BREAKPOINT_PRIORITY.find((bp2) => {
1725
+ const pickBreakpoint = isPlainObject(value) && bp2.breakpoint in value ? bp2.breakpoint : void 0;
1726
+ return !isUndefined(pickBreakpoint) && matches[bp2.breakpoint];
1727
+ });
1728
+ if (!isUndefined(bp)) {
1729
+ return value[bp.breakpoint];
1730
+ }
1731
+ return value;
1732
+ }
1733
+
1734
+ // src/utils/useWindowSize.ts
1735
+ import { useState, useEffect } from "react";
1736
+ import isUndefined2 from "lodash/isUndefined";
1737
+ import debounce from "lodash/debounce";
1738
+
1739
+ // src/components/Context/Context.tsx
1740
+ var context = {
1741
+ breakpointMatches: getMatches(void 0)
1742
+ };
1743
+ var DesignSystemContext = React2.createContext(context);
1744
+
1745
+ // src/utils/useStyle.ts
1746
+ var THEME_MAPPING = {
1747
+ paddingTop: "padding",
1748
+ paddingBottom: "padding",
1749
+ paddingLeft: "padding",
1750
+ paddingRight: "padding",
1751
+ marginTop: "margin",
1752
+ marginBottom: "margin",
1753
+ marginLeft: "margin",
1754
+ marginRight: "margin",
1755
+ rowGap: "gap",
1756
+ columnGap: "gap"
1757
+ };
1758
+ function resolveTailwindThemeValue(key, val) {
1759
+ const resolvedKey = key in THEME_MAPPING ? THEME_MAPPING[key] : key;
1760
+ const found = get(tailwind_theme_default, [resolvedKey, val], void 0);
1761
+ if (!isUndefined3(found)) {
1762
+ return found;
1763
+ }
1764
+ return val;
1765
+ }
1766
+ function useStyle(styles) {
1767
+ const context2 = useContext(DesignSystemContext);
1768
+ return Object.keys(styles).reduce((acc, key) => {
1769
+ const property = styles[key];
1770
+ const isStylesObject = isPlainObject2(property) && "value" in property;
1771
+ const value = isStylesObject ? property.value : property;
1772
+ const resolvedValue = selectBreakpointValue(value, context2.breakpointMatches);
1773
+ const transformer = isUndefined3(property?.transformer) ? (val) => resolveTailwindThemeValue(key, val) : (val) => resolveTailwindThemeValue(key, property.transformer(val));
1774
+ const cssPropertyValue = transformer(resolvedValue);
1775
+ if (isUndefined3(cssPropertyValue)) {
1776
+ return acc;
1777
+ }
1778
+ return {
1779
+ ...acc,
1780
+ [key]: cssPropertyValue
1781
+ };
1782
+ }, {});
1783
+ }
1784
+
1785
+ // src/components/Tailwindify/Tailwindify.tsx
1786
+ function Tailwindify(Component) {
1787
+ return ({
1788
+ className,
1789
+ style,
1790
+ children,
1791
+ padding,
1792
+ paddingX,
1793
+ paddingY,
1794
+ paddingTop,
1795
+ paddingRight,
1796
+ paddingBottom,
1797
+ paddingLeft,
1798
+ margin,
1799
+ marginX,
1800
+ marginY,
1801
+ marginTop,
1802
+ marginRight,
1803
+ marginBottom,
1804
+ marginLeft,
1805
+ space,
1806
+ spaceX,
1807
+ spaceY,
1808
+ backgroundColor,
1809
+ width,
1810
+ height,
1811
+ maxWidth,
1812
+ maxHeight,
1813
+ minWidth,
1814
+ minHeight,
1815
+ ...otherProps
1816
+ }) => {
1817
+ const tailwindifyStyle = useStyle({
1818
+ padding,
1819
+ paddingTop: isUndefined4(paddingY) ? paddingTop : paddingY,
1820
+ paddingRight: isUndefined4(paddingX) ? paddingRight : paddingX,
1821
+ paddingBottom: isUndefined4(paddingY) ? paddingBottom : paddingY,
1822
+ paddingLeft: isUndefined4(paddingX) ? paddingLeft : paddingX,
1823
+ margin,
1824
+ marginTop: isUndefined4(marginY) ? marginTop : marginY,
1825
+ marginRight: isUndefined4(marginX) ? marginRight : marginX,
1826
+ marginBottom: isUndefined4(marginY) ? marginBottom : marginY,
1827
+ marginLeft: isUndefined4(marginX) ? marginLeft : marginX,
1828
+ backgroundColor,
1829
+ width,
1830
+ height,
1831
+ maxWidth,
1832
+ maxHeight,
1833
+ minWidth,
1834
+ minHeight
1835
+ });
1836
+ const finalStyle = {
1837
+ ...tailwindifyStyle,
1838
+ ...style
1839
+ };
1840
+ const componentProps = {
1841
+ ...otherProps,
1842
+ style: finalStyle
1843
+ };
1844
+ const childrenWithProps = React3.Children.map(children, (child, index) => {
1845
+ if (!React3.isValidElement(child)) {
1846
+ return child;
1847
+ }
1848
+ const isLastChild = index === children.length - 1;
1849
+ const childProps = {};
1850
+ const additionalStyle = {};
1851
+ if (!isLastChild && !isUndefined4(space)) {
1852
+ additionalStyle.marginBottom = resolveTailwindThemeValue("margin", space);
1853
+ additionalStyle.marginRight = resolveTailwindThemeValue("margin", space);
1854
+ }
1855
+ if (!isLastChild && !isUndefined4(spaceY)) {
1856
+ additionalStyle.marginBottom = resolveTailwindThemeValue("margin", spaceY);
1857
+ }
1858
+ if (!isLastChild && !isUndefined4(spaceX)) {
1859
+ additionalStyle.marginRight = resolveTailwindThemeValue("margin", spaceX);
1860
+ }
1861
+ if (Object.keys(childProps).length === 0 && Object.keys(additionalStyle).length === 0) {
1862
+ return child;
1863
+ }
1864
+ const childStyle = get2(child, ["props", "style"], {});
1865
+ const newProps = { ...childProps, style: { ...childStyle, ...additionalStyle } };
1866
+ return React3.cloneElement(child, newProps);
1867
+ });
1868
+ return /* @__PURE__ */ React3.createElement(Component, {
1869
+ className,
1870
+ children: childrenWithProps,
1871
+ ...componentProps
1872
+ });
1873
+ };
1874
+ }
1875
+
1876
+ // src/components/Flexbox/Flexbox.tsx
1877
+ var Flexbox = Tailwindify(
1878
+ ({
1879
+ htmlTag = "div",
1880
+ className,
1881
+ style,
1882
+ children,
1883
+ display = "flex",
1884
+ justifyContent,
1885
+ alignContent,
1886
+ alignItems,
1887
+ direction,
1888
+ wrap,
1889
+ gap,
1890
+ colGap,
1891
+ rowGap
1892
+ }) => {
1893
+ const hookStyle = useStyle({
1894
+ display,
1895
+ justifyContent,
1896
+ alignContent,
1897
+ alignItems,
1898
+ flexDirection: direction,
1899
+ flexWrap: wrap,
1900
+ gap,
1901
+ columnGap: colGap,
1902
+ rowGap
1903
+ });
1904
+ const HtmlElement = htmlTag;
1905
+ return /* @__PURE__ */ React4.createElement(HtmlElement, {
1906
+ style: { ...hookStyle, ...style },
1907
+ className
1908
+ }, children);
1909
+ }
1910
+ );
1911
+
1912
+ // src/components/Tooltip/Tooltip.tsx
1913
+ import React5 from "react";
1914
+ import { useTooltip, useTooltipTrigger } from "@react-aria/tooltip";
1915
+ import { useOverlayPosition, OverlayContainer } from "@react-aria/overlays";
1916
+ import { mergeProps } from "@react-aria/utils";
1917
+
1918
+ // src/components/Tooltip/useTooltipTriggerState.ts
1919
+ import { useEffect as useEffect2, useMemo, useRef } from "react";
1920
+ import { useOverlayTriggerState } from "@react-stately/overlays";
1921
+ var TOOLTIP_DELAY = 1500;
1922
+ var TOOLTIP_COOLDOWN = 500;
1923
+ var tooltips = {};
1924
+ var globalWarmUpTimeout = null;
1925
+ var globalCooldownTimeout = null;
1926
+ var tooltipId = 0;
1927
+ var globalWarmedUp = false;
1928
+ function useTooltipTriggerState(props = {}) {
1929
+ const { delay = TOOLTIP_DELAY } = props;
1930
+ const { isOpen, open, close } = useOverlayTriggerState(props);
1931
+ const id = useMemo(() => `${++tooltipId}`, []);
1932
+ const closeTimeout = useRef();
1933
+ const isUnmounted = useRef(false);
1934
+ const ensureTooltipEntry = () => {
1935
+ tooltips[id] = hideTooltip;
1936
+ };
1937
+ const closeOpenTooltips = () => {
1938
+ for (const hideTooltipId in tooltips) {
1939
+ if (hideTooltipId !== id) {
1940
+ tooltips[hideTooltipId](true);
1941
+ delete tooltips[hideTooltipId];
1942
+ }
1943
+ }
1944
+ };
1945
+ const showTooltip = () => {
1946
+ if (isUnmounted.current) {
1947
+ return;
1948
+ }
1949
+ if (closeTimeout.current) {
1950
+ clearTimeout(closeTimeout.current);
1951
+ }
1952
+ closeTimeout.current = null;
1953
+ closeOpenTooltips();
1954
+ ensureTooltipEntry();
1955
+ globalWarmedUp = true;
1956
+ open();
1957
+ if (globalWarmUpTimeout) {
1958
+ clearTimeout(globalWarmUpTimeout);
1959
+ globalWarmUpTimeout = null;
1960
+ }
1961
+ if (globalCooldownTimeout) {
1962
+ clearTimeout(globalCooldownTimeout);
1963
+ globalCooldownTimeout = null;
1964
+ }
1965
+ };
1966
+ const hideTooltip = (immediate) => {
1967
+ if (isUnmounted.current) {
1968
+ return;
1969
+ }
1970
+ if (immediate) {
1971
+ if (closeTimeout.current) {
1972
+ clearTimeout(closeTimeout.current);
1973
+ }
1974
+ closeTimeout.current = null;
1975
+ close();
1976
+ } else if (!closeTimeout.current) {
1977
+ closeTimeout.current = setTimeout(() => {
1978
+ closeTimeout.current = null;
1979
+ close();
1980
+ }, TOOLTIP_COOLDOWN);
1981
+ }
1982
+ if (globalWarmUpTimeout) {
1983
+ clearTimeout(globalWarmUpTimeout);
1984
+ globalWarmUpTimeout = null;
1985
+ }
1986
+ if (globalWarmedUp) {
1987
+ if (globalCooldownTimeout) {
1988
+ clearTimeout(globalCooldownTimeout);
1989
+ }
1990
+ globalCooldownTimeout = setTimeout(() => {
1991
+ delete tooltips[id];
1992
+ globalCooldownTimeout = null;
1993
+ globalWarmedUp = false;
1994
+ }, TOOLTIP_COOLDOWN);
1995
+ }
1996
+ };
1997
+ const warmupTooltip = () => {
1998
+ closeOpenTooltips();
1999
+ ensureTooltipEntry();
2000
+ if (!isOpen && !globalWarmUpTimeout && !globalWarmedUp) {
2001
+ globalWarmUpTimeout = setTimeout(() => {
2002
+ globalWarmUpTimeout = null;
2003
+ globalWarmedUp = true;
2004
+ showTooltip();
2005
+ }, delay);
2006
+ } else if (!isOpen) {
2007
+ showTooltip();
2008
+ }
2009
+ };
2010
+ useEffect2(() => {
2011
+ return () => {
2012
+ isUnmounted.current = true;
2013
+ if (closeTimeout.current) {
2014
+ clearTimeout(closeTimeout.current);
2015
+ }
2016
+ const tooltip = tooltips[id];
2017
+ if (tooltip !== void 0) {
2018
+ delete tooltips[id];
2019
+ }
2020
+ };
2021
+ }, [id]);
2022
+ return {
2023
+ isOpen,
2024
+ open: (immediate) => {
2025
+ if (!immediate && delay > 0 && !closeTimeout.current) {
2026
+ warmupTooltip();
2027
+ } else {
2028
+ showTooltip();
2029
+ }
2030
+ },
2031
+ close: hideTooltip
2032
+ };
2033
+ }
2034
+
2035
+ // src/components/Tooltip/Tooltip.tsx
2036
+ var Tooltip = ({ inline = true, delay = 200, ...props }) => {
2037
+ const { placement: _placement = "top", content, disabled: isDisabled, shouldFlip = true } = props;
2038
+ const triggerRef = React5.useRef(null);
2039
+ const overlayRef = React5.useRef(null);
2040
+ const state = useTooltipTriggerState({ isDisabled, delay, ...props });
2041
+ const { triggerProps, tooltipProps } = useTooltipTrigger(props, state, triggerRef);
2042
+ const { overlayProps, arrowProps, placement } = useOverlayPosition({
2043
+ placement: _placement.replace("-", " "),
2044
+ targetRef: triggerRef,
2045
+ overlayRef,
2046
+ isOpen: state.isOpen,
2047
+ shouldFlip,
2048
+ offset: ARROW_OFFSET
2049
+ });
2050
+ const handleClick = (e) => {
2051
+ props.onClick?.(e);
2052
+ triggerProps.onClick?.(e);
2053
+ };
2054
+ const handleMouseDown = (e) => {
2055
+ props.onMouseDown?.(e);
2056
+ triggerProps.onMouseDown?.(e);
2057
+ };
2058
+ const handleMouseUp = (e) => {
2059
+ props.onMouseUp?.(e);
2060
+ triggerProps.onMouseUp?.(e);
2061
+ };
2062
+ const handlePointerDown = (e) => {
2063
+ props.onPointerDown?.(e);
2064
+ triggerProps.onPointerDown?.(e);
2065
+ };
2066
+ const handlePointerUp = (e) => {
2067
+ props.onPointerUp?.(e);
2068
+ triggerProps.onPointerUp?.(e);
2069
+ };
2070
+ return /* @__PURE__ */ React5.createElement("div", {
2071
+ className: tw(`${inline ? "inline-block" : "block"}`),
2072
+ ...triggerProps,
2073
+ onClick: handleClick,
2074
+ onMouseDown: handleMouseDown,
2075
+ onMouseUp: handleMouseUp,
2076
+ onPointerDown: handlePointerDown,
2077
+ onPointerUp: handlePointerUp,
2078
+ ref: triggerRef
2079
+ }, props.children, state.isOpen && /* @__PURE__ */ React5.createElement(TooltipWrapper, {
2080
+ ref: overlayRef,
2081
+ state,
2082
+ placement,
2083
+ arrowProps,
2084
+ ...mergeProps(tooltipProps, overlayProps)
2085
+ }, content));
2086
+ };
2087
+ var TooltipWrapper = React5.forwardRef(
2088
+ ({ state, placement, arrowProps, ...props }, forwardedRef) => {
2089
+ const ref = React5.useRef(null);
2090
+ React5.useImperativeHandle(forwardedRef, () => ref.current);
2091
+ const { tooltipProps } = useTooltip(props, state);
2092
+ const arrowStyle = getArrowStyle(ref.current, placement, arrowProps.style ?? {});
2093
+ return /* @__PURE__ */ React5.createElement(OverlayContainer, null, /* @__PURE__ */ React5.createElement("div", {
2094
+ ref,
2095
+ className: tw("p-3 rounded-sm typography-caption-default max-w-[320px] bg-grey-90 text-white"),
2096
+ ...mergeProps(props, tooltipProps)
2097
+ }, props.children, /* @__PURE__ */ React5.createElement(Arrow, {
2098
+ ...arrowProps,
2099
+ style: arrowStyle
2100
+ })));
2101
+ }
2102
+ );
2103
+ var isNotNumberProperty = (p) => typeof p === "string";
2104
+ var ARROW_SIZE = 4;
2105
+ var ARROW_MARGIN = 8;
2106
+ var ARROW_OFFSET = 7;
2107
+ var getArrowStyle = (element, position, { left, top }) => {
2108
+ if (!element || isNotNumberProperty(left) || isNotNumberProperty(top)) {
2109
+ return { left, top };
2110
+ }
2111
+ const rect = element.getBoundingClientRect();
2112
+ const limits = {
2113
+ top: ARROW_MARGIN,
2114
+ bottom: rect.height - ARROW_SIZE * 2 - ARROW_MARGIN,
2115
+ left: ARROW_MARGIN,
2116
+ right: rect.width - ARROW_SIZE * 2 - ARROW_MARGIN
2117
+ };
2118
+ switch (position) {
2119
+ case "top": {
2120
+ return { left: Math.min(limits.right, Math.max((left ?? 0) - ARROW_SIZE, limits.left)), bottom: -ARROW_SIZE };
2121
+ }
2122
+ case "bottom": {
2123
+ return { left: Math.min(limits.right, Math.max((left ?? 0) - ARROW_SIZE, limits.left)), top: -ARROW_SIZE };
2124
+ }
2125
+ case "left": {
2126
+ return { right: -ARROW_SIZE, top: Math.min(limits.bottom, Math.max((top ?? 0) - ARROW_SIZE, limits.top)) };
2127
+ }
2128
+ case "right": {
2129
+ return { left: -ARROW_SIZE, top: Math.min(limits.bottom, Math.max((top ?? 0) - ARROW_SIZE, limits.top)) };
2130
+ }
2131
+ }
2132
+ return { left, top };
2133
+ };
2134
+ var Arrow = (props) => {
2135
+ return /* @__PURE__ */ React5.createElement("div", {
2136
+ className: tw("absolute w-3 h-3 bg-grey-90 rotate-45"),
2137
+ ...props
2138
+ });
2139
+ };
2140
+
2141
+ // src/components/Button/Button.tsx
2142
+ var import_chevronDown = __toESM(require_chevronDown());
2143
+ var import_loading = __toESM(require_loading());
2144
+ var COLOR_CLASSNAMES = {
2145
+ "primary": tw(
2146
+ "text-white bg-primary-80 active:bg-primary-90 active:ring-0 focus-visible:ring-2 focus-visible:ring-primary-100 focus-visible:ring-inset hover:bg-primary-70 disabled:bg-primary-5"
2147
+ ),
2148
+ "secondary": tw(
2149
+ "text-grey-60 bg-white ring-1 ring-grey-30 ring-inset active:bg-grey-5 active:ring-grey-50 active:text-grey-80",
2150
+ "focus-visible:ring-2 focus-visible:ring-grey-50 focus-visible:text-grey-80",
2151
+ "hover:ring-grey-50 hover:text-grey-80 disabled:text-grey-30 disabled:bg-grey-0 disabled:ring-grey-20"
2152
+ ),
2153
+ "ghost": tw(
2154
+ "text-primary-80 active:text-primary-70 focus-visible:text-grey-90 hover:text-primary-70 disabled:text-primary-40"
2155
+ ),
2156
+ "secondary-ghost": tw(
2157
+ "text-grey-60 active:text-grey-50 focus-visible:text-grey-80 hover:text-grey-80 disabled:text-grey-30"
2158
+ )
2159
+ };
2160
+ var LoadingSpinner = ({
2161
+ size = "20px",
2162
+ kind = "primary"
2163
+ }) => {
2164
+ return /* @__PURE__ */ React6.createElement(InlineIcon, {
2165
+ icon: import_loading.default,
2166
+ width: size,
2167
+ height: size,
2168
+ color: kind === "primary" ? "primary-60" : "grey-60",
2169
+ "data-testid": "loading-button"
2170
+ });
2171
+ };
2172
+ var asButton = (Component, isDropdownButton) => {
2173
+ return React6.forwardRef(
2174
+ ({
2175
+ kind = "primary",
2176
+ icon,
2177
+ iconPlacement = "left",
2178
+ tooltip,
2179
+ tooltipPlacement,
2180
+ disabled,
2181
+ loading: loading2 = false,
2182
+ fullWidth = false,
2183
+ dense = false,
2184
+ UNSAFE_className,
2185
+ "aria-label": ariaLabel,
2186
+ children,
2187
+ ...props
2188
+ }, ref) => {
2189
+ const hasChildren = React6.Children.count(children) > 0;
2190
+ const isIconOnlyButton = !hasChildren && !!icon;
2191
+ const isGhost = !isIconOnlyButton && (kind === "ghost" || kind === "secondary-ghost");
2192
+ const isButton = !isIconOnlyButton && (kind === "primary" || kind === "secondary");
2193
+ const iconSize = !dense ? "20px" : "16px";
2194
+ if (isIconOnlyButton && !(tooltip || ariaLabel)) {
2195
+ throw new Error(
2196
+ 'Please provide an accessible name as a string only for an icon only button via "aria-label" or "tooltip" prop.'
2197
+ );
2198
+ }
2199
+ if (!!isDropdownButton && kind !== "primary" && kind !== "secondary") {
2200
+ throw new Error('Dropdown button is available only for "primary" and "secondary" kinds.');
2201
+ }
2202
+ if (!!isDropdownButton && !!icon) {
2203
+ throw new Error("Dropdown button doesn't support any icon prop.");
2204
+ }
2205
+ if (!!loading2 && kind !== "primary" && kind !== "secondary") {
2206
+ throw new Error('Loading button is only supported for "primary" and "secondary" kinds.');
2207
+ }
2208
+ const buttonContent = () => {
2209
+ if (!!isDropdownButton && (kind === "primary" || kind === "secondary")) {
2210
+ return /* @__PURE__ */ React6.createElement(Flexbox, {
2211
+ gap: "4",
2212
+ alignItems: "center",
2213
+ justifyContent: "center"
2214
+ }, hasChildren && /* @__PURE__ */ React6.createElement("div", null, children), /* @__PURE__ */ React6.createElement(InlineIcon, {
2215
+ icon: import_chevronDown.default,
2216
+ width: iconSize,
2217
+ height: iconSize
2218
+ }));
2219
+ } else if (icon) {
2220
+ return /* @__PURE__ */ React6.createElement(Flexbox, {
2221
+ gap: "3",
2222
+ alignItems: "center",
2223
+ justifyContent: "center",
2224
+ direction: iconPlacement === "right" ? "row-reverse" : "row"
2225
+ }, /* @__PURE__ */ React6.createElement(InlineIcon, {
2226
+ icon,
2227
+ width: iconSize,
2228
+ height: iconSize
2229
+ }), hasChildren && /* @__PURE__ */ React6.createElement("div", null, children));
2230
+ } else {
2231
+ return children;
2232
+ }
2233
+ };
2234
+ const buttonComponent = /* @__PURE__ */ React6.createElement(Component, {
2235
+ ref,
2236
+ ...props,
2237
+ className: classNames(
2238
+ UNSAFE_className,
2239
+ !isIconOnlyButton && COLOR_CLASSNAMES[kind],
2240
+ tw("inline-block border-0 rounded-sm transition whitespace-nowrap focus:outline-none relative", {
2241
+ "text-grey-70 p-2 active:text-grey-70 active:bg-transparent hover:text-grey-90 hover:bg-grey-0 focus-visible:text-grey-90 focus-visible:bg-grey-0 disabled:text-grey-20 disabled:bg-transparent": isIconOnlyButton,
2242
+ "typography-body-default": !dense && !isIconOnlyButton,
2243
+ "typography-body-small": dense && !isIconOnlyButton,
2244
+ "py-3 px-4": !dense && isButton,
2245
+ "py-2 px-3": dense && isButton,
2246
+ "py-3": !dense && isGhost,
2247
+ "py-2": dense && isGhost,
2248
+ "block w-full": fullWidth && !isIconOnlyButton,
2249
+ "cursor-not-allowed": !!disabled || !!loading2
2250
+ })
2251
+ ),
2252
+ "aria-label": isIconOnlyButton ? ariaLabel ?? tooltip : ariaLabel,
2253
+ disabled: disabled || loading2
2254
+ }, loading2 && !isGhost ? /* @__PURE__ */ React6.createElement(React6.Fragment, null, /* @__PURE__ */ React6.createElement("div", {
2255
+ className: tw("absolute left-1/2 top-0 bottom-0 flex"),
2256
+ style: { transform: "translate(-50%)" }
2257
+ }, /* @__PURE__ */ React6.createElement(LoadingSpinner, {
2258
+ size: iconSize,
2259
+ kind: kind === "primary" ? "primary" : "secondary"
2260
+ })), /* @__PURE__ */ React6.createElement("div", {
2261
+ className: tw({ invisible: loading2 })
2262
+ }, buttonContent())) : buttonContent());
2263
+ return tooltip ? /* @__PURE__ */ React6.createElement(Tooltip, {
2264
+ content: tooltip,
2265
+ placement: tooltipPlacement
2266
+ }, buttonComponent) : buttonComponent;
2267
+ }
2268
+ );
2269
+ };
2270
+ var Button = asButton("button");
2271
+ Button.displayName = "Button";
2272
+ var PrimaryButton = React6.forwardRef((props, ref) => /* @__PURE__ */ React6.createElement(Button, {
2273
+ ref,
2274
+ ...props,
2275
+ kind: "primary"
2276
+ }));
2277
+ PrimaryButton.displayName = "PrimaryButton";
2278
+ var SecondaryButton = React6.forwardRef((props, ref) => /* @__PURE__ */ React6.createElement(Button, {
2279
+ ref,
2280
+ ...props,
2281
+ kind: "secondary"
2282
+ }));
2283
+ SecondaryButton.displayName = "SecondaryButton";
2284
+ var GhostButton = React6.forwardRef((props, ref) => /* @__PURE__ */ React6.createElement(Button, {
2285
+ ref,
2286
+ ...props,
2287
+ kind: "ghost"
2288
+ }));
2289
+ GhostButton.displayName = "GhostButton";
2290
+ var SecondaryGhostButton = React6.forwardRef((props, ref) => /* @__PURE__ */ React6.createElement(Button, {
2291
+ ref,
2292
+ ...props,
2293
+ kind: "secondary-ghost"
2294
+ }));
2295
+ SecondaryGhostButton.displayName = "SecondaryGhostButton";
2296
+ var IconButton = React6.forwardRef((props, ref) => /* @__PURE__ */ React6.createElement(Button, {
2297
+ ref,
2298
+ ...props,
2299
+ kind: "ghost",
2300
+ loading: false,
2301
+ fullWidth: false
2302
+ }));
2303
+ IconButton.displayName = "IconButton";
2304
+ var ExternalLinkButton = asButton("a");
2305
+ var IconExternalLinkButton = React6.forwardRef((props, ref) => /* @__PURE__ */ React6.createElement(ExternalLinkButton, {
2306
+ ref,
2307
+ ...props,
2308
+ kind: "ghost",
2309
+ loading: false,
2310
+ fullWidth: false
2311
+ }));
2312
+ IconExternalLinkButton.displayName = "IconExternalLink";
2313
+ var DropdownButton = asButton("button", true);
2314
+ var PrimaryDropdownButton = React6.forwardRef((props, ref) => /* @__PURE__ */ React6.createElement(DropdownButton, {
2315
+ ref,
2316
+ ...props,
2317
+ kind: "primary"
2318
+ }));
2319
+ PrimaryDropdownButton.displayName = "PrimaryDropdownButton";
2320
+ var SecondaryDropdownButton = React6.forwardRef((props, ref) => /* @__PURE__ */ React6.createElement(DropdownButton, {
2321
+ ref,
2322
+ ...props,
2323
+ kind: "secondary"
2324
+ }));
2325
+ SecondaryDropdownButton.displayName = "SecondaryDropdownButton";
2326
+
2327
+ // src/common/Typography/Typography.tsx
2328
+ var import_resolveTheme = __toESM(require_resolveTheme());
2329
+ import React7 from "react";
2330
+ import isUndefined5 from "lodash/isUndefined";
2331
+ var typographies = import_resolveTheme.theme.typography.sizes.reduce(
2332
+ (acc, { name, className }) => ({ ...acc, [name]: className }),
2333
+ {}
2334
+ );
2335
+ var Typography = ({
2336
+ children,
2337
+ variant = "body-default",
2338
+ color,
2339
+ htmlTag = "div",
2340
+ className,
2341
+ fontWeight
2342
+ }) => {
2343
+ const HtmlElement = htmlTag;
2344
+ const resolvedColorName = isUndefined5(color) || color === "current" ? "grey-80" : color;
2345
+ const style = useStyle({ fontWeight });
2346
+ return /* @__PURE__ */ React7.createElement(HtmlElement, {
2347
+ className: classNames(typographies[variant], `text-${resolvedColorName}`, className),
2348
+ style
2349
+ }, children);
2350
+ };
2351
+
2352
+ // src/common/Alert/Alert.tsx
2353
+ var import_confirm = __toESM(require_confirm());
2354
+ var import_warningSign = __toESM(require_warningSign());
2355
+ var import_error = __toESM(require_error());
2356
+ var import_infoSign = __toESM(require_infoSign());
2357
+ var import_cross = __toESM(require_cross());
2358
+ var alertTypes = {
2359
+ information: {
2360
+ icon: import_infoSign.default,
2361
+ color: "info-40"
2362
+ },
2363
+ warning: {
2364
+ icon: import_warningSign.default,
2365
+ color: "warning-40"
2366
+ },
2367
+ error: {
2368
+ icon: import_error.default,
2369
+ color: "error-40"
2370
+ },
2371
+ success: {
2372
+ icon: import_confirm.default,
2373
+ color: "success-40"
2374
+ }
2375
+ };
2376
+ var Alert = ({
2377
+ children,
2378
+ className,
2379
+ type,
2380
+ dense,
2381
+ ...rest
2382
+ }) => /* @__PURE__ */ React8.createElement("div", {
2383
+ ...rest,
2384
+ className: classNames(
2385
+ tw("rounded grid grid-cols-[auto_1fr_auto] items-center gap-x-3 gap-y-2", {
2386
+ "bg-error-5": type === "error",
2387
+ "bg-info-5": type === "information",
2388
+ "bg-success-5": type === "success",
2389
+ "bg-warning-5": type === "warning",
2390
+ "p-4": Boolean(dense),
2391
+ "p-5": !dense
2392
+ }),
2393
+ className
2394
+ )
2395
+ }, children);
2396
+ Alert.Title = ({ children, className, ...rest }) => /* @__PURE__ */ React8.createElement(Typography, {
2397
+ ...rest,
2398
+ variant: "body-default",
2399
+ color: "grey-80",
2400
+ fontWeight: 500,
2401
+ className: classNames(tw("col-start-2"), className)
2402
+ }, children);
2403
+ Alert.Description = ({ children, className, ...rest }) => /* @__PURE__ */ React8.createElement(Typography, {
2404
+ ...rest,
2405
+ variant: "body-small",
2406
+ color: "grey-60",
2407
+ className: classNames(tw("col-start-2"), className)
2408
+ }, children);
2409
+ Alert.Actions = ({ children, className, ...rest }) => /* @__PURE__ */ React8.createElement("div", {
2410
+ ...rest,
2411
+ className: classNames(tw("flex gap-4 col-start-2"), className)
2412
+ }, children);
2413
+ Alert.Icon = ({ type, ...rest }) => /* @__PURE__ */ React8.createElement("div", {
2414
+ className: tw("h-[20px] col-start-1 row-start-1")
2415
+ }, /* @__PURE__ */ React8.createElement(Icon, {
2416
+ ...rest,
2417
+ icon: alertTypes[type].icon,
2418
+ color: alertTypes[type].color,
2419
+ fontSize: 20
2420
+ }));
2421
+ Alert.Dismiss = ({ type, ...rest }) => /* @__PURE__ */ React8.createElement("div", {
2422
+ className: tw("h-[20px] col-start-3 row-start-1")
2423
+ }, /* @__PURE__ */ React8.createElement(IconButton, {
2424
+ ...rest,
2425
+ UNSAFE_className: tw("-m-2"),
2426
+ tooltip: "Dismiss",
2427
+ icon: import_cross.default
2428
+ }));
2429
+
2430
+ // src/common/Checkbox/Checkbox.tsx
2431
+ import React9 from "react";
2432
+ var import_tick = __toESM(require_tick());
2433
+ var import_minus = __toESM(require_minus());
2434
+ var Checkbox = React9.forwardRef(
2435
+ ({ id, children, name, checked, disabled = false, readOnly = false, indeterminate = false, ...props }, ref) => /* @__PURE__ */ React9.createElement("span", {
2436
+ className: classNames(
2437
+ tw("inline-flex justify-center items-center relative self-center", {
2438
+ "text-grey-30": disabled,
2439
+ "text-grey-100 cursor-pointer": !disabled
2440
+ })
2441
+ )
2442
+ }, /* @__PURE__ */ React9.createElement("input", {
2443
+ id,
2444
+ ref,
2445
+ type: "checkbox",
2446
+ name,
2447
+ ...props,
2448
+ checked,
2449
+ className: classNames(
2450
+ tw("appearance-none rounded-sm border"),
2451
+ {
2452
+ "cursor-pointer": !disabled,
2453
+ "border-grey-20 hover:border-grey-50 focus:border-info-70": !disabled && !checked,
2454
+ "border-navyBlue-100 bg-navyBlue-100": !disabled && checked,
2455
+ "border-grey-5 cursor-not-allowed": disabled,
2456
+ "bg-grey-0": disabled && checked
2457
+ },
2458
+ props.className
2459
+ ),
2460
+ style: { width: 16, height: 16, ...props.style },
2461
+ readOnly,
2462
+ disabled
2463
+ }), (checked || indeterminate) && /* @__PURE__ */ React9.createElement(Icon, {
2464
+ className: tw("absolute top-2 left-2 w-3 h-3 pointer-events-none [&>path]:stroke-2", {
2465
+ "text-white [&>path]:stroke-white": !disabled,
2466
+ "text-grey-30 [&>path]:stroke-grey-30": disabled
2467
+ }),
2468
+ icon: indeterminate ? import_minus.default : import_tick.default
2469
+ }))
2470
+ );
2471
+
2472
+ // src/common/Chip/Chip.tsx
2473
+ import React10 from "react";
2474
+ var Container = React10.forwardRef(
2475
+ ({ dense = false, className, children, ...rest }, ref) => /* @__PURE__ */ React10.createElement("span", {
2476
+ ref,
2477
+ className: classNames(
2478
+ tw("inline-flex items-center rounded-sm transition whitespace-nowrap", {
2479
+ "typography-body-small py-2 px-3 gap-x-3": !dense,
2480
+ "typography-caption-default py-1 px-2 gap-x-2": dense
2481
+ }),
2482
+ className
2483
+ ),
2484
+ ...rest
2485
+ }, children)
2486
+ );
2487
+ var Chip = {
2488
+ Container
2489
+ };
2490
+
2491
+ // src/common/Dialog/Dialog.tsx
2492
+ var import_confirm2 = __toESM(require_confirm());
2493
+ var import_warningSign2 = __toESM(require_warningSign());
2494
+ var import_error2 = __toESM(require_error());
2495
+ var DIALOG_ICONS_AND_COLORS = {
2496
+ confirmation: {
2497
+ icon: import_confirm2.default,
2498
+ color: "info-70"
2499
+ },
2500
+ warning: {
2501
+ icon: import_warningSign2.default,
2502
+ color: "secondary-70"
2503
+ },
2504
+ danger: {
2505
+ icon: import_error2.default,
2506
+ color: "error-70"
2507
+ }
2508
+ };
2509
+
2510
+ // src/common/DropdownMenu/DropdownMenu.tsx
2511
+ import React12 from "react";
2512
+
2513
+ // src/components/Typography/Typography.tsx
2514
+ import React11 from "react";
2515
+ var Typography2 = (props) => /* @__PURE__ */ React11.createElement(Typography, {
2516
+ ...props
2517
+ });
2518
+ Typography2.Heading = ({ htmlTag = "h1", ...props }) => /* @__PURE__ */ React11.createElement(Typography, {
2519
+ ...props,
2520
+ htmlTag,
2521
+ variant: "heading-xl"
2522
+ });
2523
+ Typography2.Subheading = ({ htmlTag = "h2", ...props }) => /* @__PURE__ */ React11.createElement(Typography, {
2524
+ ...props,
2525
+ htmlTag,
2526
+ variant: "heading-large"
2527
+ });
2528
+ Typography2.LargeText = ({ htmlTag = "p", ...props }) => /* @__PURE__ */ React11.createElement(Typography, {
2529
+ ...props,
2530
+ htmlTag,
2531
+ variant: "body-large"
2532
+ });
2533
+ Typography2.MediumText = ({ htmlTag = "p", ...props }) => /* @__PURE__ */ React11.createElement(Typography, {
2534
+ ...props,
2535
+ htmlTag,
2536
+ variant: "body-default-medium"
2537
+ });
2538
+ Typography2.Text = ({ htmlTag = "p", ...props }) => /* @__PURE__ */ React11.createElement(Typography, {
2539
+ ...props,
2540
+ htmlTag,
2541
+ variant: "body-default"
2542
+ });
2543
+ Typography2.Paragraph = Typography2.Text;
2544
+ Typography2.P = Typography2.Text;
2545
+ Typography2.SmallText = ({ htmlTag = "p", ...props }) => /* @__PURE__ */ React11.createElement(Typography, {
2546
+ ...props,
2547
+ htmlTag,
2548
+ variant: "body-small"
2549
+ });
2550
+ Typography2.SmallTextBold = ({ htmlTag = "p", ...props }) => /* @__PURE__ */ React11.createElement(Typography, {
2551
+ ...props,
2552
+ htmlTag,
2553
+ variant: "body-small-medium"
2554
+ });
2555
+ Typography2.Caption = ({ htmlTag = "p", ...props }) => /* @__PURE__ */ React11.createElement(Typography, {
2556
+ ...props,
2557
+ htmlTag,
2558
+ variant: "caption-default"
2559
+ });
2560
+
2561
+ // src/common/DropdownMenu/DropdownMenu.tsx
2562
+ var import_tick2 = __toESM(require_tick());
2563
+ var DropdownMenu = React12.forwardRef(
2564
+ ({ maxHeight = "450px", minWidth = "125px", maxWidth, className, children, ...props }, ref) => /* @__PURE__ */ React12.createElement("ul", {
2565
+ ref,
2566
+ style: { maxHeight, minWidth, maxWidth },
2567
+ className: classNames(
2568
+ className,
2569
+ "p-3 bg-white w-full overflow-y-auto overflow-x-hidden typography-body-small-medium text-grey-70"
2570
+ ),
2571
+ ...props
2572
+ }, children)
2573
+ );
2574
+ var Group = React12.forwardRef(
2575
+ ({ className, title, titleProps, children, ...props }, ref) => /* @__PURE__ */ React12.createElement("li", {
2576
+ ref,
2577
+ ...props
2578
+ }, title && /* @__PURE__ */ React12.createElement("div", {
2579
+ className: classNames(
2580
+ className,
2581
+ "p-3 text-grey-40 uppercase cursor-default typography-caption-default font-medium",
2582
+ {
2583
+ "text-grey-20": props.disabled
2584
+ }
2585
+ ),
2586
+ ...titleProps
2587
+ }, title), children)
2588
+ );
2589
+ DropdownMenu.Group = Group;
2590
+ var Item = React12.forwardRef(
2591
+ ({ kind, highlighted, selected, className, icon, children, ...props }, ref) => /* @__PURE__ */ React12.createElement("li", {
2592
+ ref,
2593
+ className: classNames(className, "flex items-center gap-x-3 p-3 outline-none", {
2594
+ "cursor-pointer hover:bg-grey-0": !props.disabled,
2595
+ "bg-grey-0": highlighted,
2596
+ "text-primary-80": kind === "action",
2597
+ "text-grey-20 cursor-not-allowed": props.disabled
2598
+ }),
2599
+ ...props
2600
+ }, icon && /* @__PURE__ */ React12.createElement(InlineIcon, {
2601
+ icon
2602
+ }), /* @__PURE__ */ React12.createElement("span", {
2603
+ className: tw("grow")
2604
+ }, children), selected && /* @__PURE__ */ React12.createElement(InlineIcon, {
2605
+ icon: import_tick2.default
2606
+ }))
2607
+ );
2608
+ DropdownMenu.Item = Item;
2609
+ var Description = ({ disabled, children }) => /* @__PURE__ */ React12.createElement(Typography2.Caption, {
2610
+ color: disabled ? "grey-20" : "grey-40"
2611
+ }, children);
2612
+ DropdownMenu.Description = Description;
2613
+ var Separator = ({ className, ...props }) => {
2614
+ return /* @__PURE__ */ React12.createElement("li", {
2615
+ ...props,
2616
+ className: classNames(className, tw("m-3 block bg-grey-5 h-[1px]"))
2617
+ });
2618
+ };
2619
+ DropdownMenu.Separator = Separator;
2620
+
2621
+ // src/common/InputGroup/InputGroup.tsx
2622
+ import React14 from "react";
2623
+
2624
+ // src/components/Grid/Grid.tsx
2625
+ import React13 from "react";
2626
+ var Grid = Tailwindify(
2627
+ ({
2628
+ htmlTag = "div",
2629
+ className,
2630
+ style,
2631
+ children,
2632
+ display = "grid",
2633
+ justifyContent,
2634
+ alignContent,
2635
+ alignItems,
2636
+ justifyItems,
2637
+ placeContent,
2638
+ placeItems,
2639
+ cols = "12",
2640
+ rows,
2641
+ autoFlow,
2642
+ autoCols,
2643
+ autoRows,
2644
+ gap,
2645
+ colGap,
2646
+ rowGap,
2647
+ colSpan,
2648
+ colStart,
2649
+ colEnd,
2650
+ rowSpan,
2651
+ rowStart,
2652
+ rowEnd
2653
+ }) => {
2654
+ const hookStyle = useStyle({
2655
+ display,
2656
+ justifyContent,
2657
+ alignContent,
2658
+ alignItems,
2659
+ justifyItems,
2660
+ placeContent,
2661
+ placeItems,
2662
+ gridTemplateColumns: cols,
2663
+ gridTemplateRows: rows,
2664
+ gridAutoFlow: autoFlow,
2665
+ gridAutoColumns: autoCols,
2666
+ gridAutoRows: autoRows,
2667
+ gap,
2668
+ columnGap: colGap,
2669
+ rowGap,
2670
+ gridColumn: colSpan,
2671
+ gridColumnStart: colStart,
2672
+ gridColumnEnd: colEnd,
2673
+ gridRow: rowSpan,
2674
+ gridRowStart: rowStart,
2675
+ gridRowEnd: rowEnd
2676
+ });
2677
+ const HtmlElement = htmlTag;
2678
+ return /* @__PURE__ */ React13.createElement(HtmlElement, {
2679
+ style: { ...hookStyle, ...style },
2680
+ className
2681
+ }, children);
2682
+ }
2683
+ );
2684
+
2685
+ // src/common/InputGroup/InputGroup.tsx
2686
+ var gridColumnStyles = {
2687
+ "1": "grid-cols-1",
2688
+ "2": "grid-cols-2",
2689
+ "3": "grid-cols-3",
2690
+ "auto": "auto-cols-fr"
2691
+ };
2692
+ var InputGroup = ({ cols = "1", children, ...rest }) => {
2693
+ return /* @__PURE__ */ React14.createElement(Grid, {
2694
+ ...rest,
2695
+ display: "inline-grid",
2696
+ colGap: "l4",
2697
+ rowGap: "3",
2698
+ cols: cols !== "auto" ? cols : void 0,
2699
+ className: gridColumnStyles[cols]
2700
+ }, children);
2701
+ };
2702
+
2703
+ // src/common/Modal/Modal.tsx
2704
+ import React15 from "react";
2705
+ var Modal = ({ children, className, open, ...rest }) => open ? /* @__PURE__ */ React15.createElement("div", {
2706
+ ...rest,
2707
+ className: classNames(
2708
+ tw("fixed inset-0 overflow-y-auto z-modal flex justify-center items-center fixed py-7"),
2709
+ className
2710
+ )
2711
+ }, children) : null;
2712
+ Modal.BackDrop = ({ className, ...rest }) => /* @__PURE__ */ React15.createElement("div", {
2713
+ ...rest,
2714
+ className: classNames(tw("-z-10 fixed min-w-full min-h-full bg-navyBlue-100 opacity-70"), className)
2715
+ });
2716
+ Modal.Dialog = React15.forwardRef(
2717
+ ({ children, className, size = "sm", ...rest }, ref) => /* @__PURE__ */ React15.createElement("div", {
2718
+ ref,
2719
+ ...rest,
2720
+ className: classNames(
2721
+ tw("bg-white rounded mx-7 w-full max-h-full flex flex-col"),
2722
+ {
2723
+ "max-w-[600px]": size === "sm",
2724
+ "max-w-[940px]": size === "md",
2725
+ "min-h-full": size === "full"
2726
+ },
2727
+ className
2728
+ )
2729
+ }, children)
2730
+ );
2731
+ Modal.Header = ({ children, className, ...rest }) => /* @__PURE__ */ React15.createElement("div", {
2732
+ ...rest,
2733
+ className: classNames(tw("px-7 py-6 gap-3 flex items-center"), className)
2734
+ }, children);
2735
+ Modal.Title = ({ children, className, ...rest }) => /* @__PURE__ */ React15.createElement(Typography, {
2736
+ htmlTag: "h2",
2737
+ variant: "heading-large",
2738
+ color: "grey-90",
2739
+ className: classNames(tw("leading-none"), className),
2740
+ ...rest
2741
+ }, children);
2742
+ Modal.Subtitle = ({ children, ...rest }) => /* @__PURE__ */ React15.createElement(Typography, {
2743
+ variant: "body-small",
2744
+ color: "grey-60",
2745
+ ...rest
2746
+ }, children);
2747
+ Modal.TitleContainer = ({ children, className, ...rest }) => /* @__PURE__ */ React15.createElement("div", {
2748
+ ...rest,
2749
+ className: classNames(tw("flex flex-col grow gap-2"), className)
2750
+ }, children);
2751
+ Modal.Body = ({ children, className, noFooter = false, maxHeight, style, ...rest }) => /* @__PURE__ */ React15.createElement("div", {
2752
+ ...rest,
2753
+ className: classNames(tw("px-7 grow overflow-y-auto", { "pb-6": noFooter }), className),
2754
+ style: { maxHeight, ...style }
2755
+ }, children);
2756
+ Modal.Footer = ({ children, className, ...rest }) => /* @__PURE__ */ React15.createElement("div", {
2757
+ ...rest,
2758
+ className: classNames(tw("px-7 py-6"), className)
2759
+ }, children);
2760
+ Modal.Actions = ({ children, className, ...rest }) => /* @__PURE__ */ React15.createElement("div", {
2761
+ ...rest,
2762
+ className: classNames(tw("flex gap-4 justify-end"), className)
2763
+ }, children);
2764
+
2765
+ // src/common/PopoverDialog/PopoverDialog.tsx
2766
+ import React16 from "react";
2767
+ var Header = ({ children, className, ...rest }) => /* @__PURE__ */ React16.createElement("div", {
2768
+ ...rest,
2769
+ className: classNames(tw("p-5 gap-3 flex items-center"), className)
2770
+ }, children);
2771
+ var Title = ({ children, className, ...rest }) => /* @__PURE__ */ React16.createElement(Typography, {
2772
+ ...rest,
2773
+ htmlTag: "h1",
2774
+ variant: "body-small-medium"
2775
+ }, children);
2776
+ var Body = ({ children, className, ...rest }) => /* @__PURE__ */ React16.createElement(Typography, {
2777
+ ...rest,
2778
+ htmlTag: "div",
2779
+ variant: "caption-default",
2780
+ className: classNames(tw("px-5 overflow-y-auto"), className)
2781
+ }, children);
2782
+ var Footer = ({ children, className, ...rest }) => /* @__PURE__ */ React16.createElement("div", {
2783
+ ...rest,
2784
+ className: classNames(tw("p-5"), className)
2785
+ }, children);
2786
+ var Actions = ({ children, className, ...rest }) => /* @__PURE__ */ React16.createElement("div", {
2787
+ ...rest,
2788
+ className: classNames(tw("flex gap-4"), className)
2789
+ }, children);
2790
+ var PopoverDialog = {
2791
+ Header,
2792
+ Title,
2793
+ Body,
2794
+ Footer,
2795
+ Actions
2796
+ };
2797
+
2798
+ // src/common/Popover/Popover.tsx
2799
+ import React17 from "react";
2800
+ var PopoverPanel = React17.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ React17.createElement("div", {
2801
+ ref,
2802
+ className: classNames(
2803
+ className,
2804
+ tw(
2805
+ "rounded-sm shadow-16dp bg-white mt-1 focus-visible:outline-0 focus-visible:border-info-70 border border-grey-20"
2806
+ )
2807
+ ),
2808
+ ...props
2809
+ }, children));
2810
+ var Popover = {
2811
+ Panel: PopoverPanel
2812
+ };
2813
+
2814
+ // src/common/RadioButton/RadioButton.tsx
2815
+ import React18 from "react";
2816
+ var RadioButton = React18.forwardRef(
2817
+ ({ id, children, name, checked = false, disabled = false, readOnly = false, ...props }, ref) => /* @__PURE__ */ React18.createElement("span", {
2818
+ className: classNames(
2819
+ tw("inline-flex justify-center items-center relative self-center", {
2820
+ "text-grey-30": disabled,
2821
+ "text-grey-100": !disabled
2822
+ })
2823
+ )
2824
+ }, /* @__PURE__ */ React18.createElement("input", {
2825
+ id,
2826
+ ref,
2827
+ type: "radio",
2828
+ name,
2829
+ ...props,
2830
+ checked,
2831
+ className: classNames(
2832
+ tw("appearance-none rounded-full border cursor-pointer"),
2833
+ {
2834
+ "border-grey-20 hover:border-grey-50 focus:border-info-70": !disabled && !checked,
2835
+ "border-navyBlue-100": !disabled && checked,
2836
+ "border-grey-5": disabled
2837
+ },
2838
+ props.className
2839
+ ),
2840
+ style: { width: 16, height: 16, ...props.style },
2841
+ readOnly,
2842
+ disabled
2843
+ }), /* @__PURE__ */ React18.createElement("span", {
2844
+ style: { backgroundColor: "currentcolor" },
2845
+ className: tw("absolute w-3 h-3 rounded-full bg-navyBlue-100 pointer-events-none", {
2846
+ "opacity-0": !checked,
2847
+ "opacity-40": disabled && checked
2848
+ })
2849
+ }))
2850
+ );
2851
+
2852
+ // src/common/Select/Select.tsx
2853
+ import React19 from "react";
2854
+ var import_chevronDown2 = __toESM(require_chevronDown());
2855
+ var import_chevronUp = __toESM(require_chevronUp());
2856
+ var import_search = __toESM(require_search());
2857
+ var import_tick3 = __toESM(require_tick());
2858
+ function getOptionLabelBuiltin(option) {
2859
+ if (option === null) {
2860
+ return "";
2861
+ }
2862
+ if (typeof option === "string") {
2863
+ return option;
2864
+ }
2865
+ return option.label ?? "";
2866
+ }
2867
+ function isOptionDisabledBuiltin(option) {
2868
+ return !!option.disabled;
2869
+ }
2870
+ var getValues = (children) => {
2871
+ const values = React19.Children.map(children, (c) => c?.props?.value);
2872
+ return values?.filter((v) => v !== void 0 && v !== null) ?? [];
2873
+ };
2874
+ var InputContainer = React19.forwardRef(
2875
+ ({ variant = "default", className, ...props }, ref) => /* @__PURE__ */ React19.createElement("div", {
2876
+ ref,
2877
+ className: classNames(
2878
+ className,
2879
+ "relative rounded-sm typography-body-default-medium w-full flex flex-row items-center focus-visible:outline-0 focus-visible:border-info-70",
2880
+ {
2881
+ "border px-3 py-[6px]": variant !== "readOnly",
2882
+ "cursor-default": variant === "readOnly",
2883
+ "border-grey-20": variant !== "error" && variant !== "readOnly",
2884
+ "border-error-50": variant === "error",
2885
+ "hover:border-grey-50": variant !== "error" && variant !== "disabled" && variant !== "focused",
2886
+ "border-info-70": variant === "focused",
2887
+ "bg-white": variant !== "disabled",
2888
+ "cursor-not-allowed border-grey-20 bg-grey-5": variant === "disabled"
2889
+ }
2890
+ ),
2891
+ ...props
2892
+ })
2893
+ );
2894
+ var Input = React19.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ React19.createElement("input", {
2895
+ ref,
2896
+ type: "text",
2897
+ className: classNames(
2898
+ className,
2899
+ "grow rounded border-0 focus:outline-none px-[1px] my-1 min-w-0 typography-body-small disabled:cursor-not-allowed disabled:bg-grey-5 placeholder:text-grey-40",
2900
+ {
2901
+ "text-grey-70": !props.disabled,
2902
+ "text-grey-30": props.disabled,
2903
+ "cursor-default": props.readOnly
2904
+ }
2905
+ ),
2906
+ ...props
2907
+ }));
2908
+ var Menu = React19.forwardRef(
2909
+ ({ maxHeight = "450px", className, children, ...props }, ref) => /* @__PURE__ */ React19.createElement("ul", {
2910
+ ref,
2911
+ style: { maxHeight },
2912
+ className: classNames(className, tw("overflow-y-auto")),
2913
+ ...props
2914
+ }, children)
2915
+ );
2916
+ var NoResults = React19.forwardRef(
2917
+ ({ className, children, ...rest }, ref) => /* @__PURE__ */ React19.createElement("li", {
2918
+ ref,
2919
+ ...rest,
2920
+ className: classNames(tw("p-3 text-grey-40 italic"), className)
2921
+ }, children)
2922
+ );
2923
+ var EmptyStateContainer = React19.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ React19.createElement("li", {
2924
+ ref,
2925
+ className: tw("border border-dashed border-grey-10 m-4 p-6"),
2926
+ ...props
2927
+ }, children));
2928
+ var Divider = (props) => /* @__PURE__ */ React19.createElement("div", {
2929
+ className: tw("border-b-[1px] border-grey-5 mx-3 my-4"),
2930
+ ...props
2931
+ });
2932
+ var Group2 = React19.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ React19.createElement("li", {
2933
+ ref,
2934
+ className: classNames(
2935
+ className,
2936
+ "flex items-center gap-x-3 p-3 text-grey-40 uppercase cursor-default typography-caption-default mt-4 first:mt-0 font-medium",
2937
+ {
2938
+ "text-grey-20": props.disabled
2939
+ }
2940
+ ),
2941
+ ...props
2942
+ }, children));
2943
+ var Item2 = React19.forwardRef(
2944
+ ({ highlighted, selected, className, children, ...props }, ref) => /* @__PURE__ */ React19.createElement("li", {
2945
+ ref,
2946
+ className: classNames(className, "flex items-center gap-x-3 p-3", {
2947
+ "cursor-pointer": !props.disabled,
2948
+ "bg-grey-0": highlighted,
2949
+ "text-grey-20": props.disabled,
2950
+ "hover:bg-grey-0": !props.disabled
2951
+ }),
2952
+ ...props
2953
+ }, /* @__PURE__ */ React19.createElement("span", {
2954
+ className: tw("grow flex gap-x-3")
2955
+ }, children), selected && /* @__PURE__ */ React19.createElement(InlineIcon, {
2956
+ icon: import_tick3.default
2957
+ }))
2958
+ );
2959
+ var ActionItem = React19.forwardRef(
2960
+ ({ className, dense, icon, onClick, children, ...props }, ref) => /* @__PURE__ */ React19.createElement("li", {
2961
+ ref,
2962
+ role: "button",
2963
+ onClick: () => !props.disabled && onClick?.(),
2964
+ className: classNames(className, "flex items-center gap-x-3 text-primary-80", {
2965
+ "p-3": !dense,
2966
+ "px-3 py-2": dense,
2967
+ "cursor-pointer": !props.disabled,
2968
+ "text-grey-20": props.disabled,
2969
+ "hover:text-primary-70": !props.disabled
2970
+ }),
2971
+ ...props
2972
+ }, icon && /* @__PURE__ */ React19.createElement(InlineIcon, {
2973
+ icon
2974
+ }), children)
2975
+ );
2976
+ var Toggle = React19.forwardRef(({ hasFocus, isOpen, ...props }, ref) => /* @__PURE__ */ React19.createElement("button", {
2977
+ ref,
2978
+ type: "button",
2979
+ "aria-label": "Toggle",
2980
+ ...props,
2981
+ className: tw("grow-0 leading-none", { "cursor-not-allowed": props.disabled ?? false })
2982
+ }, /* @__PURE__ */ React19.createElement(InlineIcon, {
2983
+ color: props.disabled ? "grey-40" : "grey-70",
2984
+ icon: hasFocus ? import_search.default : isOpen ? import_chevronUp.default : import_chevronDown2.default
2985
+ })));
2986
+ var Select = {
2987
+ InputContainer,
2988
+ Input,
2989
+ Menu,
2990
+ EmptyStateContainer,
2991
+ NoResults,
2992
+ Divider,
2993
+ Group: Group2,
2994
+ Item: Item2,
2995
+ ActionItem,
2996
+ Toggle
2997
+ };
2998
+
2999
+ // src/common/Table/Table.tsx
3000
+ import React20 from "react";
3001
+ var import_chevronUp2 = __toESM(require_chevronUp());
3002
+ var import_chevronDown3 = __toESM(require_chevronDown());
3003
+ var HeadContext = React20.createContext(null);
3004
+ var tableClassNames = tw("w-full relative typography-body-default border-spacing-0");
3005
+ var Table = ({ children, ariaLabel, className, ...rest }) => {
3006
+ return /* @__PURE__ */ React20.createElement("table", {
3007
+ ...rest,
3008
+ className: classNames(tableClassNames, className),
3009
+ "aria-label": ariaLabel
3010
+ }, children);
3011
+ };
3012
+ var TableHead = ({ children, sticky, ...rest }) => /* @__PURE__ */ React20.createElement("thead", {
3013
+ ...rest
3014
+ }, /* @__PURE__ */ React20.createElement("tr", null, /* @__PURE__ */ React20.createElement(HeadContext.Provider, {
3015
+ value: { children, sticky }
3016
+ }, children)));
3017
+ var TableBody = ({ children, ...rest }) => /* @__PURE__ */ React20.createElement("tbody", {
3018
+ ...rest
3019
+ }, children);
3020
+ var rowClassNames = tw("children:border-grey-10 children:last:border-b-0 hover:bg-grey-0");
3021
+ var TableRow = ({ children, className, ...rest }) => /* @__PURE__ */ React20.createElement("tr", {
3022
+ ...rest,
3023
+ className: classNames(rowClassNames, className)
3024
+ }, children);
3025
+ var cellClassNames = tw("px-4 border-b typography-body-small-medium leading-[18px]");
3026
+ var bodyCellClassNames = tw("text-grey-70 py-3 h-[50px]");
3027
+ var getAlignClassNames = (align) => tw({ "text-right": align === "right", "text-center": align === "center" });
3028
+ var getHeadCellClassNames = (sticky = true) => {
3029
+ const common = tw("py-[14px] text-left bg-white border-grey-40 text-grey-50 font-normal");
3030
+ return sticky ? classNames(common, tw("sticky top-0")) : common;
3031
+ };
3032
+ var TableCell = ({ children, className, align = "left", ...rest }) => {
3033
+ const headContext = React20.useContext(HeadContext);
3034
+ return headContext ? /* @__PURE__ */ React20.createElement("th", {
3035
+ ...rest,
3036
+ className: classNames(
3037
+ cellClassNames,
3038
+ getHeadCellClassNames(headContext.sticky),
3039
+ getAlignClassNames(align),
3040
+ className
3041
+ )
3042
+ }, children) : /* @__PURE__ */ React20.createElement("td", {
3043
+ ...rest,
3044
+ className: classNames(cellClassNames, bodyCellClassNames, getAlignClassNames(align), className)
3045
+ }, children);
3046
+ };
3047
+ var TableSelectCell = ({ ariaLabel, ...props }) => {
3048
+ return /* @__PURE__ */ React20.createElement(Table.Cell, {
3049
+ className: tw("leading-[0px]")
3050
+ }, props.type === "radio" ? /* @__PURE__ */ React20.createElement(RadioButton, {
3051
+ "aria-label": ariaLabel,
3052
+ ...props
3053
+ }) : /* @__PURE__ */ React20.createElement(Checkbox, {
3054
+ "aria-label": ariaLabel,
3055
+ ...props
3056
+ }));
3057
+ };
3058
+ var sortCellButtonClassNames = tw("group inline-flex items-center text-grey-50");
3059
+ var getSortCellIconClassNames = (active) => {
3060
+ return tw("text-[9px]", active ? "text-grey-70" : "text-grey-30");
3061
+ };
3062
+ var TableSortCell = ({ children, direction = "none", onClick, ...rest }) => /* @__PURE__ */ React20.createElement(Table.Cell, {
3063
+ ...rest,
3064
+ "aria-sort": direction
3065
+ }, /* @__PURE__ */ React20.createElement("span", {
3066
+ className: sortCellButtonClassNames,
3067
+ role: "button",
3068
+ tabIndex: -1,
3069
+ onClick
3070
+ }, children, /* @__PURE__ */ React20.createElement("div", {
3071
+ "data-sort-icons": true,
3072
+ className: tw("flex flex-col ml-4", {
3073
+ "invisible group-hover:visible": direction === "none"
3074
+ })
3075
+ }, /* @__PURE__ */ React20.createElement(InlineIcon, {
3076
+ icon: import_chevronUp2.default,
3077
+ className: getSortCellIconClassNames(direction === "descending")
3078
+ }), /* @__PURE__ */ React20.createElement(InlineIcon, {
3079
+ icon: import_chevronDown3.default,
3080
+ className: getSortCellIconClassNames(direction === "ascending")
3081
+ }))));
3082
+ Table.Head = React20.memo(TableHead);
3083
+ Table.Body = React20.memo(TableBody);
3084
+ Table.Row = React20.memo(TableRow);
3085
+ Table.Cell = React20.memo(TableCell);
3086
+ Table.SortCell = React20.memo(TableSortCell);
3087
+ Table.SelectCell = React20.memo(TableSelectCell);
3088
+ export {
3089
+ Alert,
3090
+ Checkbox,
3091
+ Chip,
3092
+ DIALOG_ICONS_AND_COLORS,
3093
+ DropdownMenu,
3094
+ InputGroup,
3095
+ Modal,
3096
+ Popover,
3097
+ PopoverDialog,
3098
+ RadioButton,
3099
+ Select,
3100
+ Table,
3101
+ getHeadCellClassNames,
3102
+ getOptionLabelBuiltin,
3103
+ getValues,
3104
+ isOptionDisabledBuiltin
3105
+ };