@akad/design-system 0.2.0-beta.8 → 1.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (370) hide show
  1. package/css/core.css +1 -0
  2. package/css/package.json +9 -1
  3. package/css/theme-aon.css +1 -0
  4. package/css/theme-bees.css +1 -0
  5. package/css/theme-bmc.css +1 -0
  6. package/css/theme-default.css +1 -0
  7. package/css/theme-linker.css +1 -0
  8. package/css/theme-oggi.css +1 -0
  9. package/css/theme-streetgo.css +1 -0
  10. package/package.json +1 -1
  11. package/react/package.json +1 -1
  12. package/react/react-lib.js +2794 -2792
  13. package/react/react-lib.umd.cjs +5 -5
  14. package/react/src/components/atoms/Button/Button.config.d.ts +106 -0
  15. package/react/{components → src/components}/atoms/Button/Button.d.ts +11 -7
  16. package/react/{components → src/components}/atoms/Button/Button.stories.d.ts +2 -2
  17. package/react/src/components/atoms/Button/index.d.ts +4 -0
  18. package/react/src/components/atoms/Caption/Caption.config.d.ts +6 -0
  19. package/react/src/components/atoms/Caption/index.d.ts +4 -0
  20. package/react/src/components/atoms/Card/Card.config.d.ts +92 -0
  21. package/react/{components → src/components}/atoms/Card/Card.d.ts +8 -4
  22. package/react/src/components/atoms/Card/index.d.ts +4 -0
  23. package/react/{components → src/components}/atoms/Checkbox/Checkbox.config.d.ts +18 -18
  24. package/react/src/components/atoms/Checkbox/index.d.ts +4 -0
  25. package/react/src/components/atoms/Heading/Heading.config.d.ts +22 -0
  26. package/react/src/components/atoms/Heading/index.d.ts +4 -0
  27. package/react/src/components/atoms/HorizontalRule/HorizontalRule.config.d.ts +30 -0
  28. package/react/{components → src/components}/atoms/HorizontalRule/HorizontalRule.d.ts +2 -2
  29. package/react/src/components/atoms/HorizontalRule/index.d.ts +4 -0
  30. package/react/src/components/atoms/Icon/Icon.config.d.ts +125 -0
  31. package/react/{components → src/components}/atoms/Icon/Icon.d.ts +3 -3
  32. package/react/{components → src/components}/atoms/Icon/Icon.stories.d.ts +3 -3
  33. package/react/src/components/atoms/Icon/index.d.ts +4 -0
  34. package/react/src/components/atoms/Input/Input.config.d.ts +146 -0
  35. package/react/{components → src/components}/atoms/Input/Input.stories.d.ts +2 -2
  36. package/react/src/components/atoms/Input/index.d.ts +4 -0
  37. package/react/src/components/atoms/Loading/Loading.config.d.ts +52 -0
  38. package/react/{components → src/components}/atoms/Loading/Loading.d.ts +1 -1
  39. package/react/src/components/atoms/Loading/index.d.ts +4 -0
  40. package/react/src/components/atoms/Option/Option.config.d.ts +53 -0
  41. package/react/src/components/atoms/Option/index.d.ts +4 -0
  42. package/react/src/components/atoms/Paragraph/Paragraph.config.d.ts +19 -0
  43. package/react/src/components/atoms/Paragraph/index.d.ts +4 -0
  44. package/react/src/components/atoms/Progress/Progress.config.d.ts +30 -0
  45. package/react/src/components/atoms/Progress/index.d.ts +4 -0
  46. package/react/src/components/atoms/Select/Select.config.d.ts +121 -0
  47. package/react/{components → src/components}/atoms/Select/Select.stories.d.ts +4 -4
  48. package/react/src/components/atoms/Select/index.d.ts +4 -0
  49. package/react/src/components/atoms/Subtitle/Subtitle.config.d.ts +18 -0
  50. package/react/src/components/atoms/Subtitle/index.d.ts +4 -0
  51. package/react/src/components/atoms/TextArea/TextArea.config.d.ts +128 -0
  52. package/react/{components → src/components}/atoms/TextArea/TextArea.d.ts +0 -1
  53. package/react/{components → src/components}/atoms/TextArea/TextArea.stories.d.ts +2 -2
  54. package/react/src/components/atoms/TextArea/index.d.ts +4 -0
  55. package/react/src/components/atoms/Tooltip/Tooltip.config.d.ts +41 -0
  56. package/react/{components → src/components}/atoms/Tooltip/Tooltip.d.ts +3 -1
  57. package/react/{components → src/components}/atoms/Tooltip/Tooltip.stories.d.ts +6 -6
  58. package/react/src/components/atoms/Tooltip/index.d.ts +4 -0
  59. package/react/src/components/bosons/Container/Container.config.d.ts +18 -0
  60. package/react/src/components/bosons/Container/index.d.ts +4 -0
  61. package/react/{components → src/components}/bosons/FlexLayout/FlexElement.config.d.ts +2 -2
  62. package/react/src/components/bosons/FlexLayout/FlexLayout.config.d.ts +95 -0
  63. package/react/src/components/bosons/FlexLayout/index.d.ts +8 -0
  64. package/react/{components → src/components}/bosons/GridLayout/GridElement.config.d.ts +2 -2
  65. package/react/{components → src/components}/bosons/GridLayout/GridElement.d.ts +6 -1
  66. package/react/src/components/bosons/GridLayout/GridLayout.config.d.ts +80 -0
  67. package/react/{components → src/components}/bosons/GridLayout/GridLayout.d.ts +3 -3
  68. package/react/src/components/bosons/GridLayout/index.d.ts +8 -0
  69. package/react/src/components/bosons/Spacer/Spacer.config.d.ts +24 -0
  70. package/react/{components → src/components}/bosons/Spacer/Spacer.stories.d.ts +2 -2
  71. package/react/src/components/bosons/Spacer/index.d.ts +4 -0
  72. package/react/src/components/bosons/Wrapper/Wrapper.config.d.ts +27 -0
  73. package/react/src/components/bosons/Wrapper/index.d.ts +4 -0
  74. package/react/src/components/index.d.ts +37 -0
  75. package/react/src/components/molecules/Accordion/Accordion.config.d.ts +31 -0
  76. package/react/{components → src/components}/molecules/Accordion/Accordion.d.ts +2 -2
  77. package/react/{components → src/components}/molecules/Accordion/Accordion.stories.d.ts +1 -1
  78. package/react/src/components/molecules/Accordion/AccordionItem.config.d.ts +28 -0
  79. package/react/{components → src/components}/molecules/Accordion/AccordionItem.d.ts +7 -1
  80. package/react/src/components/molecules/Accordion/index.d.ts +8 -0
  81. package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.config.d.ts +2 -2
  82. package/react/src/components/molecules/ActiveTags/index.d.ts +4 -0
  83. package/react/src/components/molecules/Carousel/Carousel.config.d.ts +7 -0
  84. package/react/src/components/molecules/Carousel/Carousel.d.ts +31 -0
  85. package/react/src/components/molecules/Carousel/index.d.ts +4 -0
  86. package/react/src/components/molecules/EditableSelect/EditableSelect.config.d.ts +104 -0
  87. package/react/{components → src/components}/molecules/EditableSelect/EditableSelect.d.ts +2 -2
  88. package/react/src/components/molecules/EditableSelect/index.d.ts +4 -0
  89. package/react/{components → src/components}/molecules/Indicator/Indicator.config.d.ts +3 -3
  90. package/react/src/components/molecules/Indicator/index.d.ts +4 -0
  91. package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.config.d.ts +3 -3
  92. package/react/src/components/molecules/InlineEditable/index.d.ts +4 -0
  93. package/react/src/components/molecules/Modal/Modal.config.d.ts +44 -0
  94. package/react/{components → src/components}/molecules/Modal/Modal.d.ts +2 -2
  95. package/react/{components → src/components}/molecules/Modal/Modal.stories.d.ts +2 -2
  96. package/react/src/components/molecules/Modal/Modal.test.d.ts +1 -0
  97. package/react/src/components/molecules/Modal/index.d.ts +4 -0
  98. package/react/{components → src/components}/molecules/Notification/Notification.config.d.ts +13 -32
  99. package/react/src/components/molecules/Notification/Notification.d.ts +22 -0
  100. package/react/{components → src/components}/molecules/Notification/Notification.stories.d.ts +1 -1
  101. package/react/src/components/molecules/Notification/index.d.ts +4 -0
  102. package/react/src/components/molecules/PasswordConfirmation/PasswordConfirmation.config.d.ts +32 -0
  103. package/react/{components → src/components}/molecules/PasswordConfirmation/PasswordConfirmation.stories.d.ts +1 -1
  104. package/react/src/components/molecules/PasswordConfirmation/index.d.ts +4 -0
  105. package/react/{components → src/components}/molecules/Stepper/Stepper.config.d.ts +2 -2
  106. package/react/{components → src/components}/molecules/Stepper/Stepper.d.ts +7 -2
  107. package/react/src/components/molecules/Stepper/index.d.ts +4 -0
  108. package/react/{components/molecules/Table/Table.types.d.ts → src/components/molecules/Table/Table.config.d.ts} +23 -0
  109. package/react/{components → src/components}/molecules/Table/Table.d.ts +1 -1
  110. package/react/{components → src/components}/molecules/Table/Table.stories.d.ts +3 -3
  111. package/react/{components → src/components}/molecules/Table/TableRow.d.ts +1 -1
  112. package/react/{components → src/components}/molecules/Table/dataTable.mock.d.ts +1 -1
  113. package/react/src/components/molecules/Table/index.d.ts +4 -0
  114. package/react/{components → src/components}/molecules/Tabs/Tab.d.ts +1 -1
  115. package/react/src/components/molecules/Tabs/Tabs.config.d.ts +44 -0
  116. package/react/{components → src/components}/molecules/Tabs/Tabs.d.ts +11 -1
  117. package/react/{components → src/components}/molecules/Tabs/Tabs.stories.d.ts +1 -1
  118. package/react/src/components/molecules/Tabs/index.d.ts +4 -0
  119. package/react/src/components/molecules/ThemeProvider/ThemeProvider.config.d.ts +28 -0
  120. package/react/src/components/organisms/NotificationList/NotificationList.config.d.ts +32 -0
  121. package/react/{components → src/components}/organisms/NotificationList/NotificationList.d.ts +1 -1
  122. package/react/{components → src/components}/organisms/NotificationList/NotificationList.stories.d.ts +1 -1
  123. package/react/src/components/organisms/NotificationList/index.d.ts +4 -0
  124. package/react/src/components/templates/SplitLayout/SplitLayout.config.d.ts +7 -0
  125. package/react/src/components/templates/SplitLayout/SplitLayout.d.ts +9 -0
  126. package/react/src/components/templates/SplitLayout/index.d.ts +5 -0
  127. package/react/{components → src/components}/templates/TwoColumns/TwoColumns.config.d.ts +2 -2
  128. package/react/src/components/templates/TwoColumns/index.d.ts +4 -0
  129. package/react/src/enum/colorProps.d.ts +30 -0
  130. package/scss/core/base/index.scss +3 -0
  131. package/scss/core/base/reset.scss +27 -0
  132. package/scss/core/base/typography.scss +18 -0
  133. package/scss/core/components/atoms/button.scss +816 -0
  134. package/scss/core/components/atoms/caption.scss +13 -0
  135. package/scss/core/components/atoms/card.scss +24 -0
  136. package/scss/core/components/atoms/checkbox.scss +61 -0
  137. package/scss/core/components/atoms/heading.scss +69 -0
  138. package/scss/core/components/atoms/horizontal-rule.scss +27 -0
  139. package/scss/core/components/atoms/icon.scss +49 -0
  140. package/scss/core/components/atoms/input.scss +333 -0
  141. package/scss/core/components/atoms/loading.scss +120 -0
  142. package/scss/core/components/atoms/option.scss +78 -0
  143. package/scss/core/components/atoms/paragraph.scss +44 -0
  144. package/scss/core/components/atoms/progress.scss +32 -0
  145. package/scss/core/components/atoms/select.scss +253 -0
  146. package/scss/core/components/atoms/subtitle.scss +21 -0
  147. package/scss/core/components/atoms/textarea.scss +340 -0
  148. package/scss/core/components/atoms/tooltip.scss +197 -0
  149. package/scss/core/components/bosons/container.scss +5 -0
  150. package/scss/core/components/bosons/flex-layout.scss +45 -0
  151. package/scss/core/components/bosons/grid-layout.scss +76 -0
  152. package/scss/core/components/bosons/grid.scss +79 -0
  153. package/scss/core/components/bosons/spacer.scss +45 -0
  154. package/scss/core/components/bosons/wrapper.scss +32 -0
  155. package/scss/core/components/index.scss +49 -0
  156. package/scss/core/components/molecules/accordion.scss +93 -0
  157. package/scss/core/components/molecules/active-tags.scss +58 -0
  158. package/scss/core/components/molecules/carousel.scss +67 -0
  159. package/scss/core/components/molecules/editable-select.scss +141 -0
  160. package/scss/core/components/molecules/indicator.scss +37 -0
  161. package/scss/core/components/molecules/inline-editable.scss +23 -0
  162. package/scss/core/components/molecules/modal.scss +70 -0
  163. package/scss/core/components/molecules/notification.scss +109 -0
  164. package/scss/core/components/molecules/password-confirmation.scss +16 -0
  165. package/scss/core/components/molecules/stepper.scss +84 -0
  166. package/scss/core/components/molecules/table.scss +95 -0
  167. package/scss/core/components/molecules/tabs.scss +114 -0
  168. package/scss/core/components/molecules/theme-provider.scss +6 -0
  169. package/scss/core/components/organisms/notification-list.scss +77 -0
  170. package/scss/core/components/templates/split-layout.scss +51 -0
  171. package/scss/core/components/templates/two-columns.scss +30 -0
  172. package/scss/core/functions/breakpoints.scss +35 -0
  173. package/scss/core/functions/fonts.scss +17 -0
  174. package/scss/core/functions/index.scss +5 -0
  175. package/scss/core/functions/spacings.scss +8 -0
  176. package/scss/core/functions/tokens.scss +14 -0
  177. package/scss/core/helpers/borders.scss +87 -0
  178. package/scss/core/helpers/colors.scss +167 -0
  179. package/scss/core/helpers/display.scss +177 -0
  180. package/scss/core/helpers/elevation.scss +16 -0
  181. package/scss/core/helpers/index.scss +6 -0
  182. package/scss/core/helpers/order.scss +20 -0
  183. package/scss/core/index.scss +18 -0
  184. package/scss/core/mixins/breakpoints.scss +90 -0
  185. package/scss/core/mixins/grid.scss +8 -0
  186. package/scss/core/mixins/index.scss +5 -0
  187. package/scss/core/tokens/borders.scss +12 -0
  188. package/scss/core/tokens/breakpoints.scss +20 -0
  189. package/scss/core/tokens/icons.scss +2 -0
  190. package/scss/core/tokens/index.scss +8 -0
  191. package/scss/core/tokens/opacity.scss +6 -0
  192. package/scss/core/tokens/shadows.scss +15 -0
  193. package/scss/core/tokens/spacings.scss +41 -0
  194. package/scss/core/tokens/typography.scss +20 -0
  195. package/scss/themes/aon/colors.scss +83 -0
  196. package/scss/themes/aon/index.scss +54 -0
  197. package/scss/themes/aon/typography.scss +7 -0
  198. package/scss/themes/bees/colors.scss +32 -0
  199. package/scss/themes/bees/index.scss +51 -0
  200. package/scss/themes/bees/typography.scss +6 -0
  201. package/scss/themes/bmc/colors.scss +81 -0
  202. package/scss/themes/bmc/index.scss +54 -0
  203. package/scss/themes/bmc/typography.scss +5 -0
  204. package/scss/themes/default/colors.scss +109 -0
  205. package/scss/themes/default/index.scss +80 -0
  206. package/scss/themes/default/typography.scss +7 -0
  207. package/scss/themes/linker/colors.scss +35 -0
  208. package/scss/themes/linker/index.scss +30 -0
  209. package/scss/themes/linker/typography.scss +6 -0
  210. package/scss/themes/oggi/colors.scss +81 -0
  211. package/scss/themes/oggi/index.scss +54 -0
  212. package/scss/themes/oggi/typography.scss +5 -0
  213. package/scss/themes/streetgo/colors.scss +81 -0
  214. package/scss/themes/streetgo/index.scss +54 -0
  215. package/scss/themes/streetgo/typography.scss +5 -0
  216. package/css/aon-theme.css +0 -1
  217. package/css/bees-theme.css +0 -1
  218. package/css/bmc-theme.css +0 -1
  219. package/css/default-theme.css +0 -1
  220. package/css/linker-theme.css +0 -1
  221. package/css/oggi-theme.css +0 -1
  222. package/css/streetgo-theme.css +0 -1
  223. package/react/components/atoms/Button/Button.config.d.ts +0 -94
  224. package/react/components/atoms/Button/index.d.ts +0 -4
  225. package/react/components/atoms/Caption/Caption.config.d.ts +0 -6
  226. package/react/components/atoms/Caption/index.d.ts +0 -4
  227. package/react/components/atoms/Card/Card.config.d.ts +0 -76
  228. package/react/components/atoms/Card/index.d.ts +0 -4
  229. package/react/components/atoms/Checkbox/index.d.ts +0 -5
  230. package/react/components/atoms/Heading/Heading.config.d.ts +0 -23
  231. package/react/components/atoms/Heading/index.d.ts +0 -4
  232. package/react/components/atoms/HorizontalRule/HorizontalRule.config.d.ts +0 -32
  233. package/react/components/atoms/HorizontalRule/index.d.ts +0 -4
  234. package/react/components/atoms/Icon/Icon.config.d.ts +0 -129
  235. package/react/components/atoms/Icon/index.d.ts +0 -4
  236. package/react/components/atoms/Input/Input.config.d.ts +0 -151
  237. package/react/components/atoms/Input/index.d.ts +0 -4
  238. package/react/components/atoms/Loading/Loading.config.d.ts +0 -54
  239. package/react/components/atoms/Loading/index.d.ts +0 -4
  240. package/react/components/atoms/Option/Option.config.d.ts +0 -53
  241. package/react/components/atoms/Option/index.d.ts +0 -4
  242. package/react/components/atoms/Paragraph/Paragraph.config.d.ts +0 -20
  243. package/react/components/atoms/Paragraph/index.d.ts +0 -4
  244. package/react/components/atoms/Progress/Progress.config.d.ts +0 -31
  245. package/react/components/atoms/Progress/index.d.ts +0 -4
  246. package/react/components/atoms/Select/Select.config.d.ts +0 -125
  247. package/react/components/atoms/Select/index.d.ts +0 -4
  248. package/react/components/atoms/Subtitle/Subtitle.config.d.ts +0 -19
  249. package/react/components/atoms/Subtitle/index.d.ts +0 -4
  250. package/react/components/atoms/TextArea/TextArea.config.d.ts +0 -132
  251. package/react/components/atoms/TextArea/index.d.ts +0 -4
  252. package/react/components/atoms/Tooltip/Tooltip.config.d.ts +0 -38
  253. package/react/components/atoms/Tooltip/index.d.ts +0 -4
  254. package/react/components/bosons/Container/Container.config.d.ts +0 -18
  255. package/react/components/bosons/Container/index.d.ts +0 -4
  256. package/react/components/bosons/FlexLayout/FlexLayout.config.d.ts +0 -100
  257. package/react/components/bosons/FlexLayout/index.d.ts +0 -5
  258. package/react/components/bosons/GridLayout/GridLayout.config.d.ts +0 -82
  259. package/react/components/bosons/GridLayout/index.d.ts +0 -5
  260. package/react/components/bosons/Spacer/Spacer.config.d.ts +0 -25
  261. package/react/components/bosons/Spacer/index.d.ts +0 -4
  262. package/react/components/bosons/Wrapper/Wrapper.config.d.ts +0 -28
  263. package/react/components/bosons/Wrapper/index.d.ts +0 -4
  264. package/react/components/index.d.ts +0 -37
  265. package/react/components/molecules/Accordion/Accordion.config.d.ts +0 -25
  266. package/react/components/molecules/Accordion/AccordionItem.config.d.ts +0 -28
  267. package/react/components/molecules/Accordion/index.d.ts +0 -5
  268. package/react/components/molecules/ActiveTags/index.d.ts +0 -4
  269. package/react/components/molecules/EditableSelect/EditableSelect.config.d.ts +0 -105
  270. package/react/components/molecules/EditableSelect/index.d.ts +0 -4
  271. package/react/components/molecules/Indicator/index.d.ts +0 -4
  272. package/react/components/molecules/InlineEditable/index.d.ts +0 -4
  273. package/react/components/molecules/Modal/Modal.config.d.ts +0 -41
  274. package/react/components/molecules/Modal/index.d.ts +0 -4
  275. package/react/components/molecules/Notification/Notification.d.ts +0 -7
  276. package/react/components/molecules/Notification/index.d.ts +0 -5
  277. package/react/components/molecules/PasswordConfirmation/PasswordConfirmation.config.d.ts +0 -32
  278. package/react/components/molecules/PasswordConfirmation/index.d.ts +0 -4
  279. package/react/components/molecules/Stepper/index.d.ts +0 -4
  280. package/react/components/molecules/Table/Table.config.d.ts +0 -23
  281. package/react/components/molecules/Table/index.d.ts +0 -5
  282. package/react/components/molecules/Tabs/Tabs.config.d.ts +0 -45
  283. package/react/components/molecules/Tabs/index.d.ts +0 -6
  284. package/react/components/molecules/ThemeProvider/ThemeProvider.config.d.ts +0 -30
  285. package/react/components/organisms/NotificationList/NotificationList.config.d.ts +0 -33
  286. package/react/components/organisms/NotificationList/index.d.ts +0 -4
  287. package/react/components/templates/TwoColumns/index.d.ts +0 -5
  288. package/react/decorators/storybook.d.ts +0 -3
  289. package/react/types/hooks/types.d.ts +0 -99
  290. package/react/types/types.d.ts +0 -43
  291. /package/react/{components → src/components}/atoms/Button/Button.test.d.ts +0 -0
  292. /package/react/{components → src/components}/atoms/Caption/Caption.d.ts +0 -0
  293. /package/react/{components → src/components}/atoms/Caption/Caption.stories.d.ts +0 -0
  294. /package/react/{components → src/components}/atoms/Caption/Caption.test.d.ts +0 -0
  295. /package/react/{components → src/components}/atoms/Card/Card.stories.d.ts +0 -0
  296. /package/react/{components → src/components}/atoms/Card/Card.test.d.ts +0 -0
  297. /package/react/{components → src/components}/atoms/Checkbox/Checkbox.d.ts +0 -0
  298. /package/react/{components → src/components}/atoms/Checkbox/Checkbox.stories.d.ts +0 -0
  299. /package/react/{components → src/components}/atoms/Checkbox/Checkbox.test.d.ts +0 -0
  300. /package/react/{components → src/components}/atoms/Heading/Heading.d.ts +0 -0
  301. /package/react/{components → src/components}/atoms/Heading/Heading.stories.d.ts +0 -0
  302. /package/react/{components → src/components}/atoms/Heading/Heading.test.d.ts +0 -0
  303. /package/react/{components → src/components}/atoms/HorizontalRule/HorizontalRule.stories.d.ts +0 -0
  304. /package/react/{components → src/components}/atoms/HorizontalRule/HorizontalRule.test.d.ts +0 -0
  305. /package/react/{components → src/components}/atoms/Icon/Icon.test.d.ts +0 -0
  306. /package/react/{components → src/components}/atoms/Input/Input.d.ts +0 -0
  307. /package/react/{components → src/components}/atoms/Input/Input.test.d.ts +0 -0
  308. /package/react/{components → src/components}/atoms/Input/mask.d.ts +0 -0
  309. /package/react/{components → src/components}/atoms/Loading/Loading.stories.d.ts +0 -0
  310. /package/react/{components → src/components}/atoms/Loading/Loading.test.d.ts +0 -0
  311. /package/react/{components → src/components}/atoms/Option/Option.d.ts +0 -0
  312. /package/react/{components → src/components}/atoms/Option/Option.stories.d.ts +0 -0
  313. /package/react/{components → src/components}/atoms/Option/Option.test.d.ts +0 -0
  314. /package/react/{components → src/components}/atoms/Paragraph/Paragraph.d.ts +0 -0
  315. /package/react/{components → src/components}/atoms/Paragraph/Paragraph.stories.d.ts +0 -0
  316. /package/react/{components → src/components}/atoms/Paragraph/Paragraph.test.d.ts +0 -0
  317. /package/react/{components → src/components}/atoms/Progress/Progress.d.ts +0 -0
  318. /package/react/{components → src/components}/atoms/Progress/Progress.stories.d.ts +0 -0
  319. /package/react/{components → src/components}/atoms/Progress/Progress.test.d.ts +0 -0
  320. /package/react/{components → src/components}/atoms/Select/Select.d.ts +0 -0
  321. /package/react/{components → src/components}/atoms/Select/Select.test.d.ts +0 -0
  322. /package/react/{components → src/components}/atoms/Subtitle/Subtitle.d.ts +0 -0
  323. /package/react/{components → src/components}/atoms/Subtitle/Subtitle.stories.d.ts +0 -0
  324. /package/react/{components → src/components}/atoms/Subtitle/Subtitle.test.d.ts +0 -0
  325. /package/react/{components → src/components}/atoms/TextArea/TextArea.test.d.ts +0 -0
  326. /package/react/{components → src/components}/atoms/Tooltip/Tooltip.test.d.ts +0 -0
  327. /package/react/{components → src/components}/bosons/Container/Container.d.ts +0 -0
  328. /package/react/{components → src/components}/bosons/Container/Container.stories.d.ts +0 -0
  329. /package/react/{components → src/components}/bosons/Container/Container.test.d.ts +0 -0
  330. /package/react/{components → src/components}/bosons/FlexLayout/FlexElement.d.ts +0 -0
  331. /package/react/{components → src/components}/bosons/FlexLayout/FlexLayout.d.ts +0 -0
  332. /package/react/{components → src/components}/bosons/FlexLayout/FlexLayout.stories.d.ts +0 -0
  333. /package/react/{components → src/components}/bosons/FlexLayout/FlexLayout.test.d.ts +0 -0
  334. /package/react/{components → src/components}/bosons/GridLayout/GridElement.test.d.ts +0 -0
  335. /package/react/{components → src/components}/bosons/GridLayout/GridLayout.stories.d.ts +0 -0
  336. /package/react/{components → src/components}/bosons/GridLayout/GridLayout.test.d.ts +0 -0
  337. /package/react/{components → src/components}/bosons/Spacer/Spacer.d.ts +0 -0
  338. /package/react/{components → src/components}/bosons/Spacer/Spacer.test.d.ts +0 -0
  339. /package/react/{components → src/components}/bosons/Wrapper/Wrapper.d.ts +0 -0
  340. /package/react/{components → src/components}/bosons/Wrapper/Wrapper.stories.d.ts +0 -0
  341. /package/react/{components → src/components}/bosons/Wrapper/Wrapper.test.d.ts +0 -0
  342. /package/react/{components → src/components}/molecules/Accordion/Accordion.test.d.ts +0 -0
  343. /package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.d.ts +0 -0
  344. /package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.stories.d.ts +0 -0
  345. /package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.test.d.ts +0 -0
  346. /package/react/{components/molecules/Modal/Modal.test.d.ts → src/components/molecules/Carousel/Carousel.test.d.ts} +0 -0
  347. /package/react/{components → src/components}/molecules/EditableSelect/EditableSelect.stories.d.ts +0 -0
  348. /package/react/{components → src/components}/molecules/EditableSelect/EditableSelect.test.d.ts +0 -0
  349. /package/react/{components → src/components}/molecules/Indicator/Indicator.d.ts +0 -0
  350. /package/react/{components → src/components}/molecules/Indicator/Indicator.stories.d.ts +0 -0
  351. /package/react/{components → src/components}/molecules/Indicator/Indicator.test.d.ts +0 -0
  352. /package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.d.ts +0 -0
  353. /package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.stories.d.ts +0 -0
  354. /package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.test.d.ts +0 -0
  355. /package/react/{components → src/components}/molecules/Notification/Notification.test.d.ts +0 -0
  356. /package/react/{components → src/components}/molecules/PasswordConfirmation/PasswordConfirmartion.test.d.ts +0 -0
  357. /package/react/{components → src/components}/molecules/PasswordConfirmation/PasswordConfirmation.d.ts +0 -0
  358. /package/react/{components → src/components}/molecules/Stepper/Stepper.stories.d.ts +0 -0
  359. /package/react/{components → src/components}/molecules/Stepper/Stepper.test.d.ts +0 -0
  360. /package/react/{components → src/components}/molecules/Table/Table.test.d.ts +0 -0
  361. /package/react/{components → src/components}/molecules/Tabs/Tab.test.d.ts +0 -0
  362. /package/react/{components → src/components}/molecules/Tabs/Tabs.test.d.ts +0 -0
  363. /package/react/{components → src/components}/molecules/ThemeProvider/ThemeProvider.d.ts +0 -0
  364. /package/react/{components → src/components}/molecules/ThemeProvider/ThemeProvider.test.d.ts +0 -0
  365. /package/react/{components → src/components}/molecules/ThemeProvider/index.d.ts +0 -0
  366. /package/react/{components → src/components}/organisms/NotificationList/NotificationList.test.d.ts +0 -0
  367. /package/react/{components/templates/TwoColumns/TwoColumns.test.d.ts → src/components/templates/SplitLayout/SplitLayout.test.d.ts} +0 -0
  368. /package/react/{components → src/components}/templates/TwoColumns/TwoColumns.d.ts +0 -0
  369. /package/react/{decorators/storybook.test.d.ts → src/components/templates/TwoColumns/TwoColumns.test.d.ts} +0 -0
  370. /package/react/{main.d.ts → src/main.d.ts} +0 -0
@@ -1,20 +0,0 @@
1
- export declare const ParagraphType: {
2
- readonly Default: "";
3
- readonly Large: "large";
4
- readonly Small: "small";
5
- };
6
- export type ParagraphType = (typeof ParagraphType)[keyof typeof ParagraphType];
7
- export interface ParagraphTypeProps {
8
- type: StringConstructor;
9
- default: ParagraphType;
10
- options: ParagraphType[];
11
- }
12
- export interface ParagraphConfig {
13
- name: string;
14
- class: string;
15
- props: {
16
- type: ParagraphTypeProps;
17
- };
18
- }
19
- declare const ParagraphConfig: ParagraphConfig;
20
- export default ParagraphConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsParagraph, DsParagraphProps } from './Paragraph';
2
-
3
- export { DsParagraph };
4
- export type { DsParagraphProps };
@@ -1,31 +0,0 @@
1
- export declare const Color: {
2
- readonly Success: "success";
3
- readonly SuccessDark: "success-dark";
4
- readonly Warning: "warning";
5
- readonly Danger: "danger";
6
- };
7
- export type Color = (typeof Color)[keyof typeof Color];
8
- export interface LabelProps {
9
- type: StringConstructor;
10
- default: string;
11
- }
12
- export interface ProgressProps {
13
- type: NumberConstructor;
14
- default: number;
15
- }
16
- export interface ColorProps {
17
- type: StringConstructor;
18
- default: Color;
19
- options: Color[];
20
- }
21
- export interface ProgressConfig {
22
- name: string;
23
- class: string;
24
- props: {
25
- label: LabelProps;
26
- progress: ProgressProps;
27
- color: ColorProps;
28
- };
29
- }
30
- declare const ProgressConfig: ProgressConfig;
31
- export default ProgressConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsProgress, DsProgressProps } from './Progress';
2
-
3
- export { DsProgress };
4
- export type { DsProgressProps };
@@ -1,125 +0,0 @@
1
- export declare const Size: {
2
- readonly Small: "sm";
3
- readonly Medium: "md";
4
- readonly Large: "lg";
5
- };
6
- export type Size = (typeof Size)[keyof typeof Size];
7
- export declare const Status: {
8
- readonly Default: "";
9
- readonly Error: "error";
10
- readonly Success: "success";
11
- };
12
- export type Status = (typeof Status)[keyof typeof Status];
13
- export declare const TooltipPlacement: {
14
- readonly Center: "center";
15
- readonly End: "end";
16
- readonly Initial: "initial";
17
- };
18
- export type TooltipPlacement = (typeof TooltipPlacement)[keyof typeof TooltipPlacement];
19
- export declare const TooltipPosition: {
20
- readonly Top: "top";
21
- readonly Right: "right";
22
- readonly Bottom: "bottom";
23
- readonly Left: "left";
24
- };
25
- export type TooltipPosition = (typeof TooltipPosition)[keyof typeof TooltipPosition];
26
- export interface LabelProps {
27
- type: StringConstructor;
28
- default: string;
29
- }
30
- export interface ClassNameProps {
31
- type: StringConstructor;
32
- default: string;
33
- }
34
- export interface AnimatedProps {
35
- type: BooleanConstructor;
36
- default: boolean;
37
- }
38
- export interface DisabledProps {
39
- type: BooleanConstructor;
40
- default: boolean;
41
- }
42
- export interface MultipleProps {
43
- type: BooleanConstructor;
44
- default: boolean;
45
- }
46
- export interface NameProps {
47
- type: StringConstructor;
48
- default: string;
49
- }
50
- export interface TestIdProps {
51
- type: StringConstructor;
52
- default: string;
53
- }
54
- export interface PlaceholderProps {
55
- type: StringConstructor;
56
- }
57
- export interface OnChangeProps {
58
- type: FunctionConstructor;
59
- default: () => void;
60
- }
61
- export interface ValueProps {
62
- type: (BooleanConstructor | StringConstructor | NumberConstructor | undefined)[];
63
- }
64
- export interface SizeProps {
65
- type: StringConstructor;
66
- options: Size[];
67
- default: Size;
68
- }
69
- export interface StatusProps {
70
- type: StringConstructor;
71
- default: Status;
72
- options: Status[];
73
- }
74
- export interface TooltipProps {
75
- type: StringConstructor;
76
- default: string;
77
- }
78
- export interface TooltipPlacementProps {
79
- type: StringConstructor;
80
- default: TooltipPlacement;
81
- options: TooltipPlacement[];
82
- }
83
- export interface TooltipPositionProps {
84
- type: StringConstructor;
85
- default: TooltipPosition;
86
- options: TooltipPosition[];
87
- }
88
- export interface FeedbackProps {
89
- type: StringConstructor;
90
- default: string;
91
- }
92
- interface Option {
93
- label?: string;
94
- value?: string | number | readonly string[];
95
- }
96
- interface GroupedOption {
97
- label?: string;
98
- options: Option[];
99
- }
100
- export type SelectOptions = (Option | GroupedOption)[];
101
- export interface SelectConfig {
102
- name: string;
103
- class: string;
104
- props: {
105
- label: LabelProps;
106
- className: ClassNameProps;
107
- animated: AnimatedProps;
108
- disabled: DisabledProps;
109
- multiple: MultipleProps;
110
- name: NameProps;
111
- options: SelectOptions;
112
- testId: TestIdProps;
113
- placeholder: PlaceholderProps;
114
- onChange: OnChangeProps;
115
- value: ValueProps;
116
- size: SizeProps;
117
- status: StatusProps;
118
- tooltip: TooltipProps;
119
- tooltipPlacement: TooltipPlacementProps;
120
- tooltipPosition: TooltipPositionProps;
121
- feedback: FeedbackProps;
122
- };
123
- }
124
- declare const SelectConfig: SelectConfig;
125
- export default SelectConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsSelect, DsSelectProps } from './Select';
2
-
3
- export { DsSelect };
4
- export type { DsSelectProps };
@@ -1,19 +0,0 @@
1
- export declare const SubtitleType: {
2
- readonly Large: "large";
3
- readonly Small: "small";
4
- };
5
- export type SubtitleType = (typeof SubtitleType)[keyof typeof SubtitleType];
6
- export interface SubtitleTypeProps {
7
- type: StringConstructor;
8
- default: SubtitleType;
9
- options: SubtitleType[];
10
- }
11
- export interface SubtitleConfig {
12
- name: string;
13
- class: string;
14
- props: {
15
- type: SubtitleTypeProps;
16
- };
17
- }
18
- declare const SubtitleConfig: SubtitleConfig;
19
- export default SubtitleConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsSubtitle, DsSubtitleProps } from './Subtitle';
2
-
3
- export { DsSubtitle };
4
- export type { DsSubtitleProps };
@@ -1,132 +0,0 @@
1
- export declare const Size: {
2
- readonly Small: "small";
3
- readonly Medium: "medium";
4
- readonly Large: "large";
5
- };
6
- export type Size = (typeof Size)[keyof typeof Size];
7
- export declare const Type: {
8
- readonly Text: "text";
9
- };
10
- export type Type = (typeof Type)[keyof typeof Type];
11
- export declare const Status: {
12
- readonly None: "";
13
- readonly Error: "error";
14
- readonly Success: "success";
15
- };
16
- export type Status = (typeof Status)[keyof typeof Status];
17
- export declare const Resize: {
18
- readonly None: "none";
19
- readonly Both: "both";
20
- readonly Horizontal: "horizontal";
21
- readonly Vertical: "vertical";
22
- readonly Block: "block";
23
- readonly Inline: "inline";
24
- };
25
- export type Resize = (typeof Resize)[keyof typeof Resize];
26
- export interface NameProps {
27
- type: StringConstructor;
28
- required: true;
29
- }
30
- export interface TestIdProps {
31
- type: StringConstructor;
32
- default: string;
33
- }
34
- export interface TypeProps {
35
- type: StringConstructor;
36
- default: Type;
37
- options: Type[];
38
- }
39
- export interface AnimatedProps {
40
- type: BooleanConstructor;
41
- default: boolean;
42
- }
43
- export interface DisabledProps {
44
- type: BooleanConstructor;
45
- default: boolean;
46
- }
47
- export interface SizeProps {
48
- type: StringConstructor;
49
- default: Size;
50
- options: Size[];
51
- }
52
- export interface LabelProps {
53
- type: StringConstructor;
54
- default: string;
55
- }
56
- export interface PlaceholderProps {
57
- type: StringConstructor;
58
- default: string;
59
- }
60
- export interface ValueProps {
61
- type: StringConstructor;
62
- default: string;
63
- }
64
- export interface MinLengthProps {
65
- type: NumberConstructor;
66
- default: number | undefined;
67
- }
68
- export interface MaxLengthProps {
69
- type: NumberConstructor;
70
- default: number | undefined;
71
- }
72
- export interface RowsProps {
73
- type: NumberConstructor;
74
- default: number;
75
- }
76
- export interface StatusProps {
77
- type: StringConstructor;
78
- default: Status;
79
- options: Status[];
80
- }
81
- export interface FeedbackProps {
82
- type: StringConstructor;
83
- default: string;
84
- }
85
- export interface DescriptionProps {
86
- type: StringConstructor;
87
- default: string;
88
- }
89
- export interface IconProps {
90
- type: StringConstructor;
91
- default: string;
92
- }
93
- export interface TooltipProps {
94
- type: StringConstructor;
95
- default: string;
96
- }
97
- export interface ResizeProps {
98
- type: StringConstructor;
99
- default: Resize;
100
- options: Resize[];
101
- }
102
- export interface OnChangeHandlerProps {
103
- type: FunctionConstructor;
104
- default: () => void;
105
- }
106
- export interface TextAreaConfig {
107
- name: string;
108
- class: string;
109
- props: {
110
- name: NameProps;
111
- testId: TestIdProps;
112
- type: TypeProps;
113
- animated: AnimatedProps;
114
- disabled: DisabledProps;
115
- size: SizeProps;
116
- label: LabelProps;
117
- placeholder: PlaceholderProps;
118
- value: ValueProps;
119
- minLength: MinLengthProps;
120
- maxLength: MaxLengthProps;
121
- rows: RowsProps;
122
- status: StatusProps;
123
- feedback: FeedbackProps;
124
- description: DescriptionProps;
125
- icon: IconProps;
126
- tooltip: TooltipProps;
127
- resize: ResizeProps;
128
- onChangeHandler: OnChangeHandlerProps;
129
- };
130
- }
131
- declare const TextAreaConfig: TextAreaConfig;
132
- export default TextAreaConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsTextArea, DsTextAreaProps } from './TextArea';
2
-
3
- export { DsTextArea };
4
- export type { DsTextAreaProps };
@@ -1,38 +0,0 @@
1
- export declare const Position: {
2
- readonly Top: "top";
3
- readonly Right: "right";
4
- readonly Bottom: "bottom";
5
- readonly Left: "left";
6
- };
7
- export type Position = (typeof Position)[keyof typeof Position];
8
- export declare const Placement: {
9
- readonly Center: "center";
10
- readonly End: "end";
11
- readonly Initial: "initial";
12
- };
13
- export type Placement = (typeof Placement)[keyof typeof Placement];
14
- export interface PositionProps {
15
- type: StringConstructor;
16
- default: Position;
17
- options: Position[];
18
- }
19
- export interface PlacementProps {
20
- type: StringConstructor;
21
- default: Placement;
22
- options: Placement[];
23
- }
24
- export interface TextProps {
25
- type: StringConstructor;
26
- default: string;
27
- }
28
- export interface TooltipConfig {
29
- name: string;
30
- class: string;
31
- props: {
32
- position: PositionProps;
33
- placement: PlacementProps;
34
- text: TextProps;
35
- };
36
- }
37
- declare const TooltipConfig: TooltipConfig;
38
- export default TooltipConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsTooltip, DsTooltipProps } from './Tooltip';
2
-
3
- export { DsTooltip };
4
- export type { DsTooltipProps };
@@ -1,18 +0,0 @@
1
- export interface FluidProps {
2
- type: BooleanConstructor;
3
- default: boolean;
4
- }
5
- export interface TestIdProps {
6
- type: StringConstructor;
7
- default: string;
8
- }
9
- export interface ContainerConfig {
10
- name: string;
11
- class: string;
12
- props: {
13
- fluid: FluidProps;
14
- testId: TestIdProps;
15
- };
16
- }
17
- declare const ContainerConfig: ContainerConfig;
18
- export default ContainerConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsContainer, DsContainerProps } from './Container';
2
-
3
- export { DsContainer };
4
- export type { DsContainerProps };
@@ -1,100 +0,0 @@
1
- export declare const JustifyContent: {
2
- readonly Stretch: "stretch";
3
- readonly FlexStart: "flex-start";
4
- readonly FlexEnd: "flex-end";
5
- readonly Center: "center";
6
- readonly SpaceAround: "space-around";
7
- readonly SpaceBetween: "space-between";
8
- };
9
- export type JustifyContent = (typeof JustifyContent)[keyof typeof JustifyContent];
10
- export declare const AlignItems: {
11
- readonly Stretch: "stretch";
12
- readonly FlexStart: "flex-start";
13
- readonly FlexEnd: "flex-end";
14
- readonly Center: "center";
15
- };
16
- export type AlignItems = (typeof AlignItems)[keyof typeof AlignItems];
17
- export declare const FlexDirection: {
18
- readonly Row: "row";
19
- readonly Column: "column";
20
- readonly RowReverse: "row-reverse";
21
- readonly ColumnReverse: "column-reverse";
22
- };
23
- export type FlexDirection = (typeof FlexDirection)[keyof typeof FlexDirection];
24
- export declare const FlexWrap: {
25
- readonly NoWrap: "nowrap";
26
- readonly Wrap: "wrap";
27
- readonly WrapReverse: "wrap-reverse";
28
- };
29
- export type FlexWrap = (typeof FlexWrap)[keyof typeof FlexWrap];
30
- export declare const Gap: {
31
- readonly Quark: "quark";
32
- readonly Nano: "nano";
33
- readonly XXXS: "xxxs";
34
- readonly XXS: "xxs";
35
- readonly XS: "xs";
36
- readonly SM: "sm";
37
- readonly MD: "md";
38
- readonly LG: "lg";
39
- readonly XL: "xl";
40
- readonly XXL: "xxl";
41
- readonly XXXL: "xxxl";
42
- };
43
- export type Gap = (typeof Gap)[keyof typeof Gap];
44
- export interface JustifyContentProps {
45
- type: StringConstructor;
46
- default: JustifyContent;
47
- required: true;
48
- options: JustifyContent[];
49
- }
50
- export interface AlignItemsProps {
51
- type: StringConstructor;
52
- default: AlignItems;
53
- required: true;
54
- options: AlignItems[];
55
- }
56
- export interface FlexDirectionProps {
57
- type: StringConstructor;
58
- default: FlexDirection;
59
- required: true;
60
- options: FlexDirection[];
61
- }
62
- export interface FlexWrapProps {
63
- type: StringConstructor;
64
- default: FlexWrap;
65
- required: false;
66
- options: FlexWrap[];
67
- }
68
- export interface ClassNameProps {
69
- type: StringConstructor;
70
- default: string;
71
- }
72
- export interface WidthProps {
73
- type: StringConstructor;
74
- default: string;
75
- }
76
- export interface HeightProps {
77
- type: StringConstructor;
78
- default: string;
79
- }
80
- export interface GapProps {
81
- type: StringConstructor;
82
- default: string;
83
- options: Gap[];
84
- }
85
- export interface FlexLayoutConfig {
86
- name: string;
87
- class: string;
88
- props: {
89
- justifyContent: JustifyContentProps;
90
- alignItems: AlignItemsProps;
91
- flexDirection: FlexDirectionProps;
92
- flexWrap: FlexWrapProps;
93
- className: ClassNameProps;
94
- width: WidthProps;
95
- height: HeightProps;
96
- gap: GapProps;
97
- };
98
- }
99
- declare const FlexLayoutConfig: FlexLayoutConfig;
100
- export default FlexLayoutConfig;
@@ -1,5 +0,0 @@
1
- import { default as DsFlexLayout, DsFlexLayoutProps } from './FlexLayout';
2
- import { default as DsFlexElement } from './FlexElement';
3
-
4
- export { DsFlexLayout, DsFlexElement };
5
- export type { DsFlexLayoutProps };
@@ -1,82 +0,0 @@
1
- export declare const Gap: {
2
- readonly Quark: "quark";
3
- readonly Nano: "nano";
4
- readonly ExtraSmall: "xs";
5
- readonly Small: "sm";
6
- readonly Medium: "md";
7
- readonly Large: "lg";
8
- };
9
- export type Gap = (typeof Gap)[keyof typeof Gap];
10
- export declare const Align: {
11
- readonly Start: "start";
12
- readonly End: "end";
13
- readonly Center: "center";
14
- readonly Stretch: "stretch";
15
- readonly SpaceAround: "space-around";
16
- readonly SpaceBetween: "space-between";
17
- readonly SpaceEvenly: "space-evenly";
18
- };
19
- export type Align = (typeof Align)[keyof typeof Align];
20
- export interface RowsProps {
21
- type: StringConstructor;
22
- default: string;
23
- required: boolean;
24
- }
25
- export interface GapProps {
26
- type: StringConstructor;
27
- default: Gap;
28
- options: Gap[];
29
- }
30
- export interface VGapProps {
31
- type: BooleanConstructor;
32
- default: boolean;
33
- }
34
- export interface HGapProps {
35
- type: BooleanConstructor;
36
- default: boolean;
37
- }
38
- export interface WidthProps {
39
- type: StringConstructor;
40
- default: string;
41
- }
42
- export interface HeightProps {
43
- type: StringConstructor;
44
- default: string;
45
- }
46
- export interface HorizontalAlignProps {
47
- type: StringConstructor;
48
- default: Align;
49
- options: Align[];
50
- }
51
- export interface VerticalAlignProps {
52
- type: StringConstructor;
53
- default: Align;
54
- options: Align[];
55
- }
56
- export interface GridLayoutProps {
57
- rows?: string;
58
- gap?: Gap;
59
- vGap?: boolean;
60
- hGap?: boolean;
61
- width?: string;
62
- height?: string;
63
- horizontalAlign?: Align;
64
- verticalAlign?: Align;
65
- children: React.ReactNode;
66
- }
67
- export interface GridLayoutConfig {
68
- name: string;
69
- class: string;
70
- props: {
71
- rows: RowsProps;
72
- gap: GapProps;
73
- vGap: VGapProps;
74
- hGap: HGapProps;
75
- width: WidthProps;
76
- height: HeightProps;
77
- horizontalAlign: HorizontalAlignProps;
78
- verticalAlign: VerticalAlignProps;
79
- };
80
- }
81
- declare const GridLayoutConfig: GridLayoutConfig;
82
- export default GridLayoutConfig;
@@ -1,5 +0,0 @@
1
- import { default as DsGridLayout, DsGridLayoutProps } from './GridLayout';
2
- import { default as DsGridElement } from './GridElement';
3
-
4
- export { DsGridLayout, DsGridElement };
5
- export type { DsGridLayoutProps };
@@ -1,25 +0,0 @@
1
- export declare const SpacerSize: {
2
- readonly None: "none";
3
- readonly Quark: "quark";
4
- readonly Nano: "nano";
5
- readonly XXXS: "xxxs";
6
- readonly XXS: "xxs";
7
- readonly XS: "xs";
8
- readonly SM: "sm";
9
- };
10
- export type SpacerSize = (typeof SpacerSize)[keyof typeof SpacerSize];
11
- export interface SpacerProps {
12
- type: StringConstructor;
13
- default: SpacerSize;
14
- options: SpacerSize[];
15
- }
16
- export interface SpacerConfig {
17
- name: string;
18
- class: string;
19
- props: {
20
- vertical: SpacerProps;
21
- horizontal: SpacerProps;
22
- };
23
- }
24
- declare const SpacerConfig: SpacerConfig;
25
- export default SpacerConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsSpacer, DsSpacerProps } from './Spacer';
2
-
3
- export { DsSpacer };
4
- export type { DsSpacerProps };
@@ -1,28 +0,0 @@
1
- export declare const Space: {
2
- readonly None: "none";
3
- readonly Quark: "quark";
4
- readonly Nano: "nano";
5
- readonly ExtraSmall: "xs";
6
- readonly Small: "sm";
7
- readonly Medium: "md";
8
- readonly Large: "lg";
9
- };
10
- export type Space = (typeof Space)[keyof typeof Space];
11
- export interface SpaceProps {
12
- type: StringConstructor;
13
- default?: Space;
14
- options?: Space[];
15
- }
16
- export interface WrapperConfig {
17
- name: string;
18
- class: string;
19
- props: {
20
- space: SpaceProps;
21
- top: SpaceProps;
22
- right: SpaceProps;
23
- bottom: SpaceProps;
24
- left: SpaceProps;
25
- };
26
- }
27
- declare const WrapperConfig: WrapperConfig;
28
- export default WrapperConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsWrapper, DsWrapperProps } from './Wrapper';
2
-
3
- export { DsWrapper };
4
- export type { DsWrapperProps };