@aivenio/aquarium 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1195) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +190 -0
  3. package/dist/_variables.scss +155 -0
  4. package/dist/_variables_timescale.scss +155 -0
  5. package/dist/atoms.cjs +3131 -0
  6. package/dist/atoms.mjs +3105 -0
  7. package/dist/src/common/Alert/Alert.d.ts +19 -0
  8. package/dist/src/common/Alert/Alert.js +74 -0
  9. package/dist/src/common/Banner/Banner.d.ts +24 -0
  10. package/dist/src/common/Banner/Banner.js +52 -0
  11. package/dist/src/common/Checkbox/Checkbox.d.ts +13 -0
  12. package/dist/src/common/Checkbox/Checkbox.js +35 -0
  13. package/dist/src/common/Chip/Chip.d.ts +11 -0
  14. package/dist/src/common/Chip/Chip.js +24 -0
  15. package/dist/src/common/Dialog/Dialog.d.ts +10 -0
  16. package/dist/src/common/Dialog/Dialog.js +18 -0
  17. package/dist/src/common/DropdownMenu/DropdownMenu.d.ts +33 -0
  18. package/dist/src/common/DropdownMenu/DropdownMenu.js +50 -0
  19. package/dist/src/common/InputGroup/InputGroup.d.ts +11 -0
  20. package/dist/src/common/InputGroup/InputGroup.js +24 -0
  21. package/dist/src/common/Modal/Modal.d.ts +28 -0
  22. package/dist/src/common/Modal/Modal.js +59 -0
  23. package/dist/src/common/Popover/Popover.d.ts +8 -0
  24. package/dist/src/common/Popover/Popover.js +21 -0
  25. package/dist/src/common/PopoverDialog/PopoverDialog.d.ts +11 -0
  26. package/dist/src/common/PopoverDialog/PopoverDialog.js +42 -0
  27. package/dist/src/common/ProgressBar/ProgressBar.d.ts +20 -0
  28. package/dist/src/common/ProgressBar/ProgressBar.js +36 -0
  29. package/dist/src/common/RadioButton/RadioButton.d.ts +11 -0
  30. package/dist/src/common/RadioButton/RadioButton.js +30 -0
  31. package/dist/src/common/Select/Select.d.ts +76 -0
  32. package/dist/src/common/Select/Select.js +118 -0
  33. package/dist/src/common/Table/Table.d.ts +49 -0
  34. package/dist/src/common/Table/Table.js +81 -0
  35. package/dist/src/common/Table/Table.utils.d.ts +19 -0
  36. package/dist/src/common/Table/Table.utils.js +41 -0
  37. package/dist/src/common/Typography/Typography.d.ts +11 -0
  38. package/dist/src/common/Typography/Typography.js +17 -0
  39. package/dist/src/common/index.d.ts +12 -0
  40. package/dist/src/common/index.js +13 -0
  41. package/dist/src/components/Alert/Alert.d.ts +18 -0
  42. package/dist/src/components/Alert/Alert.js +12 -0
  43. package/dist/src/components/Avatar/Avatar.d.ts +20 -0
  44. package/dist/src/components/Avatar/Avatar.js +9 -0
  45. package/dist/src/components/Badge/Badge.d.ts +36 -0
  46. package/dist/src/components/Badge/Badge.js +46 -0
  47. package/dist/src/components/Banner/Banner.d.ts +51 -0
  48. package/dist/src/components/Banner/Banner.js +45 -0
  49. package/dist/src/components/Box/Box.d.ts +53 -0
  50. package/dist/src/components/Box/Box.js +55 -0
  51. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +36 -0
  52. package/dist/src/components/Breadcrumbs/Breadcrumbs.js +86 -0
  53. package/dist/src/components/Button/Button.d.ts +134 -0
  54. package/dist/src/components/Button/Button.js +104 -0
  55. package/dist/src/components/Card/Card.d.ts +68 -0
  56. package/dist/src/components/Card/Card.js +46 -0
  57. package/dist/src/components/Checkbox/Checkbox.d.ts +10 -0
  58. package/dist/src/components/Checkbox/Checkbox.js +33 -0
  59. package/dist/src/components/CheckboxGroup/CheckboxGroup.d.ts +45 -0
  60. package/dist/src/components/CheckboxGroup/CheckboxGroup.js +60 -0
  61. package/dist/src/components/Chip/Chip.d.ts +76 -0
  62. package/dist/src/components/Chip/Chip.js +63 -0
  63. package/dist/src/components/ChoiceChip/ChoiceChip.d.ts +24 -0
  64. package/dist/src/components/ChoiceChip/ChoiceChip.js +34 -0
  65. package/dist/src/components/Combobox/Combobox.d.ts +30 -0
  66. package/dist/src/components/Combobox/Combobox.js +109 -0
  67. package/dist/src/components/Context/Context.d.ts +10 -0
  68. package/dist/src/components/Context/Context.js +18 -0
  69. package/dist/src/components/ControlLabel/ControlLabel.d.ts +12 -0
  70. package/dist/src/components/ControlLabel/ControlLabel.js +26 -0
  71. package/dist/src/components/DataTable/DataTable.d.ts +107 -0
  72. package/dist/src/components/DataTable/DataTable.js +54 -0
  73. package/dist/src/components/Dialog/Dialog.d.ts +19 -0
  74. package/dist/src/components/Dialog/Dialog.js +18 -0
  75. package/dist/src/components/Divider/Divider.d.ts +27 -0
  76. package/dist/src/components/Divider/Divider.js +47 -0
  77. package/dist/src/components/Dropdown/Dropdown.d.ts +28 -0
  78. package/dist/src/components/Dropdown/Dropdown.js +87 -0
  79. package/dist/src/components/DropdownMenu/DropdownMenu.d.ts +103 -0
  80. package/dist/src/components/DropdownMenu/DropdownMenu.js +131 -0
  81. package/dist/src/components/Element/Element.d.ts +10 -0
  82. package/dist/src/components/Element/Element.js +18 -0
  83. package/dist/src/components/EmptyState/EmptyState.d.ts +62 -0
  84. package/dist/src/components/EmptyState/EmptyState.js +74 -0
  85. package/dist/src/components/Flexbox/Flexbox.d.ts +20 -0
  86. package/dist/src/components/Flexbox/Flexbox.js +19 -0
  87. package/dist/src/components/Flexbox/FlexboxItem.d.ts +17 -0
  88. package/dist/src/components/Flexbox/FlexboxItem.js +16 -0
  89. package/dist/src/components/Grid/Grid.d.ts +32 -0
  90. package/dist/src/components/Grid/Grid.js +31 -0
  91. package/dist/src/components/Grid/GridItem.d.ts +21 -0
  92. package/dist/src/components/Grid/GridItem.js +20 -0
  93. package/dist/src/components/Icon/Icon.d.ts +9 -0
  94. package/dist/src/components/Icon/Icon.js +26 -0
  95. package/dist/src/components/Input/Input.d.ts +28 -0
  96. package/dist/src/components/Input/Input.js +79 -0
  97. package/dist/src/components/List/List.d.ts +19 -0
  98. package/dist/src/components/List/List.js +6 -0
  99. package/dist/src/components/ListItem/ListItem.d.ts +7 -0
  100. package/dist/src/components/ListItem/ListItem.js +10 -0
  101. package/dist/src/components/Modal/Modal.d.ts +31 -0
  102. package/dist/src/components/Modal/Modal.js +57 -0
  103. package/dist/src/components/MultiInput/InputChip.d.ts +8 -0
  104. package/dist/src/components/MultiInput/InputChip.js +37 -0
  105. package/dist/src/components/MultiInput/MultiInput.d.ts +35 -0
  106. package/dist/src/components/MultiInput/MultiInput.js +150 -0
  107. package/dist/src/components/MultiSelect/MultiSelect.d.ts +21 -0
  108. package/dist/src/components/MultiSelect/MultiSelect.js +134 -0
  109. package/dist/src/components/NativeSelect/NativeSelect.d.ts +19 -0
  110. package/dist/src/components/NativeSelect/NativeSelect.js +56 -0
  111. package/dist/src/components/PageHeader/PageHeader.d.ts +34 -0
  112. package/dist/src/components/PageHeader/PageHeader.js +40 -0
  113. package/dist/src/components/Pagination/Pagination.d.ts +37 -0
  114. package/dist/src/components/Pagination/Pagination.js +63 -0
  115. package/dist/src/components/Popover/Popover.d.ts +34 -0
  116. package/dist/src/components/Popover/Popover.js +79 -0
  117. package/dist/src/components/Popover/PopoverContext.d.ts +7 -0
  118. package/dist/src/components/Popover/PopoverContext.js +10 -0
  119. package/dist/src/components/Popover/PopoverWrapper.d.ts +15 -0
  120. package/dist/src/components/Popover/PopoverWrapper.js +36 -0
  121. package/dist/src/components/PopoverDialog/PopoverDialog.d.ts +12 -0
  122. package/dist/src/components/PopoverDialog/PopoverDialog.js +28 -0
  123. package/dist/src/components/Portal/Portal.d.ts +7 -0
  124. package/dist/src/components/Portal/Portal.js +3 -0
  125. package/dist/src/components/Positioner/Positioner.d.ts +21 -0
  126. package/dist/src/components/Positioner/Positioner.js +97 -0
  127. package/dist/src/components/ProgressBar/ProgressBar.d.ts +45 -0
  128. package/dist/src/components/ProgressBar/ProgressBar.js +21 -0
  129. package/dist/src/components/RadioButton/RadioButton.d.ts +10 -0
  130. package/dist/src/components/RadioButton/RadioButton.js +33 -0
  131. package/dist/src/components/RadioButtonGroup/RadioButtonGroup.d.ts +55 -0
  132. package/dist/src/components/RadioButtonGroup/RadioButtonGroup.js +64 -0
  133. package/dist/src/components/SegmentedControl/SegmentedControl.d.ts +23 -0
  134. package/dist/src/components/SegmentedControl/SegmentedControl.js +51 -0
  135. package/dist/src/components/Select/Select.d.ts +55 -0
  136. package/dist/src/components/Select/Select.js +143 -0
  137. package/dist/src/components/Skeleton/Skeleton.d.ts +25 -0
  138. package/dist/src/components/Skeleton/Skeleton.js +15 -0
  139. package/dist/src/components/Switch/Switch.d.ts +12 -0
  140. package/dist/src/components/Switch/Switch.js +51 -0
  141. package/dist/src/components/SwitchGroup/SwitchGroup.d.ts +45 -0
  142. package/dist/src/components/SwitchGroup/SwitchGroup.js +58 -0
  143. package/dist/src/components/Table/Table.d.ts +14 -0
  144. package/dist/src/components/Table/Table.js +31 -0
  145. package/dist/src/components/Tabs/Tabs.d.ts +91 -0
  146. package/dist/src/components/Tabs/Tabs.js +184 -0
  147. package/dist/src/components/TagLabel/TagLabel.d.ts +16 -0
  148. package/dist/src/components/TagLabel/TagLabel.js +21 -0
  149. package/dist/src/components/Tailwindify/Tailwindify.d.ts +38 -0
  150. package/dist/src/components/Tailwindify/Tailwindify.js +71 -0
  151. package/dist/src/components/Textarea/Textarea.d.ts +15 -0
  152. package/dist/src/components/Textarea/Textarea.js +44 -0
  153. package/dist/src/components/Tooltip/Tooltip.d.ts +44 -0
  154. package/dist/src/components/Tooltip/Tooltip.js +110 -0
  155. package/dist/src/components/Tooltip/useTooltipTriggerState.d.ts +19 -0
  156. package/dist/src/components/Tooltip/useTooltipTriggerState.js +142 -0
  157. package/dist/src/components/Typography/Typography.d.ts +11 -0
  158. package/dist/src/components/Typography/Typography.js +49 -0
  159. package/dist/src/components/index.d.ts +65 -0
  160. package/dist/src/components/index.js +62 -0
  161. package/dist/src/icons/add.d.ts +9 -0
  162. package/dist/src/icons/add.js +11 -0
  163. package/dist/src/icons/addColumnLeft.d.ts +9 -0
  164. package/dist/src/icons/addColumnLeft.js +11 -0
  165. package/dist/src/icons/addColumnRight.d.ts +9 -0
  166. package/dist/src/icons/addColumnRight.js +11 -0
  167. package/dist/src/icons/addRowBottom.d.ts +9 -0
  168. package/dist/src/icons/addRowBottom.js +11 -0
  169. package/dist/src/icons/addRowTop.d.ts +9 -0
  170. package/dist/src/icons/addRowTop.js +11 -0
  171. package/dist/src/icons/addToArtifact.d.ts +9 -0
  172. package/dist/src/icons/addToArtifact.js +11 -0
  173. package/dist/src/icons/addToFolder.d.ts +9 -0
  174. package/dist/src/icons/addToFolder.js +11 -0
  175. package/dist/src/icons/airplane.d.ts +9 -0
  176. package/dist/src/icons/airplane.js +11 -0
  177. package/dist/src/icons/alignCenter.d.ts +9 -0
  178. package/dist/src/icons/alignCenter.js +11 -0
  179. package/dist/src/icons/alignJustify.d.ts +9 -0
  180. package/dist/src/icons/alignJustify.js +11 -0
  181. package/dist/src/icons/alignLeft.d.ts +9 -0
  182. package/dist/src/icons/alignLeft.js +11 -0
  183. package/dist/src/icons/alignRight.d.ts +9 -0
  184. package/dist/src/icons/alignRight.js +11 -0
  185. package/dist/src/icons/alignmentBottom.d.ts +9 -0
  186. package/dist/src/icons/alignmentBottom.js +11 -0
  187. package/dist/src/icons/alignmentHorizontalCenter.d.ts +9 -0
  188. package/dist/src/icons/alignmentHorizontalCenter.js +11 -0
  189. package/dist/src/icons/alignmentLeft.d.ts +9 -0
  190. package/dist/src/icons/alignmentLeft.js +11 -0
  191. package/dist/src/icons/alignmentRight.d.ts +9 -0
  192. package/dist/src/icons/alignmentRight.js +11 -0
  193. package/dist/src/icons/alignmentTop.d.ts +9 -0
  194. package/dist/src/icons/alignmentTop.js +11 -0
  195. package/dist/src/icons/alignmentVerticalCenter.d.ts +9 -0
  196. package/dist/src/icons/alignmentVerticalCenter.js +11 -0
  197. package/dist/src/icons/annotation.d.ts +9 -0
  198. package/dist/src/icons/annotation.js +11 -0
  199. package/dist/src/icons/application.d.ts +9 -0
  200. package/dist/src/icons/application.js +11 -0
  201. package/dist/src/icons/applications.d.ts +9 -0
  202. package/dist/src/icons/applications.js +11 -0
  203. package/dist/src/icons/archive.d.ts +9 -0
  204. package/dist/src/icons/archive.js +11 -0
  205. package/dist/src/icons/arrowBottomLeft.d.ts +9 -0
  206. package/dist/src/icons/arrowBottomLeft.js +11 -0
  207. package/dist/src/icons/arrowBottomRight.d.ts +9 -0
  208. package/dist/src/icons/arrowBottomRight.js +11 -0
  209. package/dist/src/icons/arrowDown.d.ts +9 -0
  210. package/dist/src/icons/arrowDown.js +11 -0
  211. package/dist/src/icons/arrowLeft.d.ts +9 -0
  212. package/dist/src/icons/arrowLeft.js +11 -0
  213. package/dist/src/icons/arrowRight.d.ts +9 -0
  214. package/dist/src/icons/arrowRight.js +11 -0
  215. package/dist/src/icons/arrowTopLeft.d.ts +9 -0
  216. package/dist/src/icons/arrowTopLeft.js +11 -0
  217. package/dist/src/icons/arrowTopRight.d.ts +9 -0
  218. package/dist/src/icons/arrowTopRight.js +11 -0
  219. package/dist/src/icons/arrowUp.d.ts +9 -0
  220. package/dist/src/icons/arrowUp.js +11 -0
  221. package/dist/src/icons/arrowsHorizontal.d.ts +9 -0
  222. package/dist/src/icons/arrowsHorizontal.js +11 -0
  223. package/dist/src/icons/arrowsVertical.d.ts +9 -0
  224. package/dist/src/icons/arrowsVertical.js +11 -0
  225. package/dist/src/icons/asterisk.d.ts +9 -0
  226. package/dist/src/icons/asterisk.js +11 -0
  227. package/dist/src/icons/automaticUpdates.d.ts +9 -0
  228. package/dist/src/icons/automaticUpdates.js +11 -0
  229. package/dist/src/icons/badge.d.ts +9 -0
  230. package/dist/src/icons/badge.js +11 -0
  231. package/dist/src/icons/banCircle.d.ts +9 -0
  232. package/dist/src/icons/banCircle.js +11 -0
  233. package/dist/src/icons/bankAccount.d.ts +9 -0
  234. package/dist/src/icons/bankAccount.js +11 -0
  235. package/dist/src/icons/barcode.d.ts +9 -0
  236. package/dist/src/icons/barcode.js +11 -0
  237. package/dist/src/icons/blockedPerson.d.ts +9 -0
  238. package/dist/src/icons/blockedPerson.js +11 -0
  239. package/dist/src/icons/bold.d.ts +9 -0
  240. package/dist/src/icons/bold.js +11 -0
  241. package/dist/src/icons/book.d.ts +9 -0
  242. package/dist/src/icons/book.js +11 -0
  243. package/dist/src/icons/bookmark.d.ts +9 -0
  244. package/dist/src/icons/bookmark.js +11 -0
  245. package/dist/src/icons/box.d.ts +9 -0
  246. package/dist/src/icons/box.js +11 -0
  247. package/dist/src/icons/briefcase.d.ts +9 -0
  248. package/dist/src/icons/briefcase.js +11 -0
  249. package/dist/src/icons/bringData.d.ts +9 -0
  250. package/dist/src/icons/bringData.js +11 -0
  251. package/dist/src/icons/build.d.ts +9 -0
  252. package/dist/src/icons/build.js +11 -0
  253. package/dist/src/icons/calculator.d.ts +9 -0
  254. package/dist/src/icons/calculator.js +11 -0
  255. package/dist/src/icons/calendar.d.ts +9 -0
  256. package/dist/src/icons/calendar.js +11 -0
  257. package/dist/src/icons/camera.d.ts +9 -0
  258. package/dist/src/icons/camera.js +11 -0
  259. package/dist/src/icons/caretDown.d.ts +9 -0
  260. package/dist/src/icons/caretDown.js +11 -0
  261. package/dist/src/icons/caretLeft.d.ts +9 -0
  262. package/dist/src/icons/caretLeft.js +11 -0
  263. package/dist/src/icons/caretRight.d.ts +9 -0
  264. package/dist/src/icons/caretRight.js +11 -0
  265. package/dist/src/icons/caretUp.d.ts +9 -0
  266. package/dist/src/icons/caretUp.js +11 -0
  267. package/dist/src/icons/cellTower.d.ts +9 -0
  268. package/dist/src/icons/cellTower.js +11 -0
  269. package/dist/src/icons/changes.d.ts +9 -0
  270. package/dist/src/icons/changes.js +11 -0
  271. package/dist/src/icons/chart.d.ts +9 -0
  272. package/dist/src/icons/chart.js +11 -0
  273. package/dist/src/icons/chat.d.ts +9 -0
  274. package/dist/src/icons/chat.js +11 -0
  275. package/dist/src/icons/chevronBackward.d.ts +9 -0
  276. package/dist/src/icons/chevronBackward.js +11 -0
  277. package/dist/src/icons/chevronDown.d.ts +9 -0
  278. package/dist/src/icons/chevronDown.js +11 -0
  279. package/dist/src/icons/chevronForward.d.ts +9 -0
  280. package/dist/src/icons/chevronForward.js +11 -0
  281. package/dist/src/icons/chevronLeft.d.ts +9 -0
  282. package/dist/src/icons/chevronLeft.js +11 -0
  283. package/dist/src/icons/chevronRight.d.ts +9 -0
  284. package/dist/src/icons/chevronRight.js +11 -0
  285. package/dist/src/icons/chevronUp.d.ts +9 -0
  286. package/dist/src/icons/chevronUp.js +11 -0
  287. package/dist/src/icons/circle.d.ts +9 -0
  288. package/dist/src/icons/circle.js +11 -0
  289. package/dist/src/icons/circleArrowDown.d.ts +9 -0
  290. package/dist/src/icons/circleArrowDown.js +11 -0
  291. package/dist/src/icons/circleArrowLeft.d.ts +9 -0
  292. package/dist/src/icons/circleArrowLeft.js +11 -0
  293. package/dist/src/icons/circleArrowRight.d.ts +9 -0
  294. package/dist/src/icons/circleArrowRight.js +11 -0
  295. package/dist/src/icons/circleArrowUp.d.ts +9 -0
  296. package/dist/src/icons/circleArrowUp.js +11 -0
  297. package/dist/src/icons/citation.d.ts +9 -0
  298. package/dist/src/icons/citation.js +11 -0
  299. package/dist/src/icons/clean.d.ts +9 -0
  300. package/dist/src/icons/clean.js +11 -0
  301. package/dist/src/icons/clipboard.d.ts +9 -0
  302. package/dist/src/icons/clipboard.js +11 -0
  303. package/dist/src/icons/cloud.d.ts +9 -0
  304. package/dist/src/icons/cloud.js +11 -0
  305. package/dist/src/icons/cloudDownload.d.ts +9 -0
  306. package/dist/src/icons/cloudDownload.js +11 -0
  307. package/dist/src/icons/cloudUpload.d.ts +9 -0
  308. package/dist/src/icons/cloudUpload.js +11 -0
  309. package/dist/src/icons/code.d.ts +9 -0
  310. package/dist/src/icons/code.js +11 -0
  311. package/dist/src/icons/codeBlock.d.ts +9 -0
  312. package/dist/src/icons/codeBlock.js +11 -0
  313. package/dist/src/icons/cog.d.ts +9 -0
  314. package/dist/src/icons/cog.js +11 -0
  315. package/dist/src/icons/collapseAll.d.ts +9 -0
  316. package/dist/src/icons/collapseAll.js +11 -0
  317. package/dist/src/icons/columnLayout.d.ts +9 -0
  318. package/dist/src/icons/columnLayout.js +11 -0
  319. package/dist/src/icons/comment.d.ts +9 -0
  320. package/dist/src/icons/comment.js +11 -0
  321. package/dist/src/icons/comparison.d.ts +9 -0
  322. package/dist/src/icons/comparison.js +11 -0
  323. package/dist/src/icons/compass.d.ts +9 -0
  324. package/dist/src/icons/compass.js +11 -0
  325. package/dist/src/icons/compressed.d.ts +9 -0
  326. package/dist/src/icons/compressed.js +11 -0
  327. package/dist/src/icons/confirm.d.ts +9 -0
  328. package/dist/src/icons/confirm.js +11 -0
  329. package/dist/src/icons/console.d.ts +9 -0
  330. package/dist/src/icons/console.js +11 -0
  331. package/dist/src/icons/contrast.d.ts +9 -0
  332. package/dist/src/icons/contrast.js +11 -0
  333. package/dist/src/icons/control.d.ts +9 -0
  334. package/dist/src/icons/control.js +11 -0
  335. package/dist/src/icons/creditCard.d.ts +9 -0
  336. package/dist/src/icons/creditCard.js +11 -0
  337. package/dist/src/icons/cross.d.ts +9 -0
  338. package/dist/src/icons/cross.js +11 -0
  339. package/dist/src/icons/crown.d.ts +9 -0
  340. package/dist/src/icons/crown.js +11 -0
  341. package/dist/src/icons/cube.d.ts +9 -0
  342. package/dist/src/icons/cube.js +11 -0
  343. package/dist/src/icons/cubeAdd.d.ts +9 -0
  344. package/dist/src/icons/cubeAdd.js +11 -0
  345. package/dist/src/icons/cubeRemove.d.ts +9 -0
  346. package/dist/src/icons/cubeRemove.js +11 -0
  347. package/dist/src/icons/curvedRangeChart.d.ts +9 -0
  348. package/dist/src/icons/curvedRangeChart.js +11 -0
  349. package/dist/src/icons/cut.d.ts +9 -0
  350. package/dist/src/icons/cut.js +11 -0
  351. package/dist/src/icons/dashboard.d.ts +9 -0
  352. package/dist/src/icons/dashboard.js +11 -0
  353. package/dist/src/icons/dataLineage.d.ts +9 -0
  354. package/dist/src/icons/dataLineage.js +11 -0
  355. package/dist/src/icons/database.d.ts +9 -0
  356. package/dist/src/icons/database.js +11 -0
  357. package/dist/src/icons/delete.d.ts +9 -0
  358. package/dist/src/icons/delete.js +11 -0
  359. package/dist/src/icons/delta.d.ts +9 -0
  360. package/dist/src/icons/delta.js +11 -0
  361. package/dist/src/icons/deriveColumn.d.ts +9 -0
  362. package/dist/src/icons/deriveColumn.js +11 -0
  363. package/dist/src/icons/desktop.d.ts +9 -0
  364. package/dist/src/icons/desktop.js +11 -0
  365. package/dist/src/icons/diagnosis.d.ts +9 -0
  366. package/dist/src/icons/diagnosis.js +11 -0
  367. package/dist/src/icons/diagramTree.d.ts +9 -0
  368. package/dist/src/icons/diagramTree.js +11 -0
  369. package/dist/src/icons/directionLeft.d.ts +9 -0
  370. package/dist/src/icons/directionLeft.js +11 -0
  371. package/dist/src/icons/directionRight.d.ts +9 -0
  372. package/dist/src/icons/directionRight.js +11 -0
  373. package/dist/src/icons/disable.d.ts +9 -0
  374. package/dist/src/icons/disable.js +11 -0
  375. package/dist/src/icons/document.d.ts +9 -0
  376. package/dist/src/icons/document.js +11 -0
  377. package/dist/src/icons/documentOpen.d.ts +9 -0
  378. package/dist/src/icons/documentOpen.js +11 -0
  379. package/dist/src/icons/documentShare.d.ts +9 -0
  380. package/dist/src/icons/documentShare.js +11 -0
  381. package/dist/src/icons/dollar.d.ts +9 -0
  382. package/dist/src/icons/dollar.js +11 -0
  383. package/dist/src/icons/dot.d.ts +9 -0
  384. package/dist/src/icons/dot.js +11 -0
  385. package/dist/src/icons/doubleCaretHorizontal.d.ts +9 -0
  386. package/dist/src/icons/doubleCaretHorizontal.js +11 -0
  387. package/dist/src/icons/doubleCaretVertical.d.ts +9 -0
  388. package/dist/src/icons/doubleCaretVertical.js +11 -0
  389. package/dist/src/icons/doubleChevronDown.d.ts +9 -0
  390. package/dist/src/icons/doubleChevronDown.js +11 -0
  391. package/dist/src/icons/doubleChevronLeft.d.ts +9 -0
  392. package/dist/src/icons/doubleChevronLeft.js +11 -0
  393. package/dist/src/icons/doubleChevronRight.d.ts +9 -0
  394. package/dist/src/icons/doubleChevronRight.js +11 -0
  395. package/dist/src/icons/doubleChevronUp.d.ts +9 -0
  396. package/dist/src/icons/doubleChevronUp.js +11 -0
  397. package/dist/src/icons/doughnutChart.d.ts +9 -0
  398. package/dist/src/icons/doughnutChart.js +11 -0
  399. package/dist/src/icons/download.d.ts +9 -0
  400. package/dist/src/icons/download.js +11 -0
  401. package/dist/src/icons/dragHandleHorizontal.d.ts +9 -0
  402. package/dist/src/icons/dragHandleHorizontal.js +11 -0
  403. package/dist/src/icons/dragHandleVertical.d.ts +9 -0
  404. package/dist/src/icons/dragHandleVertical.js +11 -0
  405. package/dist/src/icons/draw.d.ts +9 -0
  406. package/dist/src/icons/draw.js +11 -0
  407. package/dist/src/icons/driveTime.d.ts +9 -0
  408. package/dist/src/icons/driveTime.js +11 -0
  409. package/dist/src/icons/duplicate.d.ts +9 -0
  410. package/dist/src/icons/duplicate.js +11 -0
  411. package/dist/src/icons/edit.d.ts +9 -0
  412. package/dist/src/icons/edit.js +11 -0
  413. package/dist/src/icons/eject.d.ts +9 -0
  414. package/dist/src/icons/eject.js +11 -0
  415. package/dist/src/icons/endorsed.d.ts +9 -0
  416. package/dist/src/icons/endorsed.js +11 -0
  417. package/dist/src/icons/envelope.d.ts +9 -0
  418. package/dist/src/icons/envelope.js +11 -0
  419. package/dist/src/icons/equals.d.ts +9 -0
  420. package/dist/src/icons/equals.js +11 -0
  421. package/dist/src/icons/eraser.d.ts +9 -0
  422. package/dist/src/icons/eraser.js +11 -0
  423. package/dist/src/icons/error.d.ts +9 -0
  424. package/dist/src/icons/error.js +11 -0
  425. package/dist/src/icons/euro.d.ts +9 -0
  426. package/dist/src/icons/euro.js +11 -0
  427. package/dist/src/icons/exchange.d.ts +9 -0
  428. package/dist/src/icons/exchange.js +11 -0
  429. package/dist/src/icons/excludeRow.d.ts +9 -0
  430. package/dist/src/icons/excludeRow.js +11 -0
  431. package/dist/src/icons/expandAll.d.ts +9 -0
  432. package/dist/src/icons/expandAll.js +11 -0
  433. package/dist/src/icons/export.d.ts +9 -0
  434. package/dist/src/icons/export.js +11 -0
  435. package/dist/src/icons/eyeOff.d.ts +9 -0
  436. package/dist/src/icons/eyeOff.js +11 -0
  437. package/dist/src/icons/eyeOn.d.ts +9 -0
  438. package/dist/src/icons/eyeOn.js +11 -0
  439. package/dist/src/icons/eyeOpen.d.ts +9 -0
  440. package/dist/src/icons/eyeOpen.js +11 -0
  441. package/dist/src/icons/fastBackward.d.ts +9 -0
  442. package/dist/src/icons/fastBackward.js +11 -0
  443. package/dist/src/icons/fastForward.d.ts +9 -0
  444. package/dist/src/icons/fastForward.js +11 -0
  445. package/dist/src/icons/feed.d.ts +9 -0
  446. package/dist/src/icons/feed.js +11 -0
  447. package/dist/src/icons/feedSubscribed.d.ts +9 -0
  448. package/dist/src/icons/feedSubscribed.js +11 -0
  449. package/dist/src/icons/film.d.ts +9 -0
  450. package/dist/src/icons/film.js +11 -0
  451. package/dist/src/icons/filter.d.ts +9 -0
  452. package/dist/src/icons/filter.js +11 -0
  453. package/dist/src/icons/filterKeep.d.ts +9 -0
  454. package/dist/src/icons/filterKeep.js +11 -0
  455. package/dist/src/icons/filterList.d.ts +9 -0
  456. package/dist/src/icons/filterList.js +11 -0
  457. package/dist/src/icons/filterOpen.d.ts +9 -0
  458. package/dist/src/icons/filterOpen.js +11 -0
  459. package/dist/src/icons/filterRemove.d.ts +9 -0
  460. package/dist/src/icons/filterRemove.js +11 -0
  461. package/dist/src/icons/flag.d.ts +9 -0
  462. package/dist/src/icons/flag.js +11 -0
  463. package/dist/src/icons/flame.d.ts +9 -0
  464. package/dist/src/icons/flame.js +11 -0
  465. package/dist/src/icons/flash.d.ts +9 -0
  466. package/dist/src/icons/flash.js +11 -0
  467. package/dist/src/icons/floppyDisk.d.ts +9 -0
  468. package/dist/src/icons/floppyDisk.js +11 -0
  469. package/dist/src/icons/flowBranch.d.ts +9 -0
  470. package/dist/src/icons/flowBranch.js +11 -0
  471. package/dist/src/icons/flowEnd.d.ts +9 -0
  472. package/dist/src/icons/flowEnd.js +11 -0
  473. package/dist/src/icons/flowLinear.d.ts +9 -0
  474. package/dist/src/icons/flowLinear.js +11 -0
  475. package/dist/src/icons/flowReview.d.ts +9 -0
  476. package/dist/src/icons/flowReview.js +11 -0
  477. package/dist/src/icons/flowReviewBranch.d.ts +9 -0
  478. package/dist/src/icons/flowReviewBranch.js +11 -0
  479. package/dist/src/icons/flows.d.ts +9 -0
  480. package/dist/src/icons/flows.js +11 -0
  481. package/dist/src/icons/folderClose.d.ts +9 -0
  482. package/dist/src/icons/folderClose.js +11 -0
  483. package/dist/src/icons/folderNew.d.ts +9 -0
  484. package/dist/src/icons/folderNew.js +11 -0
  485. package/dist/src/icons/folderOpen.d.ts +9 -0
  486. package/dist/src/icons/folderOpen.js +11 -0
  487. package/dist/src/icons/folderShared.d.ts +9 -0
  488. package/dist/src/icons/folderShared.js +11 -0
  489. package/dist/src/icons/folderSharedOpen.d.ts +9 -0
  490. package/dist/src/icons/folderSharedOpen.js +11 -0
  491. package/dist/src/icons/follower.d.ts +9 -0
  492. package/dist/src/icons/follower.js +11 -0
  493. package/dist/src/icons/following.d.ts +9 -0
  494. package/dist/src/icons/following.js +11 -0
  495. package/dist/src/icons/font.d.ts +9 -0
  496. package/dist/src/icons/font.js +11 -0
  497. package/dist/src/icons/fork.d.ts +9 -0
  498. package/dist/src/icons/fork.js +11 -0
  499. package/dist/src/icons/form.d.ts +9 -0
  500. package/dist/src/icons/form.js +11 -0
  501. package/dist/src/icons/fullCircle.d.ts +9 -0
  502. package/dist/src/icons/fullCircle.js +11 -0
  503. package/dist/src/icons/fullStackedChart.d.ts +9 -0
  504. package/dist/src/icons/fullStackedChart.js +11 -0
  505. package/dist/src/icons/fullscreen.d.ts +9 -0
  506. package/dist/src/icons/fullscreen.js +11 -0
  507. package/dist/src/icons/function.d.ts +9 -0
  508. package/dist/src/icons/function.js +11 -0
  509. package/dist/src/icons/ganttChart.d.ts +9 -0
  510. package/dist/src/icons/ganttChart.js +11 -0
  511. package/dist/src/icons/geolocation.d.ts +9 -0
  512. package/dist/src/icons/geolocation.js +11 -0
  513. package/dist/src/icons/geosearch.d.ts +9 -0
  514. package/dist/src/icons/geosearch.js +11 -0
  515. package/dist/src/icons/gitBranch.d.ts +9 -0
  516. package/dist/src/icons/gitBranch.js +11 -0
  517. package/dist/src/icons/gitCommit.d.ts +9 -0
  518. package/dist/src/icons/gitCommit.js +11 -0
  519. package/dist/src/icons/gitMerge.d.ts +9 -0
  520. package/dist/src/icons/gitMerge.js +11 -0
  521. package/dist/src/icons/gitNewBranch.d.ts +9 -0
  522. package/dist/src/icons/gitNewBranch.js +11 -0
  523. package/dist/src/icons/gitPull.d.ts +9 -0
  524. package/dist/src/icons/gitPull.js +11 -0
  525. package/dist/src/icons/gitPush.d.ts +9 -0
  526. package/dist/src/icons/gitPush.js +11 -0
  527. package/dist/src/icons/gitRepo.d.ts +9 -0
  528. package/dist/src/icons/gitRepo.js +11 -0
  529. package/dist/src/icons/glass.d.ts +9 -0
  530. package/dist/src/icons/glass.js +11 -0
  531. package/dist/src/icons/globe.d.ts +9 -0
  532. package/dist/src/icons/globe.js +11 -0
  533. package/dist/src/icons/globeNetwork.d.ts +9 -0
  534. package/dist/src/icons/globeNetwork.js +11 -0
  535. package/dist/src/icons/graph.d.ts +9 -0
  536. package/dist/src/icons/graph.js +11 -0
  537. package/dist/src/icons/graphRemove.d.ts +9 -0
  538. package/dist/src/icons/graphRemove.js +11 -0
  539. package/dist/src/icons/greaterThan.d.ts +9 -0
  540. package/dist/src/icons/greaterThan.js +11 -0
  541. package/dist/src/icons/greaterThanOrEqualTo.d.ts +9 -0
  542. package/dist/src/icons/greaterThanOrEqualTo.js +11 -0
  543. package/dist/src/icons/grid.d.ts +9 -0
  544. package/dist/src/icons/grid.js +11 -0
  545. package/dist/src/icons/gridView.d.ts +9 -0
  546. package/dist/src/icons/gridView.js +11 -0
  547. package/dist/src/icons/groupObjects.d.ts +9 -0
  548. package/dist/src/icons/groupObjects.js +11 -0
  549. package/dist/src/icons/groupedBarChart.d.ts +9 -0
  550. package/dist/src/icons/groupedBarChart.js +11 -0
  551. package/dist/src/icons/hand.d.ts +9 -0
  552. package/dist/src/icons/hand.js +11 -0
  553. package/dist/src/icons/handDown.d.ts +9 -0
  554. package/dist/src/icons/handDown.js +11 -0
  555. package/dist/src/icons/handLeft.d.ts +9 -0
  556. package/dist/src/icons/handLeft.js +11 -0
  557. package/dist/src/icons/handRight.d.ts +9 -0
  558. package/dist/src/icons/handRight.js +11 -0
  559. package/dist/src/icons/handUp.d.ts +9 -0
  560. package/dist/src/icons/handUp.js +11 -0
  561. package/dist/src/icons/header.d.ts +9 -0
  562. package/dist/src/icons/header.js +11 -0
  563. package/dist/src/icons/headerOne.d.ts +9 -0
  564. package/dist/src/icons/headerOne.js +11 -0
  565. package/dist/src/icons/headerTwo.d.ts +9 -0
  566. package/dist/src/icons/headerTwo.js +11 -0
  567. package/dist/src/icons/headset.d.ts +9 -0
  568. package/dist/src/icons/headset.js +11 -0
  569. package/dist/src/icons/heart.d.ts +9 -0
  570. package/dist/src/icons/heart.js +11 -0
  571. package/dist/src/icons/heartBroken.d.ts +9 -0
  572. package/dist/src/icons/heartBroken.js +11 -0
  573. package/dist/src/icons/heatGrid.d.ts +9 -0
  574. package/dist/src/icons/heatGrid.js +11 -0
  575. package/dist/src/icons/heatmap.d.ts +9 -0
  576. package/dist/src/icons/heatmap.js +11 -0
  577. package/dist/src/icons/help.d.ts +9 -0
  578. package/dist/src/icons/help.js +11 -0
  579. package/dist/src/icons/helperManagement.d.ts +9 -0
  580. package/dist/src/icons/helperManagement.js +11 -0
  581. package/dist/src/icons/highlight.d.ts +9 -0
  582. package/dist/src/icons/highlight.js +11 -0
  583. package/dist/src/icons/history.d.ts +9 -0
  584. package/dist/src/icons/history.js +11 -0
  585. package/dist/src/icons/home.d.ts +9 -0
  586. package/dist/src/icons/home.js +11 -0
  587. package/dist/src/icons/horizontalBarChart.d.ts +9 -0
  588. package/dist/src/icons/horizontalBarChart.js +11 -0
  589. package/dist/src/icons/horizontalBarChartAsc.d.ts +9 -0
  590. package/dist/src/icons/horizontalBarChartAsc.js +11 -0
  591. package/dist/src/icons/horizontalBarChartDesc.d.ts +9 -0
  592. package/dist/src/icons/horizontalBarChartDesc.js +11 -0
  593. package/dist/src/icons/horizontalDistribution.d.ts +9 -0
  594. package/dist/src/icons/horizontalDistribution.js +11 -0
  595. package/dist/src/icons/idNumber.d.ts +9 -0
  596. package/dist/src/icons/idNumber.js +11 -0
  597. package/dist/src/icons/imageRotateLeft.d.ts +9 -0
  598. package/dist/src/icons/imageRotateLeft.js +11 -0
  599. package/dist/src/icons/imageRotateRight.d.ts +9 -0
  600. package/dist/src/icons/imageRotateRight.js +11 -0
  601. package/dist/src/icons/import.d.ts +9 -0
  602. package/dist/src/icons/import.js +11 -0
  603. package/dist/src/icons/inbox.d.ts +9 -0
  604. package/dist/src/icons/inbox.js +11 -0
  605. package/dist/src/icons/inboxFiltered.d.ts +9 -0
  606. package/dist/src/icons/inboxFiltered.js +11 -0
  607. package/dist/src/icons/inboxGeo.d.ts +9 -0
  608. package/dist/src/icons/inboxGeo.js +11 -0
  609. package/dist/src/icons/inboxSearch.d.ts +9 -0
  610. package/dist/src/icons/inboxSearch.js +11 -0
  611. package/dist/src/icons/inboxUpdate.d.ts +9 -0
  612. package/dist/src/icons/inboxUpdate.js +11 -0
  613. package/dist/src/icons/index.d.ts +490 -0
  614. package/dist/src/icons/index.js +490 -0
  615. package/dist/src/icons/infoSign.d.ts +9 -0
  616. package/dist/src/icons/infoSign.js +11 -0
  617. package/dist/src/icons/inheritance.d.ts +9 -0
  618. package/dist/src/icons/inheritance.js +11 -0
  619. package/dist/src/icons/innerJoin.d.ts +9 -0
  620. package/dist/src/icons/innerJoin.js +11 -0
  621. package/dist/src/icons/insert.d.ts +9 -0
  622. package/dist/src/icons/insert.js +11 -0
  623. package/dist/src/icons/intersection.d.ts +9 -0
  624. package/dist/src/icons/intersection.js +11 -0
  625. package/dist/src/icons/ipAddress.d.ts +9 -0
  626. package/dist/src/icons/ipAddress.js +11 -0
  627. package/dist/src/icons/issue.d.ts +9 -0
  628. package/dist/src/icons/issue.js +11 -0
  629. package/dist/src/icons/issueClosed.d.ts +9 -0
  630. package/dist/src/icons/issueClosed.js +11 -0
  631. package/dist/src/icons/issueNew.d.ts +9 -0
  632. package/dist/src/icons/issueNew.js +11 -0
  633. package/dist/src/icons/italic.d.ts +9 -0
  634. package/dist/src/icons/italic.js +11 -0
  635. package/dist/src/icons/joinTable.d.ts +9 -0
  636. package/dist/src/icons/joinTable.js +11 -0
  637. package/dist/src/icons/key.d.ts +9 -0
  638. package/dist/src/icons/key.js +11 -0
  639. package/dist/src/icons/keyBackspace.d.ts +9 -0
  640. package/dist/src/icons/keyBackspace.js +11 -0
  641. package/dist/src/icons/keyCommand.d.ts +9 -0
  642. package/dist/src/icons/keyCommand.js +11 -0
  643. package/dist/src/icons/keyControl.d.ts +9 -0
  644. package/dist/src/icons/keyControl.js +11 -0
  645. package/dist/src/icons/keyDelete.d.ts +9 -0
  646. package/dist/src/icons/keyDelete.js +11 -0
  647. package/dist/src/icons/keyEnter.d.ts +9 -0
  648. package/dist/src/icons/keyEnter.js +11 -0
  649. package/dist/src/icons/keyEscape.d.ts +9 -0
  650. package/dist/src/icons/keyEscape.js +11 -0
  651. package/dist/src/icons/keyOption.d.ts +9 -0
  652. package/dist/src/icons/keyOption.js +11 -0
  653. package/dist/src/icons/keyShift.d.ts +9 -0
  654. package/dist/src/icons/keyShift.js +11 -0
  655. package/dist/src/icons/keyTab.d.ts +9 -0
  656. package/dist/src/icons/keyTab.js +11 -0
  657. package/dist/src/icons/knownVehicle.d.ts +9 -0
  658. package/dist/src/icons/knownVehicle.js +11 -0
  659. package/dist/src/icons/labTest.d.ts +9 -0
  660. package/dist/src/icons/labTest.js +11 -0
  661. package/dist/src/icons/label.d.ts +9 -0
  662. package/dist/src/icons/label.js +11 -0
  663. package/dist/src/icons/layer.d.ts +9 -0
  664. package/dist/src/icons/layer.js +11 -0
  665. package/dist/src/icons/layers.d.ts +9 -0
  666. package/dist/src/icons/layers.js +11 -0
  667. package/dist/src/icons/layout.d.ts +9 -0
  668. package/dist/src/icons/layout.js +11 -0
  669. package/dist/src/icons/layoutAuto.d.ts +9 -0
  670. package/dist/src/icons/layoutAuto.js +11 -0
  671. package/dist/src/icons/layoutBalloon.d.ts +9 -0
  672. package/dist/src/icons/layoutBalloon.js +11 -0
  673. package/dist/src/icons/layoutCircle.d.ts +9 -0
  674. package/dist/src/icons/layoutCircle.js +11 -0
  675. package/dist/src/icons/layoutGrid.d.ts +9 -0
  676. package/dist/src/icons/layoutGrid.js +11 -0
  677. package/dist/src/icons/layoutGroupBy.d.ts +9 -0
  678. package/dist/src/icons/layoutGroupBy.js +11 -0
  679. package/dist/src/icons/layoutHierarchy.d.ts +9 -0
  680. package/dist/src/icons/layoutHierarchy.js +11 -0
  681. package/dist/src/icons/layoutLinear.d.ts +9 -0
  682. package/dist/src/icons/layoutLinear.js +11 -0
  683. package/dist/src/icons/layoutSkewGrid.d.ts +9 -0
  684. package/dist/src/icons/layoutSkewGrid.js +11 -0
  685. package/dist/src/icons/layoutSortedClusters.d.ts +9 -0
  686. package/dist/src/icons/layoutSortedClusters.js +11 -0
  687. package/dist/src/icons/learning.d.ts +9 -0
  688. package/dist/src/icons/learning.js +11 -0
  689. package/dist/src/icons/leftJoin.d.ts +9 -0
  690. package/dist/src/icons/leftJoin.js +11 -0
  691. package/dist/src/icons/lessThan.d.ts +9 -0
  692. package/dist/src/icons/lessThan.js +11 -0
  693. package/dist/src/icons/lessThanOrEqualTo.d.ts +9 -0
  694. package/dist/src/icons/lessThanOrEqualTo.js +11 -0
  695. package/dist/src/icons/lifesaver.d.ts +9 -0
  696. package/dist/src/icons/lifesaver.js +11 -0
  697. package/dist/src/icons/lightbulb.d.ts +9 -0
  698. package/dist/src/icons/lightbulb.js +11 -0
  699. package/dist/src/icons/link.d.ts +9 -0
  700. package/dist/src/icons/link.js +11 -0
  701. package/dist/src/icons/list.d.ts +9 -0
  702. package/dist/src/icons/list.js +11 -0
  703. package/dist/src/icons/listColumns.d.ts +9 -0
  704. package/dist/src/icons/listColumns.js +11 -0
  705. package/dist/src/icons/listDetailView.d.ts +9 -0
  706. package/dist/src/icons/listDetailView.js +11 -0
  707. package/dist/src/icons/loading.d.ts +9 -0
  708. package/dist/src/icons/loading.js +11 -0
  709. package/dist/src/icons/locate.d.ts +9 -0
  710. package/dist/src/icons/locate.js +11 -0
  711. package/dist/src/icons/lock.d.ts +9 -0
  712. package/dist/src/icons/lock.js +11 -0
  713. package/dist/src/icons/logIn.d.ts +9 -0
  714. package/dist/src/icons/logIn.js +11 -0
  715. package/dist/src/icons/logOut.d.ts +9 -0
  716. package/dist/src/icons/logOut.js +11 -0
  717. package/dist/src/icons/manual.d.ts +9 -0
  718. package/dist/src/icons/manual.js +11 -0
  719. package/dist/src/icons/manuallyEnteredData.d.ts +9 -0
  720. package/dist/src/icons/manuallyEnteredData.js +11 -0
  721. package/dist/src/icons/map.d.ts +9 -0
  722. package/dist/src/icons/map.js +11 -0
  723. package/dist/src/icons/mapCreate.d.ts +9 -0
  724. package/dist/src/icons/mapCreate.js +11 -0
  725. package/dist/src/icons/mapMarker.d.ts +9 -0
  726. package/dist/src/icons/mapMarker.js +11 -0
  727. package/dist/src/icons/maximize.d.ts +9 -0
  728. package/dist/src/icons/maximize.js +11 -0
  729. package/dist/src/icons/media.d.ts +9 -0
  730. package/dist/src/icons/media.js +11 -0
  731. package/dist/src/icons/menu.d.ts +9 -0
  732. package/dist/src/icons/menu.js +11 -0
  733. package/dist/src/icons/menuClosed.d.ts +9 -0
  734. package/dist/src/icons/menuClosed.js +11 -0
  735. package/dist/src/icons/menuOpen.d.ts +9 -0
  736. package/dist/src/icons/menuOpen.js +11 -0
  737. package/dist/src/icons/mergeColumns.d.ts +9 -0
  738. package/dist/src/icons/mergeColumns.js +11 -0
  739. package/dist/src/icons/mergeLinks.d.ts +9 -0
  740. package/dist/src/icons/mergeLinks.js +11 -0
  741. package/dist/src/icons/minimize.d.ts +9 -0
  742. package/dist/src/icons/minimize.js +11 -0
  743. package/dist/src/icons/minus.d.ts +9 -0
  744. package/dist/src/icons/minus.js +11 -0
  745. package/dist/src/icons/mobilePhone.d.ts +9 -0
  746. package/dist/src/icons/mobilePhone.js +11 -0
  747. package/dist/src/icons/mobileVideo.d.ts +9 -0
  748. package/dist/src/icons/mobileVideo.js +11 -0
  749. package/dist/src/icons/moon.d.ts +9 -0
  750. package/dist/src/icons/moon.js +11 -0
  751. package/dist/src/icons/more.d.ts +9 -0
  752. package/dist/src/icons/more.js +11 -0
  753. package/dist/src/icons/mountain.d.ts +9 -0
  754. package/dist/src/icons/mountain.js +11 -0
  755. package/dist/src/icons/move.d.ts +9 -0
  756. package/dist/src/icons/move.js +11 -0
  757. package/dist/src/icons/moveProject.d.ts +9 -0
  758. package/dist/src/icons/moveProject.js +11 -0
  759. package/dist/src/icons/mugshot.d.ts +9 -0
  760. package/dist/src/icons/mugshot.js +11 -0
  761. package/dist/src/icons/multiSelect.d.ts +9 -0
  762. package/dist/src/icons/multiSelect.js +11 -0
  763. package/dist/src/icons/music.d.ts +9 -0
  764. package/dist/src/icons/music.js +11 -0
  765. package/dist/src/icons/newDrawing.d.ts +9 -0
  766. package/dist/src/icons/newDrawing.js +11 -0
  767. package/dist/src/icons/newGridItem.d.ts +9 -0
  768. package/dist/src/icons/newGridItem.js +11 -0
  769. package/dist/src/icons/newLayer.d.ts +9 -0
  770. package/dist/src/icons/newLayer.js +11 -0
  771. package/dist/src/icons/newLayers.d.ts +9 -0
  772. package/dist/src/icons/newLayers.js +11 -0
  773. package/dist/src/icons/newLink.d.ts +9 -0
  774. package/dist/src/icons/newLink.js +11 -0
  775. package/dist/src/icons/newObject.d.ts +9 -0
  776. package/dist/src/icons/newObject.js +11 -0
  777. package/dist/src/icons/newPerson.d.ts +9 -0
  778. package/dist/src/icons/newPerson.js +11 -0
  779. package/dist/src/icons/newPrescription.d.ts +9 -0
  780. package/dist/src/icons/newPrescription.js +11 -0
  781. package/dist/src/icons/newTextBox.d.ts +9 -0
  782. package/dist/src/icons/newTextBox.js +11 -0
  783. package/dist/src/icons/ninja.d.ts +9 -0
  784. package/dist/src/icons/ninja.js +11 -0
  785. package/dist/src/icons/notEqualTo.d.ts +9 -0
  786. package/dist/src/icons/notEqualTo.js +11 -0
  787. package/dist/src/icons/notifications.d.ts +9 -0
  788. package/dist/src/icons/notifications.js +11 -0
  789. package/dist/src/icons/notificationsUpdated.d.ts +9 -0
  790. package/dist/src/icons/notificationsUpdated.js +11 -0
  791. package/dist/src/icons/numberedList.d.ts +9 -0
  792. package/dist/src/icons/numberedList.js +11 -0
  793. package/dist/src/icons/numerical.d.ts +9 -0
  794. package/dist/src/icons/numerical.js +11 -0
  795. package/dist/src/icons/office.d.ts +9 -0
  796. package/dist/src/icons/office.js +11 -0
  797. package/dist/src/icons/offline.d.ts +9 -0
  798. package/dist/src/icons/offline.js +11 -0
  799. package/dist/src/icons/oilField.d.ts +9 -0
  800. package/dist/src/icons/oilField.js +11 -0
  801. package/dist/src/icons/oneColumn.d.ts +9 -0
  802. package/dist/src/icons/oneColumn.js +11 -0
  803. package/dist/src/icons/outdated.d.ts +9 -0
  804. package/dist/src/icons/outdated.js +11 -0
  805. package/dist/src/icons/pageLayout.d.ts +9 -0
  806. package/dist/src/icons/pageLayout.js +11 -0
  807. package/dist/src/icons/panelStats.d.ts +9 -0
  808. package/dist/src/icons/panelStats.js +11 -0
  809. package/dist/src/icons/panelTable.d.ts +9 -0
  810. package/dist/src/icons/panelTable.js +11 -0
  811. package/dist/src/icons/paperclip.d.ts +9 -0
  812. package/dist/src/icons/paperclip.js +11 -0
  813. package/dist/src/icons/paragraph.d.ts +9 -0
  814. package/dist/src/icons/paragraph.js +11 -0
  815. package/dist/src/icons/path.d.ts +9 -0
  816. package/dist/src/icons/path.js +11 -0
  817. package/dist/src/icons/pathSearch.d.ts +9 -0
  818. package/dist/src/icons/pathSearch.js +11 -0
  819. package/dist/src/icons/pause.d.ts +9 -0
  820. package/dist/src/icons/pause.js +11 -0
  821. package/dist/src/icons/people.d.ts +9 -0
  822. package/dist/src/icons/people.js +11 -0
  823. package/dist/src/icons/percentage.d.ts +9 -0
  824. package/dist/src/icons/percentage.js +11 -0
  825. package/dist/src/icons/person.d.ts +9 -0
  826. package/dist/src/icons/person.js +11 -0
  827. package/dist/src/icons/phone.d.ts +9 -0
  828. package/dist/src/icons/phone.js +11 -0
  829. package/dist/src/icons/pieChart.d.ts +9 -0
  830. package/dist/src/icons/pieChart.js +11 -0
  831. package/dist/src/icons/pin.d.ts +9 -0
  832. package/dist/src/icons/pin.js +11 -0
  833. package/dist/src/icons/pivot.d.ts +9 -0
  834. package/dist/src/icons/pivot.js +11 -0
  835. package/dist/src/icons/pivotTable.d.ts +9 -0
  836. package/dist/src/icons/pivotTable.js +11 -0
  837. package/dist/src/icons/play.d.ts +9 -0
  838. package/dist/src/icons/play.js +11 -0
  839. package/dist/src/icons/plus.d.ts +9 -0
  840. package/dist/src/icons/plus.js +11 -0
  841. package/dist/src/icons/polygonFilter.d.ts +9 -0
  842. package/dist/src/icons/polygonFilter.js +11 -0
  843. package/dist/src/icons/power.d.ts +9 -0
  844. package/dist/src/icons/power.js +11 -0
  845. package/dist/src/icons/predictiveAnalysis.d.ts +9 -0
  846. package/dist/src/icons/predictiveAnalysis.js +11 -0
  847. package/dist/src/icons/prescription.d.ts +9 -0
  848. package/dist/src/icons/prescription.js +11 -0
  849. package/dist/src/icons/presentation.d.ts +9 -0
  850. package/dist/src/icons/presentation.js +11 -0
  851. package/dist/src/icons/print.d.ts +9 -0
  852. package/dist/src/icons/print.js +11 -0
  853. package/dist/src/icons/projects.d.ts +9 -0
  854. package/dist/src/icons/projects.js +11 -0
  855. package/dist/src/icons/properties.d.ts +9 -0
  856. package/dist/src/icons/properties.js +11 -0
  857. package/dist/src/icons/property.d.ts +9 -0
  858. package/dist/src/icons/property.js +11 -0
  859. package/dist/src/icons/publishFunction.d.ts +9 -0
  860. package/dist/src/icons/publishFunction.js +11 -0
  861. package/dist/src/icons/pulse.d.ts +9 -0
  862. package/dist/src/icons/pulse.js +11 -0
  863. package/dist/src/icons/questionMark.d.ts +9 -0
  864. package/dist/src/icons/questionMark.js +11 -0
  865. package/dist/src/icons/random.d.ts +9 -0
  866. package/dist/src/icons/random.js +11 -0
  867. package/dist/src/icons/record.d.ts +9 -0
  868. package/dist/src/icons/record.js +11 -0
  869. package/dist/src/icons/redo.d.ts +9 -0
  870. package/dist/src/icons/redo.js +11 -0
  871. package/dist/src/icons/refresh.d.ts +9 -0
  872. package/dist/src/icons/refresh.js +11 -0
  873. package/dist/src/icons/regressionChart.d.ts +9 -0
  874. package/dist/src/icons/regressionChart.js +11 -0
  875. package/dist/src/icons/remove.d.ts +9 -0
  876. package/dist/src/icons/remove.js +11 -0
  877. package/dist/src/icons/removeColumn.d.ts +9 -0
  878. package/dist/src/icons/removeColumn.js +11 -0
  879. package/dist/src/icons/removeColumnLeft.d.ts +9 -0
  880. package/dist/src/icons/removeColumnLeft.js +11 -0
  881. package/dist/src/icons/removeColumnRight.d.ts +9 -0
  882. package/dist/src/icons/removeColumnRight.js +11 -0
  883. package/dist/src/icons/removeRowBottom.d.ts +9 -0
  884. package/dist/src/icons/removeRowBottom.js +11 -0
  885. package/dist/src/icons/removeRowTop.d.ts +9 -0
  886. package/dist/src/icons/removeRowTop.js +11 -0
  887. package/dist/src/icons/repeat.d.ts +9 -0
  888. package/dist/src/icons/repeat.js +11 -0
  889. package/dist/src/icons/reset.d.ts +9 -0
  890. package/dist/src/icons/reset.js +11 -0
  891. package/dist/src/icons/resolve.d.ts +9 -0
  892. package/dist/src/icons/resolve.js +11 -0
  893. package/dist/src/icons/rig.d.ts +9 -0
  894. package/dist/src/icons/rig.js +11 -0
  895. package/dist/src/icons/rightJoin.d.ts +9 -0
  896. package/dist/src/icons/rightJoin.js +11 -0
  897. package/dist/src/icons/ring.d.ts +9 -0
  898. package/dist/src/icons/ring.js +11 -0
  899. package/dist/src/icons/rotateDocument.d.ts +9 -0
  900. package/dist/src/icons/rotateDocument.js +11 -0
  901. package/dist/src/icons/rotatePage.d.ts +9 -0
  902. package/dist/src/icons/rotatePage.js +11 -0
  903. package/dist/src/icons/satellite.d.ts +9 -0
  904. package/dist/src/icons/satellite.js +11 -0
  905. package/dist/src/icons/saved.d.ts +9 -0
  906. package/dist/src/icons/saved.js +11 -0
  907. package/dist/src/icons/scatterPlot.d.ts +9 -0
  908. package/dist/src/icons/scatterPlot.js +11 -0
  909. package/dist/src/icons/search.d.ts +9 -0
  910. package/dist/src/icons/search.js +11 -0
  911. package/dist/src/icons/searchAround.d.ts +9 -0
  912. package/dist/src/icons/searchAround.js +11 -0
  913. package/dist/src/icons/searchTemplate.d.ts +9 -0
  914. package/dist/src/icons/searchTemplate.js +11 -0
  915. package/dist/src/icons/searchText.d.ts +9 -0
  916. package/dist/src/icons/searchText.js +11 -0
  917. package/dist/src/icons/segmentedControl.d.ts +9 -0
  918. package/dist/src/icons/segmentedControl.js +11 -0
  919. package/dist/src/icons/select.d.ts +9 -0
  920. package/dist/src/icons/select.js +11 -0
  921. package/dist/src/icons/selection.d.ts +9 -0
  922. package/dist/src/icons/selection.js +11 -0
  923. package/dist/src/icons/sendTo.d.ts +9 -0
  924. package/dist/src/icons/sendTo.js +11 -0
  925. package/dist/src/icons/sendToGraph.d.ts +9 -0
  926. package/dist/src/icons/sendToGraph.js +11 -0
  927. package/dist/src/icons/sendToMap.d.ts +9 -0
  928. package/dist/src/icons/sendToMap.js +11 -0
  929. package/dist/src/icons/seriesAdd.d.ts +9 -0
  930. package/dist/src/icons/seriesAdd.js +11 -0
  931. package/dist/src/icons/seriesConfiguration.d.ts +9 -0
  932. package/dist/src/icons/seriesConfiguration.js +11 -0
  933. package/dist/src/icons/seriesDerived.d.ts +9 -0
  934. package/dist/src/icons/seriesDerived.js +11 -0
  935. package/dist/src/icons/seriesFiltered.d.ts +9 -0
  936. package/dist/src/icons/seriesFiltered.js +11 -0
  937. package/dist/src/icons/seriesSearch.d.ts +9 -0
  938. package/dist/src/icons/seriesSearch.js +11 -0
  939. package/dist/src/icons/settings.d.ts +9 -0
  940. package/dist/src/icons/settings.js +11 -0
  941. package/dist/src/icons/share.d.ts +9 -0
  942. package/dist/src/icons/share.js +11 -0
  943. package/dist/src/icons/shield.d.ts +9 -0
  944. package/dist/src/icons/shield.js +11 -0
  945. package/dist/src/icons/shop.d.ts +9 -0
  946. package/dist/src/icons/shop.js +11 -0
  947. package/dist/src/icons/shoppingCart.d.ts +9 -0
  948. package/dist/src/icons/shoppingCart.js +11 -0
  949. package/dist/src/icons/signalSearch.d.ts +9 -0
  950. package/dist/src/icons/signalSearch.js +11 -0
  951. package/dist/src/icons/simCard.d.ts +9 -0
  952. package/dist/src/icons/simCard.js +11 -0
  953. package/dist/src/icons/slash.d.ts +9 -0
  954. package/dist/src/icons/slash.js +11 -0
  955. package/dist/src/icons/smallCross.d.ts +9 -0
  956. package/dist/src/icons/smallCross.js +11 -0
  957. package/dist/src/icons/smallMinus.d.ts +9 -0
  958. package/dist/src/icons/smallMinus.js +11 -0
  959. package/dist/src/icons/smallPlus.d.ts +9 -0
  960. package/dist/src/icons/smallPlus.js +11 -0
  961. package/dist/src/icons/smallTick.d.ts +9 -0
  962. package/dist/src/icons/smallTick.js +11 -0
  963. package/dist/src/icons/snowflake.d.ts +9 -0
  964. package/dist/src/icons/snowflake.js +11 -0
  965. package/dist/src/icons/socialMedia.d.ts +9 -0
  966. package/dist/src/icons/socialMedia.js +11 -0
  967. package/dist/src/icons/sort.d.ts +9 -0
  968. package/dist/src/icons/sort.js +11 -0
  969. package/dist/src/icons/sortAlphabetical.d.ts +9 -0
  970. package/dist/src/icons/sortAlphabetical.js +11 -0
  971. package/dist/src/icons/sortAlphabeticalDesc.d.ts +9 -0
  972. package/dist/src/icons/sortAlphabeticalDesc.js +11 -0
  973. package/dist/src/icons/sortAsc.d.ts +9 -0
  974. package/dist/src/icons/sortAsc.js +11 -0
  975. package/dist/src/icons/sortDesc.d.ts +9 -0
  976. package/dist/src/icons/sortDesc.js +11 -0
  977. package/dist/src/icons/sortNumerical.d.ts +9 -0
  978. package/dist/src/icons/sortNumerical.js +11 -0
  979. package/dist/src/icons/sortNumericalDesc.d.ts +9 -0
  980. package/dist/src/icons/sortNumericalDesc.js +11 -0
  981. package/dist/src/icons/splitColumns.d.ts +9 -0
  982. package/dist/src/icons/splitColumns.js +11 -0
  983. package/dist/src/icons/square.d.ts +9 -0
  984. package/dist/src/icons/square.js +11 -0
  985. package/dist/src/icons/stackedChart.d.ts +9 -0
  986. package/dist/src/icons/stackedChart.js +11 -0
  987. package/dist/src/icons/star.d.ts +9 -0
  988. package/dist/src/icons/star.js +11 -0
  989. package/dist/src/icons/starEmpty.d.ts +9 -0
  990. package/dist/src/icons/starEmpty.js +11 -0
  991. package/dist/src/icons/stepBackward.d.ts +9 -0
  992. package/dist/src/icons/stepBackward.js +11 -0
  993. package/dist/src/icons/stepChart.d.ts +9 -0
  994. package/dist/src/icons/stepChart.js +11 -0
  995. package/dist/src/icons/stepForward.d.ts +9 -0
  996. package/dist/src/icons/stepForward.js +11 -0
  997. package/dist/src/icons/stop.d.ts +9 -0
  998. package/dist/src/icons/stop.js +11 -0
  999. package/dist/src/icons/stopwatch.d.ts +9 -0
  1000. package/dist/src/icons/stopwatch.js +11 -0
  1001. package/dist/src/icons/strikethrough.d.ts +9 -0
  1002. package/dist/src/icons/strikethrough.js +11 -0
  1003. package/dist/src/icons/style.d.ts +9 -0
  1004. package/dist/src/icons/style.js +11 -0
  1005. package/dist/src/icons/swapHorizontal.d.ts +9 -0
  1006. package/dist/src/icons/swapHorizontal.js +11 -0
  1007. package/dist/src/icons/swapVertical.d.ts +9 -0
  1008. package/dist/src/icons/swapVertical.js +11 -0
  1009. package/dist/src/icons/symbolCircle.d.ts +9 -0
  1010. package/dist/src/icons/symbolCircle.js +11 -0
  1011. package/dist/src/icons/symbolCross.d.ts +9 -0
  1012. package/dist/src/icons/symbolCross.js +11 -0
  1013. package/dist/src/icons/symbolDiamond.d.ts +9 -0
  1014. package/dist/src/icons/symbolDiamond.js +11 -0
  1015. package/dist/src/icons/symbolSquare.d.ts +9 -0
  1016. package/dist/src/icons/symbolSquare.js +11 -0
  1017. package/dist/src/icons/symbolTriangleDown.d.ts +9 -0
  1018. package/dist/src/icons/symbolTriangleDown.js +11 -0
  1019. package/dist/src/icons/symbolTriangleUp.d.ts +9 -0
  1020. package/dist/src/icons/symbolTriangleUp.js +11 -0
  1021. package/dist/src/icons/tag.d.ts +9 -0
  1022. package/dist/src/icons/tag.js +11 -0
  1023. package/dist/src/icons/takeAction.d.ts +9 -0
  1024. package/dist/src/icons/takeAction.js +11 -0
  1025. package/dist/src/icons/taxi.d.ts +9 -0
  1026. package/dist/src/icons/taxi.js +11 -0
  1027. package/dist/src/icons/terraform.d.ts +9 -0
  1028. package/dist/src/icons/terraform.js +11 -0
  1029. package/dist/src/icons/textHighlight.d.ts +9 -0
  1030. package/dist/src/icons/textHighlight.js +11 -0
  1031. package/dist/src/icons/th.d.ts +9 -0
  1032. package/dist/src/icons/th.js +11 -0
  1033. package/dist/src/icons/thDerived.d.ts +9 -0
  1034. package/dist/src/icons/thDerived.js +11 -0
  1035. package/dist/src/icons/thDisconnect.d.ts +9 -0
  1036. package/dist/src/icons/thDisconnect.js +11 -0
  1037. package/dist/src/icons/thFiltered.d.ts +9 -0
  1038. package/dist/src/icons/thFiltered.js +11 -0
  1039. package/dist/src/icons/thList.d.ts +9 -0
  1040. package/dist/src/icons/thList.js +11 -0
  1041. package/dist/src/icons/thumbsDown.d.ts +9 -0
  1042. package/dist/src/icons/thumbsDown.js +11 -0
  1043. package/dist/src/icons/thumbsUp.d.ts +9 -0
  1044. package/dist/src/icons/thumbsUp.js +11 -0
  1045. package/dist/src/icons/tick.d.ts +9 -0
  1046. package/dist/src/icons/tick.js +11 -0
  1047. package/dist/src/icons/tickCircle.d.ts +9 -0
  1048. package/dist/src/icons/tickCircle.js +11 -0
  1049. package/dist/src/icons/time.d.ts +9 -0
  1050. package/dist/src/icons/time.js +11 -0
  1051. package/dist/src/icons/timelineAreaChart.d.ts +9 -0
  1052. package/dist/src/icons/timelineAreaChart.js +11 -0
  1053. package/dist/src/icons/timelineBarChart.d.ts +9 -0
  1054. package/dist/src/icons/timelineBarChart.js +11 -0
  1055. package/dist/src/icons/timelineEvents.d.ts +9 -0
  1056. package/dist/src/icons/timelineEvents.js +11 -0
  1057. package/dist/src/icons/timelineLineChart.d.ts +9 -0
  1058. package/dist/src/icons/timelineLineChart.js +11 -0
  1059. package/dist/src/icons/tint.d.ts +9 -0
  1060. package/dist/src/icons/tint.js +11 -0
  1061. package/dist/src/icons/torch.d.ts +9 -0
  1062. package/dist/src/icons/torch.js +11 -0
  1063. package/dist/src/icons/tractor.d.ts +9 -0
  1064. package/dist/src/icons/tractor.js +11 -0
  1065. package/dist/src/icons/train.d.ts +9 -0
  1066. package/dist/src/icons/train.js +11 -0
  1067. package/dist/src/icons/translate.d.ts +9 -0
  1068. package/dist/src/icons/translate.js +11 -0
  1069. package/dist/src/icons/trash.d.ts +9 -0
  1070. package/dist/src/icons/trash.js +11 -0
  1071. package/dist/src/icons/tree.d.ts +9 -0
  1072. package/dist/src/icons/tree.js +11 -0
  1073. package/dist/src/icons/trendingDown.d.ts +9 -0
  1074. package/dist/src/icons/trendingDown.js +11 -0
  1075. package/dist/src/icons/trendingUp.d.ts +9 -0
  1076. package/dist/src/icons/trendingUp.js +11 -0
  1077. package/dist/src/icons/truck.d.ts +9 -0
  1078. package/dist/src/icons/truck.js +11 -0
  1079. package/dist/src/icons/twoColumns.d.ts +9 -0
  1080. package/dist/src/icons/twoColumns.js +11 -0
  1081. package/dist/src/icons/unarchive.d.ts +9 -0
  1082. package/dist/src/icons/unarchive.js +11 -0
  1083. package/dist/src/icons/underline.d.ts +9 -0
  1084. package/dist/src/icons/underline.js +11 -0
  1085. package/dist/src/icons/undo.d.ts +9 -0
  1086. package/dist/src/icons/undo.js +11 -0
  1087. package/dist/src/icons/ungroupObjects.d.ts +9 -0
  1088. package/dist/src/icons/ungroupObjects.js +11 -0
  1089. package/dist/src/icons/unknownVehicle.d.ts +9 -0
  1090. package/dist/src/icons/unknownVehicle.js +11 -0
  1091. package/dist/src/icons/unlock.d.ts +9 -0
  1092. package/dist/src/icons/unlock.js +11 -0
  1093. package/dist/src/icons/unpin.d.ts +9 -0
  1094. package/dist/src/icons/unpin.js +11 -0
  1095. package/dist/src/icons/unresolve.d.ts +9 -0
  1096. package/dist/src/icons/unresolve.js +11 -0
  1097. package/dist/src/icons/updated.d.ts +9 -0
  1098. package/dist/src/icons/updated.js +11 -0
  1099. package/dist/src/icons/upload.d.ts +9 -0
  1100. package/dist/src/icons/upload.js +11 -0
  1101. package/dist/src/icons/user.d.ts +9 -0
  1102. package/dist/src/icons/user.js +11 -0
  1103. package/dist/src/icons/variable.d.ts +9 -0
  1104. package/dist/src/icons/variable.js +11 -0
  1105. package/dist/src/icons/verticalBarChartAsc.d.ts +9 -0
  1106. package/dist/src/icons/verticalBarChartAsc.js +11 -0
  1107. package/dist/src/icons/verticalBarChartDesc.d.ts +9 -0
  1108. package/dist/src/icons/verticalBarChartDesc.js +11 -0
  1109. package/dist/src/icons/verticalDistribution.d.ts +9 -0
  1110. package/dist/src/icons/verticalDistribution.js +11 -0
  1111. package/dist/src/icons/video.d.ts +9 -0
  1112. package/dist/src/icons/video.js +11 -0
  1113. package/dist/src/icons/volumeDown.d.ts +9 -0
  1114. package/dist/src/icons/volumeDown.js +11 -0
  1115. package/dist/src/icons/volumeOff.d.ts +9 -0
  1116. package/dist/src/icons/volumeOff.js +11 -0
  1117. package/dist/src/icons/volumeUp.d.ts +9 -0
  1118. package/dist/src/icons/volumeUp.js +11 -0
  1119. package/dist/src/icons/walk.d.ts +9 -0
  1120. package/dist/src/icons/walk.js +11 -0
  1121. package/dist/src/icons/warningSign.d.ts +9 -0
  1122. package/dist/src/icons/warningSign.js +11 -0
  1123. package/dist/src/icons/waterfallChart.d.ts +9 -0
  1124. package/dist/src/icons/waterfallChart.js +11 -0
  1125. package/dist/src/icons/widget.d.ts +9 -0
  1126. package/dist/src/icons/widget.js +11 -0
  1127. package/dist/src/icons/widgetButton.d.ts +9 -0
  1128. package/dist/src/icons/widgetButton.js +11 -0
  1129. package/dist/src/icons/widgetFooter.d.ts +9 -0
  1130. package/dist/src/icons/widgetFooter.js +11 -0
  1131. package/dist/src/icons/widgetHeader.d.ts +9 -0
  1132. package/dist/src/icons/widgetHeader.js +11 -0
  1133. package/dist/src/icons/wrench.d.ts +9 -0
  1134. package/dist/src/icons/wrench.js +11 -0
  1135. package/dist/src/icons/zoomIn.d.ts +9 -0
  1136. package/dist/src/icons/zoomIn.js +11 -0
  1137. package/dist/src/icons/zoomOut.d.ts +9 -0
  1138. package/dist/src/icons/zoomOut.js +11 -0
  1139. package/dist/src/icons/zoomToFit.d.ts +9 -0
  1140. package/dist/src/icons/zoomToFit.js +11 -0
  1141. package/dist/src/js/resolveTheme.d.ts +6 -0
  1142. package/dist/src/js/resolveTheme.js +22 -0
  1143. package/dist/src/system.d.ts +15 -0
  1144. package/dist/src/system.js +19 -0
  1145. package/dist/src/utils/breakpoints.d.ts +11 -0
  1146. package/dist/src/utils/breakpoints.js +45 -0
  1147. package/dist/src/utils/constants.d.ts +4 -0
  1148. package/dist/src/utils/constants.js +8 -0
  1149. package/dist/src/utils/createComponent.d.ts +3 -0
  1150. package/dist/src/utils/createComponent.js +29 -0
  1151. package/dist/src/utils/form/CharCounter/CharCounter.d.ts +8 -0
  1152. package/dist/src/utils/form/CharCounter/CharCounter.js +6 -0
  1153. package/dist/src/utils/form/FormControl/FormControl.d.ts +7 -0
  1154. package/dist/src/utils/form/FormControl/FormControl.js +6 -0
  1155. package/dist/src/utils/form/HelperText/HelperText.d.ts +39 -0
  1156. package/dist/src/utils/form/HelperText/HelperText.js +20 -0
  1157. package/dist/src/utils/form/InputAdornment/InputAdornment.d.ts +14 -0
  1158. package/dist/src/utils/form/InputAdornment/InputAdornment.js +21 -0
  1159. package/dist/src/utils/form/Label/Label.d.ts +80 -0
  1160. package/dist/src/utils/form/Label/Label.js +89 -0
  1161. package/dist/src/utils/object.d.ts +4 -0
  1162. package/dist/src/utils/object.js +19 -0
  1163. package/dist/src/utils/positioner.d.ts +28 -0
  1164. package/dist/src/utils/positioner.js +111 -0
  1165. package/dist/src/utils/setupTests.d.ts +1 -0
  1166. package/dist/src/utils/setupTests.js +2 -0
  1167. package/dist/src/utils/string.d.ts +1 -0
  1168. package/dist/src/utils/string.js +2 -0
  1169. package/dist/src/utils/tailwind.d.ts +4 -0
  1170. package/dist/src/utils/tailwind.js +18 -0
  1171. package/dist/src/utils/useStyle.d.ts +11 -0
  1172. package/dist/src/utils/useStyle.js +70 -0
  1173. package/dist/src/utils/useWindowSize.d.ts +5 -0
  1174. package/dist/src/utils/useWindowSize.js +27 -0
  1175. package/dist/styles.css +2136 -0
  1176. package/dist/styles_timescaledb.css +2136 -0
  1177. package/dist/system.cjs +7685 -0
  1178. package/dist/system.mjs +7561 -0
  1179. package/dist/tailwind.config.js +150 -0
  1180. package/dist/tailwind.theme.json +520 -0
  1181. package/dist/tokens.json +866 -0
  1182. package/dist/tsconfig.module.tsbuildinfo +1 -0
  1183. package/dist/types/ActionType.d.ts +20 -0
  1184. package/dist/types/ActionType.js +2 -0
  1185. package/dist/types/IconProps.d.ts +4 -0
  1186. package/dist/types/IconProps.js +2 -0
  1187. package/dist/types/designTokens.d.ts +57 -0
  1188. package/dist/types/designTokens.js +5 -0
  1189. package/dist/types/tailwind.d.ts +42 -0
  1190. package/dist/types/tailwind.js +2 -0
  1191. package/dist/types/tailwindGenerated.d.ts +1 -0
  1192. package/dist/types/tailwindGenerated.js +3 -0
  1193. package/dist/types/utils.d.ts +5 -0
  1194. package/dist/types/utils.js +3 -0
  1195. package/package.json +183 -0
@@ -0,0 +1,2136 @@
1
+ /* https://tailwindcss.com/docs/using-with-preprocessors */
2
+ /* @import statement must come first and tailwind base must be the first one imported*/
3
+ /* ! tailwindcss v3.1.4 | MIT License | https://tailwindcss.com */
4
+ /*
5
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
6
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
7
+ */
8
+ *,::before,::after {
9
+ box-sizing: border-box; /* 1 */
10
+ border-width: 0; /* 2 */
11
+ border-style: solid; /* 2 */
12
+ border-color: currentColor; /* 2 */
13
+ }
14
+ ::before,::after {
15
+ --tw-content: '';
16
+ }
17
+ /*
18
+ 1. Use a consistent sensible line-height in all browsers.
19
+ 2. Prevent adjustments of font size after orientation changes in iOS.
20
+ 3. Use a more readable tab size.
21
+ 4. Use the user's configured `sans` font-family by default.
22
+ */
23
+ html {
24
+ line-height: 1.5; /* 1 */
25
+ -webkit-text-size-adjust: 100%; /* 2 */
26
+ -moz-tab-size: 4; /* 3 */
27
+ -o-tab-size: 4;
28
+ tab-size: 4; /* 3 */
29
+ font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
30
+ }
31
+ /*
32
+ 1. Remove the margin in all browsers.
33
+ 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
34
+ */
35
+ body {
36
+ margin: 0; /* 1 */
37
+ line-height: inherit; /* 2 */
38
+ }
39
+ /*
40
+ 1. Add the correct height in Firefox.
41
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
42
+ 3. Ensure horizontal rules are visible by default.
43
+ */
44
+ hr {
45
+ height: 0; /* 1 */
46
+ color: inherit; /* 2 */
47
+ border-top-width: 1px; /* 3 */
48
+ }
49
+ /*
50
+ Add the correct text decoration in Chrome, Edge, and Safari.
51
+ */
52
+ abbr:where([title]) {
53
+ -webkit-text-decoration: underline dotted;
54
+ text-decoration: underline dotted;
55
+ }
56
+ /*
57
+ Remove the default font size and weight for headings.
58
+ */
59
+ h1,h2,h3,h4,h5,h6 {
60
+ font-size: inherit;
61
+ font-weight: inherit;
62
+ }
63
+ /*
64
+ Reset links to optimize for opt-in styling instead of opt-out.
65
+ */
66
+ a {
67
+ color: inherit;
68
+ text-decoration: inherit;
69
+ }
70
+ /*
71
+ Add the correct font weight in Edge and Safari.
72
+ */
73
+ b,strong {
74
+ font-weight: bolder;
75
+ }
76
+ /*
77
+ 1. Use the user's configured `mono` font family by default.
78
+ 2. Correct the odd `em` font sizing in all browsers.
79
+ */
80
+ code,kbd,samp,pre {
81
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
82
+ font-size: 1em; /* 2 */
83
+ }
84
+ /*
85
+ Add the correct font size in all browsers.
86
+ */
87
+ small {
88
+ font-size: 80%;
89
+ }
90
+ /*
91
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
92
+ */
93
+ sub,sup {
94
+ font-size: 75%;
95
+ line-height: 0;
96
+ position: relative;
97
+ vertical-align: baseline;
98
+ }
99
+ sub {
100
+ bottom: -0.25em;
101
+ }
102
+ sup {
103
+ top: -0.5em;
104
+ }
105
+ /*
106
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
107
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
108
+ 3. Remove gaps between table borders by default.
109
+ */
110
+ table {
111
+ text-indent: 0; /* 1 */
112
+ border-color: inherit; /* 2 */
113
+ border-collapse: collapse; /* 3 */
114
+ }
115
+ /*
116
+ 1. Change the font styles in all browsers.
117
+ 2. Remove the margin in Firefox and Safari.
118
+ 3. Remove default padding in all browsers.
119
+ */
120
+ button,input,optgroup,select,textarea {
121
+ font-family: inherit; /* 1 */
122
+ font-size: 100%; /* 1 */
123
+ font-weight: inherit; /* 1 */
124
+ line-height: inherit; /* 1 */
125
+ color: inherit; /* 1 */
126
+ margin: 0; /* 2 */
127
+ padding: 0; /* 3 */
128
+ }
129
+ /*
130
+ Remove the inheritance of text transform in Edge and Firefox.
131
+ */
132
+ button,select {
133
+ text-transform: none;
134
+ }
135
+ /*
136
+ 1. Correct the inability to style clickable types in iOS and Safari.
137
+ 2. Remove default button styles.
138
+ */
139
+ button,[type='button'],[type='reset'],[type='submit'] {
140
+ -webkit-appearance: button; /* 1 */
141
+ background-color: transparent; /* 2 */
142
+ background-image: none; /* 2 */
143
+ }
144
+ /*
145
+ Use the modern Firefox focus style for all focusable elements.
146
+ */
147
+ :-moz-focusring {
148
+ outline: auto;
149
+ }
150
+ /*
151
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
152
+ */
153
+ :-moz-ui-invalid {
154
+ box-shadow: none;
155
+ }
156
+ /*
157
+ Add the correct vertical alignment in Chrome and Firefox.
158
+ */
159
+ progress {
160
+ vertical-align: baseline;
161
+ }
162
+ /*
163
+ Correct the cursor style of increment and decrement buttons in Safari.
164
+ */
165
+ ::-webkit-inner-spin-button,::-webkit-outer-spin-button {
166
+ height: auto;
167
+ }
168
+ /*
169
+ 1. Correct the odd appearance in Chrome and Safari.
170
+ 2. Correct the outline style in Safari.
171
+ */
172
+ [type='search'] {
173
+ -webkit-appearance: textfield; /* 1 */
174
+ outline-offset: -2px; /* 2 */
175
+ }
176
+ /*
177
+ Remove the inner padding in Chrome and Safari on macOS.
178
+ */
179
+ ::-webkit-search-decoration {
180
+ -webkit-appearance: none;
181
+ }
182
+ /*
183
+ 1. Correct the inability to style clickable types in iOS and Safari.
184
+ 2. Change font properties to `inherit` in Safari.
185
+ */
186
+ ::-webkit-file-upload-button {
187
+ -webkit-appearance: button; /* 1 */
188
+ font: inherit; /* 2 */
189
+ }
190
+ /*
191
+ Add the correct display in Chrome and Safari.
192
+ */
193
+ summary {
194
+ display: list-item;
195
+ }
196
+ /*
197
+ Removes the default spacing and border for appropriate elements.
198
+ */
199
+ blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre {
200
+ margin: 0;
201
+ }
202
+ fieldset {
203
+ margin: 0;
204
+ padding: 0;
205
+ }
206
+ legend {
207
+ padding: 0;
208
+ }
209
+ ol,ul,menu {
210
+ list-style: none;
211
+ margin: 0;
212
+ padding: 0;
213
+ }
214
+ /*
215
+ Prevent resizing textareas horizontally by default.
216
+ */
217
+ textarea {
218
+ resize: vertical;
219
+ }
220
+ /*
221
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
222
+ 2. Set the default placeholder color to the user's configured gray 400 color.
223
+ */
224
+ input::-moz-placeholder, textarea::-moz-placeholder {
225
+ opacity: 1; /* 1 */
226
+ color: #9ca3af; /* 2 */
227
+ }
228
+ input::placeholder,textarea::placeholder {
229
+ opacity: 1; /* 1 */
230
+ color: #9ca3af; /* 2 */
231
+ }
232
+ /*
233
+ Set the default cursor for buttons.
234
+ */
235
+ button,[role="button"] {
236
+ cursor: pointer;
237
+ }
238
+ /*
239
+ Make sure disabled buttons don't get the pointer cursor.
240
+ */
241
+ :disabled {
242
+ cursor: default;
243
+ }
244
+ /*
245
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
246
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
247
+ This can trigger a poorly considered lint error in some tools but is included by design.
248
+ */
249
+ img,svg,video,canvas,audio,iframe,embed,object {
250
+ display: block; /* 1 */
251
+ vertical-align: middle; /* 2 */
252
+ }
253
+ /*
254
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
255
+ */
256
+ img,video {
257
+ max-width: 100%;
258
+ height: auto;
259
+ }
260
+ *,::before,::after {
261
+ --tw-border-spacing-x: 0;
262
+ --tw-border-spacing-y: 0;
263
+ --tw-translate-x: 0;
264
+ --tw-translate-y: 0;
265
+ --tw-rotate: 0;
266
+ --tw-skew-x: 0;
267
+ --tw-skew-y: 0;
268
+ --tw-scale-x: 1;
269
+ --tw-scale-y: 1;
270
+ --tw-pan-x: ;
271
+ --tw-pan-y: ;
272
+ --tw-pinch-zoom: ;
273
+ --tw-scroll-snap-strictness: proximity;
274
+ --tw-ordinal: ;
275
+ --tw-slashed-zero: ;
276
+ --tw-numeric-figure: ;
277
+ --tw-numeric-spacing: ;
278
+ --tw-numeric-fraction: ;
279
+ --tw-ring-inset: ;
280
+ --tw-ring-offset-width: 0px;
281
+ --tw-ring-offset-color: #fff;
282
+ --tw-ring-color: rgba(59, 130, 246, 0.5);
283
+ --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
284
+ --tw-ring-shadow: 0 0 rgba(0,0,0,0);
285
+ --tw-shadow: 0 0 rgba(0,0,0,0);
286
+ --tw-shadow-colored: 0 0 rgba(0,0,0,0);
287
+ --tw-blur: ;
288
+ --tw-brightness: ;
289
+ --tw-contrast: ;
290
+ --tw-grayscale: ;
291
+ --tw-hue-rotate: ;
292
+ --tw-invert: ;
293
+ --tw-saturate: ;
294
+ --tw-sepia: ;
295
+ --tw-drop-shadow: ;
296
+ --tw-backdrop-blur: ;
297
+ --tw-backdrop-brightness: ;
298
+ --tw-backdrop-contrast: ;
299
+ --tw-backdrop-grayscale: ;
300
+ --tw-backdrop-hue-rotate: ;
301
+ --tw-backdrop-invert: ;
302
+ --tw-backdrop-opacity: ;
303
+ --tw-backdrop-saturate: ;
304
+ --tw-backdrop-sepia: ;
305
+ }
306
+ ::backdrop {
307
+ --tw-border-spacing-x: 0;
308
+ --tw-border-spacing-y: 0;
309
+ --tw-translate-x: 0;
310
+ --tw-translate-y: 0;
311
+ --tw-rotate: 0;
312
+ --tw-skew-x: 0;
313
+ --tw-skew-y: 0;
314
+ --tw-scale-x: 1;
315
+ --tw-scale-y: 1;
316
+ --tw-pan-x: ;
317
+ --tw-pan-y: ;
318
+ --tw-pinch-zoom: ;
319
+ --tw-scroll-snap-strictness: proximity;
320
+ --tw-ordinal: ;
321
+ --tw-slashed-zero: ;
322
+ --tw-numeric-figure: ;
323
+ --tw-numeric-spacing: ;
324
+ --tw-numeric-fraction: ;
325
+ --tw-ring-inset: ;
326
+ --tw-ring-offset-width: 0px;
327
+ --tw-ring-offset-color: #fff;
328
+ --tw-ring-color: rgba(59, 130, 246, 0.5);
329
+ --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
330
+ --tw-ring-shadow: 0 0 rgba(0,0,0,0);
331
+ --tw-shadow: 0 0 rgba(0,0,0,0);
332
+ --tw-shadow-colored: 0 0 rgba(0,0,0,0);
333
+ --tw-blur: ;
334
+ --tw-brightness: ;
335
+ --tw-contrast: ;
336
+ --tw-grayscale: ;
337
+ --tw-hue-rotate: ;
338
+ --tw-invert: ;
339
+ --tw-saturate: ;
340
+ --tw-sepia: ;
341
+ --tw-drop-shadow: ;
342
+ --tw-backdrop-blur: ;
343
+ --tw-backdrop-brightness: ;
344
+ --tw-backdrop-contrast: ;
345
+ --tw-backdrop-grayscale: ;
346
+ --tw-backdrop-hue-rotate: ;
347
+ --tw-backdrop-invert: ;
348
+ --tw-backdrop-opacity: ;
349
+ --tw-backdrop-saturate: ;
350
+ --tw-backdrop-sepia: ;
351
+ }
352
+ input[type='number'].no-arrows::-webkit-inner-spin-button,input[type='number'].no-arrow::-webkit-outer-spin-button {
353
+ -webkit-appearance: none;
354
+ margin: 0;
355
+ }
356
+ input[type='number'].no-arrows {
357
+ -moz-appearance: textfield; /* Firefox */
358
+ }
359
+ .container {
360
+ width: 100%;
361
+ }
362
+ .\!container {
363
+ width: 100% !important;
364
+ }
365
+ @media (min-width: 0px) {
366
+ .container {
367
+ max-width: 0px;
368
+ }
369
+ .\!container {
370
+ max-width: 0px !important;
371
+ }
372
+ }
373
+ @media (min-width: 320px) {
374
+ .container {
375
+ max-width: 320px;
376
+ }
377
+ .\!container {
378
+ max-width: 320px !important;
379
+ }
380
+ }
381
+ @media (min-width: 672px) {
382
+ .container {
383
+ max-width: 672px;
384
+ }
385
+ .\!container {
386
+ max-width: 672px !important;
387
+ }
388
+ }
389
+ @media (min-width: 1056px) {
390
+ .container {
391
+ max-width: 1056px;
392
+ }
393
+ .\!container {
394
+ max-width: 1056px !important;
395
+ }
396
+ }
397
+ @media (min-width: 1312px) {
398
+ .container {
399
+ max-width: 1312px;
400
+ }
401
+ .\!container {
402
+ max-width: 1312px !important;
403
+ }
404
+ }
405
+ @media (min-width: 1536px) {
406
+ .container {
407
+ max-width: 1536px;
408
+ }
409
+ .\!container {
410
+ max-width: 1536px !important;
411
+ }
412
+ }
413
+ .typography-caption-small {
414
+ font-family: Inter;
415
+ font-size: 10px;
416
+ font-weight: 400;
417
+ font-style: normal;
418
+ line-height: 1.2;
419
+ letter-spacing: 0;
420
+ text-transform: none;
421
+ }
422
+ .typography-caption-default {
423
+ font-family: Inter;
424
+ font-size: 12px;
425
+ font-weight: 400;
426
+ font-style: normal;
427
+ line-height: 1.26;
428
+ letter-spacing: 0;
429
+ text-transform: none;
430
+ }
431
+ .typography-overline-small {
432
+ font-family: Inter;
433
+ font-size: 10px;
434
+ font-weight: 400;
435
+ font-style: normal;
436
+ line-height: 1;
437
+ letter-spacing: 0;
438
+ text-transform: uppercase;
439
+ }
440
+ .typography-overline-default {
441
+ font-family: Inter;
442
+ font-size: 12px;
443
+ font-weight: 400;
444
+ font-style: normal;
445
+ line-height: 1;
446
+ letter-spacing: 0;
447
+ text-transform: uppercase;
448
+ }
449
+ .typography-button-small {
450
+ font-family: Inter;
451
+ font-size: 12px;
452
+ font-weight: 500;
453
+ font-style: normal;
454
+ line-height: 1;
455
+ letter-spacing: 0;
456
+ text-transform: none;
457
+ }
458
+ .typography-button-medium {
459
+ font-family: Inter;
460
+ font-size: 14px;
461
+ font-weight: 400;
462
+ font-style: normal;
463
+ line-height: 1;
464
+ letter-spacing: 0;
465
+ text-transform: none;
466
+ }
467
+ .typography-button-large {
468
+ font-family: Inter;
469
+ font-size: 16px;
470
+ font-weight: 500;
471
+ font-style: normal;
472
+ line-height: 1.5;
473
+ letter-spacing: 0;
474
+ text-transform: none;
475
+ }
476
+ .typography-body-small {
477
+ font-family: Inter;
478
+ font-size: 14px;
479
+ font-weight: 400;
480
+ font-style: normal;
481
+ line-height: 1.43;
482
+ letter-spacing: 0;
483
+ text-transform: none;
484
+ }
485
+ .typography-body-small-medium {
486
+ font-family: Inter;
487
+ font-size: 14px;
488
+ font-weight: 500;
489
+ font-style: normal;
490
+ line-height: 1.43;
491
+ letter-spacing: 0;
492
+ text-transform: none;
493
+ }
494
+ .typography-body-default {
495
+ font-family: Inter;
496
+ font-size: 16px;
497
+ font-weight: 400;
498
+ font-style: normal;
499
+ line-height: 1.5;
500
+ letter-spacing: 0;
501
+ text-transform: none;
502
+ }
503
+ .typography-body-default-medium {
504
+ font-family: Inter;
505
+ font-size: 16px;
506
+ font-weight: 500;
507
+ font-style: normal;
508
+ line-height: 1.5;
509
+ letter-spacing: 0;
510
+ text-transform: none;
511
+ }
512
+ .typography-body-large {
513
+ font-family: Inter;
514
+ font-size: 20px;
515
+ font-weight: 400;
516
+ font-style: normal;
517
+ line-height: 1.58;
518
+ letter-spacing: 0;
519
+ text-transform: none;
520
+ }
521
+ .typography-body-large-medium {
522
+ font-family: Inter;
523
+ font-size: 20px;
524
+ font-weight: 400;
525
+ font-style: normal;
526
+ line-height: 1.2;
527
+ letter-spacing: 0;
528
+ text-transform: none;
529
+ }
530
+ .typography-heading-large {
531
+ font-family: Inter;
532
+ font-size: 20px;
533
+ font-weight: 700;
534
+ font-style: normal;
535
+ line-height: 1.5;
536
+ letter-spacing: 0.15px;
537
+ text-transform: none;
538
+ }
539
+ .typography-heading-xl {
540
+ font-family: Inter;
541
+ font-size: 24px;
542
+ font-weight: 700;
543
+ font-style: normal;
544
+ line-height: 1.5;
545
+ letter-spacing: 0;
546
+ text-transform: none;
547
+ }
548
+ .typography-heading-2xl {
549
+ font-family: Inter;
550
+ font-size: 34px;
551
+ font-weight: 700;
552
+ font-style: normal;
553
+ line-height: 1.28;
554
+ letter-spacing: 0;
555
+ text-transform: none;
556
+ }
557
+ .typography-heading-3xl {
558
+ font-family: Inter;
559
+ font-size: 48px;
560
+ font-weight: 700;
561
+ font-style: normal;
562
+ line-height: 1.24;
563
+ letter-spacing: -0.48px;
564
+ text-transform: none;
565
+ }
566
+ .typography-heading-4xl {
567
+ font-family: Inter;
568
+ font-size: 60px;
569
+ font-weight: 700;
570
+ font-style: normal;
571
+ line-height: 1.2;
572
+ letter-spacing: -1.5px;
573
+ text-transform: none;
574
+ }
575
+ .typography-heading-5xl {
576
+ font-family: Inter;
577
+ font-size: 76px;
578
+ font-weight: 700;
579
+ font-style: normal;
580
+ line-height: 1.2;
581
+ letter-spacing: -1.98px;
582
+ text-transform: none;
583
+ }
584
+ .pointer-events-none {
585
+ pointer-events: none !important;
586
+ }
587
+ .visible {
588
+ visibility: visible !important;
589
+ }
590
+ .invisible {
591
+ visibility: hidden !important;
592
+ }
593
+ .fixed {
594
+ position: fixed !important;
595
+ }
596
+ .absolute {
597
+ position: absolute !important;
598
+ }
599
+ .relative {
600
+ position: relative !important;
601
+ }
602
+ .sticky {
603
+ position: sticky !important;
604
+ }
605
+ .inset-0 {
606
+ top: 0 !important;
607
+ right: 0 !important;
608
+ bottom: 0 !important;
609
+ left: 0 !important;
610
+ }
611
+ .inset-y-0 {
612
+ top: 0 !important;
613
+ bottom: 0 !important;
614
+ }
615
+ .top-2 {
616
+ top: 4px !important;
617
+ }
618
+ .left-2 {
619
+ left: 4px !important;
620
+ }
621
+ .top-0 {
622
+ top: 0 !important;
623
+ }
624
+ .left-1\/2 {
625
+ left: 50% !important;
626
+ }
627
+ .bottom-0 {
628
+ bottom: 0 !important;
629
+ }
630
+ .right-0 {
631
+ right: 0 !important;
632
+ }
633
+ .left-0 {
634
+ left: 0 !important;
635
+ }
636
+ .z-modal {
637
+ z-index: 100 !important;
638
+ }
639
+ .-z-10 {
640
+ z-index: -10 !important;
641
+ }
642
+ .z-40 {
643
+ z-index: 40 !important;
644
+ }
645
+ .z-0 {
646
+ z-index: 0 !important;
647
+ }
648
+ .z-10 {
649
+ z-index: 10 !important;
650
+ }
651
+ .z-20 {
652
+ z-index: 20 !important;
653
+ }
654
+ .col-start-2 {
655
+ grid-column-start: 2 !important;
656
+ }
657
+ .col-start-1 {
658
+ grid-column-start: 1 !important;
659
+ }
660
+ .col-start-3 {
661
+ grid-column-start: 3 !important;
662
+ }
663
+ .row-start-1 {
664
+ grid-row-start: 1 !important;
665
+ }
666
+ .-m-2 {
667
+ margin: -4px !important;
668
+ }
669
+ .m-3 {
670
+ margin: 8px !important;
671
+ }
672
+ .m-4 {
673
+ margin: 12px !important;
674
+ }
675
+ .m-\[1px\] {
676
+ margin: 1px !important;
677
+ }
678
+ .mx-7 {
679
+ margin-left: 32px !important;
680
+ margin-right: 32px !important;
681
+ }
682
+ .my-1 {
683
+ margin-top: 2px !important;
684
+ margin-bottom: 2px !important;
685
+ }
686
+ .mx-3 {
687
+ margin-left: 8px !important;
688
+ margin-right: 8px !important;
689
+ }
690
+ .my-4 {
691
+ margin-top: 12px !important;
692
+ margin-bottom: 12px !important;
693
+ }
694
+ .mx-2 {
695
+ margin-left: 4px !important;
696
+ margin-right: 4px !important;
697
+ }
698
+ .mx-1 {
699
+ margin-left: 2px !important;
700
+ margin-right: 2px !important;
701
+ }
702
+ .mx-0 {
703
+ margin-left: 0 !important;
704
+ margin-right: 0 !important;
705
+ }
706
+ .mb-3 {
707
+ margin-bottom: 8px !important;
708
+ }
709
+ .mt-5 {
710
+ margin-top: 16px !important;
711
+ }
712
+ .mt-1 {
713
+ margin-top: 2px !important;
714
+ }
715
+ .mt-4 {
716
+ margin-top: 12px !important;
717
+ }
718
+ .ml-4 {
719
+ margin-left: 12px !important;
720
+ }
721
+ .mr-4 {
722
+ margin-right: 12px !important;
723
+ }
724
+ .ml-2 {
725
+ margin-left: 4px !important;
726
+ }
727
+ .mt-2 {
728
+ margin-top: 4px !important;
729
+ }
730
+ .ml-3 {
731
+ margin-left: 8px !important;
732
+ }
733
+ .mr-1 {
734
+ margin-right: 2px !important;
735
+ }
736
+ .mb-\[-2px\] {
737
+ margin-bottom: -2px !important;
738
+ }
739
+ .mb-2 {
740
+ margin-bottom: 4px !important;
741
+ }
742
+ .mb-\[7px\] {
743
+ margin-bottom: 7px !important;
744
+ }
745
+ .block {
746
+ display: block !important;
747
+ }
748
+ .inline-block {
749
+ display: inline-block !important;
750
+ }
751
+ .inline {
752
+ display: inline !important;
753
+ }
754
+ .\!inline {
755
+ display: inline !important;
756
+ }
757
+ .flex {
758
+ display: flex !important;
759
+ }
760
+ .inline-flex {
761
+ display: inline-flex !important;
762
+ }
763
+ .table {
764
+ display: table !important;
765
+ }
766
+ .grid {
767
+ display: grid !important;
768
+ }
769
+ .inline-grid {
770
+ display: inline-grid !important;
771
+ }
772
+ .contents {
773
+ display: contents !important;
774
+ }
775
+ .hidden {
776
+ display: none !important;
777
+ }
778
+ .aspect-square {
779
+ aspect-ratio: 1 / 1 !important;
780
+ }
781
+ .h-1 {
782
+ height: 2px !important;
783
+ }
784
+ .h-\[20px\] {
785
+ height: 20px !important;
786
+ }
787
+ .h-3 {
788
+ height: 8px !important;
789
+ }
790
+ .h-\[1px\] {
791
+ height: 1px !important;
792
+ }
793
+ .h-2 {
794
+ height: 4px !important;
795
+ }
796
+ .h-\[50px\] {
797
+ height: 50px !important;
798
+ }
799
+ .h-\[32px\] {
800
+ height: 32px !important;
801
+ }
802
+ .h-full {
803
+ height: 100% !important;
804
+ }
805
+ .h-\[174px\] {
806
+ height: 174px !important;
807
+ }
808
+ .h-\[225px\] {
809
+ height: 225px !important;
810
+ }
811
+ .h-1px {
812
+ height: 1px !important;
813
+ }
814
+ .h-5 {
815
+ height: 16px !important;
816
+ }
817
+ .h-6 {
818
+ height: 24px !important;
819
+ }
820
+ .h-\[56px\] {
821
+ height: 56px !important;
822
+ }
823
+ .h-4 {
824
+ height: 12px !important;
825
+ }
826
+ .h-\[25px\] {
827
+ height: 25px !important;
828
+ }
829
+ .max-h-full {
830
+ max-height: 100% !important;
831
+ }
832
+ .min-h-full {
833
+ min-height: 100% !important;
834
+ }
835
+ .w-full {
836
+ width: 100% !important;
837
+ }
838
+ .w-3 {
839
+ width: 8px !important;
840
+ }
841
+ .w-\[32px\] {
842
+ width: 32px !important;
843
+ }
844
+ .w-\[280px\] {
845
+ width: 280px !important;
846
+ }
847
+ .w-1px {
848
+ width: 1px !important;
849
+ }
850
+ .w-1 {
851
+ width: 2px !important;
852
+ }
853
+ .w-2 {
854
+ width: 4px !important;
855
+ }
856
+ .w-5 {
857
+ width: 16px !important;
858
+ }
859
+ .w-6 {
860
+ width: 24px !important;
861
+ }
862
+ .w-\[56px\] {
863
+ width: 56px !important;
864
+ }
865
+ .w-\[34px\] {
866
+ width: 34px !important;
867
+ }
868
+ .w-4 {
869
+ width: 12px !important;
870
+ }
871
+ .min-w-full {
872
+ min-width: 100% !important;
873
+ }
874
+ .min-w-0 {
875
+ min-width: 0px !important;
876
+ }
877
+ .max-w-\[600px\] {
878
+ max-width: 600px !important;
879
+ }
880
+ .max-w-\[940px\] {
881
+ max-width: 940px !important;
882
+ }
883
+ .max-w-\[70px\] {
884
+ max-width: 70px !important;
885
+ }
886
+ .max-w-\[40px\] {
887
+ max-width: 40px !important;
888
+ }
889
+ .max-w-\[300px\] {
890
+ max-width: 300px !important;
891
+ }
892
+ .max-w-\[320px\] {
893
+ max-width: 320px !important;
894
+ }
895
+ .shrink {
896
+ flex-shrink: 1 !important;
897
+ }
898
+ .flex-grow {
899
+ flex-grow: 1 !important;
900
+ }
901
+ .grow {
902
+ flex-grow: 1 !important;
903
+ }
904
+ .grow-0 {
905
+ flex-grow: 0 !important;
906
+ }
907
+ .table-auto {
908
+ table-layout: auto !important;
909
+ }
910
+ .table-fixed {
911
+ table-layout: fixed !important;
912
+ }
913
+ .border-spacing-0 {
914
+ --tw-border-spacing-x: 0 !important;
915
+ --tw-border-spacing-y: 0 !important;
916
+ border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y) !important;
917
+ }
918
+ .translate-x-5 {
919
+ --tw-translate-x: 16px !important;
920
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
921
+ }
922
+ .rotate-45 {
923
+ --tw-rotate: 45deg !important;
924
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
925
+ }
926
+ .transform {
927
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
928
+ }
929
+ @keyframes positioner-fade-in {
930
+ from {
931
+ opacity: 0;
932
+ }
933
+ to {
934
+ opacity: 1;
935
+ }
936
+ }
937
+ .animate-positioner-fade-in {
938
+ animation: positioner-fade-in 300ms ease-in-out !important;
939
+ }
940
+ @keyframes pulse {
941
+ 50% {
942
+ opacity: .5;
943
+ }
944
+ }
945
+ .animate-pulse {
946
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
947
+ }
948
+ .cursor-default {
949
+ cursor: default !important;
950
+ }
951
+ .cursor-pointer {
952
+ cursor: pointer !important;
953
+ }
954
+ .cursor-not-allowed {
955
+ cursor: not-allowed !important;
956
+ }
957
+ .resize-none {
958
+ resize: none !important;
959
+ }
960
+ .resize {
961
+ resize: both !important;
962
+ }
963
+ .appearance-none {
964
+ -webkit-appearance: none !important;
965
+ -moz-appearance: none !important;
966
+ appearance: none !important;
967
+ }
968
+ .auto-cols-fr {
969
+ grid-auto-columns: minmax(0, 1fr) !important;
970
+ }
971
+ .grid-cols-\[auto_1fr_auto\] {
972
+ grid-template-columns: auto 1fr auto !important;
973
+ }
974
+ .grid-cols-1 {
975
+ grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
976
+ }
977
+ .grid-cols-2 {
978
+ grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
979
+ }
980
+ .grid-cols-3 {
981
+ grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
982
+ }
983
+ .grid-cols-\[auto_1fr\] {
984
+ grid-template-columns: auto 1fr !important;
985
+ }
986
+ .grid-cols-\[200px_1fr_200px\] {
987
+ grid-template-columns: 200px 1fr 200px !important;
988
+ }
989
+ .flex-row {
990
+ flex-direction: row !important;
991
+ }
992
+ .flex-col {
993
+ flex-direction: column !important;
994
+ }
995
+ .flex-wrap {
996
+ flex-wrap: wrap !important;
997
+ }
998
+ .flex-nowrap {
999
+ flex-wrap: nowrap !important;
1000
+ }
1001
+ .items-center {
1002
+ align-items: center !important;
1003
+ }
1004
+ .justify-end {
1005
+ justify-content: flex-end !important;
1006
+ }
1007
+ .justify-center {
1008
+ justify-content: center !important;
1009
+ }
1010
+ .justify-between {
1011
+ justify-content: space-between !important;
1012
+ }
1013
+ .gap-4 {
1014
+ grid-gap: 12px !important;
1015
+ gap: 12px !important;
1016
+ }
1017
+ .gap-7 {
1018
+ grid-gap: 32px !important;
1019
+ gap: 32px !important;
1020
+ }
1021
+ .gap-3 {
1022
+ grid-gap: 8px !important;
1023
+ gap: 8px !important;
1024
+ }
1025
+ .gap-2 {
1026
+ grid-gap: 4px !important;
1027
+ gap: 4px !important;
1028
+ }
1029
+ .gap-8 {
1030
+ grid-gap: 40px !important;
1031
+ gap: 40px !important;
1032
+ }
1033
+ .gap-x-3 {
1034
+ grid-column-gap: 8px !important;
1035
+ -moz-column-gap: 8px !important;
1036
+ column-gap: 8px !important;
1037
+ }
1038
+ .gap-y-2 {
1039
+ grid-row-gap: 4px !important;
1040
+ row-gap: 4px !important;
1041
+ }
1042
+ .gap-x-2 {
1043
+ grid-column-gap: 4px !important;
1044
+ -moz-column-gap: 4px !important;
1045
+ column-gap: 4px !important;
1046
+ }
1047
+ .gap-x-4 {
1048
+ grid-column-gap: 12px !important;
1049
+ -moz-column-gap: 12px !important;
1050
+ column-gap: 12px !important;
1051
+ }
1052
+ .self-start {
1053
+ align-self: flex-start !important;
1054
+ }
1055
+ .self-center {
1056
+ align-self: center !important;
1057
+ }
1058
+ .overflow-hidden {
1059
+ overflow: hidden !important;
1060
+ }
1061
+ .overflow-y-auto {
1062
+ overflow-y: auto !important;
1063
+ }
1064
+ .overflow-x-hidden {
1065
+ overflow-x: hidden !important;
1066
+ }
1067
+ .whitespace-nowrap {
1068
+ white-space: nowrap !important;
1069
+ }
1070
+ .break-all {
1071
+ word-break: break-all !important;
1072
+ }
1073
+ .rounded-sm {
1074
+ border-radius: 0.125rem !important;
1075
+ }
1076
+ .rounded-full {
1077
+ border-radius: 9999px !important;
1078
+ }
1079
+ .rounded {
1080
+ border-radius: 4px !important;
1081
+ }
1082
+ .border {
1083
+ border-width: 1px !important;
1084
+ }
1085
+ .border-0 {
1086
+ border-width: 0px !important;
1087
+ }
1088
+ .border-b-\[1px\] {
1089
+ border-bottom-width: 1px !important;
1090
+ }
1091
+ .border-b {
1092
+ border-bottom-width: 1px !important;
1093
+ }
1094
+ .border-b-2 {
1095
+ border-bottom-width: 2px !important;
1096
+ }
1097
+ .border-solid {
1098
+ border-style: solid !important;
1099
+ }
1100
+ .border-dashed {
1101
+ border-style: dashed !important;
1102
+ }
1103
+ .border-none {
1104
+ border-style: none !important;
1105
+ }
1106
+ .border-error-50 {
1107
+ --tw-border-opacity: 1 !important;
1108
+ border-color: rgb(230 39 40 / var(--tw-border-opacity)) !important;
1109
+ }
1110
+ .border-grey-20 {
1111
+ --tw-border-opacity: 1 !important;
1112
+ border-color: rgb(210 210 214 / var(--tw-border-opacity)) !important;
1113
+ }
1114
+ .border-info-70 {
1115
+ --tw-border-opacity: 1 !important;
1116
+ border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
1117
+ }
1118
+ .border-navyBlue-100 {
1119
+ --tw-border-opacity: 1 !important;
1120
+ border-color: rgb(48 55 94 / var(--tw-border-opacity)) !important;
1121
+ }
1122
+ .border-grey-5 {
1123
+ --tw-border-opacity: 1 !important;
1124
+ border-color: rgb(237 237 240 / var(--tw-border-opacity)) !important;
1125
+ }
1126
+ .border-grey-50 {
1127
+ --tw-border-opacity: 1 !important;
1128
+ border-color: rgb(120 120 133 / var(--tw-border-opacity)) !important;
1129
+ }
1130
+ .border-grey-10 {
1131
+ --tw-border-opacity: 1 !important;
1132
+ border-color: rgb(225 225 227 / var(--tw-border-opacity)) !important;
1133
+ }
1134
+ .border-grey-40 {
1135
+ --tw-border-opacity: 1 !important;
1136
+ border-color: rgb(150 150 160 / var(--tw-border-opacity)) !important;
1137
+ }
1138
+ .border-current {
1139
+ border-color: currentColor !important;
1140
+ }
1141
+ .border-transparent {
1142
+ border-color: transparent !important;
1143
+ }
1144
+ .border-grey-100 {
1145
+ --tw-border-opacity: 1 !important;
1146
+ border-color: rgb(25 25 29 / var(--tw-border-opacity)) !important;
1147
+ }
1148
+ .border-primary-80 {
1149
+ --tw-border-opacity: 1 !important;
1150
+ border-color: rgb(228 26 74 / var(--tw-border-opacity)) !important;
1151
+ }
1152
+ .bg-grey-10 {
1153
+ --tw-bg-opacity: 1 !important;
1154
+ background-color: rgb(225 225 227 / var(--tw-bg-opacity)) !important;
1155
+ }
1156
+ .bg-error-5 {
1157
+ --tw-bg-opacity: 1 !important;
1158
+ background-color: rgb(254 232 231 / var(--tw-bg-opacity)) !important;
1159
+ }
1160
+ .bg-info-5 {
1161
+ --tw-bg-opacity: 1 !important;
1162
+ background-color: rgb(239 250 255 / var(--tw-bg-opacity)) !important;
1163
+ }
1164
+ .bg-success-5 {
1165
+ --tw-bg-opacity: 1 !important;
1166
+ background-color: rgb(236 247 237 / var(--tw-bg-opacity)) !important;
1167
+ }
1168
+ .bg-warning-5 {
1169
+ --tw-bg-opacity: 1 !important;
1170
+ background-color: rgb(255 248 234 / var(--tw-bg-opacity)) !important;
1171
+ }
1172
+ .bg-grey-0 {
1173
+ --tw-bg-opacity: 1 !important;
1174
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
1175
+ }
1176
+ .bg-navyBlue-100 {
1177
+ --tw-bg-opacity: 1 !important;
1178
+ background-color: rgb(48 55 94 / var(--tw-bg-opacity)) !important;
1179
+ }
1180
+ .bg-white {
1181
+ --tw-bg-opacity: 1 !important;
1182
+ background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
1183
+ }
1184
+ .bg-grey-5 {
1185
+ --tw-bg-opacity: 1 !important;
1186
+ background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
1187
+ }
1188
+ .bg-info-50 {
1189
+ --tw-bg-opacity: 1 !important;
1190
+ background-color: rgb(40 180 244 / var(--tw-bg-opacity)) !important;
1191
+ }
1192
+ .bg-warning-70 {
1193
+ --tw-bg-opacity: 1 !important;
1194
+ background-color: rgb(255 179 0 / var(--tw-bg-opacity)) !important;
1195
+ }
1196
+ .bg-success-70 {
1197
+ --tw-bg-opacity: 1 !important;
1198
+ background-color: rgb(0 179 0 / var(--tw-bg-opacity)) !important;
1199
+ }
1200
+ .bg-error-70 {
1201
+ --tw-bg-opacity: 1 !important;
1202
+ background-color: rgb(216 0 5 / var(--tw-bg-opacity)) !important;
1203
+ }
1204
+ .bg-current {
1205
+ background-color: currentColor !important;
1206
+ }
1207
+ .bg-primary-80 {
1208
+ --tw-bg-opacity: 1 !important;
1209
+ background-color: rgb(228 26 74 / var(--tw-bg-opacity)) !important;
1210
+ }
1211
+ .bg-transparent {
1212
+ background-color: transparent !important;
1213
+ }
1214
+ .bg-secondary-5 {
1215
+ --tw-bg-opacity: 1 !important;
1216
+ background-color: rgb(255 243 232 / var(--tw-bg-opacity)) !important;
1217
+ }
1218
+ .bg-error-0 {
1219
+ --tw-bg-opacity: 1 !important;
1220
+ background-color: rgb(254 242 241 / var(--tw-bg-opacity)) !important;
1221
+ }
1222
+ .bg-grey-20 {
1223
+ --tw-bg-opacity: 1 !important;
1224
+ background-color: rgb(210 210 214 / var(--tw-bg-opacity)) !important;
1225
+ }
1226
+ .bg-primary-70 {
1227
+ --tw-bg-opacity: 1 !important;
1228
+ background-color: rgb(255 53 84 / var(--tw-bg-opacity)) !important;
1229
+ }
1230
+ .bg-grey-90 {
1231
+ --tw-bg-opacity: 1 !important;
1232
+ background-color: rgb(41 42 49 / var(--tw-bg-opacity)) !important;
1233
+ }
1234
+ .bg-gradient-to-r {
1235
+ background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
1236
+ }
1237
+ .bg-gradient-to-l {
1238
+ background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
1239
+ }
1240
+ .from-white {
1241
+ --tw-gradient-from: white !important;
1242
+ --tw-gradient-to: rgba(255, 255, 255, 0) !important;
1243
+ --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
1244
+ }
1245
+ .via-white {
1246
+ --tw-gradient-to: rgba(255, 255, 255, 0) !important;
1247
+ --tw-gradient-stops: var(--tw-gradient-from), white, var(--tw-gradient-to) !important;
1248
+ }
1249
+ .bg-cover {
1250
+ background-size: cover !important;
1251
+ }
1252
+ .stroke-white {
1253
+ stroke: white !important;
1254
+ }
1255
+ .stroke-grey-30 {
1256
+ stroke: #b4b4bb !important;
1257
+ }
1258
+ .object-cover {
1259
+ -o-object-fit: cover !important;
1260
+ object-fit: cover !important;
1261
+ }
1262
+ .p-4 {
1263
+ padding: 12px !important;
1264
+ }
1265
+ .p-5 {
1266
+ padding: 16px !important;
1267
+ }
1268
+ .p-3 {
1269
+ padding: 8px !important;
1270
+ }
1271
+ .p-6 {
1272
+ padding: 24px !important;
1273
+ }
1274
+ .p-2 {
1275
+ padding: 4px !important;
1276
+ }
1277
+ .px-3 {
1278
+ padding-left: 8px !important;
1279
+ padding-right: 8px !important;
1280
+ }
1281
+ .py-3 {
1282
+ padding-top: 8px !important;
1283
+ padding-bottom: 8px !important;
1284
+ }
1285
+ .py-2 {
1286
+ padding-top: 4px !important;
1287
+ padding-bottom: 4px !important;
1288
+ }
1289
+ .py-1 {
1290
+ padding-top: 2px !important;
1291
+ padding-bottom: 2px !important;
1292
+ }
1293
+ .px-2 {
1294
+ padding-left: 4px !important;
1295
+ padding-right: 4px !important;
1296
+ }
1297
+ .py-7 {
1298
+ padding-top: 32px !important;
1299
+ padding-bottom: 32px !important;
1300
+ }
1301
+ .px-7 {
1302
+ padding-left: 32px !important;
1303
+ padding-right: 32px !important;
1304
+ }
1305
+ .py-6 {
1306
+ padding-top: 24px !important;
1307
+ padding-bottom: 24px !important;
1308
+ }
1309
+ .px-5 {
1310
+ padding-left: 16px !important;
1311
+ padding-right: 16px !important;
1312
+ }
1313
+ .py-\[6px\] {
1314
+ padding-top: 6px !important;
1315
+ padding-bottom: 6px !important;
1316
+ }
1317
+ .px-\[1px\] {
1318
+ padding-left: 1px !important;
1319
+ padding-right: 1px !important;
1320
+ }
1321
+ .px-4 {
1322
+ padding-left: 12px !important;
1323
+ padding-right: 12px !important;
1324
+ }
1325
+ .py-\[14px\] {
1326
+ padding-top: 14px !important;
1327
+ padding-bottom: 14px !important;
1328
+ }
1329
+ .px-1 {
1330
+ padding-left: 2px !important;
1331
+ padding-right: 2px !important;
1332
+ }
1333
+ .px-\[4px\] {
1334
+ padding-left: 4px !important;
1335
+ padding-right: 4px !important;
1336
+ }
1337
+ .py-4 {
1338
+ padding-top: 12px !important;
1339
+ padding-bottom: 12px !important;
1340
+ }
1341
+ .px-0 {
1342
+ padding-left: 0 !important;
1343
+ padding-right: 0 !important;
1344
+ }
1345
+ .pb-6 {
1346
+ padding-bottom: 24px !important;
1347
+ }
1348
+ .pl-7 {
1349
+ padding-left: 32px !important;
1350
+ }
1351
+ .pb-3 {
1352
+ padding-bottom: 8px !important;
1353
+ }
1354
+ .pr-4 {
1355
+ padding-right: 12px !important;
1356
+ }
1357
+ .pl-4 {
1358
+ padding-left: 12px !important;
1359
+ }
1360
+ .text-left {
1361
+ text-align: left !important;
1362
+ }
1363
+ .text-center {
1364
+ text-align: center !important;
1365
+ }
1366
+ .text-right {
1367
+ text-align: right !important;
1368
+ }
1369
+ .align-middle {
1370
+ vertical-align: middle !important;
1371
+ }
1372
+ .text-\[9px\] {
1373
+ font-size: 9px !important;
1374
+ }
1375
+ .text-\[8px\] {
1376
+ font-size: 8px !important;
1377
+ }
1378
+ .font-medium {
1379
+ font-weight: 500 !important;
1380
+ }
1381
+ .font-normal {
1382
+ font-weight: 400 !important;
1383
+ }
1384
+ .font-semibold {
1385
+ font-weight: 600 !important;
1386
+ }
1387
+ .uppercase {
1388
+ text-transform: uppercase !important;
1389
+ }
1390
+ .capitalize {
1391
+ text-transform: capitalize !important;
1392
+ }
1393
+ .italic {
1394
+ font-style: italic !important;
1395
+ }
1396
+ .leading-none {
1397
+ line-height: 1 !important;
1398
+ }
1399
+ .leading-\[18px\] {
1400
+ line-height: 18px !important;
1401
+ }
1402
+ .leading-\[0px\] {
1403
+ line-height: 0px !important;
1404
+ }
1405
+ .text-error-100 {
1406
+ --tw-text-opacity: 1 !important;
1407
+ color: rgb(170 0 0 / var(--tw-text-opacity)) !important;
1408
+ }
1409
+ .text-error-90 {
1410
+ --tw-text-opacity: 1 !important;
1411
+ color: rgb(185 0 0 / var(--tw-text-opacity)) !important;
1412
+ }
1413
+ .text-error-80 {
1414
+ --tw-text-opacity: 1 !important;
1415
+ color: rgb(197 0 1 / var(--tw-text-opacity)) !important;
1416
+ }
1417
+ .text-error-70 {
1418
+ --tw-text-opacity: 1 !important;
1419
+ color: rgb(216 0 5 / var(--tw-text-opacity)) !important;
1420
+ }
1421
+ .text-error-60 {
1422
+ --tw-text-opacity: 1 !important;
1423
+ color: rgb(231 0 0 / var(--tw-text-opacity)) !important;
1424
+ }
1425
+ .text-error-50 {
1426
+ --tw-text-opacity: 1 !important;
1427
+ color: rgb(230 39 40 / var(--tw-text-opacity)) !important;
1428
+ }
1429
+ .text-error-40 {
1430
+ --tw-text-opacity: 1 !important;
1431
+ color: rgb(224 80 79 / var(--tw-text-opacity)) !important;
1432
+ }
1433
+ .text-error-30 {
1434
+ --tw-text-opacity: 1 !important;
1435
+ color: rgb(237 121 117 / var(--tw-text-opacity)) !important;
1436
+ }
1437
+ .text-error-20 {
1438
+ --tw-text-opacity: 1 !important;
1439
+ color: rgb(255 173 179 / var(--tw-text-opacity)) !important;
1440
+ }
1441
+ .text-error-10 {
1442
+ --tw-text-opacity: 1 !important;
1443
+ color: rgb(255 203 210 / var(--tw-text-opacity)) !important;
1444
+ }
1445
+ .text-error-5 {
1446
+ --tw-text-opacity: 1 !important;
1447
+ color: rgb(254 232 231 / var(--tw-text-opacity)) !important;
1448
+ }
1449
+ .text-error-0 {
1450
+ --tw-text-opacity: 1 !important;
1451
+ color: rgb(254 242 241 / var(--tw-text-opacity)) !important;
1452
+ }
1453
+ .text-warning-100 {
1454
+ --tw-text-opacity: 1 !important;
1455
+ color: rgb(254 109 0 / var(--tw-text-opacity)) !important;
1456
+ }
1457
+ .text-warning-90 {
1458
+ --tw-text-opacity: 1 !important;
1459
+ color: rgb(255 144 3 / var(--tw-text-opacity)) !important;
1460
+ }
1461
+ .text-warning-80 {
1462
+ --tw-text-opacity: 1 !important;
1463
+ color: rgb(253 159 0 / var(--tw-text-opacity)) !important;
1464
+ }
1465
+ .text-warning-70 {
1466
+ --tw-text-opacity: 1 !important;
1467
+ color: rgb(255 179 0 / var(--tw-text-opacity)) !important;
1468
+ }
1469
+ .text-warning-60 {
1470
+ --tw-text-opacity: 1 !important;
1471
+ color: rgb(255 193 7 / var(--tw-text-opacity)) !important;
1472
+ }
1473
+ .text-warning-50 {
1474
+ --tw-text-opacity: 1 !important;
1475
+ color: rgb(253 201 38 / var(--tw-text-opacity)) !important;
1476
+ }
1477
+ .text-warning-40 {
1478
+ --tw-text-opacity: 1 !important;
1479
+ color: rgb(253 212 77 / var(--tw-text-opacity)) !important;
1480
+ }
1481
+ .text-warning-30 {
1482
+ --tw-text-opacity: 1 !important;
1483
+ color: rgb(253 223 129 / var(--tw-text-opacity)) !important;
1484
+ }
1485
+ .text-warning-20 {
1486
+ --tw-text-opacity: 1 !important;
1487
+ color: rgb(254 235 178 / var(--tw-text-opacity)) !important;
1488
+ }
1489
+ .text-warning-10 {
1490
+ --tw-text-opacity: 1 !important;
1491
+ color: rgb(255 242 205 / var(--tw-text-opacity)) !important;
1492
+ }
1493
+ .text-warning-5 {
1494
+ --tw-text-opacity: 1 !important;
1495
+ color: rgb(255 248 234 / var(--tw-text-opacity)) !important;
1496
+ }
1497
+ .text-warning-0 {
1498
+ --tw-text-opacity: 1 !important;
1499
+ color: rgb(255 253 249 / var(--tw-text-opacity)) !important;
1500
+ }
1501
+ .text-success-100 {
1502
+ --tw-text-opacity: 1 !important;
1503
+ color: rgb(0 111 0 / var(--tw-text-opacity)) !important;
1504
+ }
1505
+ .text-success-90 {
1506
+ --tw-text-opacity: 1 !important;
1507
+ color: rgb(0 142 0 / var(--tw-text-opacity)) !important;
1508
+ }
1509
+ .text-success-80 {
1510
+ --tw-text-opacity: 1 !important;
1511
+ color: rgb(0 159 0 / var(--tw-text-opacity)) !important;
1512
+ }
1513
+ .text-success-70 {
1514
+ --tw-text-opacity: 1 !important;
1515
+ color: rgb(0 179 0 / var(--tw-text-opacity)) !important;
1516
+ }
1517
+ .text-success-60 {
1518
+ --tw-text-opacity: 1 !important;
1519
+ color: rgb(0 195 0 / var(--tw-text-opacity)) !important;
1520
+ }
1521
+ .text-success-50 {
1522
+ --tw-text-opacity: 1 !important;
1523
+ color: rgb(64 206 55 / var(--tw-text-opacity)) !important;
1524
+ }
1525
+ .text-success-40 {
1526
+ --tw-text-opacity: 1 !important;
1527
+ color: rgb(96 219 87 / var(--tw-text-opacity)) !important;
1528
+ }
1529
+ .text-success-30 {
1530
+ --tw-text-opacity: 1 !important;
1531
+ color: rgb(137 235 128 / var(--tw-text-opacity)) !important;
1532
+ }
1533
+ .text-success-20 {
1534
+ --tw-text-opacity: 1 !important;
1535
+ color: rgb(175 255 167 / var(--tw-text-opacity)) !important;
1536
+ }
1537
+ .text-success-10 {
1538
+ --tw-text-opacity: 1 !important;
1539
+ color: rgb(203 255 201 / var(--tw-text-opacity)) !important;
1540
+ }
1541
+ .text-success-5 {
1542
+ --tw-text-opacity: 1 !important;
1543
+ color: rgb(236 247 237 / var(--tw-text-opacity)) !important;
1544
+ }
1545
+ .text-success-0 {
1546
+ --tw-text-opacity: 1 !important;
1547
+ color: rgb(245 250 245 / var(--tw-text-opacity)) !important;
1548
+ }
1549
+ .text-info-100 {
1550
+ --tw-text-opacity: 1 !important;
1551
+ color: rgb(2 86 154 / var(--tw-text-opacity)) !important;
1552
+ }
1553
+ .text-info-90 {
1554
+ --tw-text-opacity: 1 !important;
1555
+ color: rgb(1 116 186 / var(--tw-text-opacity)) !important;
1556
+ }
1557
+ .text-info-80 {
1558
+ --tw-text-opacity: 1 !important;
1559
+ color: rgb(7 136 209 / var(--tw-text-opacity)) !important;
1560
+ }
1561
+ .text-info-70 {
1562
+ --tw-text-opacity: 1 !important;
1563
+ color: rgb(3 153 227 / var(--tw-text-opacity)) !important;
1564
+ }
1565
+ .text-info-60 {
1566
+ --tw-text-opacity: 1 !important;
1567
+ color: rgb(2 168 243 / var(--tw-text-opacity)) !important;
1568
+ }
1569
+ .text-info-50 {
1570
+ --tw-text-opacity: 1 !important;
1571
+ color: rgb(40 180 244 / var(--tw-text-opacity)) !important;
1572
+ }
1573
+ .text-info-40 {
1574
+ --tw-text-opacity: 1 !important;
1575
+ color: rgb(76 194 247 / var(--tw-text-opacity)) !important;
1576
+ }
1577
+ .text-info-30 {
1578
+ --tw-text-opacity: 1 !important;
1579
+ color: rgb(127 209 247 / var(--tw-text-opacity)) !important;
1580
+ }
1581
+ .text-info-20 {
1582
+ --tw-text-opacity: 1 !important;
1583
+ color: rgb(180 229 251 / var(--tw-text-opacity)) !important;
1584
+ }
1585
+ .text-info-10 {
1586
+ --tw-text-opacity: 1 !important;
1587
+ color: rgb(224 245 254 / var(--tw-text-opacity)) !important;
1588
+ }
1589
+ .text-info-5 {
1590
+ --tw-text-opacity: 1 !important;
1591
+ color: rgb(239 250 255 / var(--tw-text-opacity)) !important;
1592
+ }
1593
+ .text-info-0 {
1594
+ --tw-text-opacity: 1 !important;
1595
+ color: rgb(249 253 255 / var(--tw-text-opacity)) !important;
1596
+ }
1597
+ .text-grey-100 {
1598
+ --tw-text-opacity: 1 !important;
1599
+ color: rgb(25 25 29 / var(--tw-text-opacity)) !important;
1600
+ }
1601
+ .text-grey-90 {
1602
+ --tw-text-opacity: 1 !important;
1603
+ color: rgb(41 42 49 / var(--tw-text-opacity)) !important;
1604
+ }
1605
+ .text-grey-80 {
1606
+ --tw-text-opacity: 1 !important;
1607
+ color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
1608
+ }
1609
+ .text-grey-70 {
1610
+ --tw-text-opacity: 1 !important;
1611
+ color: rgb(74 75 87 / var(--tw-text-opacity)) !important;
1612
+ }
1613
+ .text-grey-60 {
1614
+ --tw-text-opacity: 1 !important;
1615
+ color: rgb(90 91 106 / var(--tw-text-opacity)) !important;
1616
+ }
1617
+ .text-grey-50 {
1618
+ --tw-text-opacity: 1 !important;
1619
+ color: rgb(120 120 133 / var(--tw-text-opacity)) !important;
1620
+ }
1621
+ .text-grey-40 {
1622
+ --tw-text-opacity: 1 !important;
1623
+ color: rgb(150 150 160 / var(--tw-text-opacity)) !important;
1624
+ }
1625
+ .text-grey-30 {
1626
+ --tw-text-opacity: 1 !important;
1627
+ color: rgb(180 180 187 / var(--tw-text-opacity)) !important;
1628
+ }
1629
+ .text-grey-10 {
1630
+ --tw-text-opacity: 1 !important;
1631
+ color: rgb(225 225 227 / var(--tw-text-opacity)) !important;
1632
+ }
1633
+ .text-grey-5 {
1634
+ --tw-text-opacity: 1 !important;
1635
+ color: rgb(237 237 240 / var(--tw-text-opacity)) !important;
1636
+ }
1637
+ .text-grey-0 {
1638
+ --tw-text-opacity: 1 !important;
1639
+ color: rgb(247 247 250 / var(--tw-text-opacity)) !important;
1640
+ }
1641
+ .text-secondary-100 {
1642
+ --tw-text-opacity: 1 !important;
1643
+ color: rgb(225 29 22 / var(--tw-text-opacity)) !important;
1644
+ }
1645
+ .text-secondary-90 {
1646
+ --tw-text-opacity: 1 !important;
1647
+ color: rgb(235 70 16 / var(--tw-text-opacity)) !important;
1648
+ }
1649
+ .text-secondary-80 {
1650
+ --tw-text-opacity: 1 !important;
1651
+ color: rgb(243 88 13 / var(--tw-text-opacity)) !important;
1652
+ }
1653
+ .text-secondary-70 {
1654
+ --tw-text-opacity: 1 !important;
1655
+ color: rgb(249 106 2 / var(--tw-text-opacity)) !important;
1656
+ }
1657
+ .text-secondary-60 {
1658
+ --tw-text-opacity: 1 !important;
1659
+ color: rgb(255 119 0 / var(--tw-text-opacity)) !important;
1660
+ }
1661
+ .text-secondary-50 {
1662
+ --tw-text-opacity: 1 !important;
1663
+ color: rgb(252 135 26 / var(--tw-text-opacity)) !important;
1664
+ }
1665
+ .text-secondary-40 {
1666
+ --tw-text-opacity: 1 !important;
1667
+ color: rgb(251 154 62 / var(--tw-text-opacity)) !important;
1668
+ }
1669
+ .text-secondary-30 {
1670
+ --tw-text-opacity: 1 !important;
1671
+ color: rgb(250 178 110 / var(--tw-text-opacity)) !important;
1672
+ }
1673
+ .text-secondary-20 {
1674
+ --tw-text-opacity: 1 !important;
1675
+ color: rgb(248 201 156 / var(--tw-text-opacity)) !important;
1676
+ }
1677
+ .text-secondary-10 {
1678
+ --tw-text-opacity: 1 !important;
1679
+ color: rgb(254 232 208 / var(--tw-text-opacity)) !important;
1680
+ }
1681
+ .text-secondary-5 {
1682
+ --tw-text-opacity: 1 !important;
1683
+ color: rgb(255 243 232 / var(--tw-text-opacity)) !important;
1684
+ }
1685
+ .text-secondary-0 {
1686
+ --tw-text-opacity: 1 !important;
1687
+ color: rgb(255 251 248 / var(--tw-text-opacity)) !important;
1688
+ }
1689
+ .text-primary-100 {
1690
+ --tw-text-opacity: 1 !important;
1691
+ color: rgb(167 0 69 / var(--tw-text-opacity)) !important;
1692
+ }
1693
+ .text-primary-90 {
1694
+ --tw-text-opacity: 1 !important;
1695
+ color: rgb(198 4 67 / var(--tw-text-opacity)) !important;
1696
+ }
1697
+ .text-primary-80 {
1698
+ --tw-text-opacity: 1 !important;
1699
+ color: rgb(228 26 74 / var(--tw-text-opacity)) !important;
1700
+ }
1701
+ .text-primary-70 {
1702
+ --tw-text-opacity: 1 !important;
1703
+ color: rgb(255 53 84 / var(--tw-text-opacity)) !important;
1704
+ }
1705
+ .text-primary-60 {
1706
+ --tw-text-opacity: 1 !important;
1707
+ color: rgb(255 82 117 / var(--tw-text-opacity)) !important;
1708
+ }
1709
+ .text-primary-50 {
1710
+ --tw-text-opacity: 1 !important;
1711
+ color: rgb(255 111 148 / var(--tw-text-opacity)) !important;
1712
+ }
1713
+ .text-primary-40 {
1714
+ --tw-text-opacity: 1 !important;
1715
+ color: rgb(255 141 176 / var(--tw-text-opacity)) !important;
1716
+ }
1717
+ .text-primary-30 {
1718
+ --tw-text-opacity: 1 !important;
1719
+ color: rgb(255 169 201 / var(--tw-text-opacity)) !important;
1720
+ }
1721
+ .text-primary-20 {
1722
+ --tw-text-opacity: 1 !important;
1723
+ color: rgb(255 196 222 / var(--tw-text-opacity)) !important;
1724
+ }
1725
+ .text-primary-10 {
1726
+ --tw-text-opacity: 1 !important;
1727
+ color: rgb(255 222 239 / var(--tw-text-opacity)) !important;
1728
+ }
1729
+ .text-primary-5 {
1730
+ --tw-text-opacity: 1 !important;
1731
+ color: rgb(255 232 244 / var(--tw-text-opacity)) !important;
1732
+ }
1733
+ .text-primary-0 {
1734
+ --tw-text-opacity: 1 !important;
1735
+ color: rgb(255 249 252 / var(--tw-text-opacity)) !important;
1736
+ }
1737
+ .text-grey-20 {
1738
+ --tw-text-opacity: 1 !important;
1739
+ color: rgb(210 210 214 / var(--tw-text-opacity)) !important;
1740
+ }
1741
+ .text-white {
1742
+ --tw-text-opacity: 1 !important;
1743
+ color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
1744
+ }
1745
+ .underline {
1746
+ -webkit-text-decoration-line: underline !important;
1747
+ text-decoration-line: underline !important;
1748
+ }
1749
+ .overline {
1750
+ -webkit-text-decoration-line: overline !important;
1751
+ text-decoration-line: overline !important;
1752
+ }
1753
+ .no-underline {
1754
+ -webkit-text-decoration-line: none !important;
1755
+ text-decoration-line: none !important;
1756
+ }
1757
+ .underline-offset-2 {
1758
+ text-underline-offset: 2px !important;
1759
+ }
1760
+ .opacity-70 {
1761
+ opacity: 0.7 !important;
1762
+ }
1763
+ .opacity-0 {
1764
+ opacity: 0 !important;
1765
+ }
1766
+ .opacity-40 {
1767
+ opacity: 0.4 !important;
1768
+ }
1769
+ .shadow-16dp {
1770
+ --tw-shadow: 0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12) !important;
1771
+ --tw-shadow-colored: 0px 16px 32px var(--tw-shadow-color), 0px 8px 16px var(--tw-shadow-color) !important;
1772
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
1773
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
1774
+ }
1775
+ .shadow-2dp {
1776
+ --tw-shadow: 0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24) !important;
1777
+ --tw-shadow-colored: 0px 2px 4px var(--tw-shadow-color), 0px 1px 2px var(--tw-shadow-color) !important;
1778
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
1779
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
1780
+ }
1781
+ .shadow-4dp {
1782
+ --tw-shadow: 0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20) !important;
1783
+ --tw-shadow-colored: 0px 4px 8px var(--tw-shadow-color), 0px 2px 4px var(--tw-shadow-color) !important;
1784
+ box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow) !important;
1785
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow) !important;
1786
+ }
1787
+ .outline-none {
1788
+ outline: 2px solid transparent !important;
1789
+ outline-offset: 2px !important;
1790
+ }
1791
+ .ring-1 {
1792
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
1793
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
1794
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
1795
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
1796
+ }
1797
+ .ring-2 {
1798
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
1799
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
1800
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
1801
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
1802
+ }
1803
+ .ring-inset {
1804
+ --tw-ring-inset: inset !important;
1805
+ }
1806
+ .ring-grey-30 {
1807
+ --tw-ring-opacity: 1 !important;
1808
+ --tw-ring-color: rgb(180 180 187 / var(--tw-ring-opacity)) !important;
1809
+ }
1810
+ .ring-offset-0 {
1811
+ --tw-ring-offset-width: 0px !important;
1812
+ }
1813
+ .blur {
1814
+ --tw-blur: blur(8px) !important;
1815
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
1816
+ }
1817
+ .filter {
1818
+ filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
1819
+ }
1820
+ .transition {
1821
+ transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter !important;
1822
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
1823
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter !important;
1824
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
1825
+ transition-duration: 150ms !important;
1826
+ }
1827
+ .transition-all {
1828
+ transition-property: all !important;
1829
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
1830
+ transition-duration: 150ms !important;
1831
+ }
1832
+ .delay-150 {
1833
+ transition-delay: 150ms !important;
1834
+ }
1835
+ .duration-300 {
1836
+ transition-duration: 300ms !important;
1837
+ }
1838
+ .ease-in-out {
1839
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
1840
+ }
1841
+ .scrollbar-hide {
1842
+ -ms-overflow-style: none !important;
1843
+ scrollbar-width: none !important;
1844
+ }
1845
+ .scrollbar-hide::-webkit-scrollbar {
1846
+ display: none !important;
1847
+ }
1848
+ .placeholder\:text-grey-40::-moz-placeholder {
1849
+ --tw-text-opacity: 1 !important;
1850
+ color: rgb(150 150 160 / var(--tw-text-opacity)) !important;
1851
+ }
1852
+ .placeholder\:text-grey-40::placeholder {
1853
+ --tw-text-opacity: 1 !important;
1854
+ color: rgb(150 150 160 / var(--tw-text-opacity)) !important;
1855
+ }
1856
+ .first\:mt-0:first-child {
1857
+ margin-top: 0 !important;
1858
+ }
1859
+ .hover\:cursor-pointer:hover {
1860
+ cursor: pointer !important;
1861
+ }
1862
+ .hover\:border-grey-50:hover {
1863
+ --tw-border-opacity: 1 !important;
1864
+ border-color: rgb(120 120 133 / var(--tw-border-opacity)) !important;
1865
+ }
1866
+ .hover\:border-grey-20:hover {
1867
+ --tw-border-opacity: 1 !important;
1868
+ border-color: rgb(210 210 214 / var(--tw-border-opacity)) !important;
1869
+ }
1870
+ .hover\:bg-grey-0:hover {
1871
+ --tw-bg-opacity: 1 !important;
1872
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
1873
+ }
1874
+ .hover\:bg-primary-70:hover {
1875
+ --tw-bg-opacity: 1 !important;
1876
+ background-color: rgb(255 53 84 / var(--tw-bg-opacity)) !important;
1877
+ }
1878
+ .hover\:bg-grey-5:hover {
1879
+ --tw-bg-opacity: 1 !important;
1880
+ background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
1881
+ }
1882
+ .hover\:text-primary-70:hover {
1883
+ --tw-text-opacity: 1 !important;
1884
+ color: rgb(255 53 84 / var(--tw-text-opacity)) !important;
1885
+ }
1886
+ .hover\:text-grey-80:hover {
1887
+ --tw-text-opacity: 1 !important;
1888
+ color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
1889
+ }
1890
+ .hover\:text-grey-90:hover {
1891
+ --tw-text-opacity: 1 !important;
1892
+ color: rgb(41 42 49 / var(--tw-text-opacity)) !important;
1893
+ }
1894
+ .hover\:text-primary-80:hover {
1895
+ --tw-text-opacity: 1 !important;
1896
+ color: rgb(228 26 74 / var(--tw-text-opacity)) !important;
1897
+ }
1898
+ .hover\:no-underline:hover {
1899
+ -webkit-text-decoration-line: none !important;
1900
+ text-decoration-line: none !important;
1901
+ }
1902
+ .hover\:ring-grey-50:hover {
1903
+ --tw-ring-opacity: 1 !important;
1904
+ --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity)) !important;
1905
+ }
1906
+ .focus\:border-info-70:focus {
1907
+ --tw-border-opacity: 1 !important;
1908
+ border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
1909
+ }
1910
+ .focus\:border-transparent:focus {
1911
+ border-color: transparent !important;
1912
+ }
1913
+ .focus\:text-primary-80:focus {
1914
+ --tw-text-opacity: 1 !important;
1915
+ color: rgb(228 26 74 / var(--tw-text-opacity)) !important;
1916
+ }
1917
+ .focus\:outline-none:focus {
1918
+ outline: 2px solid transparent !important;
1919
+ outline-offset: 2px !important;
1920
+ }
1921
+ .focus\:ring-0:focus {
1922
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
1923
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
1924
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
1925
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
1926
+ }
1927
+ .focus\:ring-2:focus {
1928
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
1929
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
1930
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
1931
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
1932
+ }
1933
+ .focus\:ring-1:focus {
1934
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
1935
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
1936
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
1937
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
1938
+ }
1939
+ .focus\:ring-grey-60:focus {
1940
+ --tw-ring-opacity: 1 !important;
1941
+ --tw-ring-color: rgb(90 91 106 / var(--tw-ring-opacity)) !important;
1942
+ }
1943
+ .focus\:ring-offset-0:focus {
1944
+ --tw-ring-offset-width: 0px !important;
1945
+ }
1946
+ .focus-visible\:border-info-70.focus-visible {
1947
+ --tw-border-opacity: 1 !important;
1948
+ border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
1949
+ }
1950
+ .focus-visible\:border-info-70:focus-visible {
1951
+ --tw-border-opacity: 1 !important;
1952
+ border-color: rgb(3 153 227 / var(--tw-border-opacity)) !important;
1953
+ }
1954
+ .focus-visible\:bg-grey-0.focus-visible {
1955
+ --tw-bg-opacity: 1 !important;
1956
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
1957
+ }
1958
+ .focus-visible\:bg-grey-0:focus-visible {
1959
+ --tw-bg-opacity: 1 !important;
1960
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
1961
+ }
1962
+ .focus-visible\:text-grey-80.focus-visible {
1963
+ --tw-text-opacity: 1 !important;
1964
+ color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
1965
+ }
1966
+ .focus-visible\:text-grey-80:focus-visible {
1967
+ --tw-text-opacity: 1 !important;
1968
+ color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
1969
+ }
1970
+ .focus-visible\:text-grey-90.focus-visible {
1971
+ --tw-text-opacity: 1 !important;
1972
+ color: rgb(41 42 49 / var(--tw-text-opacity)) !important;
1973
+ }
1974
+ .focus-visible\:text-grey-90:focus-visible {
1975
+ --tw-text-opacity: 1 !important;
1976
+ color: rgb(41 42 49 / var(--tw-text-opacity)) !important;
1977
+ }
1978
+ .focus-visible\:outline-0.focus-visible {
1979
+ outline-width: 0px !important;
1980
+ }
1981
+ .focus-visible\:outline-0:focus-visible {
1982
+ outline-width: 0px !important;
1983
+ }
1984
+ .focus-visible\:ring-2.focus-visible {
1985
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
1986
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
1987
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
1988
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
1989
+ }
1990
+ .focus-visible\:ring-2:focus-visible {
1991
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
1992
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
1993
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
1994
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
1995
+ }
1996
+ .focus-visible\:ring-inset.focus-visible {
1997
+ --tw-ring-inset: inset !important;
1998
+ }
1999
+ .focus-visible\:ring-inset:focus-visible {
2000
+ --tw-ring-inset: inset !important;
2001
+ }
2002
+ .focus-visible\:ring-primary-100.focus-visible {
2003
+ --tw-ring-opacity: 1 !important;
2004
+ --tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity)) !important;
2005
+ }
2006
+ .focus-visible\:ring-primary-100:focus-visible {
2007
+ --tw-ring-opacity: 1 !important;
2008
+ --tw-ring-color: rgb(167 0 69 / var(--tw-ring-opacity)) !important;
2009
+ }
2010
+ .focus-visible\:ring-grey-50.focus-visible {
2011
+ --tw-ring-opacity: 1 !important;
2012
+ --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity)) !important;
2013
+ }
2014
+ .focus-visible\:ring-grey-50:focus-visible {
2015
+ --tw-ring-opacity: 1 !important;
2016
+ --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity)) !important;
2017
+ }
2018
+ .active\:bg-primary-90:active {
2019
+ --tw-bg-opacity: 1 !important;
2020
+ background-color: rgb(198 4 67 / var(--tw-bg-opacity)) !important;
2021
+ }
2022
+ .active\:bg-grey-5:active {
2023
+ --tw-bg-opacity: 1 !important;
2024
+ background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
2025
+ }
2026
+ .active\:bg-transparent:active {
2027
+ background-color: transparent !important;
2028
+ }
2029
+ .active\:bg-grey-10:active {
2030
+ --tw-bg-opacity: 1 !important;
2031
+ background-color: rgb(225 225 227 / var(--tw-bg-opacity)) !important;
2032
+ }
2033
+ .active\:text-grey-80:active {
2034
+ --tw-text-opacity: 1 !important;
2035
+ color: rgb(58 58 68 / var(--tw-text-opacity)) !important;
2036
+ }
2037
+ .active\:text-primary-70:active {
2038
+ --tw-text-opacity: 1 !important;
2039
+ color: rgb(255 53 84 / var(--tw-text-opacity)) !important;
2040
+ }
2041
+ .active\:text-grey-50:active {
2042
+ --tw-text-opacity: 1 !important;
2043
+ color: rgb(120 120 133 / var(--tw-text-opacity)) !important;
2044
+ }
2045
+ .active\:text-grey-70:active {
2046
+ --tw-text-opacity: 1 !important;
2047
+ color: rgb(74 75 87 / var(--tw-text-opacity)) !important;
2048
+ }
2049
+ .active\:ring-0:active {
2050
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
2051
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
2052
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0) !important;
2053
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)) !important;
2054
+ }
2055
+ .active\:ring-grey-50:active {
2056
+ --tw-ring-opacity: 1 !important;
2057
+ --tw-ring-color: rgb(120 120 133 / var(--tw-ring-opacity)) !important;
2058
+ }
2059
+ .disabled\:cursor-not-allowed:disabled {
2060
+ cursor: not-allowed !important;
2061
+ }
2062
+ .disabled\:border-grey-20:disabled {
2063
+ --tw-border-opacity: 1 !important;
2064
+ border-color: rgb(210 210 214 / var(--tw-border-opacity)) !important;
2065
+ }
2066
+ .disabled\:bg-grey-5:disabled {
2067
+ --tw-bg-opacity: 1 !important;
2068
+ background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
2069
+ }
2070
+ .disabled\:bg-primary-5:disabled {
2071
+ --tw-bg-opacity: 1 !important;
2072
+ background-color: rgb(255 232 244 / var(--tw-bg-opacity)) !important;
2073
+ }
2074
+ .disabled\:bg-grey-0:disabled {
2075
+ --tw-bg-opacity: 1 !important;
2076
+ background-color: rgb(247 247 250 / var(--tw-bg-opacity)) !important;
2077
+ }
2078
+ .disabled\:bg-transparent:disabled {
2079
+ background-color: transparent !important;
2080
+ }
2081
+ .disabled\:text-grey-40:disabled {
2082
+ --tw-text-opacity: 1 !important;
2083
+ color: rgb(150 150 160 / var(--tw-text-opacity)) !important;
2084
+ }
2085
+ .disabled\:text-grey-30:disabled {
2086
+ --tw-text-opacity: 1 !important;
2087
+ color: rgb(180 180 187 / var(--tw-text-opacity)) !important;
2088
+ }
2089
+ .disabled\:text-primary-40:disabled {
2090
+ --tw-text-opacity: 1 !important;
2091
+ color: rgb(255 141 176 / var(--tw-text-opacity)) !important;
2092
+ }
2093
+ .disabled\:text-grey-20:disabled {
2094
+ --tw-text-opacity: 1 !important;
2095
+ color: rgb(210 210 214 / var(--tw-text-opacity)) !important;
2096
+ }
2097
+ .disabled\:ring-grey-20:disabled {
2098
+ --tw-ring-opacity: 1 !important;
2099
+ --tw-ring-color: rgb(210 210 214 / var(--tw-ring-opacity)) !important;
2100
+ }
2101
+ .group:hover .group-hover\:visible {
2102
+ visibility: visible !important;
2103
+ }
2104
+ .group:hover .group-hover\:bg-grey-30 {
2105
+ --tw-bg-opacity: 1 !important;
2106
+ background-color: rgb(180 180 187 / var(--tw-bg-opacity)) !important;
2107
+ }
2108
+ .peer:focus~.peer-focus\:border {
2109
+ border-width: 1px !important;
2110
+ }
2111
+ .children\:inline-block>* {
2112
+ display: inline-block !important;
2113
+ }
2114
+ .children\:border-grey-10>* {
2115
+ --tw-border-opacity: 1 !important;
2116
+ border-color: rgb(225 225 227 / var(--tw-border-opacity)) !important;
2117
+ }
2118
+ .children\:last\:border-b-0:last-child>* {
2119
+ border-bottom-width: 0px !important;
2120
+ }
2121
+ .\[\&\>path\]\:stroke-white>path {
2122
+ stroke: white !important;
2123
+ }
2124
+ .\[\&\>path\]\:stroke-grey-30>path {
2125
+ stroke: #b4b4bb !important;
2126
+ }
2127
+ .\[\&\>path\]\:stroke-2>path {
2128
+ stroke-width: 2 !important;
2129
+ }
2130
+ .\[\&\>\*\:not\(\:first-child\)\]\:-ml-3>*:not(:first-child) {
2131
+ margin-left: -8px !important;
2132
+ }
2133
+ .\[\&\>div\:first-child\]\:px-5>div:first-child {
2134
+ padding-left: 16px !important;
2135
+ padding-right: 16px !important;
2136
+ }