@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,61 @@
1
+ <img src="components/tooltip.png" />
2
+
3
+ Renders Tooltip
4
+
5
+ ### Usage
6
+
7
+ ```jsx
8
+ import { Tooltip, TooltipContent } from '@adminjs/design-system'
9
+
10
+ // Wrapping existing element with a tooltip
11
+ return (
12
+ <Box>
13
+ <Tooltip title="I am tooltip">
14
+ <Button>I am tooltip</Button>
15
+ </Tooltip>
16
+ </Box>
17
+ )
18
+
19
+ // Adding more complicated content
20
+ return (
21
+ <Box>
22
+ <Tooltip>
23
+ <TooltipContent>
24
+ <Text>I am text inside with <strong>BoldedText</strong></Text>
25
+ </TooltipContent>
26
+ <Button>I am tooltip</Button>
27
+ </Tooltip>
28
+ </Box>
29
+ )
30
+ ```
31
+
32
+ As you can see on the examples, there are 2 ways of passing tooltip message:
33
+
34
+ 1. by the `title` prop
35
+ 2. by the TooltipContent component
36
+
37
+ The first way is the easiest, but the second allows you to put whatever styled content you like.
38
+
39
+ ### Props
40
+
41
+ The Tooltip Component takes 3 custom props:
42
+
43
+ - `title`
44
+ - `direction` - default to `bottom`
45
+ - `size`
46
+
47
+ See {@link TooltipProps} below.
48
+
49
+ ### Example
50
+
51
+ 1. Direction and title
52
+
53
+ ```reactComponent
54
+ return (
55
+ <Box p="xxl">
56
+ <Tooltip title="example info" direction="right">
57
+ <Button>indicator</Button>
58
+ </Tooltip>
59
+ </Box>
60
+ )
61
+ ```
@@ -0,0 +1,65 @@
1
+ /* eslint-disable max-len */
2
+ import React, { useState, useRef, forwardRef } from 'react';
3
+ import PortalUtils from "../../utils/portal-utils.js";
4
+ import { TooltipControl } from "./tooltip-control.js";
5
+ const TooltipPortal = PortalUtils.createPortalForKey('TOOLTIP', TooltipControl);
6
+
7
+ /**
8
+ * @load ./tooltip.doc.md
9
+ * @component
10
+ * @subcategory Atoms
11
+ * @hideconstructor
12
+ * @new In version 3.3
13
+ * @section design-system
14
+ */
15
+ export const Tooltip = props => {
16
+ const {
17
+ direction,
18
+ title,
19
+ children,
20
+ size
21
+ } = props;
22
+ const childRef = useRef(null);
23
+ const [isVisible, setIsVisible] = useState(false);
24
+ let TriggerElement;
25
+ let ContentElement;
26
+ const childrenCount = React.Children.count(children);
27
+ if (childrenCount === 1) {
28
+ TriggerElement = children;
29
+ } else if (childrenCount === 2) {
30
+ React.Children.forEach(children, child => {
31
+ const type = child.type?.displayName;
32
+ if (type === 'TooltipContent') {
33
+ ContentElement = child;
34
+ } else {
35
+ TriggerElement = child;
36
+ }
37
+ });
38
+ }
39
+ const onEnter = () => {
40
+ setIsVisible(true);
41
+ };
42
+ const onLeave = () => {
43
+ setIsVisible(false);
44
+ };
45
+
46
+ // eslint-disable-next-line react/no-unstable-nested-components
47
+ const ChildWithRef = /*#__PURE__*/forwardRef((triggerProps, ref) => /*#__PURE__*/React.cloneElement(TriggerElement, {
48
+ ...triggerProps,
49
+ displayName: 'TooltipTrigger',
50
+ ref
51
+ }));
52
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(ChildWithRef, {
53
+ ref: childRef,
54
+ onMouseEnter: onEnter,
55
+ onMouseLeave: onLeave
56
+ }), isVisible && /*#__PURE__*/React.createElement(TooltipPortal, {
57
+ title: title,
58
+ childRef: childRef,
59
+ size: size,
60
+ direction: direction,
61
+ ContentElement: ContentElement
62
+ }));
63
+ };
64
+ Tooltip.displayName = 'Tooltip';
65
+ export default Tooltip;
@@ -0,0 +1,47 @@
1
+ import React from 'react';
2
+ import StoryWrapper from "../../utils/story-wrapper.js";
3
+ import { Box, Button, H4, Text } from "../index.js";
4
+ import { Tooltip, TooltipContent } from "./index.js";
5
+ const Direction = {
6
+ right: 'right',
7
+ left: 'left',
8
+ top: 'top',
9
+ bottom: 'bottom'
10
+ };
11
+ const Size = ['default', 'lg'];
12
+ export const Default = {
13
+ render: args => /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(StoryWrapper, {
14
+ label: "Regular example"
15
+ }, /*#__PURE__*/React.createElement(Tooltip, args, /*#__PURE__*/React.createElement(Button, null, "Standard text"))), /*#__PURE__*/React.createElement(StoryWrapper, {
16
+ label: "Custom component as tooltip"
17
+ }, /*#__PURE__*/React.createElement(Tooltip, args, /*#__PURE__*/React.createElement(TooltipContent, null, /*#__PURE__*/React.createElement(H4, null, "Header"), /*#__PURE__*/React.createElement(Text, null, "Some text inside the tooltip?")), /*#__PURE__*/React.createElement(Button, null, "Header with sth"))))
18
+ };
19
+ const meta = {
20
+ title: 'DesignSystem/Atoms/Tooltip',
21
+ component: Tooltip,
22
+ args: {
23
+ direction: Direction.top,
24
+ size: Size[0],
25
+ title: 'Example info'
26
+ },
27
+ argTypes: {
28
+ direction: {
29
+ options: Object.values(Direction),
30
+ control: {
31
+ type: 'select'
32
+ }
33
+ },
34
+ size: {
35
+ options: Size,
36
+ control: {
37
+ type: 'select'
38
+ }
39
+ },
40
+ title: {
41
+ control: {
42
+ type: 'text'
43
+ }
44
+ }
45
+ }
46
+ };
47
+ export default meta;
@@ -0,0 +1,10 @@
1
+ import { typography, space } from 'styled-system';
2
+ import { css } from "../../../build/utils/styled.js";
3
+ import themeGet from "../../utils/theme-get.js";
4
+ export const CaptionShared = css`
5
+ font-family: ${themeGet('font')};
6
+ font-weight: ${themeGet('fontWeights', 'normal')};
7
+ ${typography};
8
+ ${space};
9
+ `;
10
+ export default CaptionShared;
@@ -0,0 +1,10 @@
1
+ import { styled } from "../../../build/utils/styled.js";
2
+ import themeGet from "../../utils/theme-get.js";
3
+ import CaptionShared from "./caption-shared.js";
4
+ export const Caption = styled('div')`
5
+ ${CaptionShared};
6
+ font-size: ${themeGet('fontSizes', 'sm')};
7
+ line-height: ${themeGet('lineHeights', 'md')};
8
+ `;
9
+ Caption.displayName = 'Caption';
10
+ export default Caption;
@@ -0,0 +1,14 @@
1
+ import { styled } from "../../../build/utils/styled.js";
2
+ import themeGet from "../../utils/theme-get.js";
3
+ import CaptionShared from "./caption-shared.js";
4
+ export const CardTitle = styled('div')`
5
+ ${CaptionShared};
6
+ font-size: ${themeGet('fontSizes', 'md')};
7
+ line-height: ${themeGet('lineHeights', 'lg')};
8
+ margin: ${themeGet('space', 'lg')} 0;
9
+ * > &:first-child {
10
+ margin-top: 0;
11
+ }
12
+ `;
13
+ CardTitle.displayName = 'CardTitle';
14
+ export default CardTitle;
@@ -0,0 +1,38 @@
1
+ <img src="components/header.png" />
2
+
3
+ The Header component is a base for all headers.
4
+
5
+ ### Usage
6
+
7
+ ```javascript
8
+ import { H1, H2, H3, H4, H5, H6 } from '@adminjs/design-system'
9
+
10
+ // or
11
+
12
+ import { Header } from '@adminjs/design-system'
13
+ // Header.H1
14
+ ```
15
+ By default, the Heading component renders __H3__ element.
16
+
17
+ ### Example
18
+
19
+ This is how headers looks
20
+
21
+ ```reactComponent
22
+ return (
23
+ <Box py="lg">
24
+ <Header.H1>H1 Header - 40</Header.H1>
25
+ <Text variant="sm" marginBottom={5}>Roboto 40 - line height - 40</Text>
26
+ <Header.H2>H2 Header - 32</Header.H2>
27
+ <Text variant="sm" marginBottom={5}>Roboto 32 - line height - 40</Text>
28
+ <Header.H3>H3 Header - 28</Header.H3>
29
+ <Text variant="sm" marginBottom={5}>Roboto 28 - line height - 32</Text>
30
+ <Header.H4>H4 Header - 24</Header.H4>
31
+ <Text variant="sm" marginBottom={5}>Roboto 24 - line height - 32</Text>
32
+ <Header.H5>H5 Header - 18</Header.H5>
33
+ <Text variant="sm" marginBottom={5}>Roboto 18 - line height - 24</Text>
34
+ <Header.H6>H6 Header - 16</Header.H6>
35
+ <Text variant="sm" marginBottom={5}>Roboto 16 - line height - 24</Text>
36
+ </Box>
37
+ )
38
+ ```
@@ -0,0 +1,128 @@
1
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
2
+ import React from 'react';
3
+ import { typography, space } from 'styled-system';
4
+ import { styled } from "../../../build/utils/styled.js";
5
+ import { Button } from "../button/index.js";
6
+ import { Badge } from "../badge/index.js";
7
+ import { cssClass } from "../../utils/css-class.js";
8
+ import themeGet from "../../utils/theme-get.js";
9
+
10
+ /**
11
+ * Prop Types of an Header components.
12
+ * Apart from all props for a standard hx elements it extends
13
+ * {@link TypographyProps} and {@link SpaceProps}
14
+ *
15
+ * @memberof Header
16
+ * @alias HeaderProps
17
+ * @property {string} [...] Other props from {@link TypographyProps}, {@link SpaceProps}
18
+ */
19
+
20
+ const Base = styled.h3`
21
+ font-family: ${themeGet('font')};
22
+ vertical-align: middle;
23
+ padding: 0;
24
+ * {
25
+ vertical-align: middle;
26
+ }
27
+ & ${Button}, a {
28
+ vertical-align: bottom;
29
+ }
30
+ * > &:first-child {
31
+ margin-top: ${themeGet('space', 'sm')};
32
+ }
33
+ ${Badge} {
34
+ vertical-align: middle;
35
+ }
36
+
37
+ ${typography};
38
+ ${space};
39
+ `;
40
+ Base.defaultProps = {
41
+ fontWeight: 'normal',
42
+ fontSize: 'h3',
43
+ lineHeight: 'xl',
44
+ className: cssClass(['Header', 'H3']),
45
+ marginTop: 'xxl',
46
+ marginBottom: 'xl'
47
+ };
48
+ export const H1 = styled(props => /*#__PURE__*/React.createElement(Base, _extends({
49
+ as: "h1"
50
+ }, props)))``;
51
+ H1.defaultProps = {
52
+ fontSize: 'h1',
53
+ lineHeight: 'xxl',
54
+ className: cssClass(['Header', 'H1']),
55
+ marginTop: 'x4',
56
+ marginBottom: 'x3'
57
+ };
58
+ H1.displayName = 'H1';
59
+ export const H2 = styled(props => /*#__PURE__*/React.createElement(Base, _extends({
60
+ as: "h2"
61
+ }, props)))`
62
+ & ${Button}, a {
63
+ margin-bottom: 4px;
64
+ }
65
+ `;
66
+ H2.defaultProps = {
67
+ fontSize: 'h2',
68
+ lineHeight: 'xxl',
69
+ className: cssClass(['Header', 'H2']),
70
+ marginTop: 'x3',
71
+ marginBottom: 'xxl'
72
+ };
73
+ H2.displayName = 'H2';
74
+ export const H3 = Base;
75
+ H3.displayName = 'H3';
76
+ export const H4 = styled(props => /*#__PURE__*/React.createElement(Base, _extends({
77
+ as: "h4"
78
+ }, props)))``;
79
+ H4.defaultProps = {
80
+ fontSize: 'h4',
81
+ lineHeight: 'xl',
82
+ className: cssClass(['Header', 'H4']),
83
+ marginTop: 'xxl',
84
+ marginBottom: 'xl'
85
+ };
86
+ H4.displayName = 'H4';
87
+ export const H5 = styled(props => /*#__PURE__*/React.createElement(Base, _extends({
88
+ as: "h5"
89
+ }, props)))``;
90
+ H5.defaultProps = {
91
+ fontSize: 'xl',
92
+ lineHeight: 'lg',
93
+ className: cssClass(['Header', 'H5']),
94
+ marginTop: 'xl',
95
+ marginBottom: 'default',
96
+ fontWeight: 'normal'
97
+ };
98
+ H5.displayName = 'H5';
99
+ export const H6 = styled(props => /*#__PURE__*/React.createElement(Base, _extends({
100
+ as: "h6"
101
+ }, props)))``;
102
+ H6.defaultProps = {
103
+ fontSize: 'lg',
104
+ lineHeight: 'lg',
105
+ className: cssClass(['Header', 'H6']),
106
+ marginTop: 'lg',
107
+ marginBottom: 'default',
108
+ fontWeight: 'normal'
109
+ };
110
+ H6.displayName = 'H6';
111
+
112
+ /**
113
+ * @load ./header.doc.md
114
+ * @component
115
+ * @subcategory Atoms
116
+ * @see HeaderProps
117
+ * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-header--default Storybook}
118
+ * @hideconstructor
119
+ * @section design-system
120
+ */
121
+ export const Header = H3;
122
+ Header.H1 = H1;
123
+ Header.H2 = H2;
124
+ Header.H3 = H3;
125
+ Header.H4 = H4;
126
+ Header.H5 = H5;
127
+ Header.H6 = H6;
128
+ export default Header;
@@ -0,0 +1,5 @@
1
+ export * from "./header.js";
2
+ export * from "./caption.js";
3
+ export * from "./card-title.js";
4
+ export * from "./small-text.js";
5
+ export * from "./title.js";
@@ -0,0 +1,10 @@
1
+ import { styled } from "../../../build/utils/styled.js";
2
+ import themeGet from "../../utils/theme-get.js";
3
+ import CaptionShared from "./caption-shared.js";
4
+ export const SmallText = styled('div')`
5
+ ${CaptionShared};
6
+ font-size: ${themeGet('fontSizes', 'xs')};
7
+ line-height: ${themeGet('lineHeights', 'sm')};
8
+ `;
9
+ SmallText.displayName = 'SmallText';
10
+ export default SmallText;
@@ -0,0 +1,10 @@
1
+ import { styled } from "../../../build/utils/styled.js";
2
+ import themeGet from "../../utils/theme-get.js";
3
+ import CaptionShared from "./caption-shared.js";
4
+ export const Title = styled('div')`
5
+ ${CaptionShared};
6
+ font-size: ${themeGet('fontSizes', 'md')};
7
+ line-height: ${themeGet('lineHeights', 'lg')};
8
+ `;
9
+ Title.displayName = 'Title';
10
+ export default Title;
@@ -0,0 +1,80 @@
1
+ import React from 'react';
2
+ import StoryWrapper from "../../utils/story-wrapper.js";
3
+ import { Button } from "../button/index.js";
4
+ import { Box, Text } from "../index.js";
5
+ import { Caption, CardTitle, H1, H2, H3, H4, H5, Header, SmallText } from "./index.js";
6
+ const BoxWithPaddings = Box;
7
+ export const Headers = () => /*#__PURE__*/React.createElement(StoryWrapper, {
8
+ label: "Headers with paddings"
9
+ }, /*#__PURE__*/React.createElement(BoxWithPaddings, {
10
+ bg: "white"
11
+ }, /*#__PURE__*/React.createElement("div", {
12
+ style: {
13
+ height: 0,
14
+ opacity: 0
15
+ }
16
+ }, "div"), /*#__PURE__*/React.createElement(Header.H1, null, "H1 Header - 40"), /*#__PURE__*/React.createElement(Text, {
17
+ variant: "sm",
18
+ mb: 5
19
+ }, "Roboto 40 - line height - 40"), /*#__PURE__*/React.createElement(Header.H2, null, "H2 Header - 32"), /*#__PURE__*/React.createElement(Text, {
20
+ variant: "sm",
21
+ mb: 5
22
+ }, "Roboto 32 - line height - 40"), /*#__PURE__*/React.createElement(Header.H3, null, "H3 Header - 28"), /*#__PURE__*/React.createElement(Text, {
23
+ variant: "sm",
24
+ mb: 5
25
+ }, "Roboto 28 - line height - 32"), /*#__PURE__*/React.createElement(Header.H4, null, "H4 Header - 24"), /*#__PURE__*/React.createElement(Text, {
26
+ variant: "sm",
27
+ mb: 5
28
+ }, "Roboto 24 - line height - 32"), /*#__PURE__*/React.createElement(Header.H5, null, "H5 Header - 18"), /*#__PURE__*/React.createElement(Text, {
29
+ variant: "sm",
30
+ mb: 5
31
+ }, "Roboto 18 - line height - 24"), /*#__PURE__*/React.createElement(Header.H6, null, "H6 Header - 16"), /*#__PURE__*/React.createElement(Text, {
32
+ variant: "sm",
33
+ mb: 5
34
+ }, "Roboto 16 - line height - 24")));
35
+ export const TextExample = {
36
+ render: props => /*#__PURE__*/React.createElement(StoryWrapper, {
37
+ label: "Example Text container"
38
+ }, /*#__PURE__*/React.createElement(Text, props, "Text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cur tantas regiones barbarorum pedibus obiit, tot maria transmisit? Est enim effectrix multarum et magnarum voluptatum. Omnia contraria, quos etiam insanos esse vultis. Quid, de quo nulla dissensio est? Egone quaeris, inquit, quid sentiam? Duo Reges: constructio interrete. Sed in rebus apertissimis nimium longi sumus.", /*#__PURE__*/React.createElement(Button, {
39
+ as: "a"
40
+ }, "Button inside the text")))
41
+ };
42
+ export const ContentExample = () => /*#__PURE__*/React.createElement(StoryWrapper, {
43
+ label: "Example styled content inside Text component"
44
+ }, /*#__PURE__*/React.createElement(Box, {
45
+ p: "x4"
46
+ }, /*#__PURE__*/React.createElement(Text, null, /*#__PURE__*/React.createElement("h1", null, "Hello World"), /*#__PURE__*/React.createElement("h2", null, "Some header 2"), /*#__PURE__*/React.createElement("p", null, "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla accumsan, metus ultrices eleifend gravida, nulla nunc varius lectus, nec rutrum justo nibh eu lectus. Ut vulputate semper dui. Fusce erat odio, sollicitudin vel erat vel interdum mattis neque."), /*#__PURE__*/React.createElement("ol", null, /*#__PURE__*/React.createElement("li", null, "interdum mattis neque.")), /*#__PURE__*/React.createElement("h2", null, "Second level"), /*#__PURE__*/React.createElement("p", null, "Curabitur accumsan turpis pharetra ", /*#__PURE__*/React.createElement("strong", null, "augue tincidunt"), " blandit. Quisque condimentum maximus mi, sit amet commodo arcu rutrum id. Proin pretium urna vel cursus venenatis. Suspendisse potenti. Etiam mattis sem rhoncus lacus dapibus facilisis. Donec at dignissim dui. Ut et neque nisl."), /*#__PURE__*/React.createElement("ul", null, /*#__PURE__*/React.createElement("li", null, "In fermentum leo eu lectus mollis, quis dictum mi aliquet."), /*#__PURE__*/React.createElement("li", null, "Morbi eu nulla lobortis, lobortis est in, fringilla felis."), /*#__PURE__*/React.createElement("li", null, "Aliquam nec felis in sapien venenatis viverra fermentum nec lectus."), /*#__PURE__*/React.createElement("li", null, "Ut non enim metus.")), /*#__PURE__*/React.createElement("blockquote", null, "And here it comes - the quote"), /*#__PURE__*/React.createElement("h5", null, "Header H5"), /*#__PURE__*/React.createElement("pre", null, "const a = 1;", '\n', "const b = 0;"), /*#__PURE__*/React.createElement("p", null, "And below there is a Table"), /*#__PURE__*/React.createElement("table", null, /*#__PURE__*/React.createElement("thead", null, /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("th", null, "Name"), /*#__PURE__*/React.createElement("th", null, "Surname"))), /*#__PURE__*/React.createElement("tbody", null, /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, "Wojtek"), /*#__PURE__*/React.createElement("td", null, "Krysiak")), /*#__PURE__*/React.createElement("tr", null, /*#__PURE__*/React.createElement("td", null, "Joseph"), /*#__PURE__*/React.createElement("td", null, "Grad")))), /*#__PURE__*/React.createElement("p", null, "text goes on..."))));
47
+ export const Example = () => /*#__PURE__*/React.createElement(StoryWrapper, {
48
+ label: "Example content page"
49
+ }, /*#__PURE__*/React.createElement(Box, {
50
+ p: "x4",
51
+ bg: "white"
52
+ }, /*#__PURE__*/React.createElement(H1, null, "H1. Nam de isto magna dissensio est."), /*#__PURE__*/React.createElement(H2, null, "H2. Sed in rebus apertissimis nimium"), /*#__PURE__*/React.createElement(Text, null, "Text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cur tantas regiones barbarorum pedibus obiit, tot maria transmisit? Est enim effectrix multarum et magnarum voluptatum. Omnia contraria, quos etiam insanos esse vultis. Quid, de quo nulla dissensio est? Egone quaeris, inquit, quid sentiam? Duo Reges: constructio interrete. Sed in rebus apertissimis nimium longi sumus."), /*#__PURE__*/React.createElement(Text, null, "Text. Nam et a te perfici istam disputationem volo, nec tua mihi oratio longa videri potest. Beatus autem esse in maximarum rerum timore nemo potest. Inquit, respondet: Quia, nisi quod honestum est, nullum est aliud bonum! Non quaero iam verumne sit; Aut, Pylades cum sis, dices te esse Orestem, ut moriare pro amico? Non prorsus, inquit, omnisque, qui sine dolore sint, in voluptate, et ea quidem summa, esse dico. Addidisti ad extremum etiam indoctum fuisse. Apparet statim, quae sint officia, quae actiones. Hi autem ponunt illi quidem prima naturae, sed ea seiungunt a finibus et a summa bonorum;"), /*#__PURE__*/React.createElement(H3, null, "H3. Vitae autem degendae ratio maxime quidem illis placuit quieta."), /*#__PURE__*/React.createElement(Text, null, "Text. Hanc se tuus Epicurus omnino ignorare dicit quam aut qualem esse velint qui honestate summum bonum metiantur. Idem iste, inquam, de voluptate quid sentit? Quid interest, nisi quod ego res notas notis verbis appello, illi nomina nova quaerunt, quibus idem dicant? Etsi ea quidem, quae adhuc dixisti,"), /*#__PURE__*/React.createElement(H4, null, "H4. quae senserit ille, tibi non vera videantur."), /*#__PURE__*/React.createElement(Text, null, "quam dicat Epicurus voluptatem. Iubet igitur nos Pythius Apollo noscere nosmet ipsos. Dicam, inquam, et quidem discendi causa magis, quam quo te aut Epicurum reprehensum velim."), /*#__PURE__*/React.createElement(H4, null, "H4. Dicam, inquam, et quidem discendi causa magis."), /*#__PURE__*/React.createElement(Text, null, "quamvis ad aetatem recte isto modo dicerentur. In quibus doctissimi illi veteres inesse quiddam caeleste et divinum putaverunt. Nam illud quidem adduci vix possum, ut ea, Nihil enim iam habes, quod ad corpus referas; Itaque hoc frequenter dici solet a vobis, non intellegere nos,"), /*#__PURE__*/React.createElement(Text, null, "Text. Nec vero alia sunt quaerenda contra Carneadeam illam sententiam. Quarum ambarum rerum cum medicinam pollicetur, luxuriae licentiam pollicetur. Obscura, inquit, quaedam esse confiteor, nec tamen ab illis ita dicuntur de industria, sed inest in rebus ipsis obscuritas. Cuius similitudine perspecta in formarum specie ac dignitate transitum est ad honestatem dictorum atque factorum. Atque ut a corpore ordiar,"), /*#__PURE__*/React.createElement(H5, null, "H5. Mortuus. Quae cum magnifice primo"), /*#__PURE__*/React.createElement(Text, null, "Qui non moveatur et offensione turpitudinis et comprobatione honestatis? Deinde disputat,"), /*#__PURE__*/React.createElement(H5, null, "H5. Honestate summum bonum metiantur"), /*#__PURE__*/React.createElement(Text, null, "quod cuiusque generis animantium statui deceat extremum. Ita multo sanguine profuso in"), /*#__PURE__*/React.createElement(H5, null, "H5. In alia summum bonum ponere? Cum "), /*#__PURE__*/React.createElement(Text, null, "laetitia et in victoria est mortuus. Quae cum magnifice primo dici viderentur, considerata"), /*#__PURE__*/React.createElement(Text, null, "minus probabantur. Hanc se tuus Epicurus omnino ignorare dicit quam aut qualem esse velint qui honestate summum bonum metiantur. Qui igitur convenit ab alia voluptate dicere naturam proficisci, in alia summum bonum ponere? Cum sciret confestim esse moriendum eamque mortem"), /*#__PURE__*/React.createElement(Text, null, "ardentiore studio peteret, quam Epicurus voluptatem petendam putat."), /*#__PURE__*/React.createElement(Text, null, "Text. Sed tu istuc dixti bene Latine, parum plane. His similes sunt omnes, qui virtuti studentlevantur vitiis, levantur erroribus, nisi forte censes Ti. Verum hoc loco sumo verbis his eandem certe vim voluptatis Epicurum nosse quam ceteros. An dubium est, quin virtus ita maximam partem optineat in rebus humanis, ut reliquas obruat? Quo studio Aristophanem putamus aetatem in litteris duxisse? Vides igitur te aut ea sumere, quae non concedantur, aut ea, quae etiam concessa te nihil iuvent."), /*#__PURE__*/React.createElement(H2, null, "H2. Audeo dicere, inquit."), /*#__PURE__*/React.createElement(Text, null, "Text. Nulla profecto est, quin suam vim retineat a primo ad extremum. Video equidem, inquam, sed tamen iam infici debet iis artibus, quas si, dum est tener, conbiberit, ad maiora veniet paratior. Sed alii dolore moventur, alii cupiditate, iracundia etiam multi effetuntur et, cum in mala scientes inruunt, tum se optime sibi consulere arbitrantur. Hoc igitur quaerentes omnes, et ii, qui quodcumque in mentem veniat aut quodcumque occurrat se sequi dicent, et vos ad naturam revertemini. Et si in ipsa gubernatione neglegentia est navis eversa, maius est peccatum in auro quam in palea. Aut pertinacissimus fueris, si in eo perstiteris ad corpus ea, quae dixi, referri, aut deserueris totam Epicuri voluptatem, si negaveris."), /*#__PURE__*/React.createElement(Text, null, "Text. Age, inquies, ista parva sunt. Etiam inchoatum, ut, si iuste depositum reddere in recte factis sit, in officiis ponatur depositum reddere; Haec quo modo conveniant, non sane intellego. At certe gravius."), /*#__PURE__*/React.createElement(Text, null, "Text. Istam voluptatem perpetuam quis potest praestare sapienti? Nihil enim arbitror esse magna laude dignum, quod te praetermissurum credam aut mortis aut doloris metu. Et certamen honestum et disputatio splendida! omnis est enim de virtutis dignitate contentio. Consequens enim est et post oritur, ut dixi. Hoc dictum in una re latissime patet, ut in omnibus factis re, non teste moveamur. Nec enim, dum metuit, iustus est, et certe, si metuere destiterit, non erit; Sin laboramus, quis est, qui alienae modum statuat industriae? Cur tantas regiones barbarorum pedibus obiit, tot maria transmisit? Quos quidem dies quem ad modum agatis et in quantam hominum facetorum urbanitatem incurratis, non diconihil opus est litibus-; Ita, quem ad modum in senatu semper est aliquis, qui interpretem postulet, sic, isti nobis cum interprete audiendi sunt.")));
53
+ export const CaptionExample = () => /*#__PURE__*/React.createElement(StoryWrapper, {
54
+ label: "Captions"
55
+ }, /*#__PURE__*/React.createElement(CardTitle, null, "Card Title - 15"), /*#__PURE__*/React.createElement(Text, {
56
+ variant: "sm",
57
+ mb: 5
58
+ }, "Roboto 14 - line height - 40"), /*#__PURE__*/React.createElement(Caption, null, "Caption - 12"), /*#__PURE__*/React.createElement(Text, {
59
+ variant: "sm",
60
+ mb: 5
61
+ }, "Roboto 12 - line height - 16"), /*#__PURE__*/React.createElement(SmallText, null, "Small Text - 10"), /*#__PURE__*/React.createElement(Text, {
62
+ variant: "sm",
63
+ mb: 5
64
+ }, "Roboto 10 - line height - 12"));
65
+ const meta = {
66
+ title: 'DesignSystem/Atoms/Typography',
67
+ component: Text,
68
+ args: {
69
+ variant: 'lg'
70
+ },
71
+ argTypes: {
72
+ variant: {
73
+ options: ['xs', 'sm', 'lg'],
74
+ control: {
75
+ type: 'select'
76
+ }
77
+ }
78
+ }
79
+ };
80
+ export default meta;
@@ -0,0 +1,2 @@
1
+ /* eslint-disable import/prefer-default-export */
2
+ export const DEFAULT_DRAWER_WIDTH = '500px';
@@ -0,0 +1,53 @@
1
+ import { createGlobalStyle } from "../build/utils/styled.js";
2
+
3
+ // eslint-disable-next-line import/prefer-default-export
4
+ export const GlobalStyle = createGlobalStyle`
5
+ /* http://meyerweb.com/eric/tools/css/reset/
6
+ v2.0 | 20110126
7
+ License: none (public domain)
8
+ */
9
+
10
+ html, body, div, span, applet, object, iframe,
11
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
12
+ a, abbr, acronym, address, big, cite, code,
13
+ del, dfn, em, img, ins, kbd, q, s, samp,
14
+ small, strike, strong, sub, sup, tt, var,
15
+ b, u, i, center,
16
+ dl, dt, dd, ol, ul, li,
17
+ fieldset, form, label, legend,
18
+ table, caption, tbody, tfoot, thead, tr, th, td,
19
+ article, aside, canvas, details, embed,
20
+ figure, figcaption, footer, header, hgroup,
21
+ menu, nav, output, ruby, section, summary,
22
+ time, mark, audio, video {
23
+ margin: 0;
24
+ padding: 0;
25
+ border: 0;
26
+ font-size: 100%;
27
+ font: inherit;
28
+ vertical-align: baseline;
29
+ }
30
+ /* HTML5 display-role reset for older browsers */
31
+ article, aside, details, figcaption, figure,
32
+ footer, header, hgroup, menu, nav, section {
33
+ display: block;
34
+ }
35
+ body {
36
+ line-height: 1;
37
+ }
38
+ ol, ul {
39
+ list-style: none;
40
+ }
41
+ blockquote, q {
42
+ quotes: none;
43
+ }
44
+ blockquote:before, blockquote:after,
45
+ q:before, q:after {
46
+ content: '';
47
+ content: none;
48
+ }
49
+ table {
50
+ border-collapse: collapse;
51
+ border-spacing: 0;
52
+ }
53
+ `;
@@ -0,0 +1,28 @@
1
+ import { useState, useEffect } from 'react';
2
+ const useWindowSize = () => {
3
+ // Initialize state with undefined width/height so server and client renders match
4
+ // Learn more here: https://joshwcomeau.com/react/the-perils-of-rehydration/
5
+ const [windowSize, setWindowSize] = useState();
6
+ useEffect(() => {
7
+ // Handler to call on window resize
8
+ const handleResize = () => {
9
+ // Set window width/height to state
10
+ setWindowSize({
11
+ width: window.innerWidth,
12
+ height: window.innerHeight
13
+ });
14
+ };
15
+
16
+ // Add event listener
17
+ window.addEventListener('resize', handleResize);
18
+
19
+ // Call handler right away so state gets updated with initial window size
20
+ handleResize();
21
+
22
+ // Remove event listener on cleanup
23
+ return () => window.removeEventListener('resize', handleResize);
24
+ }, []); // Empty array ensures that effect is only run on mount
25
+
26
+ return windowSize || null;
27
+ };
28
+ export default useWindowSize;