@clement_lores/admin-design-system 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (858) hide show
  1. package/.babelrc.cjs +23 -0
  2. package/.eslintrc +50 -0
  3. package/.firebaserc +17 -0
  4. package/.prettierrc +6 -0
  5. package/.releaserc +36 -0
  6. package/.storybook/main.mjs +103 -0
  7. package/.storybook/manager.mjs +49 -0
  8. package/.storybook/preview-head.html +4 -0
  9. package/.storybook/preview.mjs +53 -0
  10. package/.storybook/theme-decorator.js +27 -0
  11. package/README.md +132 -0
  12. package/build/atoms/avatar/avatar.js +44 -0
  13. package/build/atoms/avatar/avatar.stories.js +19 -0
  14. package/build/atoms/avatar/index.js +1 -0
  15. package/build/atoms/badge/badge-props.doc.md +10 -0
  16. package/build/atoms/badge/badge.doc.md +90 -0
  17. package/build/atoms/badge/badge.js +86 -0
  18. package/build/atoms/badge/badge.stories.js +91 -0
  19. package/build/atoms/badge/index.js +1 -0
  20. package/build/atoms/box/box-props.doc.md +16 -0
  21. package/build/atoms/box/box.doc.md +75 -0
  22. package/build/atoms/box/box.js +97 -0
  23. package/build/atoms/box/box.stories.js +41 -0
  24. package/build/atoms/box/index.js +1 -0
  25. package/build/atoms/button/button-css.js +193 -0
  26. package/build/atoms/button/button-props.doc.md +4 -0
  27. package/build/atoms/button/button-props.js +1 -0
  28. package/build/atoms/button/button.doc.md +103 -0
  29. package/build/atoms/button/button.js +37 -0
  30. package/build/atoms/button/button.stories.js +111 -0
  31. package/build/atoms/button/index.js +3 -0
  32. package/build/atoms/check-box/check-box.js +177 -0
  33. package/build/atoms/check-box/check-box.stories.js +54 -0
  34. package/build/atoms/check-box/index.js +1 -0
  35. package/build/atoms/currency-input/currency-input.js +63 -0
  36. package/build/atoms/currency-input/currency-input.stories.js +103 -0
  37. package/build/atoms/currency-input/index.js +1 -0
  38. package/build/atoms/icon/icon.js +134 -0
  39. package/build/atoms/icon/icon.stories.js +69 -0
  40. package/build/atoms/icon/index.js +1 -0
  41. package/build/atoms/illustration/illustration.js +71 -0
  42. package/build/atoms/illustration/illustration.stories.js +55 -0
  43. package/build/atoms/illustration/index.js +1 -0
  44. package/build/atoms/illustrations/accept.js +48 -0
  45. package/build/atoms/illustrations/adminjs-logo.js +52 -0
  46. package/build/atoms/illustrations/astronaut.js +58 -0
  47. package/build/atoms/illustrations/bag.js +90 -0
  48. package/build/atoms/illustrations/beware.js +57 -0
  49. package/build/atoms/illustrations/box.js +95 -0
  50. package/build/atoms/illustrations/calendar.js +97 -0
  51. package/build/atoms/illustrations/cancel.js +48 -0
  52. package/build/atoms/illustrations/cards.js +65 -0
  53. package/build/atoms/illustrations/clip.js +107 -0
  54. package/build/atoms/illustrations/cloud.js +58 -0
  55. package/build/atoms/illustrations/cup.js +60 -0
  56. package/build/atoms/illustrations/details.js +84 -0
  57. package/build/atoms/illustrations/docs.js +77 -0
  58. package/build/atoms/illustrations/document-check.js +66 -0
  59. package/build/atoms/illustrations/document-search.js +69 -0
  60. package/build/atoms/illustrations/drawer.js +84 -0
  61. package/build/atoms/illustrations/file-search.js +37 -0
  62. package/build/atoms/illustrations/flag-in-cog.js +97 -0
  63. package/build/atoms/illustrations/folder.js +73 -0
  64. package/build/atoms/illustrations/folders.js +74 -0
  65. package/build/atoms/illustrations/github-logo.js +26 -0
  66. package/build/atoms/illustrations/identity-card.js +93 -0
  67. package/build/atoms/illustrations/index.js +35 -0
  68. package/build/atoms/illustrations/launch.js +75 -0
  69. package/build/atoms/illustrations/moon.js +135 -0
  70. package/build/atoms/illustrations/not-found.js +80 -0
  71. package/build/atoms/illustrations/notebook.js +132 -0
  72. package/build/atoms/illustrations/padlock.js +79 -0
  73. package/build/atoms/illustrations/photos.js +65 -0
  74. package/build/atoms/illustrations/planet.js +110 -0
  75. package/build/atoms/illustrations/plug.js +80 -0
  76. package/build/atoms/illustrations/props.type.js +1 -0
  77. package/build/atoms/illustrations/rocket-new.js +113 -0
  78. package/build/atoms/illustrations/rocket.js +343 -0
  79. package/build/atoms/illustrations/slack-logo.js +52 -0
  80. package/build/atoms/illustrations/tags.js +62 -0
  81. package/build/atoms/index.js +23 -0
  82. package/build/atoms/input/index.js +1 -0
  83. package/build/atoms/input/input.js +164 -0
  84. package/build/atoms/input/input.stories.js +109 -0
  85. package/build/atoms/label/index.js +1 -0
  86. package/build/atoms/label/label.js +144 -0
  87. package/build/atoms/label/label.stories.js +61 -0
  88. package/build/atoms/link/index.js +1 -0
  89. package/build/atoms/link/link.js +118 -0
  90. package/build/atoms/link/link.stories.js +52 -0
  91. package/build/atoms/loader/index.js +1 -0
  92. package/build/atoms/loader/loader.js +83 -0
  93. package/build/atoms/loader/loader.stories.js +7 -0
  94. package/build/atoms/overlay/index.js +1 -0
  95. package/build/atoms/overlay/overlay.js +19 -0
  96. package/build/atoms/overlay/overlay.stories.js +7 -0
  97. package/build/atoms/phone-input/index.js +1 -0
  98. package/build/atoms/phone-input/phone-input.js +69 -0
  99. package/build/atoms/phone-input/phone-input.stories.js +59 -0
  100. package/build/atoms/placeholder/index.js +1 -0
  101. package/build/atoms/placeholder/placeholder.js +110 -0
  102. package/build/atoms/placeholder/placeholder.stories.js +17 -0
  103. package/build/atoms/radio/index.js +1 -0
  104. package/build/atoms/radio/radio.js +146 -0
  105. package/build/atoms/radio/radio.stories.js +42 -0
  106. package/build/atoms/section/index.js +1 -0
  107. package/build/atoms/section/section.js +45 -0
  108. package/build/atoms/section/section.stories.js +24 -0
  109. package/build/atoms/table/index.js +6 -0
  110. package/build/atoms/table/table-body.js +15 -0
  111. package/build/atoms/table/table-caption.js +39 -0
  112. package/build/atoms/table/table-cell.js +38 -0
  113. package/build/atoms/table/table-head.js +33 -0
  114. package/build/atoms/table/table-row.js +24 -0
  115. package/build/atoms/table/table.js +114 -0
  116. package/build/atoms/table/table.stories.js +46 -0
  117. package/build/atoms/tabs/index.js +2 -0
  118. package/build/atoms/tabs/tab.js +29 -0
  119. package/build/atoms/tabs/tabs.js +118 -0
  120. package/build/atoms/tabs/tabs.stories.js +26 -0
  121. package/build/atoms/text/index.js +1 -0
  122. package/build/atoms/text/text.js +77 -0
  123. package/build/atoms/text-area/index.js +1 -0
  124. package/build/atoms/text-area/text-area.js +58 -0
  125. package/build/atoms/text-area/text-area.stories.js +26 -0
  126. package/build/atoms/tooltip/index.js +5 -0
  127. package/build/atoms/tooltip/tooltip-content.js +10 -0
  128. package/build/atoms/tooltip/tooltip-control.js +102 -0
  129. package/build/atoms/tooltip/tooltip-props.js +1 -0
  130. package/build/atoms/tooltip/tooltip-styled.js +129 -0
  131. package/build/atoms/tooltip/tooltip.doc.md +61 -0
  132. package/build/atoms/tooltip/tooltip.js +65 -0
  133. package/build/atoms/tooltip/tooltip.stories.js +47 -0
  134. package/build/atoms/typography/caption-shared.js +10 -0
  135. package/build/atoms/typography/caption.js +10 -0
  136. package/build/atoms/typography/card-title.js +14 -0
  137. package/build/atoms/typography/header.doc.md +38 -0
  138. package/build/atoms/typography/header.js +128 -0
  139. package/build/atoms/typography/index.js +5 -0
  140. package/build/atoms/typography/small-text.js +10 -0
  141. package/build/atoms/typography/title.js +10 -0
  142. package/build/atoms/typography/typography.stories.js +80 -0
  143. package/build/constants.js +2 -0
  144. package/build/global.js +53 -0
  145. package/build/hooks/use-window-size.js +28 -0
  146. package/build/index.doc.md +133 -0
  147. package/build/index.js +16 -0
  148. package/build/molecules/date-picker/date-picker.js +326 -0
  149. package/build/molecules/date-picker/date-picker.stories.js +49 -0
  150. package/build/molecules/date-picker/index.js +2 -0
  151. package/build/molecules/date-picker/useDatePicker.js +37 -0
  152. package/build/molecules/drawer/drawer-content.js +22 -0
  153. package/build/molecules/drawer/drawer-footer.js +21 -0
  154. package/build/molecules/drawer/drawer.js +120 -0
  155. package/build/molecules/drawer/drawer.stories.js +39 -0
  156. package/build/molecules/drawer/index.js +3 -0
  157. package/build/molecules/drop-down/drop-down-item-action.js +19 -0
  158. package/build/molecules/drop-down/drop-down-item.js +95 -0
  159. package/build/molecules/drop-down/drop-down-menu.js +45 -0
  160. package/build/molecules/drop-down/drop-down-trigger.js +11 -0
  161. package/build/molecules/drop-down/drop-down.doc.md +74 -0
  162. package/build/molecules/drop-down/drop-down.js +85 -0
  163. package/build/molecules/drop-down/drop-down.stories.js +66 -0
  164. package/build/molecules/drop-down/index.js +5 -0
  165. package/build/molecules/drop-zone/drop-zone-image.js +46 -0
  166. package/build/molecules/drop-zone/drop-zone-item.js +128 -0
  167. package/build/molecules/drop-zone/drop-zone.js +318 -0
  168. package/build/molecules/drop-zone/drop-zone.stories.js +111 -0
  169. package/build/molecules/drop-zone/index.js +2 -0
  170. package/build/molecules/form-group/form-group.js +184 -0
  171. package/build/molecules/form-group/form-group.stories.js +35 -0
  172. package/build/molecules/form-group/form-message.js +23 -0
  173. package/build/molecules/form-group/index.js +3 -0
  174. package/build/molecules/form-group/input-group.js +68 -0
  175. package/build/molecules/index.js +15 -0
  176. package/build/molecules/info-box/index.js +1 -0
  177. package/build/molecules/info-box/info-box.js +70 -0
  178. package/build/molecules/info-box/info-box.stories.js +17 -0
  179. package/build/molecules/message-box/index.js +1 -0
  180. package/build/molecules/message-box/message-box.js +173 -0
  181. package/build/molecules/message-box/message-box.stories.js +43 -0
  182. package/build/molecules/modal/index.js +4 -0
  183. package/build/molecules/modal/modal-inline.js +63 -0
  184. package/build/molecules/modal/modal-props.js +1 -0
  185. package/build/molecules/modal/modal-styled.js +52 -0
  186. package/build/molecules/modal/modal-wrapper.js +33 -0
  187. package/build/molecules/modal/modal.doc.md +138 -0
  188. package/build/molecules/modal/modal.js +17 -0
  189. package/build/molecules/modal/modal.stories.js +79 -0
  190. package/build/molecules/navigation-element/index.js +3 -0
  191. package/build/molecules/navigation-element/navigation-element-props.js +1 -0
  192. package/build/molecules/navigation-element/navigation-element-styled.js +66 -0
  193. package/build/molecules/navigation-element/navigation-element.doc.md +69 -0
  194. package/build/molecules/navigation-element/navigation-element.js +61 -0
  195. package/build/molecules/navigation-element/navigation-element.stories.js +53 -0
  196. package/build/molecules/pagination/index.js +1 -0
  197. package/build/molecules/pagination/pagination.js +141 -0
  198. package/build/molecules/pagination/pagination.stories.js +22 -0
  199. package/build/molecules/rich-text-editor/components/heading-select.js +29 -0
  200. package/build/molecules/rich-text-editor/components/image-button.js +45 -0
  201. package/build/molecules/rich-text-editor/components/menu-bar.js +32 -0
  202. package/build/molecules/rich-text-editor/components/menu-button.js +37 -0
  203. package/build/molecules/rich-text-editor/icons/align-center.js +12 -0
  204. package/build/molecules/rich-text-editor/icons/align-justify.js +12 -0
  205. package/build/molecules/rich-text-editor/icons/align-left.js +12 -0
  206. package/build/molecules/rich-text-editor/icons/align-right.js +12 -0
  207. package/build/molecules/rich-text-editor/icons/bold.js +12 -0
  208. package/build/molecules/rich-text-editor/icons/bullet-list.js +12 -0
  209. package/build/molecules/rich-text-editor/icons/clear.js +12 -0
  210. package/build/molecules/rich-text-editor/icons/code.js +18 -0
  211. package/build/molecules/rich-text-editor/icons/font-size.js +12 -0
  212. package/build/molecules/rich-text-editor/icons/image.js +18 -0
  213. package/build/molecules/rich-text-editor/icons/index.js +20 -0
  214. package/build/molecules/rich-text-editor/icons/italic.js +12 -0
  215. package/build/molecules/rich-text-editor/icons/link.js +15 -0
  216. package/build/molecules/rich-text-editor/icons/ordered-list.js +12 -0
  217. package/build/molecules/rich-text-editor/icons/pagebreak.js +12 -0
  218. package/build/molecules/rich-text-editor/icons/paragraph.js +12 -0
  219. package/build/molecules/rich-text-editor/icons/quote.js +12 -0
  220. package/build/molecules/rich-text-editor/icons/redo.js +12 -0
  221. package/build/molecules/rich-text-editor/icons/strikethrough.js +12 -0
  222. package/build/molecules/rich-text-editor/icons/undo.js +12 -0
  223. package/build/molecules/rich-text-editor/index.js +2 -0
  224. package/build/molecules/rich-text-editor/rich-text-editor-props.js +1 -0
  225. package/build/molecules/rich-text-editor/rich-text-editor.js +60 -0
  226. package/build/molecules/rich-text-editor/rich-text-editor.stories.js +85 -0
  227. package/build/molecules/rich-text-editor/rich-text-editor.styled.js +46 -0
  228. package/build/molecules/rich-text-editor/useTiptapCommands.js +15 -0
  229. package/build/molecules/select/index.js +2 -0
  230. package/build/molecules/select/select-async.js +43 -0
  231. package/build/molecules/select/select-theme.js +36 -0
  232. package/build/molecules/select/select.js +45 -0
  233. package/build/molecules/select/select.stories.js +80 -0
  234. package/build/molecules/stepper/index.js +2 -0
  235. package/build/molecules/stepper/step.js +141 -0
  236. package/build/molecules/stepper/stepper.js +115 -0
  237. package/build/molecules/stepper/stepper.stories.js +54 -0
  238. package/build/molecules/tinymce-editor/index.js +1 -0
  239. package/build/molecules/tinymce-editor/tinymce-editor.js +89 -0
  240. package/build/molecules/tinymce-editor/tinymce-editor.styled.js +15 -0
  241. package/build/molecules/value-group/index.js +2 -0
  242. package/build/molecules/value-group/value-group-props.js +1 -0
  243. package/build/molecules/value-group/value-group.doc.md +67 -0
  244. package/build/molecules/value-group/value-group.js +28 -0
  245. package/build/molecules/value-group/value-group.stories.js +41 -0
  246. package/build/organisms/button-group/button-group.doc.md +92 -0
  247. package/build/organisms/button-group/button-group.js +34 -0
  248. package/build/organisms/button-group/button-group.stories.js +103 -0
  249. package/build/organisms/button-group/button-group.styled.js +54 -0
  250. package/build/organisms/button-group/button-group.types.js +1 -0
  251. package/build/organisms/button-group/button-in-group.js +25 -0
  252. package/build/organisms/button-group/drop-down-item-with-buttons.js +45 -0
  253. package/build/organisms/button-group/index.js +6 -0
  254. package/build/organisms/button-group/single-button-in-group.js +39 -0
  255. package/build/organisms/current-user-nav/current-user-nav-props.js +1 -0
  256. package/build/organisms/current-user-nav/current-user-nav-styled.js +27 -0
  257. package/build/organisms/current-user-nav/current-user-nav.doc.md +72 -0
  258. package/build/organisms/current-user-nav/current-user-nav.js +68 -0
  259. package/build/organisms/current-user-nav/current-user-nav.stories.js +74 -0
  260. package/build/organisms/current-user-nav/index.js +3 -0
  261. package/build/organisms/index.js +4 -0
  262. package/build/organisms/made-with-love/index.js +1 -0
  263. package/build/organisms/made-with-love/made-with-love.js +43 -0
  264. package/build/organisms/made-with-love/made-with-love.stories.js +7 -0
  265. package/build/organisms/navigation/index.js +4 -0
  266. package/build/organisms/navigation/navigation-element-wrapper.js +14 -0
  267. package/build/organisms/navigation/navigation-props.js +1 -0
  268. package/build/organisms/navigation/navigation-styled.js +14 -0
  269. package/build/organisms/navigation/navigation.doc.md +126 -0
  270. package/build/organisms/navigation/navigation.js +34 -0
  271. package/build/organisms/navigation/navigation.stories.js +110 -0
  272. package/build/templates/blog.js +0 -0
  273. package/build/templates/blog.stories.js +52 -0
  274. package/build/theme.doc.md +111 -0
  275. package/build/theme.js +532 -0
  276. package/build/utils/assert.js +7 -0
  277. package/build/utils/color-props.js +1 -0
  278. package/build/utils/combine-styles.js +28 -0
  279. package/build/utils/content-styles.js +268 -0
  280. package/build/utils/css-class.js +35 -0
  281. package/build/utils/date-utils.js +50 -0
  282. package/build/utils/datepicker.styles.js +788 -0
  283. package/build/utils/default-theme.interface.js +1 -0
  284. package/build/utils/direction-props.js +1 -0
  285. package/build/utils/focus-shadow.style.js +6 -0
  286. package/build/utils/generate-id.js +8 -0
  287. package/build/utils/human-file-size.js +23 -0
  288. package/build/utils/index.js +13 -0
  289. package/build/utils/non-nullish-partial-record.type.js +1 -0
  290. package/build/utils/phone-input.styles.js +1168 -0
  291. package/build/utils/portal-utils.js +31 -0
  292. package/build/utils/reset.styles.js +94 -0
  293. package/build/utils/select-styles.js +47 -0
  294. package/build/utils/story-wrapper.js +22 -0
  295. package/build/utils/styled.js +6 -0
  296. package/build/utils/theme-get.js +51 -0
  297. package/commitlint.config.cjs +5 -0
  298. package/config/rollup.js +70 -0
  299. package/entry.js +11 -0
  300. package/firebase.json +17 -0
  301. package/package.json +171 -0
  302. package/src/atoms/avatar/avatar.stories.tsx +28 -0
  303. package/src/atoms/avatar/avatar.tsx +44 -0
  304. package/src/atoms/avatar/index.ts +1 -0
  305. package/src/atoms/badge/badge-props.doc.md +10 -0
  306. package/src/atoms/badge/badge.doc.md +90 -0
  307. package/src/atoms/badge/badge.stories.tsx +90 -0
  308. package/src/atoms/badge/badge.tsx +99 -0
  309. package/src/atoms/badge/index.ts +1 -0
  310. package/src/atoms/box/box-props.doc.md +16 -0
  311. package/src/atoms/box/box.doc.md +75 -0
  312. package/src/atoms/box/box.stories.tsx +47 -0
  313. package/src/atoms/box/box.tsx +131 -0
  314. package/src/atoms/box/index.ts +1 -0
  315. package/src/atoms/button/button-css.tsx +196 -0
  316. package/src/atoms/button/button-props.doc.md +4 -0
  317. package/src/atoms/button/button-props.ts +43 -0
  318. package/src/atoms/button/button.doc.md +103 -0
  319. package/src/atoms/button/button.stories.tsx +113 -0
  320. package/src/atoms/button/button.tsx +39 -0
  321. package/src/atoms/button/index.ts +3 -0
  322. package/src/atoms/check-box/check-box.stories.tsx +46 -0
  323. package/src/atoms/check-box/check-box.tsx +169 -0
  324. package/src/atoms/check-box/index.ts +1 -0
  325. package/src/atoms/currency-input/currency-input.stories.tsx +77 -0
  326. package/src/atoms/currency-input/currency-input.tsx +74 -0
  327. package/src/atoms/currency-input/index.ts +1 -0
  328. package/src/atoms/icon/icon.stories.tsx +46 -0
  329. package/src/atoms/icon/icon.tsx +155 -0
  330. package/src/atoms/icon/index.ts +1 -0
  331. package/src/atoms/illustration/illustration.stories.tsx +39 -0
  332. package/src/atoms/illustration/illustration.tsx +84 -0
  333. package/src/atoms/illustration/index.ts +1 -0
  334. package/src/atoms/illustrations/accept.tsx +17 -0
  335. package/src/atoms/illustrations/adminjs-logo.tsx +37 -0
  336. package/src/atoms/illustrations/astronaut.tsx +22 -0
  337. package/src/atoms/illustrations/bag.tsx +25 -0
  338. package/src/atoms/illustrations/beware.tsx +18 -0
  339. package/src/atoms/illustrations/box.tsx +25 -0
  340. package/src/atoms/illustrations/calendar.tsx +24 -0
  341. package/src/atoms/illustrations/cancel.tsx +17 -0
  342. package/src/atoms/illustrations/cards.tsx +20 -0
  343. package/src/atoms/illustrations/clip.tsx +28 -0
  344. package/src/atoms/illustrations/cloud.tsx +22 -0
  345. package/src/atoms/illustrations/cup.tsx +20 -0
  346. package/src/atoms/illustrations/details.tsx +24 -0
  347. package/src/atoms/illustrations/docs.tsx +25 -0
  348. package/src/atoms/illustrations/document-check.tsx +22 -0
  349. package/src/atoms/illustrations/document-search.tsx +22 -0
  350. package/src/atoms/illustrations/drawer.tsx +26 -0
  351. package/src/atoms/illustrations/file-search.tsx +18 -0
  352. package/src/atoms/illustrations/flag-in-cog.tsx +26 -0
  353. package/src/atoms/illustrations/folder.tsx +24 -0
  354. package/src/atoms/illustrations/folders.tsx +22 -0
  355. package/src/atoms/illustrations/github-logo.tsx +15 -0
  356. package/src/atoms/illustrations/identity-card.tsx +28 -0
  357. package/src/atoms/illustrations/index.ts +35 -0
  358. package/src/atoms/illustrations/launch.tsx +24 -0
  359. package/src/atoms/illustrations/moon.tsx +42 -0
  360. package/src/atoms/illustrations/not-found.tsx +24 -0
  361. package/src/atoms/illustrations/notebook.tsx +32 -0
  362. package/src/atoms/illustrations/padlock.tsx +24 -0
  363. package/src/atoms/illustrations/photos.tsx +19 -0
  364. package/src/atoms/illustrations/planet.tsx +28 -0
  365. package/src/atoms/illustrations/plug.tsx +23 -0
  366. package/src/atoms/illustrations/props.type.ts +7 -0
  367. package/src/atoms/illustrations/rocket-new.tsx +30 -0
  368. package/src/atoms/illustrations/rocket.tsx +90 -0
  369. package/src/atoms/illustrations/slack-logo.tsx +29 -0
  370. package/src/atoms/illustrations/tags.tsx +20 -0
  371. package/src/atoms/index.ts +23 -0
  372. package/src/atoms/input/index.ts +1 -0
  373. package/src/atoms/input/input.stories.tsx +77 -0
  374. package/src/atoms/input/input.tsx +146 -0
  375. package/src/atoms/label/index.ts +1 -0
  376. package/src/atoms/label/label.stories.tsx +42 -0
  377. package/src/atoms/label/label.tsx +163 -0
  378. package/src/atoms/link/index.ts +1 -0
  379. package/src/atoms/link/link.stories.tsx +45 -0
  380. package/src/atoms/link/link.tsx +128 -0
  381. package/src/atoms/loader/index.ts +1 -0
  382. package/src/atoms/loader/loader.stories.tsx +12 -0
  383. package/src/atoms/loader/loader.tsx +91 -0
  384. package/src/atoms/overlay/index.ts +1 -0
  385. package/src/atoms/overlay/overlay.stories.tsx +12 -0
  386. package/src/atoms/overlay/overlay.tsx +24 -0
  387. package/src/atoms/phone-input/index.ts +1 -0
  388. package/src/atoms/phone-input/phone-input.stories.tsx +47 -0
  389. package/src/atoms/phone-input/phone-input.tsx +79 -0
  390. package/src/atoms/placeholder/index.ts +1 -0
  391. package/src/atoms/placeholder/placeholder.stories.tsx +25 -0
  392. package/src/atoms/placeholder/placeholder.tsx +105 -0
  393. package/src/atoms/radio/index.ts +1 -0
  394. package/src/atoms/radio/radio.stories.tsx +35 -0
  395. package/src/atoms/radio/radio.tsx +142 -0
  396. package/src/atoms/section/index.ts +1 -0
  397. package/src/atoms/section/section.stories.tsx +35 -0
  398. package/src/atoms/section/section.tsx +47 -0
  399. package/src/atoms/table/index.ts +6 -0
  400. package/src/atoms/table/table-body.tsx +19 -0
  401. package/src/atoms/table/table-caption.tsx +43 -0
  402. package/src/atoms/table/table-cell.tsx +35 -0
  403. package/src/atoms/table/table-head.tsx +31 -0
  404. package/src/atoms/table/table-row.tsx +26 -0
  405. package/src/atoms/table/table.stories.tsx +76 -0
  406. package/src/atoms/table/table.tsx +110 -0
  407. package/src/atoms/tabs/index.ts +2 -0
  408. package/src/atoms/tabs/tab.tsx +38 -0
  409. package/src/atoms/tabs/tabs.stories.tsx +30 -0
  410. package/src/atoms/tabs/tabs.tsx +165 -0
  411. package/src/atoms/text/index.ts +1 -0
  412. package/src/atoms/text/text.tsx +98 -0
  413. package/src/atoms/text-area/index.ts +1 -0
  414. package/src/atoms/text-area/text-area.stories.tsx +24 -0
  415. package/src/atoms/text-area/text-area.tsx +63 -0
  416. package/src/atoms/tooltip/index.ts +5 -0
  417. package/src/atoms/tooltip/tooltip-content.tsx +13 -0
  418. package/src/atoms/tooltip/tooltip-control.tsx +118 -0
  419. package/src/atoms/tooltip/tooltip-props.ts +30 -0
  420. package/src/atoms/tooltip/tooltip-styled.tsx +138 -0
  421. package/src/atoms/tooltip/tooltip.doc.md +61 -0
  422. package/src/atoms/tooltip/tooltip.stories.tsx +53 -0
  423. package/src/atoms/tooltip/tooltip.tsx +77 -0
  424. package/src/atoms/typography/caption-shared.ts +13 -0
  425. package/src/atoms/typography/caption.ts +15 -0
  426. package/src/atoms/typography/card-title.ts +19 -0
  427. package/src/atoms/typography/header.doc.md +38 -0
  428. package/src/atoms/typography/header.tsx +128 -0
  429. package/src/atoms/typography/index.ts +5 -0
  430. package/src/atoms/typography/small-text.ts +15 -0
  431. package/src/atoms/typography/title.ts +15 -0
  432. package/src/atoms/typography/typography.stories.tsx +259 -0
  433. package/src/constants.ts +2 -0
  434. package/src/global.ts +53 -0
  435. package/src/hooks/use-window-size.ts +36 -0
  436. package/src/index.doc.md +133 -0
  437. package/src/index.ts +20 -0
  438. package/src/molecules/date-picker/date-picker.stories.tsx +48 -0
  439. package/src/molecules/date-picker/date-picker.tsx +329 -0
  440. package/src/molecules/date-picker/index.ts +2 -0
  441. package/src/molecules/date-picker/useDatePicker.ts +45 -0
  442. package/src/molecules/drawer/drawer-content.tsx +18 -0
  443. package/src/molecules/drawer/drawer-footer.tsx +19 -0
  444. package/src/molecules/drawer/drawer.stories.tsx +55 -0
  445. package/src/molecules/drawer/drawer.tsx +127 -0
  446. package/src/molecules/drawer/index.ts +3 -0
  447. package/src/molecules/drop-down/drop-down-item-action.tsx +20 -0
  448. package/src/molecules/drop-down/drop-down-item.tsx +95 -0
  449. package/src/molecules/drop-down/drop-down-menu.tsx +45 -0
  450. package/src/molecules/drop-down/drop-down-trigger.tsx +12 -0
  451. package/src/molecules/drop-down/drop-down.doc.md +74 -0
  452. package/src/molecules/drop-down/drop-down.stories.tsx +82 -0
  453. package/src/molecules/drop-down/drop-down.tsx +99 -0
  454. package/src/molecules/drop-down/index.ts +5 -0
  455. package/src/molecules/drop-zone/drop-zone-image.tsx +15 -0
  456. package/src/molecules/drop-zone/drop-zone-item.tsx +126 -0
  457. package/src/molecules/drop-zone/drop-zone.stories.tsx +94 -0
  458. package/src/molecules/drop-zone/drop-zone.tsx +374 -0
  459. package/src/molecules/drop-zone/index.ts +2 -0
  460. package/src/molecules/form-group/form-group.stories.tsx +62 -0
  461. package/src/molecules/form-group/form-group.tsx +170 -0
  462. package/src/molecules/form-group/form-message.tsx +20 -0
  463. package/src/molecules/form-group/index.ts +3 -0
  464. package/src/molecules/form-group/input-group.tsx +59 -0
  465. package/src/molecules/index.ts +15 -0
  466. package/src/molecules/info-box/index.ts +1 -0
  467. package/src/molecules/info-box/info-box.stories.tsx +23 -0
  468. package/src/molecules/info-box/info-box.tsx +78 -0
  469. package/src/molecules/message-box/index.ts +1 -0
  470. package/src/molecules/message-box/message-box.stories.tsx +35 -0
  471. package/src/molecules/message-box/message-box.tsx +185 -0
  472. package/src/molecules/modal/index.ts +4 -0
  473. package/src/molecules/modal/modal-inline.tsx +53 -0
  474. package/src/molecules/modal/modal-props.ts +43 -0
  475. package/src/molecules/modal/modal-styled.tsx +60 -0
  476. package/src/molecules/modal/modal-wrapper.tsx +37 -0
  477. package/src/molecules/modal/modal.doc.md +138 -0
  478. package/src/molecules/modal/modal.stories.tsx +67 -0
  479. package/src/molecules/modal/modal.tsx +24 -0
  480. package/src/molecules/navigation-element/index.ts +3 -0
  481. package/src/molecules/navigation-element/navigation-element-props.ts +43 -0
  482. package/src/molecules/navigation-element/navigation-element-styled.ts +57 -0
  483. package/src/molecules/navigation-element/navigation-element.doc.md +69 -0
  484. package/src/molecules/navigation-element/navigation-element.stories.tsx +42 -0
  485. package/src/molecules/navigation-element/navigation-element.tsx +65 -0
  486. package/src/molecules/pagination/index.ts +1 -0
  487. package/src/molecules/pagination/pagination.stories.tsx +25 -0
  488. package/src/molecules/pagination/pagination.tsx +182 -0
  489. package/src/molecules/rich-text-editor/components/heading-select.tsx +42 -0
  490. package/src/molecules/rich-text-editor/components/image-button.tsx +49 -0
  491. package/src/molecules/rich-text-editor/components/menu-bar.tsx +31 -0
  492. package/src/molecules/rich-text-editor/components/menu-button.tsx +44 -0
  493. package/src/molecules/rich-text-editor/icons/align-center.tsx +17 -0
  494. package/src/molecules/rich-text-editor/icons/align-justify.tsx +17 -0
  495. package/src/molecules/rich-text-editor/icons/align-left.tsx +17 -0
  496. package/src/molecules/rich-text-editor/icons/align-right.tsx +17 -0
  497. package/src/molecules/rich-text-editor/icons/bold.tsx +17 -0
  498. package/src/molecules/rich-text-editor/icons/bullet-list.tsx +17 -0
  499. package/src/molecules/rich-text-editor/icons/clear.tsx +17 -0
  500. package/src/molecules/rich-text-editor/icons/code.tsx +16 -0
  501. package/src/molecules/rich-text-editor/icons/font-size.tsx +14 -0
  502. package/src/molecules/rich-text-editor/icons/image.tsx +22 -0
  503. package/src/molecules/rich-text-editor/icons/index.ts +20 -0
  504. package/src/molecules/rich-text-editor/icons/italic.tsx +14 -0
  505. package/src/molecules/rich-text-editor/icons/link.tsx +21 -0
  506. package/src/molecules/rich-text-editor/icons/ordered-list.tsx +17 -0
  507. package/src/molecules/rich-text-editor/icons/pagebreak.tsx +17 -0
  508. package/src/molecules/rich-text-editor/icons/paragraph.tsx +14 -0
  509. package/src/molecules/rich-text-editor/icons/quote.tsx +17 -0
  510. package/src/molecules/rich-text-editor/icons/redo.tsx +17 -0
  511. package/src/molecules/rich-text-editor/icons/strikethrough.tsx +17 -0
  512. package/src/molecules/rich-text-editor/icons/undo.tsx +17 -0
  513. package/src/molecules/rich-text-editor/index.ts +2 -0
  514. package/src/molecules/rich-text-editor/rich-text-editor-props.ts +1 -0
  515. package/src/molecules/rich-text-editor/rich-text-editor.stories.tsx +88 -0
  516. package/src/molecules/rich-text-editor/rich-text-editor.styled.tsx +52 -0
  517. package/src/molecules/rich-text-editor/rich-text-editor.tsx +81 -0
  518. package/src/molecules/rich-text-editor/useTiptapCommands.ts +50 -0
  519. package/src/molecules/select/index.ts +2 -0
  520. package/src/molecules/select/select-async.tsx +51 -0
  521. package/src/molecules/select/select-theme.ts +41 -0
  522. package/src/molecules/select/select.stories.tsx +77 -0
  523. package/src/molecules/select/select.tsx +51 -0
  524. package/src/molecules/stepper/index.ts +2 -0
  525. package/src/molecules/stepper/step.tsx +162 -0
  526. package/src/molecules/stepper/stepper.stories.tsx +76 -0
  527. package/src/molecules/stepper/stepper.tsx +118 -0
  528. package/src/molecules/tinymce-editor/index.ts +1 -0
  529. package/src/molecules/tinymce-editor/tinymce-editor.styled.tsx +22 -0
  530. package/src/molecules/tinymce-editor/tinymce-editor.tsx +110 -0
  531. package/src/molecules/value-group/index.ts +2 -0
  532. package/src/molecules/value-group/value-group-props.ts +16 -0
  533. package/src/molecules/value-group/value-group.doc.md +67 -0
  534. package/src/molecules/value-group/value-group.stories.tsx +48 -0
  535. package/src/molecules/value-group/value-group.tsx +32 -0
  536. package/src/organisms/button-group/button-group.doc.md +92 -0
  537. package/src/organisms/button-group/button-group.stories.tsx +112 -0
  538. package/src/organisms/button-group/button-group.styled.tsx +61 -0
  539. package/src/organisms/button-group/button-group.tsx +41 -0
  540. package/src/organisms/button-group/button-group.types.ts +61 -0
  541. package/src/organisms/button-group/button-in-group.tsx +38 -0
  542. package/src/organisms/button-group/drop-down-item-with-buttons.tsx +56 -0
  543. package/src/organisms/button-group/index.ts +6 -0
  544. package/src/organisms/button-group/single-button-in-group.tsx +42 -0
  545. package/src/organisms/current-user-nav/current-user-nav-props.ts +39 -0
  546. package/src/organisms/current-user-nav/current-user-nav-styled.ts +31 -0
  547. package/src/organisms/current-user-nav/current-user-nav.doc.md +72 -0
  548. package/src/organisms/current-user-nav/current-user-nav.stories.tsx +53 -0
  549. package/src/organisms/current-user-nav/current-user-nav.tsx +72 -0
  550. package/src/organisms/current-user-nav/index.ts +3 -0
  551. package/src/organisms/index.ts +4 -0
  552. package/src/organisms/made-with-love/index.ts +1 -0
  553. package/src/organisms/made-with-love/made-with-love.stories.tsx +12 -0
  554. package/src/organisms/made-with-love/made-with-love.tsx +50 -0
  555. package/src/organisms/navigation/index.ts +4 -0
  556. package/src/organisms/navigation/navigation-element-wrapper.tsx +27 -0
  557. package/src/organisms/navigation/navigation-props.ts +26 -0
  558. package/src/organisms/navigation/navigation-styled.tsx +17 -0
  559. package/src/organisms/navigation/navigation.doc.md +126 -0
  560. package/src/organisms/navigation/navigation.stories.tsx +124 -0
  561. package/src/organisms/navigation/navigation.tsx +34 -0
  562. package/src/templates/blog.stories.tsx +69 -0
  563. package/src/templates/blog.tsx +0 -0
  564. package/src/theme.doc.md +111 -0
  565. package/src/theme.ts +554 -0
  566. package/src/utils/assert.ts +8 -0
  567. package/src/utils/color-props.ts +7 -0
  568. package/src/utils/combine-styles.ts +35 -0
  569. package/src/utils/content-styles.ts +268 -0
  570. package/src/utils/css-class.ts +37 -0
  571. package/src/utils/date-utils.ts +60 -0
  572. package/src/utils/datepicker.styles.ts +790 -0
  573. package/src/utils/default-theme.interface.ts +30 -0
  574. package/src/utils/direction-props.ts +1 -0
  575. package/src/utils/focus-shadow.style.ts +8 -0
  576. package/src/utils/generate-id.ts +10 -0
  577. package/src/utils/human-file-size.ts +30 -0
  578. package/src/utils/index.ts +14 -0
  579. package/src/utils/non-nullish-partial-record.type.ts +13 -0
  580. package/src/utils/phone-input.styles.ts +1170 -0
  581. package/src/utils/portal-utils.tsx +45 -0
  582. package/src/utils/reset.styles.ts +98 -0
  583. package/src/utils/select-styles.ts +52 -0
  584. package/src/utils/story-wrapper.tsx +23 -0
  585. package/src/utils/styled.ts +7 -0
  586. package/src/utils/theme-get.ts +57 -0
  587. package/tsconfig.json +36 -0
  588. package/types/src/atoms/avatar/avatar.d.ts +10 -0
  589. package/types/src/atoms/avatar/avatar.stories.d.ts +6 -0
  590. package/types/src/atoms/avatar/index.d.ts +1 -0
  591. package/types/src/atoms/badge/badge.d.ts +51 -0
  592. package/types/src/atoms/badge/badge.stories.d.ts +6 -0
  593. package/types/src/atoms/badge/index.d.ts +1 -0
  594. package/types/src/atoms/box/box.d.ts +47 -0
  595. package/types/src/atoms/box/box.stories.d.ts +7 -0
  596. package/types/src/atoms/box/index.d.ts +1 -0
  597. package/types/src/atoms/button/button-css.d.ts +18 -0
  598. package/types/src/atoms/button/button-props.d.ts +38 -0
  599. package/types/src/atoms/button/button.d.ts +25 -0
  600. package/types/src/atoms/button/button.stories.d.ts +6 -0
  601. package/types/src/atoms/button/index.d.ts +3 -0
  602. package/types/src/atoms/check-box/check-box.d.ts +39 -0
  603. package/types/src/atoms/check-box/check-box.stories.d.ts +6 -0
  604. package/types/src/atoms/check-box/index.d.ts +1 -0
  605. package/types/src/atoms/currency-input/currency-input.d.ts +74 -0
  606. package/types/src/atoms/currency-input/currency-input.stories.d.ts +6 -0
  607. package/types/src/atoms/currency-input/index.d.ts +1 -0
  608. package/types/src/atoms/icon/icon.d.ts +93 -0
  609. package/types/src/atoms/icon/icon.stories.d.ts +6 -0
  610. package/types/src/atoms/icon/index.d.ts +1 -0
  611. package/types/src/atoms/illustration/illustration.d.ts +52 -0
  612. package/types/src/atoms/illustration/illustration.stories.d.ts +6 -0
  613. package/types/src/atoms/illustration/index.d.ts +1 -0
  614. package/types/src/atoms/illustrations/accept.d.ts +4 -0
  615. package/types/src/atoms/illustrations/adminjs-logo.d.ts +4 -0
  616. package/types/src/atoms/illustrations/astronaut.d.ts +4 -0
  617. package/types/src/atoms/illustrations/bag.d.ts +4 -0
  618. package/types/src/atoms/illustrations/beware.d.ts +4 -0
  619. package/types/src/atoms/illustrations/box.d.ts +4 -0
  620. package/types/src/atoms/illustrations/calendar.d.ts +4 -0
  621. package/types/src/atoms/illustrations/cancel.d.ts +4 -0
  622. package/types/src/atoms/illustrations/cards.d.ts +4 -0
  623. package/types/src/atoms/illustrations/clip.d.ts +4 -0
  624. package/types/src/atoms/illustrations/cloud.d.ts +4 -0
  625. package/types/src/atoms/illustrations/cup.d.ts +4 -0
  626. package/types/src/atoms/illustrations/details.d.ts +4 -0
  627. package/types/src/atoms/illustrations/docs.d.ts +4 -0
  628. package/types/src/atoms/illustrations/document-check.d.ts +4 -0
  629. package/types/src/atoms/illustrations/document-search.d.ts +4 -0
  630. package/types/src/atoms/illustrations/drawer.d.ts +4 -0
  631. package/types/src/atoms/illustrations/file-search.d.ts +4 -0
  632. package/types/src/atoms/illustrations/flag-in-cog.d.ts +4 -0
  633. package/types/src/atoms/illustrations/folder.d.ts +4 -0
  634. package/types/src/atoms/illustrations/folders.d.ts +4 -0
  635. package/types/src/atoms/illustrations/github-logo.d.ts +4 -0
  636. package/types/src/atoms/illustrations/identity-card.d.ts +4 -0
  637. package/types/src/atoms/illustrations/index.d.ts +35 -0
  638. package/types/src/atoms/illustrations/launch.d.ts +4 -0
  639. package/types/src/atoms/illustrations/moon.d.ts +4 -0
  640. package/types/src/atoms/illustrations/not-found.d.ts +4 -0
  641. package/types/src/atoms/illustrations/notebook.d.ts +4 -0
  642. package/types/src/atoms/illustrations/padlock.d.ts +4 -0
  643. package/types/src/atoms/illustrations/photos.d.ts +4 -0
  644. package/types/src/atoms/illustrations/planet.d.ts +4 -0
  645. package/types/src/atoms/illustrations/plug.d.ts +4 -0
  646. package/types/src/atoms/illustrations/props.type.d.ts +6 -0
  647. package/types/src/atoms/illustrations/rocket-new.d.ts +4 -0
  648. package/types/src/atoms/illustrations/rocket.d.ts +4 -0
  649. package/types/src/atoms/illustrations/slack-logo.d.ts +4 -0
  650. package/types/src/atoms/illustrations/tags.d.ts +4 -0
  651. package/types/src/atoms/index.d.ts +23 -0
  652. package/types/src/atoms/input/index.d.ts +1 -0
  653. package/types/src/atoms/input/input.d.ts +63 -0
  654. package/types/src/atoms/input/input.stories.d.ts +6 -0
  655. package/types/src/atoms/label/index.d.ts +1 -0
  656. package/types/src/atoms/label/label.d.ts +79 -0
  657. package/types/src/atoms/label/label.stories.d.ts +5 -0
  658. package/types/src/atoms/link/index.d.ts +1 -0
  659. package/types/src/atoms/link/link.d.ts +74 -0
  660. package/types/src/atoms/link/link.stories.d.ts +5 -0
  661. package/types/src/atoms/loader/index.d.ts +1 -0
  662. package/types/src/atoms/loader/loader.d.ts +27 -0
  663. package/types/src/atoms/loader/loader.stories.d.ts +5 -0
  664. package/types/src/atoms/overlay/index.d.ts +1 -0
  665. package/types/src/atoms/overlay/overlay.d.ts +3 -0
  666. package/types/src/atoms/overlay/overlay.stories.d.ts +5 -0
  667. package/types/src/atoms/phone-input/index.d.ts +1 -0
  668. package/types/src/atoms/phone-input/phone-input.d.ts +47 -0
  669. package/types/src/atoms/phone-input/phone-input.stories.d.ts +6 -0
  670. package/types/src/atoms/placeholder/index.d.ts +1 -0
  671. package/types/src/atoms/placeholder/placeholder.d.ts +52 -0
  672. package/types/src/atoms/placeholder/placeholder.stories.d.ts +6 -0
  673. package/types/src/atoms/radio/index.d.ts +1 -0
  674. package/types/src/atoms/radio/radio.d.ts +40 -0
  675. package/types/src/atoms/radio/radio.stories.d.ts +5 -0
  676. package/types/src/atoms/section/index.d.ts +1 -0
  677. package/types/src/atoms/section/section.d.ts +31 -0
  678. package/types/src/atoms/section/section.stories.d.ts +5 -0
  679. package/types/src/atoms/table/index.d.ts +6 -0
  680. package/types/src/atoms/table/table-body.d.ts +6 -0
  681. package/types/src/atoms/table/table-caption.d.ts +6 -0
  682. package/types/src/atoms/table/table-cell.d.ts +9 -0
  683. package/types/src/atoms/table/table-head.d.ts +6 -0
  684. package/types/src/atoms/table/table-row.d.ts +6 -0
  685. package/types/src/atoms/table/table.d.ts +90 -0
  686. package/types/src/atoms/table/table.stories.d.ts +7 -0
  687. package/types/src/atoms/tabs/index.d.ts +2 -0
  688. package/types/src/atoms/tabs/tab.d.ts +17 -0
  689. package/types/src/atoms/tabs/tabs.d.ts +49 -0
  690. package/types/src/atoms/tabs/tabs.stories.d.ts +5 -0
  691. package/types/src/atoms/text/index.d.ts +1 -0
  692. package/types/src/atoms/text/text.d.ts +62 -0
  693. package/types/src/atoms/text-area/index.d.ts +1 -0
  694. package/types/src/atoms/text-area/text-area.d.ts +46 -0
  695. package/types/src/atoms/text-area/text-area.stories.d.ts +5 -0
  696. package/types/src/atoms/tooltip/index.d.ts +5 -0
  697. package/types/src/atoms/tooltip/tooltip-content.d.ts +16 -0
  698. package/types/src/atoms/tooltip/tooltip-control.d.ts +9 -0
  699. package/types/src/atoms/tooltip/tooltip-props.d.ts +25 -0
  700. package/types/src/atoms/tooltip/tooltip-styled.d.ts +3 -0
  701. package/types/src/atoms/tooltip/tooltip.d.ts +12 -0
  702. package/types/src/atoms/tooltip/tooltip.stories.d.ts +5 -0
  703. package/types/src/atoms/typography/caption-shared.d.ts +3 -0
  704. package/types/src/atoms/typography/caption.d.ts +3 -0
  705. package/types/src/atoms/typography/card-title.d.ts +3 -0
  706. package/types/src/atoms/typography/header.d.ts +29 -0
  707. package/types/src/atoms/typography/index.d.ts +5 -0
  708. package/types/src/atoms/typography/small-text.d.ts +3 -0
  709. package/types/src/atoms/typography/title.d.ts +3 -0
  710. package/types/src/atoms/typography/typography.stories.d.ts +9 -0
  711. package/types/src/constants.d.ts +1 -0
  712. package/types/src/global.d.ts +1 -0
  713. package/types/src/hooks/use-window-size.d.ts +6 -0
  714. package/types/src/index.d.ts +16 -0
  715. package/types/src/molecules/date-picker/date-picker.d.ts +78 -0
  716. package/types/src/molecules/date-picker/date-picker.stories.d.ts +5 -0
  717. package/types/src/molecules/date-picker/index.d.ts +2 -0
  718. package/types/src/molecules/date-picker/useDatePicker.d.ts +14 -0
  719. package/types/src/molecules/drawer/drawer-content.d.ts +7 -0
  720. package/types/src/molecules/drawer/drawer-footer.d.ts +7 -0
  721. package/types/src/molecules/drawer/drawer.d.ts +88 -0
  722. package/types/src/molecules/drawer/drawer.stories.d.ts +5 -0
  723. package/types/src/molecules/drawer/index.d.ts +3 -0
  724. package/types/src/molecules/drop-down/drop-down-item-action.d.ts +12 -0
  725. package/types/src/molecules/drop-down/drop-down-item.d.ts +32 -0
  726. package/types/src/molecules/drop-down/drop-down-menu.d.ts +31 -0
  727. package/types/src/molecules/drop-down/drop-down-trigger.d.ts +6 -0
  728. package/types/src/molecules/drop-down/drop-down.d.ts +30 -0
  729. package/types/src/molecules/drop-down/drop-down.stories.d.ts +10 -0
  730. package/types/src/molecules/drop-down/index.d.ts +5 -0
  731. package/types/src/molecules/drop-zone/drop-zone-image.d.ts +3 -0
  732. package/types/src/molecules/drop-zone/drop-zone-item.d.ts +55 -0
  733. package/types/src/molecules/drop-zone/drop-zone.d.ts +148 -0
  734. package/types/src/molecules/drop-zone/drop-zone.stories.d.ts +8 -0
  735. package/types/src/molecules/drop-zone/index.d.ts +2 -0
  736. package/types/src/molecules/form-group/form-group.d.ts +119 -0
  737. package/types/src/molecules/form-group/form-group.stories.d.ts +6 -0
  738. package/types/src/molecules/form-group/form-message.d.ts +11 -0
  739. package/types/src/molecules/form-group/index.d.ts +3 -0
  740. package/types/src/molecules/form-group/input-group.d.ts +6 -0
  741. package/types/src/molecules/index.d.ts +15 -0
  742. package/types/src/molecules/info-box/index.d.ts +1 -0
  743. package/types/src/molecules/info-box/info-box.d.ts +53 -0
  744. package/types/src/molecules/info-box/info-box.stories.d.ts +5 -0
  745. package/types/src/molecules/message-box/index.d.ts +1 -0
  746. package/types/src/molecules/message-box/message-box.d.ts +94 -0
  747. package/types/src/molecules/message-box/message-box.stories.d.ts +7 -0
  748. package/types/src/molecules/modal/index.d.ts +4 -0
  749. package/types/src/molecules/modal/modal-inline.d.ts +14 -0
  750. package/types/src/molecules/modal/modal-props.d.ts +38 -0
  751. package/types/src/molecules/modal/modal-styled.d.ts +12 -0
  752. package/types/src/molecules/modal/modal-wrapper.d.ts +4 -0
  753. package/types/src/molecules/modal/modal.d.ts +12 -0
  754. package/types/src/molecules/modal/modal.stories.d.ts +5 -0
  755. package/types/src/molecules/navigation-element/index.d.ts +3 -0
  756. package/types/src/molecules/navigation-element/navigation-element-props.d.ts +38 -0
  757. package/types/src/molecules/navigation-element/navigation-element-styled.d.ts +3 -0
  758. package/types/src/molecules/navigation-element/navigation-element.d.ts +14 -0
  759. package/types/src/molecules/navigation-element/navigation-element.stories.d.ts +5 -0
  760. package/types/src/molecules/pagination/index.d.ts +1 -0
  761. package/types/src/molecules/pagination/pagination.d.ts +64 -0
  762. package/types/src/molecules/pagination/pagination.stories.d.ts +5 -0
  763. package/types/src/molecules/rich-text-editor/components/heading-select.d.ts +7 -0
  764. package/types/src/molecules/rich-text-editor/components/image-button.d.ts +7 -0
  765. package/types/src/molecules/rich-text-editor/components/menu-bar.d.ts +7 -0
  766. package/types/src/molecules/rich-text-editor/components/menu-button.d.ts +12 -0
  767. package/types/src/molecules/rich-text-editor/icons/align-center.d.ts +3 -0
  768. package/types/src/molecules/rich-text-editor/icons/align-justify.d.ts +3 -0
  769. package/types/src/molecules/rich-text-editor/icons/align-left.d.ts +3 -0
  770. package/types/src/molecules/rich-text-editor/icons/align-right.d.ts +3 -0
  771. package/types/src/molecules/rich-text-editor/icons/bold.d.ts +3 -0
  772. package/types/src/molecules/rich-text-editor/icons/bullet-list.d.ts +3 -0
  773. package/types/src/molecules/rich-text-editor/icons/clear.d.ts +3 -0
  774. package/types/src/molecules/rich-text-editor/icons/code.d.ts +3 -0
  775. package/types/src/molecules/rich-text-editor/icons/font-size.d.ts +3 -0
  776. package/types/src/molecules/rich-text-editor/icons/image.d.ts +3 -0
  777. package/types/src/molecules/rich-text-editor/icons/index.d.ts +19 -0
  778. package/types/src/molecules/rich-text-editor/icons/italic.d.ts +3 -0
  779. package/types/src/molecules/rich-text-editor/icons/link.d.ts +3 -0
  780. package/types/src/molecules/rich-text-editor/icons/ordered-list.d.ts +3 -0
  781. package/types/src/molecules/rich-text-editor/icons/pagebreak.d.ts +3 -0
  782. package/types/src/molecules/rich-text-editor/icons/paragraph.d.ts +3 -0
  783. package/types/src/molecules/rich-text-editor/icons/quote.d.ts +3 -0
  784. package/types/src/molecules/rich-text-editor/icons/redo.d.ts +3 -0
  785. package/types/src/molecules/rich-text-editor/icons/strikethrough.d.ts +3 -0
  786. package/types/src/molecules/rich-text-editor/icons/undo.d.ts +3 -0
  787. package/types/src/molecules/rich-text-editor/index.d.ts +2 -0
  788. package/types/src/molecules/rich-text-editor/rich-text-editor-props.d.ts +1 -0
  789. package/types/src/molecules/rich-text-editor/rich-text-editor.d.ts +15 -0
  790. package/types/src/molecules/rich-text-editor/rich-text-editor.stories.d.ts +5 -0
  791. package/types/src/molecules/rich-text-editor/rich-text-editor.styled.d.ts +22 -0
  792. package/types/src/molecules/rich-text-editor/useTiptapCommands.d.ts +12 -0
  793. package/types/src/molecules/select/index.d.ts +2 -0
  794. package/types/src/molecules/select/select-async.d.ts +9 -0
  795. package/types/src/molecules/select/select-theme.d.ts +7 -0
  796. package/types/src/molecules/select/select.d.ts +9 -0
  797. package/types/src/molecules/select/select.stories.d.ts +7 -0
  798. package/types/src/molecules/stepper/index.d.ts +2 -0
  799. package/types/src/molecules/stepper/step.d.ts +86 -0
  800. package/types/src/molecules/stepper/stepper.d.ts +112 -0
  801. package/types/src/molecules/stepper/stepper.stories.d.ts +6 -0
  802. package/types/src/molecules/tinymce-editor/index.d.ts +1 -0
  803. package/types/src/molecules/tinymce-editor/tinymce-editor.d.ts +14 -0
  804. package/types/src/molecules/tinymce-editor/tinymce-editor.styled.d.ts +21 -0
  805. package/types/src/molecules/value-group/index.d.ts +2 -0
  806. package/types/src/molecules/value-group/value-group-props.d.ts +15 -0
  807. package/types/src/molecules/value-group/value-group.d.ts +14 -0
  808. package/types/src/molecules/value-group/value-group.stories.d.ts +7 -0
  809. package/types/src/organisms/button-group/button-group.d.ts +13 -0
  810. package/types/src/organisms/button-group/button-group.stories.d.ts +7 -0
  811. package/types/src/organisms/button-group/button-group.styled.d.ts +33 -0
  812. package/types/src/organisms/button-group/button-group.types.d.ts +59 -0
  813. package/types/src/organisms/button-group/button-in-group.d.ts +4 -0
  814. package/types/src/organisms/button-group/drop-down-item-with-buttons.d.ts +4 -0
  815. package/types/src/organisms/button-group/index.d.ts +6 -0
  816. package/types/src/organisms/button-group/single-button-in-group.d.ts +4 -0
  817. package/types/src/organisms/current-user-nav/current-user-nav-props.d.ts +37 -0
  818. package/types/src/organisms/current-user-nav/current-user-nav-styled.d.ts +12 -0
  819. package/types/src/organisms/current-user-nav/current-user-nav.d.ts +14 -0
  820. package/types/src/organisms/current-user-nav/current-user-nav.stories.d.ts +7 -0
  821. package/types/src/organisms/current-user-nav/index.d.ts +3 -0
  822. package/types/src/organisms/index.d.ts +4 -0
  823. package/types/src/organisms/made-with-love/index.d.ts +1 -0
  824. package/types/src/organisms/made-with-love/made-with-love.d.ts +3 -0
  825. package/types/src/organisms/made-with-love/made-with-love.stories.d.ts +5 -0
  826. package/types/src/organisms/navigation/index.d.ts +4 -0
  827. package/types/src/organisms/navigation/navigation-element-wrapper.d.ts +4 -0
  828. package/types/src/organisms/navigation/navigation-props.d.ts +21 -0
  829. package/types/src/organisms/navigation/navigation-styled.d.ts +12 -0
  830. package/types/src/organisms/navigation/navigation.d.ts +14 -0
  831. package/types/src/organisms/navigation/navigation.stories.d.ts +8 -0
  832. package/types/src/templates/blog.d.ts +1 -0
  833. package/types/src/templates/blog.stories.d.ts +4 -0
  834. package/types/src/theme.d.ts +503 -0
  835. package/types/src/utils/assert.d.ts +2 -0
  836. package/types/src/utils/color-props.d.ts +5 -0
  837. package/types/src/utils/combine-styles.d.ts +23 -0
  838. package/types/src/utils/content-styles.d.ts +21 -0
  839. package/types/src/utils/css-class.d.ts +21 -0
  840. package/types/src/utils/date-utils.d.ts +34 -0
  841. package/types/src/utils/datepicker.styles.d.ts +3 -0
  842. package/types/src/utils/default-theme.interface.d.ts +17 -0
  843. package/types/src/utils/direction-props.d.ts +1 -0
  844. package/types/src/utils/focus-shadow.style.d.ts +3 -0
  845. package/types/src/utils/generate-id.d.ts +2 -0
  846. package/types/src/utils/human-file-size.d.ts +12 -0
  847. package/types/src/utils/index.d.ts +13 -0
  848. package/types/src/utils/non-nullish-partial-record.type.d.ts +16 -0
  849. package/types/src/utils/phone-input.styles.d.ts +3 -0
  850. package/types/src/utils/portal-utils.d.ts +7 -0
  851. package/types/src/utils/reset.styles.d.ts +37 -0
  852. package/types/src/utils/select-styles.d.ts +5 -0
  853. package/types/src/utils/story-wrapper.d.ts +9 -0
  854. package/types/src/utils/styled.d.ts +4 -0
  855. package/types/src/utils/theme-get.d.ts +32 -0
  856. package/vendor-types/csstype/index.d.ts +0 -0
  857. package/vendor-types/jw-paginate/index.d.ts +10 -0
  858. package/vendor-types/styled-components/index.d.ts +7 -0
@@ -0,0 +1,93 @@
1
+ import React from 'react';
2
+ export const IdentityCard = ({
3
+ width = 152,
4
+ height = 152
5
+ }) => /*#__PURE__*/React.createElement("svg", {
6
+ width: width,
7
+ height: height,
8
+ viewBox: "0 0 152 152",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, /*#__PURE__*/React.createElement("circle", {
12
+ cx: "76",
13
+ cy: "76",
14
+ r: "76",
15
+ fill: "white"
16
+ }), /*#__PURE__*/React.createElement("path", {
17
+ d: "M28.4179 58.2438C27.9534 56.51 28.9823 54.7279 30.716 54.2634L85.8189 39.4986C87.5527 39.034 89.3348 40.0629 89.7994 41.7967L108.142 110.251C108.606 111.985 107.577 113.767 105.844 114.231L50.7406 128.996C49.0069 129.461 47.2248 128.432 46.7602 126.698L28.4179 58.2438Z",
18
+ fill: "white",
19
+ stroke: "#3B3552",
20
+ strokeWidth: "1.5"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ d: "M30.4691 85.2909L30.6632 86.0153L31.3877 85.8212L31.1935 85.0968L30.4691 85.2909ZM28.4416 77.7241L29.166 77.53L28.9719 76.8055L28.2475 76.9996L28.4416 77.7241ZM29.0202 85.6791L28.2958 85.8732L28.4899 86.5977L29.2143 86.4035L29.0202 85.6791ZM26.9927 78.1123L26.7986 77.3879L26.0741 77.582L26.2683 78.3064L26.9927 78.1123ZM23.4533 59.1076L24.1778 58.9135L23.4533 59.1076ZM28.5798 50.2282L28.7739 50.9526L29.4984 50.7585L29.3043 50.0341L28.5798 50.2282ZM25.6806 67.4201L24.9562 67.6142L25.6806 67.4201ZM27.2716 73.3575L27.4657 74.082L28.1901 73.8879L27.996 73.1634L27.2716 73.3575ZM25.8227 73.7458L25.0982 73.9399L25.2924 74.6643L26.0168 74.4702L25.8227 73.7458ZM24.2317 67.8083L24.9562 67.6142L24.2317 67.8083ZM22.0044 59.4958L21.28 59.6899L22.0044 59.4958ZM28.1916 48.7793L28.9161 48.5852L28.7219 47.8607L27.9975 48.0549L28.1916 48.7793ZM31.1935 85.0968L29.166 77.53L27.7171 77.9182L29.7447 85.485L31.1935 85.0968ZM29.2143 86.4035L30.6632 86.0153L30.275 84.5664L28.8261 84.9547L29.2143 86.4035ZM26.2683 78.3064L28.2958 85.8732L29.7447 85.485L27.7171 77.9182L26.2683 78.3064ZM28.2475 76.9996L26.7986 77.3879L27.1868 78.8368L28.6357 78.4485L28.2475 76.9996ZM24.1778 58.9135C23.2486 55.4459 25.3064 51.8818 28.7739 50.9526L28.3857 49.5037C24.118 50.6473 21.5853 55.034 22.7289 59.3017L24.1778 58.9135ZM26.4051 67.2259L24.1778 58.9135L22.7289 59.3017L24.9562 67.6142L26.4051 67.2259ZM27.996 73.1634L26.4051 67.2259L24.9562 67.6142L26.5471 73.5516L27.996 73.1634ZM26.0168 74.4702L27.4657 74.082L27.0775 72.6331L25.6286 73.0213L26.0168 74.4702ZM23.5073 68.0024L25.0982 73.9399L26.5471 73.5516L24.9562 67.6142L23.5073 68.0024ZM21.28 59.6899L23.5073 68.0024L24.9562 67.6142L22.7289 59.3017L21.28 59.6899ZM27.9975 48.0549C22.9296 49.4128 19.922 54.622 21.28 59.6899L22.7289 59.3017C21.5853 55.034 24.118 50.6473 28.3857 49.5037L27.9975 48.0549ZM29.3043 50.0341L28.9161 48.5852L27.4672 48.9734L27.8554 50.4223L29.3043 50.0341Z",
23
+ fill: "#3B3552"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M31.2413 58.9455C30.9554 57.8786 31.5886 56.7819 32.6555 56.496L86.1244 42.1691C87.1914 41.8832 88.288 42.5164 88.5739 43.5833L106.165 109.235C106.451 110.302 105.818 111.399 104.751 111.685L51.2822 126.012C50.2153 126.298 49.1186 125.665 48.8327 124.598L31.2413 58.9455Z",
28
+ fill: "#3040D6",
29
+ fillOpacity: "0.05"
30
+ }), /*#__PURE__*/React.createElement("mask", {
31
+ id: "path-5-inside-1_0_2335",
32
+ fill: "white"
33
+ }, /*#__PURE__*/React.createElement("path", {
34
+ fillRule: "evenodd",
35
+ clipRule: "evenodd",
36
+ d: "M68.2148 32.6172C66.0057 32.6172 64.2148 34.4081 64.2148 36.6172V40.748H51.9531C49.744 40.748 47.9531 42.5389 47.9531 44.748V115.617C47.9531 117.826 49.744 119.617 51.9531 119.617H109C111.209 119.617 113 117.826 113 115.617V44.748C113 42.5389 111.209 40.748 109 40.748H96.7382V36.6172C96.7382 34.408 94.9473 32.6172 92.7382 32.6172H68.2148Z"
37
+ })), /*#__PURE__*/React.createElement("path", {
38
+ fillRule: "evenodd",
39
+ clipRule: "evenodd",
40
+ d: "M68.2148 32.6172C66.0057 32.6172 64.2148 34.4081 64.2148 36.6172V40.748H51.9531C49.744 40.748 47.9531 42.5389 47.9531 44.748V115.617C47.9531 117.826 49.744 119.617 51.9531 119.617H109C111.209 119.617 113 117.826 113 115.617V44.748C113 42.5389 111.209 40.748 109 40.748H96.7382V36.6172C96.7382 34.408 94.9473 32.6172 92.7382 32.6172H68.2148Z",
41
+ fill: "white"
42
+ }), /*#__PURE__*/React.createElement("path", {
43
+ d: "M64.2148 40.748V42.248H65.7148V40.748H64.2148ZM96.7382 40.748H95.2382V42.248H96.7382V40.748ZM65.7148 36.6172C65.7148 35.2365 66.8341 34.1172 68.2148 34.1172V31.1172C65.1772 31.1172 62.7148 33.5796 62.7148 36.6172H65.7148ZM65.7148 40.748V36.6172H62.7148V40.748H65.7148ZM51.9531 42.248H64.2148V39.248H51.9531V42.248ZM49.4531 44.748C49.4531 43.3673 50.5724 42.248 51.9531 42.248V39.248C48.9156 39.248 46.4531 41.7105 46.4531 44.748H49.4531ZM49.4531 115.617V44.748H46.4531V115.617H49.4531ZM51.9531 118.117C50.5724 118.117 49.4531 116.998 49.4531 115.617H46.4531C46.4531 118.655 48.9156 121.117 51.9531 121.117V118.117ZM109 118.117H51.9531V121.117H109V118.117ZM111.5 115.617C111.5 116.998 110.381 118.117 109 118.117V121.117C112.037 121.117 114.5 118.655 114.5 115.617H111.5ZM111.5 44.748V115.617H114.5V44.748H111.5ZM109 42.248C110.381 42.248 111.5 43.3673 111.5 44.748H114.5C114.5 41.7105 112.037 39.248 109 39.248V42.248ZM96.7382 42.248H109V39.248H96.7382V42.248ZM95.2382 36.6172V40.748H98.2382V36.6172H95.2382ZM92.7382 34.1172C94.1189 34.1172 95.2382 35.2365 95.2382 36.6172H98.2382C98.2382 33.5796 95.7757 31.1172 92.7382 31.1172V34.1172ZM68.2148 34.1172H92.7382V31.1172H68.2148V34.1172Z",
44
+ fill: "#3B3552",
45
+ mask: "url(#path-5-inside-1_0_2335)"
46
+ }), /*#__PURE__*/React.createElement("path", {
47
+ fillRule: "evenodd",
48
+ clipRule: "evenodd",
49
+ d: "M105.906 73.3885C107.826 72.8277 109.747 74.2677 109.747 76.2682V114.454C109.747 115.352 109.057 116.08 108.206 116.08H88.3546C86.6977 116.08 85.3545 114.737 85.3546 113.08L85.3551 95.1785C85.3551 93.8837 86.1866 92.7385 87.3983 92.2821C88.6032 91.8282 90.0603 91.2312 90.9438 90.6994C94.6727 88.4549 97.6224 85.0474 99.2908 80.979C99.7284 79.9121 100.131 78.1259 100.4 76.7646C100.625 75.6277 101.448 74.6906 102.56 74.3657L105.906 73.3885Z",
50
+ fill: "#3040D6",
51
+ fillOpacity: "0.05"
52
+ }), /*#__PURE__*/React.createElement("path", {
53
+ d: "M69.0928 97.2571H91.8591",
54
+ stroke: "#3B3552",
55
+ strokeWidth: "1.5",
56
+ strokeLinecap: "round"
57
+ }), /*#__PURE__*/React.createElement("path", {
58
+ d: "M69.0928 105.388H91.8591",
59
+ stroke: "#3B3552",
60
+ strokeWidth: "1.5",
61
+ strokeLinecap: "round"
62
+ }), /*#__PURE__*/React.createElement("circle", {
63
+ cx: "80.4762",
64
+ cy: "44.0006",
65
+ r: "4.8785",
66
+ stroke: "#3B3552",
67
+ strokeWidth: "1.5",
68
+ strokeLinecap: "round"
69
+ }), /*#__PURE__*/React.createElement("circle", {
70
+ cx: "80.4765",
71
+ cy: "73.2714",
72
+ r: "16.2617",
73
+ stroke: "#3B3552",
74
+ strokeWidth: "1.5",
75
+ strokeLinecap: "round"
76
+ }), /*#__PURE__*/React.createElement("path", {
77
+ d: "M98.9221 61.2555L98.2941 61.6655L98.9221 61.2555ZM101.341 66.2406L100.631 66.48L101.341 66.2406ZM100.87 67.1908L100.631 66.48L100.87 67.1908ZM99.9198 66.7195L99.209 66.9589H99.209L99.9198 66.7195ZM97.666 62.0754L97.038 62.4854L97.666 62.0754ZM88.6873 52.8425L88.4074 53.5383V53.5383L88.6873 52.8425ZM87.7116 53.2584L88.4074 53.5383L88.4074 53.5383L87.7116 53.2584ZM96.5617 58.2454L96.0138 58.7575L96.5617 58.2454ZM96.5259 59.3054L97.038 59.8534H97.038L96.5259 59.3054ZM95.4658 59.2696L96.0138 58.7575L96.0138 58.7575L95.4658 59.2696ZM88.1275 54.2341L88.4074 53.5383H88.4074L88.1275 54.2341ZM99.5502 60.8456C99.0974 60.1519 98.1679 59.9566 97.4742 60.4094L98.2941 61.6655L99.5502 60.8456ZM102.052 66.0012C101.434 64.1664 100.589 62.4367 99.5502 60.8456L98.2941 61.6655C99.2643 63.1519 100.054 64.7672 100.631 66.48L102.052 66.0012ZM101.109 67.9015C101.894 67.6371 102.316 66.7863 102.052 66.0012L100.631 66.48L101.109 67.9015ZM99.209 66.9589C99.4734 67.744 100.324 68.166 101.109 67.9015L100.631 66.48L99.209 66.9589ZM97.038 62.4854C97.9398 63.867 98.6731 65.3679 99.209 66.9589L100.631 66.48C100.054 64.7672 99.2643 63.1519 98.2941 61.6655L97.038 62.4854ZM97.4742 60.4094C96.7805 60.8622 96.5852 61.7916 97.038 62.4854L98.2941 61.6655L97.4742 60.4094ZM88.9672 52.1467C88.1987 51.8375 87.325 52.2099 87.0158 52.9785L88.4074 53.5383L88.4074 53.5383L88.9672 52.1467ZM97.1097 57.7333C94.8562 55.3219 92.0832 53.4001 88.9672 52.1467L88.4074 53.5383C91.3167 54.7086 93.9076 56.5037 96.0138 58.7575L97.1097 57.7333ZM97.038 59.8534C97.6432 59.2877 97.6753 58.3385 97.1097 57.7333L96.0138 58.7575L96.0138 58.7575L97.038 59.8534ZM94.9179 59.7816C95.4835 60.3869 96.4327 60.419 97.038 59.8534L96.0138 58.7575V58.7575L94.9179 59.7816ZM87.8476 54.9299C90.5503 56.0171 92.959 57.6856 94.9179 59.7816L96.0138 58.7575C93.9076 56.5037 91.3167 54.7086 88.4074 53.5383L87.8476 54.9299ZM87.0158 52.9785C86.7066 53.747 87.079 54.6207 87.8476 54.9299L88.4074 53.5383L88.4074 53.5383L87.0158 52.9785Z",
78
+ fill: "#3B3552"
79
+ }), /*#__PURE__*/React.createElement("circle", {
80
+ cx: "80.4763",
81
+ cy: "70.0193",
82
+ r: "6.50467",
83
+ fill: "#3040D6"
84
+ }), /*#__PURE__*/React.createElement("path", {
85
+ d: "M70.501 86.0272C71.947 81.9126 75.867 78.9629 80.4758 78.9629C85.0973 78.9629 89.0261 81.9288 90.4625 86.0611",
86
+ stroke: "#3B3552",
87
+ strokeWidth: "1.5",
88
+ strokeLinecap: "round"
89
+ }), /*#__PURE__*/React.createElement("path", {
90
+ d: "M69.2607 23.6747L69.9119 23.3026L69.2607 23.6747ZM68.2374 23.3957L67.8653 22.7445H67.8653L68.2374 23.3957ZM79.0094 40.735L78.3582 41.1071H78.3582L79.0094 40.735ZM81.3142 41.3635L81.6863 42.0147H81.6863L81.3142 41.3635ZM81.9427 40.735L82.5939 41.1071L81.9427 40.735ZM82.3159 40.0819L81.6647 39.7098H81.6647L82.3159 40.0819ZM82.5825 39.6154L83.2337 39.9875H83.2337L82.5825 39.6154ZM83.6058 39.3363L83.9779 38.6851L83.6058 39.3363ZM83.8848 40.3596L84.536 40.7317V40.7317L83.8848 40.3596ZM83.6183 40.8261L82.9671 40.454H82.9671L83.6183 40.8261ZM83.2451 41.4792L82.5939 41.1071L83.2451 41.4792ZM82.0584 42.6659L82.4305 43.3171L82.0584 42.6659ZM77.707 41.4792L78.3582 41.1071L77.707 41.4792ZM67.9583 24.419L67.3071 24.7911H67.3071L67.9583 24.419ZM96.5049 18.2746L97.1561 18.6467V18.6467L96.5049 18.2746ZM96.2258 17.2513L96.5979 16.6001V16.6001L96.2258 17.2513ZM87.7652 33.5689L88.4164 33.941L87.7652 33.5689ZM86.742 33.848L87.1141 33.1968H87.1141L86.742 33.848ZM86.4629 32.8247L85.8117 32.4526L86.4629 32.8247ZM95.2025 17.5304L95.8537 17.9025V17.9025L95.2025 17.5304ZM69.9119 23.3026C69.5009 22.5834 68.5846 22.3335 67.8653 22.7445L68.6095 24.0468H68.6095L69.9119 23.3026ZM79.6606 40.3629L69.9119 23.3026L68.6095 24.0468L78.3582 41.1071L79.6606 40.3629ZM80.9421 40.7124C80.4917 40.9697 79.9179 40.8132 79.6606 40.3629L78.3582 41.1071C79.0266 42.2767 80.5166 42.6831 81.6863 42.0147L80.9421 40.7124ZM81.2916 40.3629C81.2084 40.5085 81.0877 40.6291 80.9421 40.7124L81.6863 42.0147C82.0644 41.7986 82.3778 41.4852 82.5939 41.1071L81.2916 40.3629ZM81.6647 39.7098L81.2916 40.3629L82.5939 41.1071L82.9671 40.454L81.6647 39.7098ZM81.9313 39.2433L81.6647 39.7098L82.9671 40.454L83.2337 39.9875L81.9313 39.2433ZM83.9779 38.6851C83.2586 38.2741 82.3423 38.524 81.9313 39.2433L83.2337 39.9875L83.9779 38.6851ZM84.536 40.7317C84.947 40.0124 84.6972 39.0962 83.9779 38.6851L83.2337 39.9875H83.2337L84.536 40.7317ZM84.2695 41.1982L84.536 40.7317L83.2337 39.9875L82.9671 40.454L84.2695 41.1982ZM83.8963 41.8513L84.2695 41.1982L82.9671 40.454L82.5939 41.1071L83.8963 41.8513ZM82.4305 43.3171C83.0412 42.9681 83.5473 42.462 83.8963 41.8513L82.5939 41.1071C82.3778 41.4852 82.0644 41.7986 81.6863 42.0147L82.4305 43.3171ZM77.0558 41.8513C78.1352 43.7402 80.5415 44.3965 82.4305 43.3171L81.6863 42.0147C80.5166 42.6831 79.0266 42.2767 78.3582 41.1071L77.0558 41.8513ZM67.3071 24.7911L77.0558 41.8513L78.3582 41.1071L68.6095 24.0468L67.3071 24.7911ZM67.8653 22.7445C67.146 23.1555 66.8961 24.0718 67.3071 24.7911L68.6095 24.0468L67.8653 22.7445ZM97.1561 18.6467C97.5671 17.9274 97.3172 17.0111 96.5979 16.6001L95.8537 17.9025V17.9025L97.1561 18.6467ZM88.4164 33.941L97.1561 18.6467L95.8537 17.9025L87.1141 33.1968L88.4164 33.941ZM86.3698 34.4992C87.0891 34.9102 88.0054 34.6603 88.4164 33.941L87.1141 33.1968H87.1141L86.3698 34.4992ZM85.8117 32.4526C85.4007 33.1719 85.6506 34.0882 86.3699 34.4992L87.1141 33.1968V33.1968L85.8117 32.4526ZM94.5513 17.1583L85.8117 32.4526L87.1141 33.1968L95.8537 17.9025L94.5513 17.1583ZM96.5979 16.6001C95.8786 16.1891 94.9623 16.439 94.5513 17.1583L95.8537 17.9025L95.8537 17.9025L96.5979 16.6001Z",
91
+ fill: "#3B3552"
92
+ }));
93
+ export default IdentityCard;
@@ -0,0 +1,35 @@
1
+ export { default as Accept } from "./accept.js";
2
+ export { default as AdminJSLogo } from "./adminjs-logo.js";
3
+ export { default as Astronaut } from "./astronaut.js";
4
+ export { default as Bag } from "./bag.js";
5
+ export { default as Beware } from "./beware.js";
6
+ export { default as Box } from "./box.js";
7
+ export { default as Calendar } from "./calendar.js";
8
+ export { default as Cancel } from "./cancel.js";
9
+ export { default as Cards } from "./cards.js";
10
+ export { default as Clip } from "./clip.js";
11
+ export { default as Cloud } from "./cloud.js";
12
+ export { default as Cup } from "./cup.js";
13
+ export { default as Details } from "./details.js";
14
+ export { default as Docs } from "./docs.js";
15
+ export { default as DocumentCheck } from "./document-check.js";
16
+ export { default as DocumentSearch } from "./document-search.js";
17
+ export { default as Drawer } from "./drawer.js";
18
+ export { default as FileSearch } from "./file-search.js";
19
+ export { default as FlagInCog } from "./flag-in-cog.js";
20
+ export { default as Folder } from "./folder.js";
21
+ export { default as Folders } from "./folders.js";
22
+ export { default as GithubLogo } from "./github-logo.js";
23
+ export { default as IdentityCard } from "./identity-card.js";
24
+ export { default as Launch } from "./launch.js";
25
+ export { default as Moon } from "./moon.js";
26
+ export { default as NotFound } from "./not-found.js";
27
+ export { default as Notebook } from "./notebook.js";
28
+ export { default as Padlock } from "./padlock.js";
29
+ export { default as Photos } from "./photos.js";
30
+ export { default as Planet } from "./planet.js";
31
+ export { default as Plug } from "./plug.js";
32
+ export { default as Rocket } from "./rocket.js";
33
+ export { default as RocketNew } from "./rocket-new.js";
34
+ export { default as SlackLogo } from "./slack-logo.js";
35
+ export { default as Tags } from "./tags.js";
@@ -0,0 +1,75 @@
1
+ import React from 'react';
2
+ export const Launch = ({
3
+ width = 165,
4
+ height = 184
5
+ }) => /*#__PURE__*/React.createElement("svg", {
6
+ width: width,
7
+ height: height,
8
+ viewBox: "0 0 165 184",
9
+ version: "1.1",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, /*#__PURE__*/React.createElement("g", {
12
+ id: "Symbols",
13
+ stroke: "none",
14
+ strokeWidth: "1",
15
+ fill: "none",
16
+ fillRule: "evenodd"
17
+ }, /*#__PURE__*/React.createElement("g", {
18
+ id: "Group",
19
+ transform: "translate(2.000000, 1.000000)",
20
+ fillRule: "nonzero"
21
+ }, /*#__PURE__*/React.createElement("path", {
22
+ d: "M80.5,163.67556 L80.5,177.071797 C80.5,179.280936 78.709139,181.071797 76.5,181.071797 C75.7978533,181.071797 75.1080768,180.886972 74.5,180.535898 L5.39265015,140.636751 L5.39265015,140.636751 C2.29863938,138.850423 0.39265015,135.549153 0.39265015,131.976497 L0.39265015,51.0235027 C0.39265015,47.4508468 2.29863938,44.1495766 5.39265015,42.3632487 L75.5,1.88675135 C78.5940108,0.100423396 82.4059892,0.100423396 85.5,1.88675135 L155.60735,42.3632487 C158.701361,44.1495766 160.60735,47.4508468 160.60735,51.0235027 L160.60735,131.976497 C160.60735,135.549153 158.701361,138.850423 155.60735,140.636751 L94.0407624,176.182237",
23
+ id: "Path",
24
+ stroke: "#3B3552",
25
+ strokeWidth: "3",
26
+ strokeLinecap: "round"
27
+ }), /*#__PURE__*/React.createElement("g", {
28
+ id: "Group-11",
29
+ transform: "translate(47.000000, 21.000000)",
30
+ stroke: "#3B3552",
31
+ strokeWidth: "2"
32
+ }, /*#__PURE__*/React.createElement("path", {
33
+ d: "M53.9942579,39.5219471 L55.8288797,35.8527035 C56.3228582,34.8647465 57.5242043,34.4642978 58.5121613,34.9582763 C58.8992161,35.1518037 59.2130611,35.4656487 59.4065885,35.8527035 L61.2412103,39.5219471 C62.5603369,42.1602003 63.2470936,45.0693486 63.2470936,48.0190054 L63.2470936,122.095329 C63.2470936,122.647613 62.7993784,123.095329 62.2470936,123.095329 L52.9883746,123.095329 C52.4360898,123.095329 51.9883746,122.647613 51.9883746,122.095329 L51.9883746,48.0190054 C51.9883746,45.0693486 52.6751313,42.1602003 53.9942579,39.5219471 Z",
34
+ id: "Rectangle",
35
+ fill: "#FFFFFF",
36
+ strokeLinejoin: "round"
37
+ }), /*#__PURE__*/React.createElement("path", {
38
+ d: "M5.75878973,39.5219471 L7.59341152,35.8527035 C8.08739002,34.8647465 9.2887361,34.4642978 10.2766931,34.9582763 C10.6637479,35.1518037 10.9775929,35.4656487 11.1711203,35.8527035 L13.0057421,39.5219471 C14.3248687,42.1602003 15.0116254,45.0693486 15.0116254,48.0190054 L15.0116254,122.095329 C15.0116254,122.647613 14.5639102,123.095329 14.0116254,123.095329 L4.75290636,123.095329 C4.20062161,123.095329 3.75290636,122.647613 3.75290636,122.095329 L3.75290636,48.0190054 C3.75290636,45.0693486 4.43966311,42.1602003 5.75878973,39.5219471 Z",
39
+ id: "Rectangle",
40
+ fill: "#FFFFFF",
41
+ strokeLinejoin: "round"
42
+ }), /*#__PURE__*/React.createElement("path", {
43
+ d: "M26.5571232,7.82445311 L30.2061982,2.5285507 C31.4596375,0.709434189 33.9504362,0.250862247 35.7695527,1.5043016 C36.1704572,1.78053976 36.5175637,2.12764628 36.7938018,2.5285507 L40.4428768,7.82445311 C44.9645408,14.386744 47.3857535,22.1679451 47.3857535,30.1372052 L47.3857535,93.8226591 L47.3857535,93.8226591 L19.6142465,93.8226591 L19.6142465,30.1372052 C19.6142465,22.1679451 22.0354592,14.386744 26.5571232,7.82445311 Z",
44
+ id: "Rectangle",
45
+ fill: "#3040D6",
46
+ strokeLinejoin: "round"
47
+ }), /*#__PURE__*/React.createElement("path", {
48
+ d: "M40.5745738,117.355362 L41.6399673,64.4923457 L45.0007027,77.8303078 C46.8757338,85.2718617 50.6334929,92.105976 55.9127551,97.6757028 L59.211122,101.155546 C62.0658223,104.167311 63.9962059,107.93508 64.7730365,112.011424 L65.5485066,116.080629 C65.5463599,116.477108 65.4504565,116.810566 65.2566953,117.04474 C65.0889845,117.247429 64.8478844,117.355362 64.582866,117.355362 L40.5745738,117.355362 Z",
49
+ id: "Path-3",
50
+ fill: "#3040D6"
51
+ }), /*#__PURE__*/React.createElement("path", {
52
+ d: "M1.02035692,117.355362 L2.08575042,64.4923457 L5.44648581,77.8303078 C7.32151692,85.2718617 11.079276,92.105976 16.3585383,97.6757028 L19.6569052,101.155546 C22.5116054,104.167311 24.441989,107.93508 25.2188196,112.011424 L25.9942897,116.080629 C25.992143,116.477108 25.8962396,116.810566 25.7024785,117.04474 C25.5347676,117.247429 25.2936675,117.355362 25.0286491,117.355362 L1.02035692,117.355362 Z",
53
+ id: "Path-3-Copy",
54
+ fill: "#3040D6",
55
+ transform: "translate(13.722892, 87.691223) scale(-1, 1) translate(-13.722892, -87.691223) "
56
+ }), /*#__PURE__*/React.createElement("path", {
57
+ d: "M26.9474568,46.6158047 L29.0688728,42.5574438 C30.348114,40.1101998 33.3690271,39.1633464 35.816271,40.4425876 C36.7204907,40.9152479 37.4584669,41.6532241 37.9311272,42.5574438 L40.0525432,46.6158047 C41.8462831,50.0473072 42.7831325,53.8618634 42.7831325,57.7339058 L42.7831325,122.875685 L42.7831325,122.875685 L24.2168675,122.875685 L24.2168675,57.7339058 C24.2168675,53.8618634 25.1537169,50.0473072 26.9474568,46.6158047 Z",
58
+ id: "Rectangle",
59
+ fill: "#FFFFFF",
60
+ strokeLinejoin: "round"
61
+ }), /*#__PURE__*/React.createElement("path", {
62
+ d: "M46.626506,125.104601 L20.373494,125.104601 L20.373494,118.032312 C20.373494,116.079353 21.1650869,114.311281 22.4449195,113.031448 C23.7247521,111.751616 25.4928244,110.960023 27.4457831,110.960023 L39.5542169,110.960023 C41.5071756,110.960023 43.2752479,111.751616 44.5550805,113.031448 C45.8349131,114.311281 46.626506,116.079353 46.626506,118.032312 L46.626506,125.104601 Z",
63
+ id: "Rectangle",
64
+ fill: "#FFFFFF"
65
+ }), /*#__PURE__*/React.createElement("line", {
66
+ x1: "33.5",
67
+ y1: "101.484119",
68
+ x2: "33.5",
69
+ y2: "129.203332",
70
+ id: "Line",
71
+ fill: "#3040D6",
72
+ fillOpacity: "0.2",
73
+ strokeLinecap: "round"
74
+ })))));
75
+ export default Launch;
@@ -0,0 +1,135 @@
1
+ import React from 'react';
2
+ const Moon = ({
3
+ width = 260,
4
+ height = 260
5
+ }) => /*#__PURE__*/React.createElement("svg", {
6
+ width: width,
7
+ height: height,
8
+ viewBox: "0 0 260 260",
9
+ version: "1.1",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("circle", {
12
+ id: "path-1",
13
+ cx: "106",
14
+ cy: "106",
15
+ r: "106"
16
+ }), /*#__PURE__*/React.createElement("filter", {
17
+ x: "-17.0%",
18
+ y: "-17.0%",
19
+ width: "134.0%",
20
+ height: "134.0%",
21
+ filterUnits: "objectBoundingBox",
22
+ id: "filter-2"
23
+ }, /*#__PURE__*/React.createElement("feOffset", {
24
+ dx: "0",
25
+ dy: "0",
26
+ in: "SourceAlpha",
27
+ result: "shadowOffsetOuter1"
28
+ }), /*#__PURE__*/React.createElement("feGaussianBlur", {
29
+ stdDeviation: "12",
30
+ in: "shadowOffsetOuter1",
31
+ result: "shadowBlurOuter1"
32
+ }), /*#__PURE__*/React.createElement("feColorMatrix", {
33
+ values: "0 0 0 0 0.958112299 0 0 0 0 0.910577834 0 0 0 0 0.855913579 0 0 0 1 0",
34
+ type: "matrix",
35
+ in: "shadowBlurOuter1"
36
+ })), /*#__PURE__*/React.createElement("circle", {
37
+ id: "path-3",
38
+ cx: "106",
39
+ cy: "106",
40
+ r: "106"
41
+ })), /*#__PURE__*/React.createElement("g", {
42
+ id: "Main-Templates",
43
+ stroke: "none",
44
+ strokeWidth: "1",
45
+ fill: "none",
46
+ fillRule: "evenodd"
47
+ }, /*#__PURE__*/React.createElement("g", {
48
+ id: "Group-12",
49
+ transform: "translate(24.000000, 24.000000)"
50
+ }, /*#__PURE__*/React.createElement("g", {
51
+ id: "Oval"
52
+ }, /*#__PURE__*/React.createElement("use", {
53
+ fill: "black",
54
+ fillOpacity: "1",
55
+ filter: "url(#filter-2)",
56
+ href: "#path-1"
57
+ }), /*#__PURE__*/React.createElement("use", {
58
+ fill: "#F4E8DB",
59
+ fillRule: "evenodd",
60
+ href: "#path-1"
61
+ })), /*#__PURE__*/React.createElement("g", {
62
+ id: "Path-7"
63
+ }, /*#__PURE__*/React.createElement("mask", {
64
+ id: "mask-4",
65
+ fill: "white"
66
+ }, /*#__PURE__*/React.createElement("use", {
67
+ href: "#path-3"
68
+ })), /*#__PURE__*/React.createElement("use", {
69
+ id: "Mask",
70
+ fill: "#F4E8DB",
71
+ href: "#path-3"
72
+ }), /*#__PURE__*/React.createElement("path", {
73
+ d: "M39.8069626,3.76747066 C45.3021184,115.593145 97.2894125,176.043124 195.768845,185.117407 C294.248278,194.191689 253.575457,215.872553 73.750384,250.16 L-33.92,160.780637 L-25.2907546,24.0909209 L26.5457822,-4.24 L39.8069626,3.76747066 Z",
74
+ fill: "#C8BBB2",
75
+ mask: "url(#mask-4)"
76
+ })), /*#__PURE__*/React.createElement("circle", {
77
+ id: "Oval",
78
+ fill: "#C8BBB2",
79
+ cx: "80.5",
80
+ cy: "37.5",
81
+ r: "22.5"
82
+ }), /*#__PURE__*/React.createElement("circle", {
83
+ id: "Oval-Copy-3",
84
+ fill: "#C8BBB2",
85
+ cx: "158",
86
+ cy: "66",
87
+ r: "17"
88
+ }), /*#__PURE__*/React.createElement("circle", {
89
+ id: "Oval-Copy-4",
90
+ stroke: "#F4E8DB",
91
+ strokeWidth: "3",
92
+ fill: "#C8BBB2",
93
+ cx: "124",
94
+ cy: "166",
95
+ r: "17"
96
+ }), /*#__PURE__*/React.createElement("circle", {
97
+ id: "Oval-Copy-5",
98
+ stroke: "#F4E8DB",
99
+ strokeWidth: "1.6875",
100
+ fill: "#C8BBB2",
101
+ cx: "58.5",
102
+ cy: "92.5",
103
+ r: "9.5"
104
+ }), /*#__PURE__*/React.createElement("circle", {
105
+ id: "Oval-Copy",
106
+ fill: "#C8BBB2",
107
+ cx: "157.5",
108
+ cy: "124.5",
109
+ r: "8.5"
110
+ }), /*#__PURE__*/React.createElement("circle", {
111
+ id: "Oval-Copy-6",
112
+ fill: "#C8BBB2",
113
+ cx: "190",
114
+ cy: "96",
115
+ r: "3"
116
+ }), /*#__PURE__*/React.createElement("circle", {
117
+ id: "Oval-Copy-8",
118
+ fill: "#C8BBB2",
119
+ cx: "81",
120
+ cy: "113",
121
+ r: "3"
122
+ }), /*#__PURE__*/React.createElement("circle", {
123
+ id: "Oval-Copy-7",
124
+ fill: "#C8BBB2",
125
+ cx: "126",
126
+ cy: "29",
127
+ r: "3"
128
+ }), /*#__PURE__*/React.createElement("circle", {
129
+ id: "Oval-Copy-2",
130
+ fill: "#C8BBB2",
131
+ cx: "97.5",
132
+ cy: "101.5",
133
+ r: "8.5"
134
+ }))));
135
+ export default Moon;
@@ -0,0 +1,80 @@
1
+ import React from 'react';
2
+ export const NotFound = ({
3
+ width = 152,
4
+ height = 152
5
+ }) => /*#__PURE__*/React.createElement("svg", {
6
+ width: width,
7
+ height: height,
8
+ viewBox: "0 0 152 152",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, /*#__PURE__*/React.createElement("circle", {
12
+ cx: "76",
13
+ cy: "76",
14
+ r: "76",
15
+ fill: "white"
16
+ }), /*#__PURE__*/React.createElement("path", {
17
+ d: "M45.9805 86.9152C48.9413 103.963 63.8085 116.927 81.7035 116.927C101.729 116.927 117.963 100.693 117.963 80.6675C117.963 60.642 101.729 44.4082 81.7035 44.4082C78.8369 44.4082 76.0481 44.7408 73.3734 45.3696",
18
+ stroke: "#3B3552",
19
+ strokeWidth: "1.5",
20
+ strokeLinecap: "round"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ d: "M105.906 118.934L105.505 118.3L105.906 118.934ZM106.139 117.9L106.774 117.5L106.774 117.499L106.139 117.9ZM95.4697 123.763L95.2458 123.047L95.4697 123.763ZM94.53 123.271L95.2458 123.047H95.2458L94.53 123.271ZM95.0219 122.331L94.7979 121.616H94.7979L95.0219 122.331ZM105.105 117.666L104.705 117.032L105.105 117.666ZM124.32 95.669L123.61 95.426L123.61 95.426L124.32 95.669ZM110.656 115.479L110.176 114.902H110.176L110.656 115.479ZM109.6 115.383L109.024 115.863L109.024 115.863L109.6 115.383ZM109.696 114.326L110.176 114.902L110.176 114.902L109.696 114.326ZM122.9 95.183L123.61 95.426V95.426L122.9 95.183ZM106.306 119.569C107.007 119.126 107.216 118.2 106.774 117.5L105.505 118.3L106.306 119.569ZM95.6937 124.479C99.4677 123.298 103.029 121.637 106.306 119.569L105.505 118.3C102.337 120.301 98.8938 121.906 95.2458 123.047L95.6937 124.479ZM93.8142 123.495C94.0616 124.286 94.903 124.726 95.6937 124.479L95.2458 123.047H95.2458L93.8142 123.495ZM94.7979 121.616C94.0073 121.863 93.5669 122.704 93.8142 123.495L95.2458 123.047H95.2458L94.7979 121.616ZM104.705 117.032C101.644 118.964 98.3199 120.514 94.7979 121.616L95.2458 123.047C98.8938 121.906 102.337 120.301 105.505 118.3L104.705 117.032ZM106.774 117.499C106.331 116.799 105.405 116.59 104.705 117.032L105.505 118.3L106.774 117.499ZM125.029 95.912C125.298 95.1282 124.88 94.2753 124.096 94.0069L123.61 95.426V95.426L125.029 95.912ZM111.136 116.055C117.448 110.796 122.31 103.853 125.029 95.912L123.61 95.426C120.981 103.102 116.281 109.816 110.176 114.902L111.136 116.055ZM109.024 115.863C109.554 116.499 110.5 116.585 111.136 116.055L110.176 114.902H110.176L109.024 115.863ZM109.216 113.75C108.579 114.28 108.493 115.226 109.024 115.863L110.176 114.902H110.176L109.216 113.75ZM122.191 94.94C119.653 102.351 115.114 108.837 109.216 113.75L110.176 114.902C116.281 109.816 120.981 103.102 123.61 95.426L122.191 94.94ZM124.096 94.0069C123.312 93.7385 122.459 94.1563 122.191 94.94L123.61 95.426V95.426L124.096 94.0069Z",
23
+ fill: "#3B3552"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M102.531 59.8962C102.06 58.8657 103.349 57.9209 104.122 58.7499C106.278 61.0638 108.662 63.8966 109.789 66.1713C111.892 70.417 113.074 75.2 113.074 80.2592C113.074 97.8096 98.8467 112.037 81.2963 112.037C76.2969 112.037 71.5671 110.882 67.359 108.826C65.1089 107.726 62.3224 105.412 60.0117 103.281C59.1726 102.507 60.137 101.197 61.1738 101.674C63.5052 102.748 66.1159 103.795 68.1113 104.166C70.008 104.519 71.964 104.704 73.963 104.704C91.5134 104.704 105.741 90.4763 105.741 72.9259C105.741 71.209 105.605 69.5238 105.342 67.8807C104.987 65.6535 103.748 62.5573 102.531 59.8962Z",
28
+ fill: "#3040D6",
29
+ fillOpacity: "0.05"
30
+ }), /*#__PURE__*/React.createElement("path", {
31
+ d: "M49.7112 97.7701C42.3619 108.603 39.2213 117.118 42.2366 120.134C47.487 125.384 69.4133 111.97 91.2103 90.1732C113.007 68.3762 126.421 46.4499 121.171 41.1995C118.144 38.1731 109.577 41.3481 98.6873 48.7555",
32
+ stroke: "#3B3552",
33
+ strokeWidth: "1.5"
34
+ }), /*#__PURE__*/React.createElement("path", {
35
+ d: "M34.8519 58.2595V69.6669H23C21.8954 69.6669 21 68.7715 21 67.6669V50.1113",
36
+ stroke: "#3B3552",
37
+ strokeWidth: "1.5",
38
+ strokeLinecap: "round"
39
+ }), /*#__PURE__*/React.createElement("circle", {
40
+ cx: "51.9631",
41
+ cy: "68.8517",
42
+ r: "11.4074",
43
+ fill: "#3040D6"
44
+ }), /*#__PURE__*/React.createElement("path", {
45
+ d: "M51.9631 53.4443C49.0216 53.4443 46.2726 54.2686 43.9346 55.6988",
46
+ stroke: "#3B3552",
47
+ strokeWidth: "1.5",
48
+ strokeLinecap: "round"
49
+ }), /*#__PURE__*/React.createElement("path", {
50
+ d: "M34.8517 68.8525V80.2599",
51
+ stroke: "#3B3552",
52
+ strokeWidth: "1.5",
53
+ strokeLinecap: "round"
54
+ }), /*#__PURE__*/React.createElement("path", {
55
+ d: "M81.2962 58.2595V69.6669H69.4443C68.3398 69.6669 67.4443 68.7715 67.4443 67.6669V50.1113",
56
+ stroke: "#3B3552",
57
+ strokeWidth: "1.5",
58
+ strokeLinecap: "round"
59
+ }), /*#__PURE__*/React.createElement("path", {
60
+ d: "M81.2961 68.8525V80.2599",
61
+ stroke: "#3B3552",
62
+ strokeWidth: "1.5",
63
+ strokeLinecap: "round"
64
+ }), /*#__PURE__*/React.createElement("path", {
65
+ d: "M71.7411 93.834C70.3091 92.4021 67.9875 92.4021 66.5556 93.834C65.1237 95.266 65.1237 97.5876 66.5556 99.0195",
66
+ stroke: "#3B3552",
67
+ strokeWidth: "1.5",
68
+ strokeLinecap: "round"
69
+ }), /*#__PURE__*/React.createElement("path", {
70
+ d: "M105.099 92.8995C103.985 91.7857 102.18 91.7857 101.066 92.8995C99.9522 94.0132 99.9522 95.8189 101.066 96.9326",
71
+ stroke: "#3B3552",
72
+ strokeWidth: "1.5",
73
+ strokeLinecap: "round"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ d: "M100.557 61.0148C99.3196 58.8714 96.5787 58.137 94.4353 59.3745C92.2918 60.612 91.5574 63.3529 92.7949 65.4963",
76
+ stroke: "#3B3552",
77
+ strokeWidth: "1.5",
78
+ strokeLinecap: "round"
79
+ }));
80
+ export default NotFound;
@@ -0,0 +1,132 @@
1
+ import React from 'react';
2
+ export const Notebook = ({
3
+ width = 152,
4
+ height = 152
5
+ }) => /*#__PURE__*/React.createElement("svg", {
6
+ width: width,
7
+ height: height,
8
+ viewBox: "0 0 152 152",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, /*#__PURE__*/React.createElement("circle", {
12
+ cx: "76",
13
+ cy: "76",
14
+ r: "76",
15
+ fill: "white"
16
+ }), /*#__PURE__*/React.createElement("rect", {
17
+ x: "23.75",
18
+ y: "39.75",
19
+ width: "104.5",
20
+ height: "72.4535",
21
+ rx: "3.25",
22
+ fill: "white",
23
+ stroke: "#3B3552",
24
+ strokeWidth: "1.5"
25
+ }), /*#__PURE__*/React.createElement("rect", {
26
+ x: "25.6924",
27
+ y: "41.1094",
28
+ width: "100.612",
29
+ height: "69.6979",
30
+ rx: "2",
31
+ fill: "#3040D6",
32
+ fillOpacity: "0.05"
33
+ }), /*#__PURE__*/React.createElement("path", {
34
+ d: "M33.6104 44.2871C33.6104 43.5968 34.17 43.0371 34.8604 43.0371H118.389V107.667C118.389 108.357 117.83 108.917 117.139 108.917H34.8604C34.17 108.917 33.6104 108.357 33.6104 107.667V44.2871Z",
35
+ fill: "white",
36
+ stroke: "#3B3552",
37
+ strokeWidth: "1.5"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ d: "M38.5 49.5V63.5",
40
+ stroke: "#3B3552",
41
+ strokeWidth: "1.5",
42
+ strokeLinecap: "round"
43
+ }), /*#__PURE__*/React.createElement("path", {
44
+ d: "M38.5 68.1667V72.8333",
45
+ stroke: "#3B3552",
46
+ strokeWidth: "1.5",
47
+ strokeLinecap: "round"
48
+ }), /*#__PURE__*/React.createElement("rect", {
49
+ x: "50.1162",
50
+ y: "45.5732",
51
+ width: "23.0078",
52
+ height: "60.8062",
53
+ rx: "2",
54
+ fill: "#3040D6",
55
+ fillOpacity: "0.05"
56
+ }), /*#__PURE__*/React.createElement("path", {
57
+ d: "M87.0928 64.0622H110.101",
58
+ stroke: "#3B3552",
59
+ strokeWidth: "1.5",
60
+ strokeLinecap: "round"
61
+ }), /*#__PURE__*/React.createElement("path", {
62
+ d: "M87.0928 70.6355H110.101",
63
+ stroke: "#3B3552",
64
+ strokeWidth: "1.5",
65
+ strokeLinecap: "round"
66
+ }), /*#__PURE__*/React.createElement("circle", {
67
+ cx: "106.814",
68
+ cy: "55.4337",
69
+ r: "4.10853",
70
+ fill: "#3040D6"
71
+ }), /*#__PURE__*/React.createElement("path", {
72
+ d: "M87.0928 89.5349H110.101",
73
+ stroke: "#3B3552",
74
+ strokeWidth: "1.5",
75
+ strokeLinecap: "round"
76
+ }), /*#__PURE__*/React.createElement("path", {
77
+ d: "M87.0928 96.1081H110.101",
78
+ stroke: "#3B3552",
79
+ strokeWidth: "1.5",
80
+ strokeLinecap: "round"
81
+ }), /*#__PURE__*/React.createElement("circle", {
82
+ cx: "106.814",
83
+ cy: "80.9074",
84
+ r: "4.10853",
85
+ fill: "#3040D6"
86
+ }), /*#__PURE__*/React.createElement("path", {
87
+ d: "M118.657 43.0371H123.303C123.993 43.0371 124.553 43.5968 124.553 44.2871V65.76C124.553 66.4503 123.993 67.01 123.303 67.01H118.657V43.0371Z",
88
+ fill: "white",
89
+ stroke: "#3B3552",
90
+ strokeWidth: "1.5"
91
+ }), /*#__PURE__*/React.createElement("path", {
92
+ d: "M118.728 55.0232H124.48",
93
+ stroke: "#3B3552",
94
+ strokeWidth: "1.5",
95
+ strokeLinecap: "round"
96
+ }), /*#__PURE__*/React.createElement("path", {
97
+ d: "M75.9997 43.5466V108.407",
98
+ stroke: "#3B3552",
99
+ strokeWidth: "1.5",
100
+ strokeLinecap: "round"
101
+ }), /*#__PURE__*/React.createElement("path", {
102
+ d: "M80.5192 55.0233C80.5192 52.5273 78.4958 50.5039 75.9998 50.5039C73.5039 50.5039 71.4805 52.5273 71.4805 55.0233",
103
+ stroke: "#3B3552",
104
+ strokeWidth: "1.5",
105
+ strokeLinecap: "round"
106
+ }), /*#__PURE__*/React.createElement("path", {
107
+ d: "M80.5192 63.2401C80.5192 60.7441 78.4958 58.7207 75.9998 58.7207C73.5039 58.7207 71.4805 60.7441 71.4805 63.2401",
108
+ stroke: "#3B3552",
109
+ strokeWidth: "1.5",
110
+ strokeLinecap: "round"
111
+ }), /*#__PURE__*/React.createElement("path", {
112
+ d: "M80.5192 92.8221C80.5192 90.3261 78.4958 88.3027 75.9998 88.3027C73.5039 88.3027 71.4805 90.3261 71.4805 92.8221",
113
+ stroke: "#3B3552",
114
+ strokeWidth: "1.5",
115
+ strokeLinecap: "round"
116
+ }), /*#__PURE__*/React.createElement("path", {
117
+ d: "M80.5192 101.039C80.5192 98.5429 78.4958 96.5195 75.9998 96.5195C73.5039 96.5195 71.4805 98.5429 71.4805 101.039",
118
+ stroke: "#3B3552",
119
+ strokeWidth: "1.5",
120
+ strokeLinecap: "round"
121
+ }), /*#__PURE__*/React.createElement("path", {
122
+ d: "M56.5 119.5H73.5",
123
+ stroke: "#3B3552",
124
+ strokeWidth: "1.5",
125
+ strokeLinecap: "round"
126
+ }), /*#__PURE__*/React.createElement("path", {
127
+ d: "M78.1944 119.5H84.8056",
128
+ stroke: "#3B3552",
129
+ strokeWidth: "1.5",
130
+ strokeLinecap: "round"
131
+ }));
132
+ export default Notebook;