@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
@@ -0,0 +1,20 @@
1
+ import { TooltipProps } from '../src/components';
2
+ import { IconProps } from './IconProps';
3
+ export declare type BaseActionType = {
4
+ icon?: IconProps['icon'];
5
+ iconPlacement?: 'left' | 'right';
6
+ disabled?: boolean;
7
+ tooltip?: string;
8
+ tooltipPlacement?: TooltipProps['placement'];
9
+ };
10
+ export declare type ActionType = BaseActionType & {
11
+ onClick: () => void;
12
+ text: string;
13
+ };
14
+ export declare type AsyncActionType = ActionType & {
15
+ loading?: boolean;
16
+ };
17
+ export declare type LinkActionType = BaseActionType & {
18
+ href: string;
19
+ text: string;
20
+ };
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQWN0aW9uVHlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3R5cGVzL0FjdGlvblR5cGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,4 @@
1
+ import type { IconifyIcon } from '@iconify/types';
2
+ import type { IconProps as IconifyProps } from '@iconify/react';
3
+ export declare type Icon = IconifyIcon;
4
+ export declare type IconProps = Omit<IconifyProps, 'color'>;
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSWNvblByb3BzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHlwZXMvSWNvblByb3BzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -0,0 +1,57 @@
1
+ export declare type TypographyFontWeight = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
2
+ export declare type TypographyTextTransform = 'none' | 'capitalize' | 'uppercase' | 'lowercase' | 'initial' | 'inherit';
3
+ export declare type TypographyCSSStyles = {
4
+ fontFamily: string;
5
+ fontWeight: TypographyFontWeight;
6
+ fontSize: string;
7
+ fontStyle: string;
8
+ lineHeight: number;
9
+ letterSpacing: number;
10
+ textTransform: TypographyTextTransform;
11
+ };
12
+ export declare type TypographyName = 'caption-small' | 'caption-default' | 'overline-small' | 'overline-default' | 'button-small' | 'button-medium' | 'button-large' | 'body-small' | 'body-small-medium' | 'body-default' | 'body-default-medium' | 'body-large' | 'body-large-medium' | 'heading-large' | 'heading-xl' | 'heading-2xl' | 'heading-3xl' | 'heading-4xl' | 'heading-5xl';
13
+ export interface TypographySize {
14
+ name: TypographyName;
15
+ className: string;
16
+ style: TypographyCSSStyles;
17
+ fontPostScriptName: string;
18
+ }
19
+ export interface Typography {
20
+ sizes: TypographySize[];
21
+ }
22
+ export declare type HexColorString = string;
23
+ export declare type ColorIntent = 'primary' | 'secondary' | 'grey' | 'info' | 'success' | 'warning' | 'error';
24
+ export declare type ColorWeight = 0 | 5 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 100;
25
+ export declare type ColorName = `${ColorIntent}-${ColorWeight}`;
26
+ export declare type Colors = {
27
+ [name in ColorName]: HexColorString;
28
+ };
29
+ export interface Spacing {
30
+ [level: string]: {
31
+ px: number;
32
+ rem: number;
33
+ };
34
+ }
35
+ export declare type ElevationLevel = '2dp' | '4dp' | '8dp' | '16dp' | '24dp';
36
+ export declare type Elevations = {
37
+ [level in ElevationLevel]: string;
38
+ };
39
+ export interface Theme {
40
+ typography: Typography;
41
+ colors: Colors;
42
+ spacing: Spacing;
43
+ elevations: Elevations;
44
+ }
45
+ export declare type ThemeName = 'aiven' | 'timescale';
46
+ export interface Tokens {
47
+ themes: {
48
+ [key in ThemeName]: Theme;
49
+ };
50
+ }
51
+ export interface Icons {
52
+ [name: string]: {
53
+ figmaId: string;
54
+ paths: string[];
55
+ svg: string;
56
+ };
57
+ }
@@ -0,0 +1,5 @@
1
+ // These types are imported from https://github.com/mrmartineau/design-system-utils/blob/cc51d3299b7b44aa841d8f2695a3752297190db4/src/types.ts
2
+ // as a starting point.
3
+ // The types should be edited for our purposes, no need to stick with the old ones
4
+ export {};
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzaWduVG9rZW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHlwZXMvZGVzaWduVG9rZW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLDhJQUE4STtBQUM5SSx1QkFBdUI7QUFDdkIsa0ZBQWtGIn0=
@@ -0,0 +1,42 @@
1
+ import partialThemeJson from '../tailwind.theme.json';
2
+ import { ClassNames } from './tailwindGenerated';
3
+ export declare type AnyObject = {
4
+ [key: string]: any;
5
+ };
6
+ export declare type Breakpoint = keyof typeof partialThemeJson['screens'];
7
+ export declare type BreakpointsObject = {
8
+ readonly [key in Breakpoint]: string;
9
+ };
10
+ export declare type Breakpointable<T> = T | {
11
+ [key in Breakpoint]?: T;
12
+ };
13
+ export declare type ObjectBreakpointable<T extends AnyObject> = {
14
+ [K in keyof T]: Breakpointable<T[K]>;
15
+ };
16
+ export declare type TailwindClass = ClassNames;
17
+ declare type Whitespace = ' ' | '\n';
18
+ declare type RecursionReducingWhitespace = ' ' | ' ' | ' ' | ' ' | ' ' | ' ' | ' ' | ' ' | ' ' | '\n';
19
+ declare type Err<Message extends string> = `Error: ${Message}`;
20
+ declare type TrimEnd<T extends string> = T extends `${infer Rest}${RecursionReducingWhitespace}` ? TrimEnd<Rest> : T;
21
+ declare type TrimStart<T extends string> = T extends `${RecursionReducingWhitespace}${infer Rest}` ? TrimStart<Rest> : T;
22
+ declare type Trim<T extends string> = TrimEnd<TrimStart<T>>;
23
+ declare type SplitToTailwindClasses<T extends string> = SplitToTailwindClassesInner<Trim<T>>;
24
+ declare type SplitToTailwindClassesInner<T extends string> = T extends `${TailwindClass}${Whitespace}${infer Tail}` ? T extends `${infer Head}${Whitespace}${Tail}` ? Head extends TailwindClass ? [
25
+ Head,
26
+ ...SplitToTailwindClassesInner<Trim<Tail>>
27
+ ] : [
28
+ Err<`'${Head}' is not a valid Tailwind class`>
29
+ ] : [never] : T extends `${infer Tail}` ? Tail extends TailwindClass ? [Tail] : [
30
+ Err<`'${Tail}' is not a valid Tailwind class`>
31
+ ] : [never];
32
+ declare type GetFirstError<T extends unknown[]> = T extends [infer Head, ...infer Tail] ? Head extends `Error: ${infer Message}` ? Head : GetFirstError<Tail> : never;
33
+ export declare type ValidTailwindClassesString<T extends string> = string extends T ? Err<'Unexpected generic string'> : SplitToTailwindClasses<T> extends TailwindClass[] ? T : GetFirstError<SplitToTailwindClasses<T>>;
34
+ declare type ClassNamesObject = {
35
+ [key: string]: boolean;
36
+ };
37
+ export declare type TailwindClassNamesObject<T extends ClassNamesObject> = {
38
+ [K in keyof T & string]: K extends ValidTailwindClassesString<K> ? T[K] : ValidTailwindClassesString<K>;
39
+ };
40
+ export declare type TailwindClassNamesArray<UnvalidatedItems extends unknown[], Validated extends unknown[] = []> = UnvalidatedItems extends [] ? Validated : UnvalidatedItems extends [infer Head, ...infer Rest] ? Head extends string ? Head extends ValidTailwindClassesString<Head> ? TailwindClassNamesArray<Rest, [...Validated, Head]> : ValidTailwindClassesString<Head> : never : never;
41
+ export declare type TailwindClassParameterValue<S> = S extends string ? ValidTailwindClassesString<S> : S extends any[] ? TailwindClassNamesArray<S> : S extends ClassNamesObject ? TailwindClassNamesObject<S> : never;
42
+ export {};
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpbHdpbmQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90eXBlcy90YWlsd2luZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1 @@
1
+ export declare type ClassNames = "-m-2" | "-z-10" | "\!container" | "\!inline" | "\[\&\>\*\:not\(\:first-child\)\]\:-ml-3" | "\[\&\>div\:first-child\]\:px-5" | "\[\&\>path\]\:stroke-2" | "\[\&\>path\]\:stroke-grey-30" | "\[\&\>path\]\:stroke-white" | "absolute" | "active\:bg-grey-10" | "active\:bg-grey-5" | "active\:bg-primary-90" | "active\:bg-transparent" | "active\:ring-0" | "active\:ring-grey-50" | "active\:text-grey-50" | "active\:text-grey-70" | "active\:text-grey-80" | "active\:text-primary-70" | "align-middle" | "animate-positioner-fade-in" | "animate-pulse" | "appearance-none" | "aspect-square" | "auto-cols-fr" | "bg-cover" | "bg-current" | "bg-error-0" | "bg-error-5" | "bg-error-70" | "bg-gradient-to-l" | "bg-gradient-to-r" | "bg-grey-0" | "bg-grey-10" | "bg-grey-20" | "bg-grey-5" | "bg-grey-90" | "bg-info-5" | "bg-info-50" | "bg-navyBlue-100" | "bg-primary-70" | "bg-primary-80" | "bg-secondary-5" | "bg-success-5" | "bg-success-70" | "bg-transparent" | "bg-warning-5" | "bg-warning-70" | "bg-white" | "block" | "blur" | "border" | "border-0" | "border-b" | "border-b-2" | "border-b-\[1px\]" | "border-current" | "border-dashed" | "border-error-50" | "border-grey-10" | "border-grey-100" | "border-grey-20" | "border-grey-40" | "border-grey-5" | "border-grey-50" | "border-info-70" | "border-navyBlue-100" | "border-none" | "border-primary-80" | "border-solid" | "border-spacing-0" | "border-transparent" | "bottom-0" | "break-all" | "capitalize" | "children\:border-grey-10" | "children\:inline-block" | "children\:last\:border-b-0" | "col-start-1" | "col-start-2" | "col-start-3" | "container" | "contents" | "cursor-default" | "cursor-not-allowed" | "cursor-pointer" | "delay-150" | "disabled\:bg-grey-0" | "disabled\:bg-grey-5" | "disabled\:bg-primary-5" | "disabled\:bg-transparent" | "disabled\:border-grey-20" | "disabled\:cursor-not-allowed" | "disabled\:ring-grey-20" | "disabled\:text-grey-20" | "disabled\:text-grey-30" | "disabled\:text-grey-40" | "disabled\:text-primary-40" | "duration-300" | "ease-in-out" | "filter" | "first\:mt-0" | "fixed" | "flex" | "flex-col" | "flex-grow" | "flex-nowrap" | "flex-row" | "flex-wrap" | "focus-visible\:bg-grey-0" | "focus-visible\:border-info-70" | "focus-visible\:outline-0" | "focus-visible\:ring-2" | "focus-visible\:ring-grey-50" | "focus-visible\:ring-inset" | "focus-visible\:ring-primary-100" | "focus-visible\:text-grey-80" | "focus-visible\:text-grey-90" | "focus\:border-info-70" | "focus\:border-transparent" | "focus\:outline-none" | "focus\:ring-0" | "focus\:ring-1" | "focus\:ring-2" | "focus\:ring-grey-60" | "focus\:ring-offset-0" | "focus\:text-primary-80" | "font-medium" | "font-normal" | "font-semibold" | "from-white" | "gap-2" | "gap-3" | "gap-4" | "gap-7" | "gap-8" | "gap-x-2" | "gap-x-3" | "gap-x-4" | "gap-y-2" | "grid" | "grid-cols-1" | "grid-cols-2" | "grid-cols-3" | "grid-cols-\[200px_1fr_200px\]" | "grid-cols-\[auto_1fr\]" | "grid-cols-\[auto_1fr_auto\]" | "group" | "group-hover\:bg-grey-30" | "group-hover\:visible" | "grow" | "grow-0" | "h-1" | "h-1px" | "h-2" | "h-3" | "h-4" | "h-5" | "h-6" | "h-\[174px\]" | "h-\[1px\]" | "h-\[20px\]" | "h-\[225px\]" | "h-\[25px\]" | "h-\[32px\]" | "h-\[50px\]" | "h-\[56px\]" | "h-full" | "hidden" | "hover\:bg-grey-0" | "hover\:bg-grey-5" | "hover\:bg-primary-70" | "hover\:border-grey-20" | "hover\:border-grey-50" | "hover\:cursor-pointer" | "hover\:no-underline" | "hover\:ring-grey-50" | "hover\:text-grey-80" | "hover\:text-grey-90" | "hover\:text-primary-70" | "hover\:text-primary-80" | "inline" | "inline-block" | "inline-flex" | "inline-grid" | "inset-0" | "inset-y-0" | "invisible" | "italic" | "items-center" | "justify-between" | "justify-center" | "justify-end" | "leading-\[0px\]" | "leading-\[18px\]" | "leading-none" | "left-0" | "left-1\/2" | "left-2" | "m-3" | "m-4" | "m-\[1px\]" | "max-h-full" | "max-w-\[300px\]" | "max-w-\[320px\]" | "max-w-\[40px\]" | "max-w-\[600px\]" | "max-w-\[70px\]" | "max-w-\[940px\]" | "mb-2" | "mb-3" | "mb-\[-2px\]" | "mb-\[7px\]" | "min-h-full" | "min-w-0" | "min-w-full" | "ml-2" | "ml-3" | "ml-4" | "mr-1" | "mr-4" | "mt-1" | "mt-2" | "mt-4" | "mt-5" | "mx-0" | "mx-1" | "mx-2" | "mx-3" | "mx-7" | "my-1" | "my-4" | "no-arrow" | "no-arrows" | "no-underline" | "object-cover" | "opacity-0" | "opacity-40" | "opacity-70" | "outline-none" | "overflow-hidden" | "overflow-x-hidden" | "overflow-y-auto" | "overline" | "p-2" | "p-3" | "p-4" | "p-5" | "p-6" | "pb-3" | "pb-6" | "peer" | "peer-focus\:border" | "pl-4" | "pl-7" | "placeholder\:text-grey-40" | "pointer-events-none" | "pr-4" | "px-0" | "px-1" | "px-2" | "px-3" | "px-4" | "px-5" | "px-7" | "px-\[1px\]" | "px-\[4px\]" | "py-1" | "py-2" | "py-3" | "py-4" | "py-6" | "py-7" | "py-\[14px\]" | "py-\[6px\]" | "relative" | "resize" | "resize-none" | "right-0" | "ring-1" | "ring-2" | "ring-grey-30" | "ring-inset" | "ring-offset-0" | "rotate-45" | "rounded" | "rounded-full" | "rounded-sm" | "row-start-1" | "scrollbar-hide" | "self-center" | "self-start" | "shadow-16dp" | "shadow-2dp" | "shadow-4dp" | "shrink" | "sticky" | "stroke-grey-30" | "stroke-white" | "table" | "table-auto" | "table-fixed" | "text-\[8px\]" | "text-\[9px\]" | "text-center" | "text-error-0" | "text-error-10" | "text-error-100" | "text-error-20" | "text-error-30" | "text-error-40" | "text-error-5" | "text-error-50" | "text-error-60" | "text-error-70" | "text-error-80" | "text-error-90" | "text-grey-0" | "text-grey-10" | "text-grey-100" | "text-grey-20" | "text-grey-30" | "text-grey-40" | "text-grey-5" | "text-grey-50" | "text-grey-60" | "text-grey-70" | "text-grey-80" | "text-grey-90" | "text-info-0" | "text-info-10" | "text-info-100" | "text-info-20" | "text-info-30" | "text-info-40" | "text-info-5" | "text-info-50" | "text-info-60" | "text-info-70" | "text-info-80" | "text-info-90" | "text-left" | "text-primary-0" | "text-primary-10" | "text-primary-100" | "text-primary-20" | "text-primary-30" | "text-primary-40" | "text-primary-5" | "text-primary-50" | "text-primary-60" | "text-primary-70" | "text-primary-80" | "text-primary-90" | "text-right" | "text-secondary-0" | "text-secondary-10" | "text-secondary-100" | "text-secondary-20" | "text-secondary-30" | "text-secondary-40" | "text-secondary-5" | "text-secondary-50" | "text-secondary-60" | "text-secondary-70" | "text-secondary-80" | "text-secondary-90" | "text-success-0" | "text-success-10" | "text-success-100" | "text-success-20" | "text-success-30" | "text-success-40" | "text-success-5" | "text-success-50" | "text-success-60" | "text-success-70" | "text-success-80" | "text-success-90" | "text-warning-0" | "text-warning-10" | "text-warning-100" | "text-warning-20" | "text-warning-30" | "text-warning-40" | "text-warning-5" | "text-warning-50" | "text-warning-60" | "text-warning-70" | "text-warning-80" | "text-warning-90" | "text-white" | "top-0" | "top-2" | "transform" | "transition" | "transition-all" | "translate-x-5" | "typography-body-default" | "typography-body-default-medium" | "typography-body-large" | "typography-body-large-medium" | "typography-body-small" | "typography-body-small-medium" | "typography-button-large" | "typography-button-medium" | "typography-button-small" | "typography-caption-default" | "typography-caption-small" | "typography-heading-2xl" | "typography-heading-3xl" | "typography-heading-4xl" | "typography-heading-5xl" | "typography-heading-large" | "typography-heading-xl" | "typography-overline-default" | "typography-overline-small" | "underline" | "underline-offset-2" | "uppercase" | "via-white" | "visible" | "w-1" | "w-1px" | "w-2" | "w-3" | "w-4" | "w-5" | "w-6" | "w-\[280px\]" | "w-\[32px\]" | "w-\[34px\]" | "w-\[56px\]" | "w-full" | "whitespace-nowrap" | "z-0" | "z-10" | "z-20" | "z-40" | "z-modal";
@@ -0,0 +1,3 @@
1
+ // This file is auto-generated with postcss-ts-classnames.
2
+ export {};
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpbHdpbmRHZW5lcmF0ZWQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90eXBlcy90YWlsd2luZEdlbmVyYXRlZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSwwREFBMEQifQ==
@@ -0,0 +1,5 @@
1
+ import { ReactNode, ElementType, ReactElement } from 'react';
2
+ export declare const isComponentType: <T>(c: ReactNode, type: ElementType<T>) => c is ReactElement<T, string | import("react").JSXElementConstructor<any>>;
3
+ export declare type Either<A, B> = (Partial<Record<keyof B, never>> & A) | (Partial<Record<keyof A, never>> & B);
4
+ export declare type AcceptEmpty = boolean | null | undefined;
5
+ export declare type EmptyOrOneOrMore<T> = React.ReactElement<T> | AcceptEmpty | Array<React.ReactElement<T> | AcceptEmpty>;
@@ -0,0 +1,3 @@
1
+ import { isValidElement } from 'react';
2
+ export const isComponentType = (c, type) => isValidElement(c) && c.type === type;
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXRpbHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90eXBlcy91dGlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQTBCLGNBQWMsRUFBZ0IsTUFBTSxPQUFPLENBQUM7QUFFN0UsTUFBTSxDQUFDLE1BQU0sZUFBZSxHQUFHLENBQUksQ0FBWSxFQUFFLElBQW9CLEVBQXdCLEVBQUUsQ0FDN0YsY0FBYyxDQUFJLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxJQUFJLEtBQUssSUFBSSxDQUFDIn0=
package/package.json ADDED
@@ -0,0 +1,183 @@
1
+ {
2
+ "name": "@aivenio/aquarium",
3
+ "version": "0.0.1",
4
+ "description": "Aiven Aquarium design system",
5
+ "main": "dist/system.cjs",
6
+ "module": "dist/system.mjs",
7
+ "exports": {
8
+ ".": {
9
+ "require": "./dist/system.cjs",
10
+ "import": "./dist/system.mjs",
11
+ "types": "./dist/src/system.d.ts"
12
+ },
13
+ "./atoms": {
14
+ "require": "./dist/atoms.cjs",
15
+ "import": "./dist/atoms.mjs",
16
+ "types": "./dist/src/atoms.d.ts"
17
+ },
18
+ "./atoms/*": "./dist/src/common/*.js",
19
+ "./icons/*": "./dist/src/icons/*.js",
20
+ "./dist/module/icons/*": "./dist/src/icons/*.js",
21
+ "./dist/": "./dist/",
22
+ "./package.json": "./package.json",
23
+ "./*": "./*"
24
+ },
25
+ "types": "./dist/src/system.d.ts",
26
+ "typesVersions": {
27
+ "*": {
28
+ "atoms": [
29
+ "dist/src/common/index.d.ts"
30
+ ],
31
+ "atoms/*": [
32
+ "dist/src/common/*.d.ts"
33
+ ],
34
+ "icons/*": [
35
+ "dist/src/icons/*.d.ts"
36
+ ],
37
+ "dist/module/icons/*": [
38
+ "dist/src/icons/*.d.ts"
39
+ ]
40
+ }
41
+ },
42
+ "files": [
43
+ "dist/"
44
+ ],
45
+ "scripts": {
46
+ "test": "npm run build:ds:icons && jest",
47
+ "test:watch": "jest --watch",
48
+ "test:coverage": "jest --coverage",
49
+ "test:all": "npm run eslint && npm run test",
50
+ "test:update": "jest --updateSnapshot",
51
+ "prettier:write": "echo 'Deprecated command! Use \"npm run eslint:fix\" instead.' && exit 1",
52
+ "prettier:check": "echo 'Deprecated command! Use \"npm run eslint\" instead.' && exit 1",
53
+ "eslint": "npm run eslint:check:src && npm run eslint:check:tools",
54
+ "eslint:fix": "npm run eslint:check:src -- --fix && npm run eslint:check:tools -- --fix",
55
+ "eslint:check:src": "eslint --config .eslintrc \"src/**/*.{ts,tsx}\"",
56
+ "eslint:check:tools": "eslint --config tools/figma/.eslintrc \"tools/**/*.{ts,tsx}\"",
57
+ "start:storybook": "STORYBOOK_THEME=$THEME start-storybook -p 6006",
58
+ "start": "npm run build:generated && npm run start:storybook",
59
+ "figma:cached": "echo 'WARNING: Using local cache!' && USE_CACHE=true npm run figma",
60
+ "figma": "NODE_PATH=./ NODE_OPTIONS=--max-old-space-size=2800 ts-node --script-mode tools/figma/index.ts",
61
+ "release": "NODE_PATH=./ ts-node --script-mode tools/create-release-pr.ts",
62
+ "build:storybook": "npm run build && STORYBOOK_THEME=$THEME build-storybook -c .storybook -o storybook-static",
63
+ "build:generated": "npm run build:tailwind && npm run build:tailwind:json && npm run build:ds:icons",
64
+ "watch": "npm run build:generated && webpack --config=webpack.config.js --watch --progress",
65
+ "build": "npm run build:ds",
66
+ "build:ds": "npm run build:tailwind && npm run build:tailwind:timescale && npm run build:tailwind:json && npm run build:ds:style-dictionary && npm run build:ds:icons && npm run build:ds:module && npm run build:copy-files",
67
+ "build:ds:module": "npm run build:ds:tsc && cp tailwind.config.js dist/ && npm run build:ds:bundle -- --format=cjs --out-extension:.js=.cjs && npm run build:ds:bundle -- --format=esm --out-extension:.js=.mjs",
68
+ "build:ds:bundle": "node tools/esbuild.js",
69
+ "build:ds:icons": "node tools/svgIconsToDistModules.js",
70
+ "build:ds:tsc": "tsc --project tsconfig.module.json && tsc-alias --project tsconfig.module.json",
71
+ "build:tailwind": "postcss src/main.css -o dist/styles.css",
72
+ "build:tailwind:json": "NODE_PATH=./ node tools/resolveTailwindConfig.js > tailwind.theme.json",
73
+ "build:ds:style-dictionary": "npm run build:tailwind:sass && npm run build:tailwind:sass:timescale",
74
+ "build:tailwind:sass": "NODE_PATH=./ style-dictionary build --config ./style-dictionary.config.js",
75
+ "build:tailwind:sass:timescale": "THEME=timescale NODE_PATH=./ style-dictionary build --config ./style-dictionary.config.js",
76
+ "build:tailwind:timescale": "THEME=timescale postcss src/main.css -o dist/styles_timescaledb.css",
77
+ "build:copy-files": "echo 'Copying files that are not included by TS' && cp tailwind.theme.json dist/ && mkdir -p dist/src/js/ && cp src/js/resolveTheme.d.ts dist/src/js/",
78
+ "clean": "rm -rf .cache dist/",
79
+ "verify-declaration-file-exists": "[ -e \"./dist/src/system.d.ts\" ] && echo \"Declaration file was generated\" || (echo \"Error: declaration file wasn't generated\"; false)"
80
+ },
81
+ "author": "",
82
+ "license": "Apache-2.0",
83
+ "devDependencies": {
84
+ "@aitodotai/json-stringify-pretty-compact": "^1.3.0",
85
+ "@aivenio/eslint-config-aiven": "^1.3.0",
86
+ "@babel/core": "^7.13.10",
87
+ "@iconify/tools": "^2.0.14",
88
+ "@storybook/addon-a11y": "^6.5.13",
89
+ "@storybook/addon-essentials": "^6.5.13",
90
+ "@storybook/addon-links": "^6.5.13",
91
+ "@storybook/addon-postcss": "^2.0.0",
92
+ "@storybook/addon-toolbars": "^6.5.13",
93
+ "@storybook/addons": "^6.5.13",
94
+ "@storybook/builder-webpack5": "^6.5.13",
95
+ "@storybook/manager-webpack5": "^6.5.13",
96
+ "@storybook/preset-typescript": "^3.0.0",
97
+ "@storybook/react": "^6.5.13",
98
+ "@testing-library/dom": "^8.19.0",
99
+ "@testing-library/jest-dom": "^5.16.5",
100
+ "@testing-library/react": "^12.1.5",
101
+ "@testing-library/react-hooks": "^8.0.1",
102
+ "@testing-library/user-event": "^14.4.3",
103
+ "@types/common-tags": "^1.8.0",
104
+ "@types/convict": "^6.0.1",
105
+ "@types/jest": "^29.2.2",
106
+ "@types/lodash": "^4.14.168",
107
+ "@types/react-dom": "^17.0.3",
108
+ "@types/tailwindcss": "^3.0.11",
109
+ "@typescript-eslint/eslint-plugin": "^4.18.0",
110
+ "@typescript-eslint/parser": "^4.18.0",
111
+ "@zerollup/ts-transform-paths": "^1.7.18",
112
+ "arg": "^5.0.0",
113
+ "autoprefixer": "^10.3.2",
114
+ "chalk": "^4.1.0",
115
+ "common-tags": "^1.8.0",
116
+ "convict": "^6.0.1",
117
+ "css-loader": "^5.1.3",
118
+ "css-minimizer-webpack-plugin": "^1.2.0",
119
+ "cssnano": "^4.1.10",
120
+ "esbuild": "^0.15.8",
121
+ "eslint": "^7.22.0",
122
+ "eslint-config-prettier": "^8.4.0",
123
+ "eslint-plugin-design-system": "file:contrib/dev/eslint",
124
+ "eslint-plugin-import": "^2.25.4",
125
+ "eslint-plugin-jsx-a11y": "^6.5.1",
126
+ "eslint-plugin-prettier": "^4.0.0",
127
+ "eslint-plugin-react": "^7.29.0",
128
+ "eslint-plugin-sonarjs": "^0.12.0",
129
+ "eslint-plugin-unused-imports": "^1.1.1",
130
+ "figma-js": "^1.15.0",
131
+ "fp-ts": "^2.9.5",
132
+ "fp-ts-contrib": "^0.1.21",
133
+ "jest": "^29.3.1",
134
+ "jest-environment-jsdom": "^29.3.1",
135
+ "lodash": "^4.17.21",
136
+ "log-watcher-webpack-plugin": "^1.0.4",
137
+ "mini-css-extract-plugin": "^1.3.9",
138
+ "open": "^8.0.5",
139
+ "postcss": "^8.3.6",
140
+ "postcss-cli": "^8.3.1",
141
+ "postcss-import": "^14.0.2",
142
+ "postcss-preset-env": "^6.7.0",
143
+ "postcss-reporter": "^7.0.5",
144
+ "postcss-ts-classnames": "^0.3.0",
145
+ "prettier": "^2.2.1",
146
+ "react": "^17.0.2",
147
+ "react-dom": "^17.0.2",
148
+ "style-dictionary": "^3.7.0",
149
+ "tailwindcss": "^3.1.4",
150
+ "tailwindcss-children": "^2.1.0",
151
+ "ts-jest": "^29.0.3",
152
+ "ts-loader": "^8.3.0",
153
+ "ts-node": "^10.9.1",
154
+ "tsc-alias": "^1.7.0",
155
+ "typescript": "^4.8.4",
156
+ "webpack": "^5.73.0",
157
+ "webpack-bundle-analyzer": "^4.5.0",
158
+ "webpack-cli": "^4.10.0",
159
+ "yaml": "^2.1.1"
160
+ },
161
+ "dependencies": {
162
+ "@iconify/react": "^3.1.4",
163
+ "@iconify/types": "^1.0.12",
164
+ "@popperjs/core": "^2.11.5",
165
+ "classnames": "^2.3.1",
166
+ "downshift": "^7.0.1",
167
+ "match-sorter": "^6.3.1",
168
+ "react-aria": "^3.20.0",
169
+ "react-popper": "^2.3.0",
170
+ "react-stately": "^3.18.0"
171
+ },
172
+ "peerDependencies": {
173
+ "lodash": "4.x",
174
+ "react": "16.x || 17.x",
175
+ "react-dom": "16.x || 17.x"
176
+ },
177
+ "browserslist": [
178
+ "defaults"
179
+ ],
180
+ "resolutions": {
181
+ "webpack": "^5"
182
+ }
183
+ }