@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,129 +0,0 @@
1
- export declare const Color: {
2
- readonly Primary: "primary";
3
- readonly PrimaryLightest: "primary-lightest";
4
- readonly PrimaryLighter: "primary-lighter";
5
- readonly PrimaryLight: "primary-light";
6
- readonly PrimaryDark: "primary-dark";
7
- readonly PrimaryDarker: "primary-darker";
8
- readonly Neutral90: "neutral-90";
9
- readonly Neutral80: "neutral-80";
10
- readonly Neutral60: "neutral-60";
11
- readonly Neutral40: "neutral-40";
12
- readonly Neutral20: "neutral-20";
13
- readonly Neutral10: "neutral-10";
14
- readonly Neutral05: "neutral-05";
15
- readonly Neutral00: "neutral-00";
16
- readonly Secondary: "secondary";
17
- readonly SecondaryLightest: "secondary-lightest";
18
- readonly SecondaryLighter: "secondary-lighter";
19
- readonly SecondaryLight: "secondary-light";
20
- readonly SecondaryDark: "secondary-dark";
21
- readonly SecondaryDarker: "secondary-darker";
22
- readonly Success: "success";
23
- readonly SuccessLighter: "success-lighter";
24
- readonly SuccessLight: "success-light";
25
- readonly SuccessDark: "success-dark";
26
- readonly Warning: "warning";
27
- readonly WarningLighter: "warning-lighter";
28
- readonly WarningLight: "warning-light";
29
- readonly WarningDark: "warning-dark";
30
- readonly Danger: "danger";
31
- readonly DangerLighter: "danger-lighter";
32
- readonly DangerLight: "danger-light";
33
- readonly DangerDark: "danger-dark";
34
- readonly Info: "info";
35
- readonly InfoLighter: "info-lighter";
36
- readonly InfoLight: "info-light";
37
- readonly InfoDark: "info-dark";
38
- };
39
- export type Color = (typeof Color)[keyof typeof Color];
40
- export declare const Variation: {
41
- readonly Outlined: "outlined";
42
- readonly Rounded: "rounded";
43
- readonly Sharp: "sharp";
44
- };
45
- export type Variation = (typeof Variation)[keyof typeof Variation];
46
- export declare const Size: {
47
- readonly XXS: "xxs";
48
- readonly XS: "xs";
49
- readonly SM: "sm";
50
- readonly MD: "md";
51
- readonly LG: "lg";
52
- readonly XL: "xl";
53
- readonly XXL: "xxl";
54
- readonly XXXL: "xxxl";
55
- readonly Huge: "huge";
56
- };
57
- export type Size = (typeof Size)[keyof typeof Size];
58
- export declare const Weight: {
59
- readonly Bold: "bold";
60
- readonly Semibold: "semibold";
61
- readonly Medium: "medium";
62
- readonly Regular: "regular";
63
- readonly Light: "light";
64
- readonly Extralight: "extralight";
65
- };
66
- export type Weight = (typeof Weight)[keyof typeof Weight];
67
- export interface FontVariationSettings {
68
- fill: number;
69
- grad: number;
70
- weight: number;
71
- opticalSize: number;
72
- }
73
- export interface ColorProps {
74
- type: StringConstructor;
75
- default: Color;
76
- options: Color[];
77
- }
78
- export interface ImageProps {
79
- type: StringConstructor;
80
- default: string;
81
- }
82
- export interface VariationProps {
83
- type: StringConstructor;
84
- default: Variation;
85
- options: Variation[];
86
- }
87
- export interface SizeProps {
88
- type: StringConstructor;
89
- default: Size;
90
- options: Size[];
91
- }
92
- export interface FontVariationSettingsProps {
93
- type: ObjectConstructor;
94
- default: FontVariationSettings;
95
- }
96
- export interface FillProps {
97
- type: BooleanConstructor;
98
- default: boolean;
99
- }
100
- export interface WeightProps {
101
- type: StringConstructor;
102
- default: Weight;
103
- options: Weight[];
104
- }
105
- export interface TestIdProps {
106
- type: StringConstructor;
107
- default: string;
108
- }
109
- export interface OnClickProps {
110
- type: FunctionConstructor;
111
- default: () => void;
112
- }
113
- export interface IconConfig {
114
- name: string;
115
- class: string;
116
- props: {
117
- color: ColorProps;
118
- image: ImageProps;
119
- variation: VariationProps;
120
- size: SizeProps;
121
- fontVariationSettings: FontVariationSettingsProps;
122
- fill: FillProps;
123
- weight: WeightProps;
124
- testId: TestIdProps;
125
- onClick: OnClickProps;
126
- };
127
- }
128
- declare const IconConfig: IconConfig;
129
- export default IconConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsIcon, DsIconProps } from './Icon';
2
-
3
- export { DsIcon };
4
- export type { DsIconProps };
@@ -1,151 +0,0 @@
1
- export declare const InputType: {
2
- readonly Text: "text";
3
- readonly Password: "password";
4
- readonly Email: "email";
5
- readonly Date: "date";
6
- readonly Number: "number";
7
- };
8
- export type InputType = (typeof InputType)[keyof typeof InputType];
9
- export declare const Size: {
10
- readonly Small: "small";
11
- readonly Medium: "medium";
12
- readonly Large: "large";
13
- };
14
- export type Size = (typeof Size)[keyof typeof Size];
15
- export declare const Status: {
16
- readonly Default: "";
17
- readonly Error: "error";
18
- readonly Success: "success";
19
- };
20
- export type Status = (typeof Status)[keyof typeof Status];
21
- export declare const TooltipPlacement: {
22
- readonly Center: "center";
23
- readonly End: "end";
24
- readonly Initial: "initial";
25
- };
26
- export type TooltipPlacement = (typeof TooltipPlacement)[keyof typeof TooltipPlacement];
27
- export declare const TooltipPosition: {
28
- readonly Top: "top";
29
- readonly Right: "right";
30
- readonly Bottom: "bottom";
31
- readonly Left: "left";
32
- };
33
- export type TooltipPosition = (typeof TooltipPosition)[keyof typeof TooltipPosition];
34
- export interface NameProps {
35
- type: StringConstructor;
36
- required: boolean;
37
- }
38
- export interface TestIdProps {
39
- type: StringConstructor;
40
- default: string;
41
- }
42
- export interface TypeProps {
43
- type: StringConstructor;
44
- default: InputType;
45
- options: InputType[];
46
- }
47
- export interface AnimatedProps {
48
- type: BooleanConstructor;
49
- default: boolean;
50
- }
51
- export interface DisabledProps {
52
- type: BooleanConstructor;
53
- default: boolean;
54
- }
55
- export interface SizeProps {
56
- type: StringConstructor;
57
- default: Size;
58
- options: Size[];
59
- }
60
- export interface LabelProps {
61
- type: StringConstructor;
62
- default: string;
63
- }
64
- export interface PlaceholderProps {
65
- type: StringConstructor;
66
- default: string;
67
- }
68
- export interface ValueProps {
69
- type: StringConstructor;
70
- default: string;
71
- }
72
- export interface MinProps {
73
- type: StringConstructor;
74
- default: string;
75
- }
76
- export interface MaxProps {
77
- type: StringConstructor;
78
- default: string;
79
- }
80
- export interface StatusProps {
81
- type: StringConstructor;
82
- default: Status;
83
- options: Status[];
84
- }
85
- export interface FeedbackProps {
86
- type: StringConstructor;
87
- default: string;
88
- }
89
- export interface HasFeedbackProps {
90
- type: BooleanConstructor;
91
- default: boolean;
92
- }
93
- export interface NoMarginProps {
94
- type: BooleanConstructor;
95
- default: boolean;
96
- }
97
- export interface IconProps {
98
- type: StringConstructor;
99
- default: string;
100
- }
101
- export interface TooltipProps {
102
- type: StringConstructor;
103
- default: string;
104
- }
105
- export interface TooltipPlacementProps {
106
- type: StringConstructor;
107
- default: TooltipPlacement;
108
- options: TooltipPlacement[];
109
- }
110
- export interface TooltipPositionProps {
111
- type: StringConstructor;
112
- default: TooltipPosition;
113
- options: TooltipPosition[];
114
- }
115
- export interface MaskProps {
116
- type: StringConstructor;
117
- default: string;
118
- }
119
- export interface OnChangeHandlerProps {
120
- type: FunctionConstructor;
121
- default: (event: React.ChangeEvent<HTMLInputElement>) => void;
122
- }
123
- export interface InputConfig {
124
- name: string;
125
- class: string;
126
- props: {
127
- name: NameProps;
128
- testId: TestIdProps;
129
- type: TypeProps;
130
- animated: AnimatedProps;
131
- disabled: DisabledProps;
132
- size: SizeProps;
133
- label: LabelProps;
134
- placeholder: PlaceholderProps;
135
- value: ValueProps;
136
- min: MinProps;
137
- max: MaxProps;
138
- status: StatusProps;
139
- feedback: FeedbackProps;
140
- hasFeedback: HasFeedbackProps;
141
- noMargin: NoMarginProps;
142
- icon: IconProps;
143
- tooltip: TooltipProps;
144
- tooltipPlacement: TooltipPlacementProps;
145
- tooltipPosition: TooltipPositionProps;
146
- mask: MaskProps;
147
- onChangeHandler: OnChangeHandlerProps;
148
- };
149
- }
150
- declare const InputConfig: InputConfig;
151
- export default InputConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsInput, DsInputProps } from './Input';
2
-
3
- export { DsInput };
4
- export type { DsInputProps };
@@ -1,54 +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 BackgroundColor: {
8
- readonly None: "";
9
- readonly Neutral20: "neutral-20";
10
- readonly Neutral10: "neutral-10";
11
- readonly Neutral05: "neutral-05";
12
- readonly Neutral00: "neutral-00";
13
- };
14
- export type BackgroundColor = (typeof BackgroundColor)[keyof typeof BackgroundColor];
15
- export interface SizeProps {
16
- type: StringConstructor;
17
- default: Size;
18
- options: Size[];
19
- }
20
- export interface OpacityProps {
21
- type: BooleanConstructor;
22
- default: boolean;
23
- }
24
- export interface FullscreenProps {
25
- type: BooleanConstructor;
26
- default: boolean;
27
- }
28
- export interface BackgroundColorProps {
29
- type: StringConstructor;
30
- default: BackgroundColor;
31
- options: BackgroundColor[];
32
- }
33
- export interface IdProps {
34
- type: StringConstructor;
35
- default: string;
36
- }
37
- export interface TestIdProps {
38
- type: StringConstructor;
39
- default: string;
40
- }
41
- export interface LoadingConfig {
42
- name: string;
43
- class: string;
44
- props: {
45
- id: IdProps;
46
- testId: TestIdProps;
47
- size: SizeProps;
48
- opacity: OpacityProps;
49
- fullscreen: FullscreenProps;
50
- backgroundColor: BackgroundColorProps;
51
- };
52
- }
53
- declare const LoadingConfig: LoadingConfig;
54
- export default LoadingConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsLoading, DsLoadingProps } from './Loading';
2
-
3
- export { DsLoading };
4
- export type { DsLoadingProps };
@@ -1,53 +0,0 @@
1
- export interface IdProps {
2
- type: StringConstructor;
3
- default: string;
4
- }
5
- export interface NameProps {
6
- type: StringConstructor;
7
- default: string;
8
- }
9
- export interface TestIdProps {
10
- type: StringConstructor;
11
- default: string;
12
- }
13
- export interface LabelProps {
14
- type: StringConstructor;
15
- default: string;
16
- }
17
- export interface ValueProps {
18
- type: StringConstructor;
19
- default: string;
20
- }
21
- export interface DisabledProps {
22
- type: BooleanConstructor;
23
- default: boolean;
24
- }
25
- export interface DetailProps {
26
- type: StringConstructor;
27
- default: string;
28
- }
29
- export interface CheckedProps {
30
- type: BooleanConstructor;
31
- default: boolean;
32
- }
33
- export interface OnChangeHandlerProps {
34
- type: FunctionConstructor;
35
- default: () => void;
36
- }
37
- export interface OptionConfig {
38
- name: string;
39
- class: string;
40
- props: {
41
- id: IdProps;
42
- name: NameProps;
43
- testId: TestIdProps;
44
- label: LabelProps;
45
- value: ValueProps;
46
- disabled: DisabledProps;
47
- detail: DetailProps;
48
- checked: CheckedProps;
49
- onChangeHandler: OnChangeHandlerProps;
50
- };
51
- }
52
- declare const OptionConfig: OptionConfig;
53
- export default OptionConfig;
@@ -1,4 +0,0 @@
1
- import { default as DsOption, DsOptionProps } from './Option';
2
-
3
- export { DsOption };
4
- export type { DsOptionProps };
@@ -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 };