@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/LICENSE ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2021 Aiven Oy
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,190 @@
1
+ # Aiven Aquarium Design System
2
+
3
+ Implementation of Aiven Aquarium design system, released as an npm package. Quick tour:
4
+
5
+ - We use Figma to design the system. The design tokens are controlled in a Figma page _(see [example page](https://www.figma.com/file/GR4yS2Es6wuA33JfT9NdAH/Design-System-Tokens?node-id=8916%3A120229))_, which are synced [automatically](tools/figma/) to [tokens.json](tokens.json)
6
+ - Component implementation uses [design tokens](https://uxdesign.cc/design-tokens-for-dummies-8acebf010d71) to define their visual look. This will make updating the visuals easier in the future by changing the tokens.
7
+ - Aquarium design system implementation is exposed as React components via npm
8
+ - [Tailwind](https://tailwindcss.com/) is used for styling
9
+
10
+ ## Installing into your app
11
+
12
+ - `npm install --save @aivenio/aquarium`
13
+ - Make sure to add the correct fonts in your app. [Inter](https://fonts.google.com/specimen/Inter) for Aiven theme.
14
+ - Import the CSS to your app
15
+
16
+ - Aiven theme with `import '@aivenio/aquarium/dist/styles.css`
17
+ - If you used `THEME=X npm run build` for building, use `import '@aivenio/aquarium/dist/styles_X.css`
18
+
19
+ - Add React context component to the root of your React app
20
+
21
+ ```diff
22
+ import MyApp from './MyApp';
23
+ + import { Context } from '@aivenio/aquarium';
24
+
25
+ const Root = () => (
26
+ return (
27
+ + <Context>
28
+ <MyApp />
29
+ + </Context>
30
+ )
31
+ )
32
+ ```
33
+
34
+ ## Developing the Aquarium components
35
+
36
+ **Use npm 7!** With older npm versions, install peerDependencies manually. If you encounter "Cannot find module..." errors, try `rm -rf node_modules && npm i`. This seems to be a bug introduced in npm@7.
37
+
38
+ ### Environment setup
39
+
40
+ This project requires certain environment variables to be set before commands such as `npm run build` will work. Most can be copy/pasted with the help of your teammates, but you will need to generate a NPM token yourself in order.
41
+
42
+ - Create an npm account [here](https://www.npmjs.com/signup) if you don't already have one.
43
+ - Generate a token for your account. You can read about how to do so [here](https://docs.npmjs.com/creating-and-viewing-access-tokens). For the purposes of building the project, read-only access will suffice.
44
+ - Copy the sample environment file: `cp .env.sample env`
45
+ - Add the necessary data into the newly-created `.env` file.
46
+ - Source the `.env` file for the environment variables to be set: `source .env`
47
+
48
+ Note that any time a new shell instance is created (for example, when you restart your computer), you need to run `source .env` again, or the variables won't be set. Consider using a solution such as `autoenv` to automatically apply the `.env` file.
49
+
50
+ - `npm ci` to install dependencies
51
+ - `npm run build` to build the project
52
+ - `npm start` to start Storybook
53
+
54
+ After Figma has been edited, run:
55
+
56
+ - `npm run figma -- sync` to fetch new tokens to `./tokens.json`
57
+ - `npm run build` to re-create automatically generated files
58
+
59
+ ### Optional DX improvements
60
+
61
+ - For VSCode
62
+ - Install Tailwind CSS IntelliSense extension. See <https://github.com/tailwindlabs/tailwindcss-intellisense#recommended-vs-code-settings>
63
+ - Install ESLint extension and optionally enable auto-format on save. See _"Step 4 — Formatting on Save"_ from <https://www.digitalocean.com/community/tutorials/linting-and-formatting-with-eslint-in-vs-code>
64
+
65
+ ### npm link
66
+
67
+ To develop Aquarium components in the context of an application, it is easier to do it with [npm link](https://docs.npmjs.com/cli/v7/commands/npm-link). It allows you to make changes to components, and instantly see the change in the context of the app (e.g. Console).
68
+
69
+ 1. In design-system directory, run `npm link`
70
+ 2. In design-system directory, run `npm link <path to app>/node_modules/react` to avoid running into conflict of having two react instances. This will otherwise break the rules of hooks and crash the app. More info on the issue [here](https://reactjs.org/warnings/invalid-hook-call-warning.html#duplicate-react). If the command fails with errors about peer dependencies, re-run the command, adding `--force` at the end.
71
+ 3. In the app directory, run `npm link @aivenio/aquarium`
72
+ 4. Now `<app>/node_modules/@aivenio/aquarium` is a symlink to your local Aquarium directory.
73
+ 5. In design-system directory, run `npm run watch`
74
+ 6. Done! Now you should be able to develop DS locally, and changes are reflected to the application which depends on `@aivenio/aquarium`
75
+ 7. When you want to stop using the npm link, and go back to the regular imported version, in your app directory, run `npm unlink --no-save @aivenio/aquarium`, then `npm i` to reinstall the dependency.
76
+
77
+ ### Running tests
78
+
79
+ Remember that `source .env` is needed before NPM commands.
80
+
81
+ - `npm test` to run all tests once
82
+ - `npm test -- Button` to run only tests matching `Button`
83
+ - `npm run test:watch` to run tests in watch mode
84
+ - `npm run test:coverage` to run all tests and see the coverage
85
+
86
+ Note! It's good idea to run tests in watch mode when developing. If for example snapshot tests fail due to some code changes it's easy to update those with the jest commandline tool. If you want to just update the snapshots that can be done with `jest --updateSnapshot`. More information [here](https://jestjs.io/docs/en/snapshot-testing#updating-snapshots)
87
+
88
+ ### Other useful commands
89
+
90
+ - `THEME=<brand> npm start` to start local storybook with a theme
91
+ - `THEME=<brand> npm run build` to build DS module with a theme
92
+ - `npm run figma -- sync -i .figma-file.json` to generate `./tokens.json` but using previously fetched local file instead of fetching the huge Figma file from API.
93
+ - `npm run figma -- sync --debug` to enable more verbose output
94
+ - `npm run figma -- sync --foundation-page-name 'my foundations'` to override options.
95
+ - `jq '.document.children[] | select(.id == "8916:120229")' .cache/figma-file.json` to slice Foundations page from whole Figma file JSON.
96
+
97
+ There is [more documentation](tools/figma/readme.md) for the Figma sync tool.
98
+
99
+ ## Build and release process
100
+
101
+ ### Storybook
102
+
103
+ #### To build storybook locally
104
+
105
+ Run `npm run build:storybook`.
106
+
107
+ #### Storybook deploy
108
+
109
+ Storybook is deployed to Cloudflare Pages everytime new code is merged to main.
110
+
111
+ ### Aquarium package
112
+
113
+ #### How to build Aquarium package locally
114
+
115
+ - run `npm run build:ds`
116
+ - see `dist` for the built code
117
+
118
+ #### How to create a release
119
+
120
+ 1. Run `npm run release -- --bump <bump>` _(all the dashes are needed)_ where bump is one of `major`, `minor` or `patch`.
121
+
122
+ This command will automatically checkout a release branch, commit the version bump, and open your browser to submit a PR.
123
+
124
+ 2. Review the PR created, and merge it to main. GH actions will handle the rest.
125
+
126
+ **Any API breaking change should be a major version bump and should be mentioned in release notes!**
127
+
128
+ #### Breaking changes
129
+
130
+ Breaking change examples:
131
+
132
+ - Rename a prop in Button component
133
+ - Rename Card component to Box
134
+ - Remove a prop
135
+ - Remove a component
136
+
137
+ These are not breaking changes:
138
+
139
+ - Add a new prop for Button
140
+ - Add a new component
141
+ - Changing storybook
142
+ - Changing tests
143
+
144
+ ## Background
145
+
146
+ A lot of research was done into existing design systems, and if we could reuse
147
+ parts of them. The conclusion was that we take mostly inspiration of the good
148
+ ideas, and maybe use individual components by copy pasting code to our system.
149
+
150
+ ### Evaluation of existing React libraries
151
+
152
+ Some of the projects are huge, the link most commonly points directly to the part of the code base which defines the components. For tests, I checked that tests for a few components look OK, no coverage or deeper analysis done.
153
+
154
+ Next things to consider:
155
+
156
+ - Is treeshaking possible when using just parts of the library? Size of the dist is also important factor, but after treeshaking the footprint should be quite similar across libraries
157
+ - Maturity and activeness (commits, recent activity, contributor distribution, closed vs open issues, PR merging activity)
158
+ - Are they migrating to another tech ? JS -> TS, Sass -> styled-components, etc
159
+ - Owners, is it community driven or company driven? Project with 13 stars can be super mature if it's been developed internally in a company for 20k commits for N years
160
+ - Accessibility
161
+ - Customizability, do you need to fork or can you customise while getting upstream updates?
162
+
163
+ | Link | Commits\* | JS/TS | Styling | License | Tests | Other |
164
+ | --------------------------------------------------------------------------------------------------------------- | --------- | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ------------ |
165
+ | [Ant Design](https://github.com/ant-design/ant-design/tree/master/components) | 18.6k | TS | Less. [example](https://github.com/ant-design/ant-design/blob/master/components/card/style/index.less) | MIT | ☑️ |
166
+ | [Aragon UI](https://github.com/aragon/aragon-ui/blob/master/src/components/) | 0.8k | JS | styled-components | MIT | [Not much](https://github.com/aragon/aragon-ui/search?q=test&unscoped_q=test) |
167
+ | [Baseweb by Uber](https://github.com/uber/baseweb/tree/master/src) | 2.3k | JS (Flow) | [style-tron](https://github.com/styletron/styletron) | MIT | ☑️ |
168
+ | [Basis](https://github.com/moroshko/basis/blob/master/src/components) | 0.3k | JS | emotion | MIT | ☑️ |
169
+ | [Blueprint](https://github.com/palantir/blueprint/tree/develop/packages/core/src/components) | 1.8k | TS | Sass | Apache 2.0 | ☑️ |
170
+ | [Carbon](https://github.com/carbon-design-system/carbon/tree/master/packages/react/src) | 6.8k | JS | CSS classnames linking to [Sass](https://github.com/carbon-design-system/carbon/blob/master/packages/components/src/components/button/_button.scss) | Apache 2.0 | ☑️ | ☑️ Storybook |
171
+ | [Fluent UI by Microsoft](https://github.com/microsoft/fluentui/tree/master/packages/office-ui-fabric-react/src) | 8.6k | TS | CSS in JS, seems to be a [custom one](https://github.com/microsoft/fluentui/blob/master/packages/utilities/src/styled.tsx) | MIT | ☑️ |
172
+ | [Grommet](https://github.com/grommet/grommet/blob/master/src/js/components/) | 5.2k | JS | styled-components | Apache 2.0 | ☑️ | ☑️ Storybook |
173
+ | [Material UI](https://github.com/mui-org/material-ui/tree/master/packages/material-ui/src) | 11.9k | JS | CLSX, CSS in JS. [Example](https://github.com/mui-org/material-ui/blob/edb2d6382e271dbfc28384b10c417c0f5843e8f8/packages/material-ui/src/Button/Button.js#L9) | MIT | ☑️ |
174
+ | [MongoDB design](https://github.com/mongodb/design/tree/master/client/react-components) | 0.4k | JS | CSS | package.json says MIT, no LICENSE file | [No](https://github.com/mongodb/design/search?q=test&unscoped_q=test) |
175
+ | [Pivotal UI](https://github.com/pivotal-cf/pivotal-ui/tree/master/src/react) | 4.0k | JS | Sass | MIT | ☑️ |
176
+ | [Polaris by Shopify](https://github.com/Shopify/polaris-react/tree/master/src/components) | 6.1k | TS | Sass | Modified MIT, [see more](https://github.com/Shopify/polaris-react#licenses) | ☑️ |
177
+ | [Primer by GitHub](https://github.com/primer/components/tree/master/src) | 4.5k | JS | styled-components | MIT | ☑️ |
178
+ | [React Bootstrap](https://github.com/react-bootstrap/react-bootstrap/tree/master/src) | 3.8k | JS | Bootstrap CSS classes | MIT (also Bootstrap is MIT) | ☑️ |
179
+ | [Reactstrap](https://github.com/reactstrap/reactstrap/tree/master/src) | 0.8k | JS | Bootstrap CSS classes | MIT | ☑️ |
180
+ | [RMWC](https://github.com/jamesmfriedman/rmwc/tree/master/src) | 1.9k | JS | CSS classnames using [material-components-web](https://github.com/material-components/material-components-web/tree/master/packages/material-components-web) by Google (source is Sass) | MIT (also material-components-web is MIT) | ☑️ |
181
+ | [Salesforce Design System](https://github.com/salesforce-ux/design-system/tree/master/ui/components) | 9.5k | JS | Sass | Code BSD 3-Clause, see: <https://github.com/salesforce-ux/design-system#licenses> | ☑️ |
182
+ | [Thumbprint](https://github.com/thumbtack/thumbprint/tree/master/packages/thumbprint-react/components) | 0.7k | TS | Sass | Apache 2.0 | ☑️ |
183
+ | [VTEX Styleguide](https://github.com/vtex/styleguide/tree/master/react) | 4.3k | JS | Custom [Tachyons](https://vtex.github.io/vtex-tachyons/) classes + CSS. Example [implementation](https://github.com/vtex/styleguide/blob/master/react/components/Input/index.js) and [CSS](https://github.com/vtex/styleguide/blob/master/react/components/Input/Input.css) | [Unlicensed](https://github.com/vtex/styleguide/issues/625) | [Not much](https://github.com/vtex/styleguide/issues/1083) |
184
+ | [Zendesk Garden](https://github.com/zendeskgarden/react-components/tree/master/packages) | 0.8k | TS | styled-components | Apache 2.0 | ☑️ | ☑️ Storybook |
185
+
186
+ - Most of these repos are monorepos managed with Lerna. Commit count is just to give rough estimate of how much the code has been iterated.
187
+
188
+ For further investigation, you can find plenty of components in GitHub: <https://github.com/search?l=&p=99&q=created%3A%3E2015-01-01+extension%3Ajs+extension%3Ajsx+extension%3Ats+extension%3Atsx+size%3A%3E100+filename%3AButton.js+filename%3AButton.ts+filename%3AButton.jsx+filename%3AButton.tsx+filename%3Abutton.js+filename%3Abutton.ts+filename%3Abutton.jsx+filename%3Abutton.tsx&ref=advsearch&type=Code>
189
+
190
+ **You can find more design systems here:** <https://github.com/alexpate/awesome-design-systems>. Not all of them have open source code.
@@ -0,0 +1,155 @@
1
+
2
+ // Do not edit directly
3
+ // Generated on Wed, 30 Nov 2022 09:12:18 GMT
4
+
5
+ $border-radius-none: 0px !default;
6
+ $border-radius-sm: 0.125rem !default;
7
+ $border-radius-default: 4px !default;
8
+ $border-radius-md: 0.375rem !default;
9
+ $border-radius-lg: 0.5rem !default;
10
+ $border-radius-xl: 0.75rem !default;
11
+ $border-radius-2xl: 1rem !default;
12
+ $border-radius-3xl: 1.5rem !default;
13
+ $border-radius-full: 9999px !default;
14
+ $colors-error-100: #aa0000 !default;
15
+ $colors-error-90: #b90000 !default;
16
+ $colors-error-80: #c50001 !default;
17
+ $colors-error-70: #d80005 !default;
18
+ $colors-error-60: #e70000 !default;
19
+ $colors-error-50: #e62728 !default;
20
+ $colors-error-40: #e0504f !default;
21
+ $colors-error-30: #ed7975 !default;
22
+ $colors-error-20: #ffadb3 !default;
23
+ $colors-error-10: #ffcbd2 !default;
24
+ $colors-error-5: #fee8e7 !default;
25
+ $colors-error-0: #fef2f1 !default;
26
+ $colors-warning-100: #fe6d00 !default;
27
+ $colors-warning-90: #ff9003 !default;
28
+ $colors-warning-80: #fd9f00 !default;
29
+ $colors-warning-70: #ffb300 !default;
30
+ $colors-warning-60: #ffc107 !default;
31
+ $colors-warning-50: #fdc926 !default;
32
+ $colors-warning-40: #fdd44d !default;
33
+ $colors-warning-30: #fddf81 !default;
34
+ $colors-warning-20: #feebb2 !default;
35
+ $colors-warning-10: #fff2cd !default;
36
+ $colors-warning-5: #fff8ea !default;
37
+ $colors-warning-0: #fffdf9 !default;
38
+ $colors-success-100: #006f00 !default;
39
+ $colors-success-90: #008e00 !default;
40
+ $colors-success-80: #009f00 !default;
41
+ $colors-success-70: #00b300 !default;
42
+ $colors-success-60: #00c300 !default;
43
+ $colors-success-50: #40ce37 !default;
44
+ $colors-success-40: #60db57 !default;
45
+ $colors-success-30: #89eb80 !default;
46
+ $colors-success-20: #afffa7 !default;
47
+ $colors-success-10: #cbffc9 !default;
48
+ $colors-success-5: #ecf7ed !default;
49
+ $colors-success-0: #f5faf5 !default;
50
+ $colors-info-100: #02569a !default;
51
+ $colors-info-90: #0174ba !default;
52
+ $colors-info-80: #0788d1 !default;
53
+ $colors-info-70: #0399e3 !default;
54
+ $colors-info-60: #02a8f3 !default;
55
+ $colors-info-50: #28b4f4 !default;
56
+ $colors-info-40: #4cc2f7 !default;
57
+ $colors-info-30: #7fd1f7 !default;
58
+ $colors-info-20: #b4e5fb !default;
59
+ $colors-info-10: #e0f5fe !default;
60
+ $colors-info-5: #effaff !default;
61
+ $colors-info-0: #f9fdff !default;
62
+ $colors-grey-100: #19191d !default;
63
+ $colors-grey-90: #292a31 !default;
64
+ $colors-grey-80: #3a3a44 !default;
65
+ $colors-grey-70: #4a4b57 !default;
66
+ $colors-grey-60: #5a5b6a !default;
67
+ $colors-grey-50: #787885 !default;
68
+ $colors-grey-40: #9696a0 !default;
69
+ $colors-grey-30: #b4b4bb !default;
70
+ $colors-grey-10: #e1e1e3 !default;
71
+ $colors-grey-5: #ededf0 !default;
72
+ $colors-grey-0: #f7f7fa !default;
73
+ $colors-secondary-100: #e11d16 !default;
74
+ $colors-secondary-90: #eb4610 !default;
75
+ $colors-secondary-80: #f3580d !default;
76
+ $colors-secondary-70: #f96a02 !default;
77
+ $colors-secondary-60: #ff7700 !default;
78
+ $colors-secondary-50: #fc871a !default;
79
+ $colors-secondary-40: #fb9a3e !default;
80
+ $colors-secondary-30: #fab26e !default;
81
+ $colors-secondary-20: #f8c99c !default;
82
+ $colors-secondary-10: #fee8d0 !default;
83
+ $colors-secondary-5: #fff3e8 !default;
84
+ $colors-secondary-0: #fffbf8 !default;
85
+ $colors-primary-100: #a70045 !default;
86
+ $colors-primary-90: #c60443 !default;
87
+ $colors-primary-80: #e41a4a !default;
88
+ $colors-primary-70: #ff3554 !default;
89
+ $colors-primary-60: #ff5275 !default;
90
+ $colors-primary-50: #ff6f94 !default;
91
+ $colors-primary-40: #ff8db0 !default;
92
+ $colors-primary-30: #ffa9c9 !default;
93
+ $colors-primary-20: #ffc4de !default;
94
+ $colors-primary-10: #ffdeef !default;
95
+ $colors-primary-5: #ffe8f4 !default;
96
+ $colors-primary-0: #fff9fc !default;
97
+ $colors-grey-20: #d2d2d6 !default;
98
+ $colors-transparent: transparent !default;
99
+ $colors-white: white !default;
100
+ $colors-current: currentColor !default;
101
+ $colors-navy-blue-100: #30375E !default;
102
+ $box-shadow-24dp: 0px 24px 48px rgba(90, 91, 106, 0.08), 0px 12px 24px rgba(58, 58, 68, 0.08) !default;
103
+ $box-shadow-16dp: 0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12) !default;
104
+ $box-shadow-8dp: 0px 8px 16px rgba(90, 91, 106, 0.16), 0px 4px 8px rgba(58, 58, 68, 0.16) !default;
105
+ $box-shadow-4dp: 0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20) !default;
106
+ $box-shadow-2dp: 0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24) !default;
107
+ $screens-default: 0px !default;
108
+ $screens-xs: 320px !default;
109
+ $screens-sm: 672px !default;
110
+ $screens-md: 1056px !default;
111
+ $screens-lg: 1312px !default;
112
+ $screens-xl: 1536px !default;
113
+ $border-width-0: 0px !default;
114
+ $border-width-2: 2px !default;
115
+ $border-width-4: 4px !default;
116
+ $border-width-8: 8px !default;
117
+ $border-width-default: 1px !default;
118
+ $font-family-sans: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !default;
119
+ $font-family-serif: ui-serif,Georgia,Cambria,"Times New Roman",Times,serif !default;
120
+ $font-family-mono: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !default;
121
+ $font-size-xs: 0.75rem !default;
122
+ $font-size-xs-line-height: 1rem !default;
123
+ $font-size-sm: 0.875rem !default;
124
+ $font-size-sm-line-height: 1.25rem !default;
125
+ $font-size-base: 1rem !default;
126
+ $font-size-base-line-height: 1.5rem !default;
127
+ $font-size-lg: 1.125rem !default;
128
+ $font-size-lg-line-height: 1.75rem !default;
129
+ $font-size-xl: 1.25rem !default;
130
+ $font-size-xl-line-height: 1.75rem !default;
131
+ $font-size-2xl: 1.5rem !default;
132
+ $font-size-2xl-line-height: 2rem !default;
133
+ $font-size-3xl: 1.875rem !default;
134
+ $font-size-3xl-line-height: 2.25rem !default;
135
+ $font-size-4xl: 2.25rem !default;
136
+ $font-size-4xl-line-height: 2.5rem !default;
137
+ $font-size-5xl: 3rem !default;
138
+ $font-size-5xl-line-height: 1 !default;
139
+ $font-size-6xl: 3.75rem !default;
140
+ $font-size-6xl-line-height: 1 !default;
141
+ $font-size-7xl: 4.5rem !default;
142
+ $font-size-7xl-line-height: 1 !default;
143
+ $font-size-8xl: 6rem !default;
144
+ $font-size-8xl-line-height: 1 !default;
145
+ $font-size-9xl: 8rem !default;
146
+ $font-size-9xl-line-height: 1 !default;
147
+ $font-weight-thin: 100 !default;
148
+ $font-weight-extralight: 200 !default;
149
+ $font-weight-light: 300 !default;
150
+ $font-weight-normal: 400 !default;
151
+ $font-weight-medium: 500 !default;
152
+ $font-weight-semibold: 600 !default;
153
+ $font-weight-bold: 700 !default;
154
+ $font-weight-extrabold: 800 !default;
155
+ $font-weight-black: 900 !default;