@akad/design-system 0.2.0-beta.9 → 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 (372) 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 +2703 -2820
  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/{components → src/components}/molecules/Carousel/Carousel.config.d.ts +2 -2
  84. package/react/src/components/molecules/Carousel/index.d.ts +4 -0
  85. package/react/src/components/molecules/EditableSelect/EditableSelect.config.d.ts +104 -0
  86. package/react/{components → src/components}/molecules/EditableSelect/EditableSelect.d.ts +2 -2
  87. package/react/src/components/molecules/EditableSelect/index.d.ts +4 -0
  88. package/react/{components → src/components}/molecules/Indicator/Indicator.config.d.ts +3 -3
  89. package/react/src/components/molecules/Indicator/index.d.ts +4 -0
  90. package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.config.d.ts +3 -3
  91. package/react/src/components/molecules/InlineEditable/index.d.ts +4 -0
  92. package/react/src/components/molecules/Modal/Modal.config.d.ts +44 -0
  93. package/react/{components → src/components}/molecules/Modal/Modal.d.ts +2 -2
  94. package/react/{components → src/components}/molecules/Modal/Modal.stories.d.ts +2 -2
  95. package/react/src/components/molecules/Modal/index.d.ts +4 -0
  96. package/react/{components → src/components}/molecules/Notification/Notification.config.d.ts +13 -32
  97. package/react/src/components/molecules/Notification/Notification.d.ts +22 -0
  98. package/react/{components → src/components}/molecules/Notification/Notification.stories.d.ts +1 -1
  99. package/react/src/components/molecules/Notification/index.d.ts +4 -0
  100. package/react/src/components/molecules/PasswordConfirmation/PasswordConfirmation.config.d.ts +32 -0
  101. package/react/{components → src/components}/molecules/PasswordConfirmation/PasswordConfirmation.stories.d.ts +1 -1
  102. package/react/src/components/molecules/PasswordConfirmation/index.d.ts +4 -0
  103. package/react/{components → src/components}/molecules/Stepper/Stepper.config.d.ts +2 -2
  104. package/react/{components → src/components}/molecules/Stepper/Stepper.d.ts +7 -2
  105. package/react/src/components/molecules/Stepper/index.d.ts +4 -0
  106. package/react/{components/molecules/Table/Table.types.d.ts → src/components/molecules/Table/Table.config.d.ts} +23 -0
  107. package/react/{components → src/components}/molecules/Table/Table.d.ts +1 -1
  108. package/react/{components → src/components}/molecules/Table/Table.stories.d.ts +3 -3
  109. package/react/{components → src/components}/molecules/Table/TableRow.d.ts +1 -1
  110. package/react/{components → src/components}/molecules/Table/dataTable.mock.d.ts +1 -1
  111. package/react/src/components/molecules/Table/index.d.ts +4 -0
  112. package/react/{components → src/components}/molecules/Tabs/Tab.d.ts +1 -1
  113. package/react/src/components/molecules/Tabs/Tabs.config.d.ts +44 -0
  114. package/react/{components → src/components}/molecules/Tabs/Tabs.d.ts +11 -1
  115. package/react/{components → src/components}/molecules/Tabs/Tabs.stories.d.ts +1 -1
  116. package/react/src/components/molecules/Tabs/index.d.ts +4 -0
  117. package/react/src/components/molecules/ThemeProvider/ThemeProvider.config.d.ts +28 -0
  118. package/react/src/components/organisms/NotificationList/NotificationList.config.d.ts +32 -0
  119. package/react/{components → src/components}/organisms/NotificationList/NotificationList.d.ts +1 -1
  120. package/react/{components → src/components}/organisms/NotificationList/NotificationList.stories.d.ts +1 -1
  121. package/react/src/components/organisms/NotificationList/index.d.ts +4 -0
  122. package/react/{components → src/components}/templates/SplitLayout/SplitLayout.config.d.ts +2 -2
  123. package/react/{components → src/components}/templates/TwoColumns/TwoColumns.config.d.ts +2 -2
  124. package/react/src/components/templates/TwoColumns/index.d.ts +4 -0
  125. package/react/src/enum/colorProps.d.ts +30 -0
  126. package/scss/core/base/index.scss +3 -0
  127. package/scss/core/base/reset.scss +27 -0
  128. package/scss/core/base/typography.scss +18 -0
  129. package/scss/core/components/atoms/button.scss +816 -0
  130. package/scss/core/components/atoms/caption.scss +13 -0
  131. package/scss/core/components/atoms/card.scss +24 -0
  132. package/scss/core/components/atoms/checkbox.scss +61 -0
  133. package/scss/core/components/atoms/heading.scss +69 -0
  134. package/scss/core/components/atoms/horizontal-rule.scss +27 -0
  135. package/scss/core/components/atoms/icon.scss +49 -0
  136. package/scss/core/components/atoms/input.scss +333 -0
  137. package/scss/core/components/atoms/loading.scss +120 -0
  138. package/scss/core/components/atoms/option.scss +78 -0
  139. package/scss/core/components/atoms/paragraph.scss +44 -0
  140. package/scss/core/components/atoms/progress.scss +32 -0
  141. package/scss/core/components/atoms/select.scss +253 -0
  142. package/scss/core/components/atoms/subtitle.scss +21 -0
  143. package/scss/core/components/atoms/textarea.scss +340 -0
  144. package/scss/core/components/atoms/tooltip.scss +197 -0
  145. package/scss/core/components/bosons/container.scss +5 -0
  146. package/scss/core/components/bosons/flex-layout.scss +45 -0
  147. package/scss/core/components/bosons/grid-layout.scss +76 -0
  148. package/scss/core/components/bosons/grid.scss +79 -0
  149. package/scss/core/components/bosons/spacer.scss +45 -0
  150. package/scss/core/components/bosons/wrapper.scss +32 -0
  151. package/scss/core/components/index.scss +49 -0
  152. package/scss/core/components/molecules/accordion.scss +93 -0
  153. package/scss/core/components/molecules/active-tags.scss +58 -0
  154. package/scss/core/components/molecules/carousel.scss +67 -0
  155. package/scss/core/components/molecules/editable-select.scss +141 -0
  156. package/scss/core/components/molecules/indicator.scss +37 -0
  157. package/scss/core/components/molecules/inline-editable.scss +23 -0
  158. package/scss/core/components/molecules/modal.scss +70 -0
  159. package/scss/core/components/molecules/notification.scss +109 -0
  160. package/scss/core/components/molecules/password-confirmation.scss +16 -0
  161. package/scss/core/components/molecules/stepper.scss +84 -0
  162. package/scss/core/components/molecules/table.scss +95 -0
  163. package/scss/core/components/molecules/tabs.scss +114 -0
  164. package/scss/core/components/molecules/theme-provider.scss +6 -0
  165. package/scss/core/components/organisms/notification-list.scss +77 -0
  166. package/scss/core/components/templates/split-layout.scss +51 -0
  167. package/scss/core/components/templates/two-columns.scss +30 -0
  168. package/scss/core/functions/breakpoints.scss +35 -0
  169. package/scss/core/functions/fonts.scss +17 -0
  170. package/scss/core/functions/index.scss +5 -0
  171. package/scss/core/functions/spacings.scss +8 -0
  172. package/scss/core/functions/tokens.scss +14 -0
  173. package/scss/core/helpers/borders.scss +87 -0
  174. package/scss/core/helpers/colors.scss +167 -0
  175. package/scss/core/helpers/display.scss +177 -0
  176. package/scss/core/helpers/elevation.scss +16 -0
  177. package/scss/core/helpers/index.scss +6 -0
  178. package/scss/core/helpers/order.scss +20 -0
  179. package/scss/core/index.scss +18 -0
  180. package/scss/core/mixins/breakpoints.scss +90 -0
  181. package/scss/core/mixins/grid.scss +8 -0
  182. package/scss/core/mixins/index.scss +5 -0
  183. package/scss/core/tokens/borders.scss +12 -0
  184. package/scss/core/tokens/breakpoints.scss +20 -0
  185. package/scss/core/tokens/icons.scss +2 -0
  186. package/scss/core/tokens/index.scss +8 -0
  187. package/scss/core/tokens/opacity.scss +6 -0
  188. package/scss/core/tokens/shadows.scss +15 -0
  189. package/scss/core/tokens/spacings.scss +41 -0
  190. package/scss/core/tokens/typography.scss +20 -0
  191. package/scss/themes/aon/colors.scss +83 -0
  192. package/scss/themes/aon/index.scss +54 -0
  193. package/scss/themes/aon/typography.scss +7 -0
  194. package/scss/themes/bees/colors.scss +32 -0
  195. package/scss/themes/bees/index.scss +51 -0
  196. package/scss/themes/bees/typography.scss +6 -0
  197. package/scss/themes/bmc/colors.scss +81 -0
  198. package/scss/themes/bmc/index.scss +54 -0
  199. package/scss/themes/bmc/typography.scss +5 -0
  200. package/scss/themes/default/colors.scss +109 -0
  201. package/scss/themes/default/index.scss +80 -0
  202. package/scss/themes/default/typography.scss +7 -0
  203. package/scss/themes/linker/colors.scss +35 -0
  204. package/scss/themes/linker/index.scss +30 -0
  205. package/scss/themes/linker/typography.scss +6 -0
  206. package/scss/themes/oggi/colors.scss +81 -0
  207. package/scss/themes/oggi/index.scss +54 -0
  208. package/scss/themes/oggi/typography.scss +5 -0
  209. package/scss/themes/streetgo/colors.scss +81 -0
  210. package/scss/themes/streetgo/index.scss +54 -0
  211. package/scss/themes/streetgo/typography.scss +5 -0
  212. package/css/aon-theme.css +0 -1
  213. package/css/bees-theme.css +0 -1
  214. package/css/bmc-theme.css +0 -1
  215. package/css/default-theme.css +0 -1
  216. package/css/linker-theme.css +0 -1
  217. package/css/oggi-theme.css +0 -1
  218. package/css/streetgo-theme.css +0 -1
  219. package/react/components/atoms/Button/Button.config.d.ts +0 -94
  220. package/react/components/atoms/Button/index.d.ts +0 -4
  221. package/react/components/atoms/Caption/Caption.config.d.ts +0 -6
  222. package/react/components/atoms/Caption/index.d.ts +0 -4
  223. package/react/components/atoms/Card/Card.config.d.ts +0 -76
  224. package/react/components/atoms/Card/index.d.ts +0 -4
  225. package/react/components/atoms/Checkbox/index.d.ts +0 -5
  226. package/react/components/atoms/Heading/Heading.config.d.ts +0 -23
  227. package/react/components/atoms/Heading/index.d.ts +0 -4
  228. package/react/components/atoms/HorizontalRule/HorizontalRule.config.d.ts +0 -32
  229. package/react/components/atoms/HorizontalRule/index.d.ts +0 -4
  230. package/react/components/atoms/Icon/Icon.config.d.ts +0 -129
  231. package/react/components/atoms/Icon/index.d.ts +0 -4
  232. package/react/components/atoms/Input/Input.config.d.ts +0 -151
  233. package/react/components/atoms/Input/index.d.ts +0 -4
  234. package/react/components/atoms/Loading/Loading.config.d.ts +0 -54
  235. package/react/components/atoms/Loading/index.d.ts +0 -4
  236. package/react/components/atoms/Option/Option.config.d.ts +0 -53
  237. package/react/components/atoms/Option/index.d.ts +0 -4
  238. package/react/components/atoms/Paragraph/Paragraph.config.d.ts +0 -20
  239. package/react/components/atoms/Paragraph/index.d.ts +0 -4
  240. package/react/components/atoms/Progress/Progress.config.d.ts +0 -31
  241. package/react/components/atoms/Progress/index.d.ts +0 -4
  242. package/react/components/atoms/Select/Select.config.d.ts +0 -125
  243. package/react/components/atoms/Select/index.d.ts +0 -4
  244. package/react/components/atoms/Subtitle/Subtitle.config.d.ts +0 -19
  245. package/react/components/atoms/Subtitle/index.d.ts +0 -4
  246. package/react/components/atoms/TextArea/TextArea.config.d.ts +0 -132
  247. package/react/components/atoms/TextArea/index.d.ts +0 -4
  248. package/react/components/atoms/Tooltip/Tooltip.config.d.ts +0 -38
  249. package/react/components/atoms/Tooltip/index.d.ts +0 -4
  250. package/react/components/bosons/Container/Container.config.d.ts +0 -18
  251. package/react/components/bosons/Container/index.d.ts +0 -4
  252. package/react/components/bosons/FlexLayout/FlexLayout.config.d.ts +0 -100
  253. package/react/components/bosons/FlexLayout/index.d.ts +0 -5
  254. package/react/components/bosons/GridLayout/GridLayout.config.d.ts +0 -82
  255. package/react/components/bosons/GridLayout/index.d.ts +0 -5
  256. package/react/components/bosons/Spacer/Spacer.config.d.ts +0 -25
  257. package/react/components/bosons/Spacer/index.d.ts +0 -4
  258. package/react/components/bosons/Wrapper/Wrapper.config.d.ts +0 -28
  259. package/react/components/bosons/Wrapper/index.d.ts +0 -4
  260. package/react/components/index.d.ts +0 -39
  261. package/react/components/molecules/Accordion/Accordion.config.d.ts +0 -25
  262. package/react/components/molecules/Accordion/AccordionItem.config.d.ts +0 -28
  263. package/react/components/molecules/Accordion/index.d.ts +0 -5
  264. package/react/components/molecules/ActiveTags/index.d.ts +0 -4
  265. package/react/components/molecules/Carousel/index.d.ts +0 -4
  266. package/react/components/molecules/EditableSelect/EditableSelect.config.d.ts +0 -105
  267. package/react/components/molecules/EditableSelect/index.d.ts +0 -4
  268. package/react/components/molecules/Indicator/index.d.ts +0 -4
  269. package/react/components/molecules/InlineEditable/index.d.ts +0 -4
  270. package/react/components/molecules/Modal/Modal.config.d.ts +0 -41
  271. package/react/components/molecules/Modal/index.d.ts +0 -4
  272. package/react/components/molecules/Notification/Notification.d.ts +0 -7
  273. package/react/components/molecules/Notification/index.d.ts +0 -5
  274. package/react/components/molecules/PasswordConfirmation/PasswordConfirmation.config.d.ts +0 -32
  275. package/react/components/molecules/PasswordConfirmation/index.d.ts +0 -4
  276. package/react/components/molecules/Stepper/index.d.ts +0 -4
  277. package/react/components/molecules/Table/Table.config.d.ts +0 -23
  278. package/react/components/molecules/Table/index.d.ts +0 -5
  279. package/react/components/molecules/Tabs/Tabs.config.d.ts +0 -45
  280. package/react/components/molecules/Tabs/index.d.ts +0 -6
  281. package/react/components/molecules/ThemeProvider/ThemeProvider.config.d.ts +0 -30
  282. package/react/components/organisms/NotificationList/NotificationList.config.d.ts +0 -33
  283. package/react/components/organisms/NotificationList/index.d.ts +0 -4
  284. package/react/components/templates/TwoColumns/index.d.ts +0 -5
  285. package/react/decorators/storybook.d.ts +0 -3
  286. package/react/decorators/storybook.test.d.ts +0 -1
  287. package/react/types/hooks/types.d.ts +0 -99
  288. package/react/types/types.d.ts +0 -43
  289. /package/react/{components → src/components}/atoms/Button/Button.test.d.ts +0 -0
  290. /package/react/{components → src/components}/atoms/Caption/Caption.d.ts +0 -0
  291. /package/react/{components → src/components}/atoms/Caption/Caption.stories.d.ts +0 -0
  292. /package/react/{components → src/components}/atoms/Caption/Caption.test.d.ts +0 -0
  293. /package/react/{components → src/components}/atoms/Card/Card.stories.d.ts +0 -0
  294. /package/react/{components → src/components}/atoms/Card/Card.test.d.ts +0 -0
  295. /package/react/{components → src/components}/atoms/Checkbox/Checkbox.d.ts +0 -0
  296. /package/react/{components → src/components}/atoms/Checkbox/Checkbox.stories.d.ts +0 -0
  297. /package/react/{components → src/components}/atoms/Checkbox/Checkbox.test.d.ts +0 -0
  298. /package/react/{components → src/components}/atoms/Heading/Heading.d.ts +0 -0
  299. /package/react/{components → src/components}/atoms/Heading/Heading.stories.d.ts +0 -0
  300. /package/react/{components → src/components}/atoms/Heading/Heading.test.d.ts +0 -0
  301. /package/react/{components → src/components}/atoms/HorizontalRule/HorizontalRule.stories.d.ts +0 -0
  302. /package/react/{components → src/components}/atoms/HorizontalRule/HorizontalRule.test.d.ts +0 -0
  303. /package/react/{components → src/components}/atoms/Icon/Icon.test.d.ts +0 -0
  304. /package/react/{components → src/components}/atoms/Input/Input.d.ts +0 -0
  305. /package/react/{components → src/components}/atoms/Input/Input.test.d.ts +0 -0
  306. /package/react/{components → src/components}/atoms/Input/mask.d.ts +0 -0
  307. /package/react/{components → src/components}/atoms/Loading/Loading.stories.d.ts +0 -0
  308. /package/react/{components → src/components}/atoms/Loading/Loading.test.d.ts +0 -0
  309. /package/react/{components → src/components}/atoms/Option/Option.d.ts +0 -0
  310. /package/react/{components → src/components}/atoms/Option/Option.stories.d.ts +0 -0
  311. /package/react/{components → src/components}/atoms/Option/Option.test.d.ts +0 -0
  312. /package/react/{components → src/components}/atoms/Paragraph/Paragraph.d.ts +0 -0
  313. /package/react/{components → src/components}/atoms/Paragraph/Paragraph.stories.d.ts +0 -0
  314. /package/react/{components → src/components}/atoms/Paragraph/Paragraph.test.d.ts +0 -0
  315. /package/react/{components → src/components}/atoms/Progress/Progress.d.ts +0 -0
  316. /package/react/{components → src/components}/atoms/Progress/Progress.stories.d.ts +0 -0
  317. /package/react/{components → src/components}/atoms/Progress/Progress.test.d.ts +0 -0
  318. /package/react/{components → src/components}/atoms/Select/Select.d.ts +0 -0
  319. /package/react/{components → src/components}/atoms/Select/Select.test.d.ts +0 -0
  320. /package/react/{components → src/components}/atoms/Subtitle/Subtitle.d.ts +0 -0
  321. /package/react/{components → src/components}/atoms/Subtitle/Subtitle.stories.d.ts +0 -0
  322. /package/react/{components → src/components}/atoms/Subtitle/Subtitle.test.d.ts +0 -0
  323. /package/react/{components → src/components}/atoms/TextArea/TextArea.test.d.ts +0 -0
  324. /package/react/{components → src/components}/atoms/Tooltip/Tooltip.test.d.ts +0 -0
  325. /package/react/{components → src/components}/bosons/Container/Container.d.ts +0 -0
  326. /package/react/{components → src/components}/bosons/Container/Container.stories.d.ts +0 -0
  327. /package/react/{components → src/components}/bosons/Container/Container.test.d.ts +0 -0
  328. /package/react/{components → src/components}/bosons/FlexLayout/FlexElement.d.ts +0 -0
  329. /package/react/{components → src/components}/bosons/FlexLayout/FlexLayout.d.ts +0 -0
  330. /package/react/{components → src/components}/bosons/FlexLayout/FlexLayout.stories.d.ts +0 -0
  331. /package/react/{components → src/components}/bosons/FlexLayout/FlexLayout.test.d.ts +0 -0
  332. /package/react/{components → src/components}/bosons/GridLayout/GridElement.test.d.ts +0 -0
  333. /package/react/{components → src/components}/bosons/GridLayout/GridLayout.stories.d.ts +0 -0
  334. /package/react/{components → src/components}/bosons/GridLayout/GridLayout.test.d.ts +0 -0
  335. /package/react/{components → src/components}/bosons/Spacer/Spacer.d.ts +0 -0
  336. /package/react/{components → src/components}/bosons/Spacer/Spacer.test.d.ts +0 -0
  337. /package/react/{components → src/components}/bosons/Wrapper/Wrapper.d.ts +0 -0
  338. /package/react/{components → src/components}/bosons/Wrapper/Wrapper.stories.d.ts +0 -0
  339. /package/react/{components → src/components}/bosons/Wrapper/Wrapper.test.d.ts +0 -0
  340. /package/react/{components → src/components}/molecules/Accordion/Accordion.test.d.ts +0 -0
  341. /package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.d.ts +0 -0
  342. /package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.stories.d.ts +0 -0
  343. /package/react/{components → src/components}/molecules/ActiveTags/ActiveTags.test.d.ts +0 -0
  344. /package/react/{components → src/components}/molecules/Carousel/Carousel.d.ts +0 -0
  345. /package/react/{components → src/components}/molecules/Carousel/Carousel.test.d.ts +0 -0
  346. /package/react/{components → src/components}/molecules/EditableSelect/EditableSelect.stories.d.ts +0 -0
  347. /package/react/{components → src/components}/molecules/EditableSelect/EditableSelect.test.d.ts +0 -0
  348. /package/react/{components → src/components}/molecules/Indicator/Indicator.d.ts +0 -0
  349. /package/react/{components → src/components}/molecules/Indicator/Indicator.stories.d.ts +0 -0
  350. /package/react/{components → src/components}/molecules/Indicator/Indicator.test.d.ts +0 -0
  351. /package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.d.ts +0 -0
  352. /package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.stories.d.ts +0 -0
  353. /package/react/{components → src/components}/molecules/InlineEditable/InlineEditable.test.d.ts +0 -0
  354. /package/react/{components → src/components}/molecules/Modal/Modal.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 → src/components}/templates/SplitLayout/SplitLayout.d.ts +0 -0
  368. /package/react/{components → src/components}/templates/SplitLayout/SplitLayout.test.d.ts +0 -0
  369. /package/react/{components → src/components}/templates/SplitLayout/index.d.ts +0 -0
  370. /package/react/{components → src/components}/templates/TwoColumns/TwoColumns.d.ts +0 -0
  371. /package/react/{components → src/components}/templates/TwoColumns/TwoColumns.test.d.ts +0 -0
  372. /package/react/{main.d.ts → src/main.d.ts} +0 -0
@@ -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 };
@@ -1,39 +0,0 @@
1
- import { DsTwoColumns } from './templates/TwoColumns';
2
- import { DsSplitLayout } from './templates/SplitLayout';
3
- import { DsNotificationList } from './organisms/NotificationList';
4
- import { ThemeProvider } from './molecules/ThemeProvider';
5
- import { DsTabs } from './molecules/Tabs';
6
- import { DsTable } from './molecules/Table';
7
- import { DsStepper } from './molecules/Stepper';
8
- import { DsPasswordConfirmation } from './molecules/PasswordConfirmation';
9
- import { DsNotification } from './molecules/Notification';
10
- import { DsModal } from './molecules/Modal';
11
- import { DsInlineEditable } from './molecules/InlineEditable';
12
- import { DsIndicator } from './molecules/Indicator';
13
- import { DsEditableSelect } from './molecules/EditableSelect';
14
- import { DsCarousel } from './molecules/Carousel';
15
- import { DsActiveTags } from './molecules/ActiveTags';
16
- import { DsAccordion } from './molecules/Accordion';
17
- import { DsWrapper } from './bosons/Wrapper';
18
- import { DsSpacer } from './bosons/Spacer';
19
- import { DsGridElement, DsGridLayout } from './bosons/GridLayout';
20
- import { DsFlexLayout, DsFlexElement } from './bosons/FlexLayout';
21
- import { DsContainer } from './bosons/Container';
22
- import { DsTooltip } from './atoms/Tooltip';
23
- import { DsTextArea } from './atoms/TextArea';
24
- import { DsSubtitle } from './atoms/Subtitle';
25
- import { DsSelect } from './atoms/Select';
26
- import { DsProgress } from './atoms/Progress';
27
- import { DsParagraph } from './atoms/Paragraph';
28
- import { DsOption } from './atoms/Option';
29
- import { DsLoading } from './atoms/Loading';
30
- import { DsInput } from './atoms/Input';
31
- import { DsIcon } from './atoms/Icon';
32
- import { DsHR } from './atoms/HorizontalRule';
33
- import { DsHeading } from './atoms/Heading';
34
- import { DsCheckbox } from './atoms/Checkbox';
35
- import { DsCard } from './atoms/Card';
36
- import { DsCaption } from './atoms/Caption';
37
- import { DsButton } from './atoms/Button';
38
-
39
- export { DsAccordion, DsButton, DsCaption, DsCard, DsCheckbox, DsContainer, DsFlexElement, DsFlexLayout, DsGridElement, DsGridLayout, DsHeading, DsHR, DsIcon, DsIndicator, DsInlineEditable, DsInput, DsLoading, DsModal, DsNotification, DsNotificationList, DsOption, DsParagraph, DsSelect, DsSpacer, DsStepper, DsSubtitle, DsTable, DsTabs, DsTextArea, DsTooltip, DsTwoColumns, DsSplitLayout, DsWrapper, DsProgress, DsPasswordConfirmation, DsEditableSelect, DsActiveTags, ThemeProvider, DsCarousel, };
@@ -1,25 +0,0 @@
1
- import { DsAccordionItems } from '../../../types/types';
2
-
3
- export interface OpenItemListIndexProps {
4
- type: BooleanConstructor;
5
- default: boolean;
6
- }
7
- export interface ItemsProps {
8
- type: ArrayConstructor;
9
- default: DsAccordionItems[];
10
- }
11
- export interface ActiveItemProps {
12
- type: NumberConstructor;
13
- default: number;
14
- }
15
- export interface AccordionConfig {
16
- name: string;
17
- class: string;
18
- props: {
19
- openItemListIndex: OpenItemListIndexProps;
20
- items: ItemsProps;
21
- activeItem: ActiveItemProps;
22
- };
23
- }
24
- declare const AccordionConfig: AccordionConfig;
25
- export default AccordionConfig;
@@ -1,28 +0,0 @@
1
- export interface TitleProps {
2
- type: StringConstructor;
3
- default: string;
4
- }
5
- export interface ContentProps {
6
- type: StringConstructor;
7
- default: string;
8
- }
9
- export interface DisabledProps {
10
- type: BooleanConstructor;
11
- default: boolean;
12
- }
13
- export interface ActiveProps {
14
- type: BooleanConstructor;
15
- default: boolean;
16
- }
17
- export interface AccordionItemConfig {
18
- name: string;
19
- class: string;
20
- props: {
21
- title: TitleProps;
22
- content: ContentProps;
23
- disabled: DisabledProps;
24
- active: ActiveProps;
25
- };
26
- }
27
- declare const AccordionItemConfig: AccordionItemConfig;
28
- export default AccordionItemConfig;
@@ -1,5 +0,0 @@
1
- import { DsAccordionItemProps } from '../../../types/types';
2
- import { default as DsAccordion } from './Accordion';
3
-
4
- export { DsAccordion };
5
- export type { DsAccordionItemProps };
@@ -1,4 +0,0 @@
1
- import { default as DsActiveTags, DsActiveTagsProps } from './ActiveTags';
2
-
3
- export { DsActiveTags };
4
- export type { DsActiveTagsProps };
@@ -1,4 +0,0 @@
1
- import { default as DsCarousel, DsCarouselProps } from './Carousel';
2
-
3
- export { DsCarousel };
4
- export type { DsCarouselProps };
@@ -1,105 +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 interface Option {
8
- label: string;
9
- value?: string | number;
10
- name?: string;
11
- id?: string | number;
12
- }
13
- export interface TestIdProps {
14
- type: StringConstructor;
15
- default: string;
16
- }
17
- export interface LabelProps {
18
- type: StringConstructor;
19
- default: string;
20
- }
21
- export interface DisabledProps {
22
- type: BooleanConstructor;
23
- default: boolean;
24
- }
25
- export interface LoadingProps {
26
- type: BooleanConstructor;
27
- }
28
- export interface AnimatedProps {
29
- type: BooleanConstructor;
30
- default: boolean;
31
- }
32
- export interface PlaceholderProps {
33
- type: StringConstructor;
34
- default: string;
35
- }
36
- export interface IconProps {
37
- type: StringConstructor;
38
- default: undefined;
39
- }
40
- export interface NameProps {
41
- type: StringConstructor;
42
- default: string;
43
- }
44
- export interface NoOptionsMessageProps {
45
- type: StringConstructor;
46
- default: string;
47
- }
48
- export interface OptionsProps {
49
- type: ArrayConstructor;
50
- default: never[];
51
- }
52
- export interface StatusProps {
53
- type: StringConstructor;
54
- default: string;
55
- }
56
- export interface ValueProps {
57
- type: StringConstructor;
58
- default: string;
59
- }
60
- export interface SizeProps {
61
- type: StringConstructor;
62
- options: Size[];
63
- default: Size;
64
- }
65
- export interface OnChangeHandlerProps {
66
- type: FunctionConstructor;
67
- default: () => void;
68
- }
69
- export interface OnBlurHandlerProps {
70
- type: FunctionConstructor;
71
- default: () => void;
72
- }
73
- export interface OnFocusHandlerProps {
74
- type: FunctionConstructor;
75
- default: () => void;
76
- }
77
- export interface OnSelectHandlerProps {
78
- type: FunctionConstructor;
79
- default: () => void;
80
- }
81
- export interface EditableSelectConfig {
82
- name: string;
83
- class: string;
84
- props: {
85
- label: LabelProps;
86
- testId: TestIdProps;
87
- animated: AnimatedProps;
88
- loading: LoadingProps;
89
- disabled: DisabledProps;
90
- icon: IconProps;
91
- name: NameProps;
92
- noOptionsMessage: NoOptionsMessageProps;
93
- options: OptionsProps;
94
- status: StatusProps;
95
- value: ValueProps;
96
- size: SizeProps;
97
- onChangeHandler: OnChangeHandlerProps;
98
- onBlurHandler: OnBlurHandlerProps;
99
- onFocusHandler: OnFocusHandlerProps;
100
- onSelectHandler: OnSelectHandlerProps;
101
- placeholder: PlaceholderProps;
102
- };
103
- }
104
- declare const EditableSelectConfig: EditableSelectConfig;
105
- export default EditableSelectConfig;