@ceed/cds 0.0.185 → 0.0.187-treeshaking.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (321) hide show
  1. package/dist/_virtual/_commonjsHelpers.js +30 -0
  2. package/dist/_virtual/bind-all.js +3 -0
  3. package/dist/_virtual/bind.js +3 -0
  4. package/dist/_virtual/colorManipulator.js +5 -0
  5. package/dist/_virtual/colorManipulator2.js +3 -0
  6. package/dist/_virtual/createStyled.js +7 -0
  7. package/dist/_virtual/createStyled2.js +3 -0
  8. package/dist/_virtual/extends.js +3 -0
  9. package/dist/_virtual/index.js +5 -0
  10. package/dist/_virtual/index10.js +6 -0
  11. package/dist/_virtual/index11.js +6 -0
  12. package/dist/_virtual/index12.js +6 -0
  13. package/dist/_virtual/index2.js +3 -0
  14. package/dist/_virtual/index3.js +7 -0
  15. package/dist/_virtual/index4.js +3 -0
  16. package/dist/_virtual/index5.js +6 -0
  17. package/dist/_virtual/index6.js +6 -0
  18. package/dist/_virtual/index7.js +6 -0
  19. package/dist/_virtual/index8.js +6 -0
  20. package/dist/_virtual/index9.js +6 -0
  21. package/dist/_virtual/interopRequireDefault.js +3 -0
  22. package/dist/_virtual/objectWithoutPropertiesLoose.js +3 -0
  23. package/dist/components/Accordions/Accordions.js +43 -0
  24. package/dist/components/Accordions/index.d.ts +2 -2
  25. package/dist/components/Autocomplete/Autocomplete.js +196 -0
  26. package/dist/components/Autocomplete/index.d.ts +2 -2
  27. package/dist/components/Autocomplete/index.js +5 -0
  28. package/dist/components/Avatar/Avatar.js +42 -0
  29. package/dist/components/Avatar/index.d.ts +2 -2
  30. package/dist/components/Box/Box.js +8 -0
  31. package/dist/components/Box/index.d.ts +2 -2
  32. package/dist/components/Box/index.js +5 -0
  33. package/dist/components/Breadcrumbs/Breadcrumbs.js +47 -0
  34. package/dist/components/Breadcrumbs/index.d.ts +2 -2
  35. package/dist/components/Button/Button.js +20 -0
  36. package/dist/components/Button/index.d.ts +2 -2
  37. package/dist/components/Button/index.js +5 -0
  38. package/dist/components/Calendar/Calendar.d.ts +1 -1
  39. package/dist/components/Calendar/Calendar.js +333 -0
  40. package/dist/components/Calendar/hooks/use-calendar-props.d.ts +3 -3
  41. package/dist/components/Calendar/hooks/use-calendar-props.js +74 -0
  42. package/dist/components/Calendar/hooks/use-calendar.d.ts +1 -1
  43. package/dist/components/Calendar/hooks/use-calendar.js +247 -0
  44. package/dist/components/Calendar/index.d.ts +2 -2
  45. package/dist/components/Calendar/index.js +5 -0
  46. package/dist/components/Calendar/utils/index.js +74 -0
  47. package/dist/components/Card/Card.js +20 -0
  48. package/dist/components/Card/index.d.ts +2 -2
  49. package/dist/components/Checkbox/Checkbox.js +19 -0
  50. package/dist/components/Checkbox/index.d.ts +2 -2
  51. package/dist/components/Checkbox/index.js +5 -0
  52. package/dist/components/Chip/Chip.js +8 -0
  53. package/dist/components/Chip/index.d.ts +2 -2
  54. package/dist/components/Chip/index.js +5 -0
  55. package/dist/components/Container/Container.js +49 -0
  56. package/dist/components/Container/index.d.ts +2 -2
  57. package/dist/components/CurrencyInput/CurrencyInput.js +91 -0
  58. package/dist/components/CurrencyInput/hooks/use-currency-setting.js +167 -0
  59. package/dist/components/CurrencyInput/index.d.ts +2 -2
  60. package/dist/components/CurrencyInput/index.js +5 -0
  61. package/dist/components/DataTable/DataTable.d.ts +1 -1
  62. package/dist/components/DataTable/DataTable.js +568 -0
  63. package/dist/components/DataTable/index.d.ts +2 -2
  64. package/dist/components/DataTable/types.d.ts +7 -7
  65. package/dist/components/DatePicker/DatePicker.d.ts +1 -1
  66. package/dist/components/DatePicker/DatePicker.js +210 -0
  67. package/dist/components/DatePicker/index.d.ts +2 -2
  68. package/dist/components/DatePicker/index.js +5 -0
  69. package/dist/components/DateRangePicker/DateRangePicker.d.ts +1 -1
  70. package/dist/components/DateRangePicker/DateRangePicker.js +213 -0
  71. package/dist/components/DateRangePicker/index.d.ts +2 -2
  72. package/dist/components/DialogActions/DialogActions.js +14 -0
  73. package/dist/components/DialogActions/index.d.ts +2 -2
  74. package/dist/components/DialogActions/index.js +5 -0
  75. package/dist/components/DialogContent/DialogContent.js +11 -0
  76. package/dist/components/DialogContent/index.d.ts +2 -2
  77. package/dist/components/DialogContent/index.js +5 -0
  78. package/dist/components/DialogFrame/DialogFrame.d.ts +1 -1
  79. package/dist/components/DialogFrame/DialogFrame.js +31 -0
  80. package/dist/components/DialogFrame/index.d.ts +2 -2
  81. package/dist/components/DialogTitle/DialogTitle.js +11 -0
  82. package/dist/components/DialogTitle/index.d.ts +2 -2
  83. package/dist/components/DialogTitle/index.js +5 -0
  84. package/dist/components/Divider/Divider.js +19 -0
  85. package/dist/components/Divider/index.d.ts +2 -2
  86. package/dist/components/Drawer/Drawer.js +40 -0
  87. package/dist/components/Drawer/index.d.ts +2 -2
  88. package/dist/components/Dropdown/Dropdown.js +8 -0
  89. package/dist/components/Dropdown/index.d.ts +2 -2
  90. package/dist/components/Dropdown/index.js +5 -0
  91. package/dist/components/FormControl/FormControl.js +15 -0
  92. package/dist/components/FormControl/index.d.ts +2 -2
  93. package/dist/components/FormControl/index.js +5 -0
  94. package/dist/components/FormHelperText/FormHelperText.js +8 -0
  95. package/dist/components/FormHelperText/index.d.ts +2 -2
  96. package/dist/components/FormHelperText/index.js +5 -0
  97. package/dist/components/FormLabel/FormLabel.js +8 -0
  98. package/dist/components/FormLabel/index.d.ts +2 -2
  99. package/dist/components/FormLabel/index.js +5 -0
  100. package/dist/components/Grid/index.d.ts +2 -2
  101. package/dist/components/IconButton/IconButton.js +20 -0
  102. package/dist/components/IconButton/index.d.ts +2 -2
  103. package/dist/components/IconButton/index.js +5 -0
  104. package/dist/components/Input/Input.d.ts +1 -1
  105. package/dist/components/Input/Input.js +60 -0
  106. package/dist/components/Input/index.d.ts +2 -2
  107. package/dist/components/Input/index.js +5 -0
  108. package/dist/components/InsetDrawer/InsetDrawer.js +30 -0
  109. package/dist/components/InsetDrawer/index.d.ts +2 -2
  110. package/dist/components/Markdown/Markdown.d.ts +6 -22
  111. package/dist/components/Markdown/Markdown.js +36 -0
  112. package/dist/components/Markdown/index.d.ts +2 -2
  113. package/dist/components/Menu/Menu.js +43 -0
  114. package/dist/components/Menu/index.d.ts +2 -2
  115. package/dist/components/Menu/index.js +6 -0
  116. package/dist/components/MenuButton/MenuButton.d.ts +6 -4
  117. package/dist/components/MenuButton/MenuButton.js +26 -0
  118. package/dist/components/Modal/Modal.d.ts +4 -4
  119. package/dist/components/Modal/Modal.js +43 -0
  120. package/dist/components/Modal/index.d.ts +2 -2
  121. package/dist/components/MonthPicker/MonthPicker.d.ts +1 -1
  122. package/dist/components/MonthPicker/MonthPicker.js +162 -0
  123. package/dist/components/MonthPicker/index.d.ts +2 -2
  124. package/dist/components/MonthRangePicker/MonthRangePicker.d.ts +1 -1
  125. package/dist/components/MonthRangePicker/MonthRangePicker.js +172 -0
  126. package/dist/components/MonthRangePicker/index.d.ts +2 -2
  127. package/dist/components/NavigationGroup/NavigationGroup.js +42 -0
  128. package/dist/components/NavigationGroup/index.d.ts +2 -2
  129. package/dist/components/NavigationItem/NavigationItem.js +45 -0
  130. package/dist/components/NavigationItem/index.d.ts +2 -2
  131. package/dist/components/Navigator/Navigator.js +30 -0
  132. package/dist/components/Navigator/index.d.ts +2 -2
  133. package/dist/components/Pagination/Pagination.d.ts +2 -2
  134. package/dist/components/Pagination/Pagination.js +117 -0
  135. package/dist/components/Pagination/index.d.ts +2 -2
  136. package/dist/components/Pagination/index.js +5 -0
  137. package/dist/components/PercentageInput/PercentageInput.js +85 -0
  138. package/dist/components/PercentageInput/index.d.ts +2 -2
  139. package/dist/components/Radio/Radio.js +11 -0
  140. package/dist/components/Radio/index.d.ts +2 -2
  141. package/dist/components/RadioList/RadioList.d.ts +1 -1
  142. package/dist/components/RadioList/RadioList.js +18 -0
  143. package/dist/components/RadioList/index.d.ts +2 -2
  144. package/dist/components/Select/Select.d.ts +1 -1
  145. package/dist/components/Select/Select.js +56 -0
  146. package/dist/components/Select/index.d.ts +2 -2
  147. package/dist/components/Select/index.js +6 -0
  148. package/dist/components/Sheet/Sheet.js +8 -0
  149. package/dist/components/Sheet/index.d.ts +2 -2
  150. package/dist/components/Sheet/index.js +5 -0
  151. package/dist/components/Stack/index.d.ts +2 -2
  152. package/dist/components/Stack/index.js +2 -0
  153. package/dist/components/Stepper/Stepper.js +66 -0
  154. package/dist/components/Stepper/index.d.ts +2 -2
  155. package/dist/components/Switch/Switch.js +46 -0
  156. package/dist/components/Switch/index.d.ts +2 -2
  157. package/dist/components/Table/Table.js +64 -0
  158. package/dist/components/Table/index.d.ts +2 -2
  159. package/dist/components/Tabs/Tabs.js +17 -0
  160. package/dist/components/Tabs/index.d.ts +2 -2
  161. package/dist/components/Textarea/Textarea.d.ts +3 -17
  162. package/dist/components/Textarea/Textarea.js +31 -0
  163. package/dist/components/Textarea/index.d.ts +2 -2
  164. package/dist/components/Textarea/index.js +5 -0
  165. package/dist/components/ThemeProvider/ThemeProvider.d.ts +7 -7
  166. package/dist/components/ThemeProvider/ThemeProvider.js +240 -0
  167. package/dist/components/ThemeProvider/index.d.ts +2 -2
  168. package/dist/components/Tooltip/Tooltip.js +19 -0
  169. package/dist/components/Tooltip/index.d.ts +2 -2
  170. package/dist/components/Tooltip/index.js +5 -0
  171. package/dist/components/Typography/Typography.js +19 -0
  172. package/dist/components/Typography/index.d.ts +2 -2
  173. package/dist/components/Typography/index.js +5 -0
  174. package/dist/components/Uploader/Uploader.d.ts +4 -3
  175. package/dist/components/Uploader/Uploader.js +402 -0
  176. package/dist/components/Uploader/index.d.ts +2 -2
  177. package/dist/components/index.d.ts +53 -53
  178. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/adapter/element-adapter-native-data-key.js +8 -0
  179. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/adapter/external-adapter.js +245 -0
  180. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/combine.js +1 -0
  181. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/external/adapter.js +1 -0
  182. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/external/file.js +1 -0
  183. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/prevent-unhandled.js +1 -0
  184. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/get-element-from-point-without-honey-pot.js +19 -0
  185. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/honey-pot-data-attribute.js +5 -0
  186. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/is-honey-pot-element.js +7 -0
  187. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/dispatch-consumer-event.js +128 -0
  188. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/lifecycle-manager.js +340 -0
  189. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/usage-ledger.js +33 -0
  190. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-adapter.js +60 -0
  191. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-drop-target.js +312 -0
  192. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-monitor.js +96 -0
  193. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/combine.js +13 -0
  194. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/external/file.js +23 -0
  195. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/once.js +18 -0
  196. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/prevent-unhandled.js +102 -0
  197. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/add-attribute.js +10 -0
  198. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/android.js +3 -0
  199. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/count-events-for-safari.js +123 -0
  200. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/is-entering-window.js +55 -0
  201. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/is-from-another-window.js +18 -0
  202. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/is-leaving-window.js +55 -0
  203. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/detect-broken-drag.js +49 -0
  204. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/get-input.js +16 -0
  205. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/is-firefox.js +15 -0
  206. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/is-safari.js +18 -0
  207. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/media-types/text-media-type.js +8 -0
  208. package/dist/external/@babel/runtime/helpers/esm/extends.js +16 -0
  209. package/dist/external/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +14 -0
  210. package/dist/external/@babel/runtime/helpers/extends.js +28 -0
  211. package/dist/external/@babel/runtime/helpers/interopRequireDefault.js +19 -0
  212. package/dist/external/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +26 -0
  213. package/dist/external/@emotion/cache/dist/emotion-cache.esm.js +653 -0
  214. package/dist/external/@emotion/memoize/dist/emotion-memoize.esm.js +9 -0
  215. package/dist/external/@emotion/sheet/dist/emotion-sheet.esm.js +154 -0
  216. package/dist/external/@emotion/weak-memoize/dist/emotion-weak-memoize.esm.js +16 -0
  217. package/dist/external/@mui/icons-material/esm/ArrowUpwardRounded.js +8 -0
  218. package/dist/external/@mui/icons-material/esm/CalendarToday.js +8 -0
  219. package/dist/external/@mui/icons-material/esm/Check.js +8 -0
  220. package/dist/external/@mui/icons-material/esm/ChevronLeft.js +8 -0
  221. package/dist/external/@mui/icons-material/esm/ChevronRight.js +8 -0
  222. package/dist/external/@mui/icons-material/esm/ClearRounded.js +8 -0
  223. package/dist/external/@mui/icons-material/esm/Close.js +8 -0
  224. package/dist/external/@mui/icons-material/esm/CloudUploadRounded.js +8 -0
  225. package/dist/external/@mui/icons-material/esm/ExpandMore.js +8 -0
  226. package/dist/external/@mui/icons-material/esm/Info.js +8 -0
  227. package/dist/external/@mui/icons-material/esm/UploadFileRounded.js +8 -0
  228. package/dist/external/@mui/material/SvgIcon/SvgIcon.js +186 -0
  229. package/dist/external/@mui/material/SvgIcon/svgIconClasses.js +9 -0
  230. package/dist/external/@mui/material/colors/blue.js +18 -0
  231. package/dist/external/@mui/material/colors/common.js +6 -0
  232. package/dist/external/@mui/material/colors/green.js +18 -0
  233. package/dist/external/@mui/material/colors/grey.js +18 -0
  234. package/dist/external/@mui/material/colors/lightBlue.js +18 -0
  235. package/dist/external/@mui/material/colors/orange.js +18 -0
  236. package/dist/external/@mui/material/colors/purple.js +18 -0
  237. package/dist/external/@mui/material/colors/red.js +18 -0
  238. package/dist/external/@mui/material/styles/createMixins.js +19 -0
  239. package/dist/external/@mui/material/styles/createPalette.js +308 -0
  240. package/dist/external/@mui/material/styles/createTheme.js +82 -0
  241. package/dist/external/@mui/material/styles/createTransitions.js +91 -0
  242. package/dist/external/@mui/material/styles/createTypography.js +93 -0
  243. package/dist/external/@mui/material/styles/defaultTheme.js +5 -0
  244. package/dist/external/@mui/material/styles/identifier.js +3 -0
  245. package/dist/external/@mui/material/styles/rootShouldForwardProp.js +5 -0
  246. package/dist/external/@mui/material/styles/shadows.js +11 -0
  247. package/dist/external/@mui/material/styles/slotShouldForwardProp.js +6 -0
  248. package/dist/external/@mui/material/styles/styled.js +12 -0
  249. package/dist/external/@mui/material/styles/useThemeProps.js +17 -0
  250. package/dist/external/@mui/material/styles/zIndex.js +14 -0
  251. package/dist/external/@mui/material/utils/capitalize.js +5 -0
  252. package/dist/external/@mui/material/utils/createSvgIcon.js +24 -0
  253. package/dist/external/@mui/styled-engine/GlobalStyles/GlobalStyles.js +24 -0
  254. package/dist/external/@mui/styled-engine/StyledEngineProvider/StyledEngineProvider.js +37 -0
  255. package/dist/external/@mui/styled-engine/index.js +38 -0
  256. package/dist/external/@mui/system/colorManipulator.js +385 -0
  257. package/dist/external/@mui/system/createStyled.js +270 -0
  258. package/dist/external/@mui/system/esm/borders.js +51 -0
  259. package/dist/external/@mui/system/esm/breakpoints.js +66 -0
  260. package/dist/external/@mui/system/esm/compose.js +26 -0
  261. package/dist/external/@mui/system/esm/createTheme/applyStyles.js +76 -0
  262. package/dist/external/@mui/system/esm/createTheme/createBreakpoints.js +82 -0
  263. package/dist/external/@mui/system/esm/createTheme/createSpacing.js +34 -0
  264. package/dist/external/@mui/system/esm/createTheme/createTheme.js +45 -0
  265. package/dist/external/@mui/system/esm/createTheme/index.js +3 -0
  266. package/dist/external/@mui/system/esm/createTheme/shape.js +5 -0
  267. package/dist/external/@mui/system/esm/cssGrid.js +86 -0
  268. package/dist/external/@mui/system/esm/memoize.js +11 -0
  269. package/dist/external/@mui/system/esm/merge.js +12 -0
  270. package/dist/external/@mui/system/esm/palette.js +28 -0
  271. package/dist/external/@mui/system/esm/responsivePropType.js +5 -0
  272. package/dist/external/@mui/system/esm/sizing.js +67 -0
  273. package/dist/external/@mui/system/esm/spacing.js +144 -0
  274. package/dist/external/@mui/system/esm/style.js +77 -0
  275. package/dist/external/@mui/system/esm/styleFunctionSx/defaultSxConfig.js +293 -0
  276. package/dist/external/@mui/system/esm/styleFunctionSx/extendSxProp.js +51 -0
  277. package/dist/external/@mui/system/esm/styleFunctionSx/index.js +3 -0
  278. package/dist/external/@mui/system/esm/styleFunctionSx/styleFunctionSx.js +129 -0
  279. package/dist/external/@mui/system/esm/useTheme.js +9 -0
  280. package/dist/external/@mui/system/esm/useThemeProps/getThemeProps.js +15 -0
  281. package/dist/external/@mui/system/esm/useThemeProps/useThemeProps.js +22 -0
  282. package/dist/external/@mui/system/esm/useThemeWithoutDefault.js +12 -0
  283. package/dist/external/@mui/utils/ClassNameGenerator/ClassNameGenerator.js +18 -0
  284. package/dist/external/@mui/utils/capitalize/capitalize.js +14 -0
  285. package/dist/external/@mui/utils/capitalize/index.js +1 -0
  286. package/dist/external/@mui/utils/clamp/clamp.js +5 -0
  287. package/dist/external/@mui/utils/clamp/index.js +1 -0
  288. package/dist/external/@mui/utils/composeClasses/composeClasses.js +23 -0
  289. package/dist/external/@mui/utils/deepmerge/deepmerge.js +44 -0
  290. package/dist/external/@mui/utils/deepmerge/index.js +1 -0
  291. package/dist/external/@mui/utils/formatMuiErrorMessage/formatMuiErrorMessage.js +21 -0
  292. package/dist/external/@mui/utils/formatMuiErrorMessage/index.js +1 -0
  293. package/dist/external/@mui/utils/generateUtilityClass/generateUtilityClass.js +22 -0
  294. package/dist/external/@mui/utils/generateUtilityClasses/generateUtilityClasses.js +11 -0
  295. package/dist/external/@mui/utils/getDisplayName/getDisplayName.js +49 -0
  296. package/dist/external/@mui/utils/getDisplayName/index.js +1 -0
  297. package/dist/external/@mui/utils/resolveProps/resolveProps.js +37 -0
  298. package/dist/external/bind-event-listener/dist/bind-all.js +54 -0
  299. package/dist/external/bind-event-listener/dist/bind.js +21 -0
  300. package/dist/external/bind-event-listener/dist/index.js +21 -0
  301. package/dist/external/clsx/dist/clsx.js +3 -0
  302. package/dist/external/object-assign/index.js +99 -0
  303. package/dist/external/prop-types/checkPropTypes.js +115 -0
  304. package/dist/external/prop-types/factoryWithThrowingShims.js +74 -0
  305. package/dist/external/prop-types/factoryWithTypeCheckers.js +625 -0
  306. package/dist/external/prop-types/index.js +33 -0
  307. package/dist/external/prop-types/lib/ReactPropTypesSecret.js +21 -0
  308. package/dist/external/prop-types/lib/has.js +11 -0
  309. package/dist/external/raf-schd/dist/raf-schd.esm.js +34 -0
  310. package/dist/external/stylis/src/Enum.js +12 -0
  311. package/dist/external/stylis/src/Middleware.js +32 -0
  312. package/dist/external/stylis/src/Parser.js +193 -0
  313. package/dist/external/stylis/src/Serializer.js +38 -0
  314. package/dist/external/stylis/src/Tokenizer.js +223 -0
  315. package/dist/external/stylis/src/Utility.js +117 -0
  316. package/dist/hooks/use-controlled-state/index.js +23 -0
  317. package/dist/index.d.ts +1 -1
  318. package/dist/index.js +52 -2
  319. package/dist/libs/rehype-accent/index.js +39 -0
  320. package/framer/index.js +30 -30
  321. package/package.json +8 -4
@@ -0,0 +1,240 @@
1
+ import React__default from 'react';
2
+ import { extendTheme, inputClasses, checkboxClasses, CssVarsProvider, CssBaseline } from '@mui/joy';
3
+ export { CssBaseline, extendTheme } from '@mui/joy';
4
+
5
+ const colorScheme = {
6
+ palette: {
7
+ danger: {
8
+ "50": "#FEF3F2",
9
+ "100": "#FDE6E5",
10
+ "200": "#FBC7C4",
11
+ "300": "#F89E99",
12
+ "400": "#F46E66",
13
+ "500": "#DC0D00",
14
+ "600": "#AB0F00",
15
+ "700": "#791000",
16
+ "800": "#430A0A",
17
+ "900": "#240505",
18
+ },
19
+ neutral: {
20
+ "50": "#FAFBFC",
21
+ "100": "#F3F5F7",
22
+ "200": "#EBECF0",
23
+ "300": "#D1D5DB",
24
+ "400": "#A2AAB8",
25
+ "500": "#5E6C83",
26
+ "600": "#505E79",
27
+ "700": "#253858",
28
+ "800": "#071B36",
29
+ "900": "#0B0D0E",
30
+ },
31
+ primary: {
32
+ "50": "#F2F7FE",
33
+ "100": "#E8F0FD",
34
+ "200": "#CCDFFC",
35
+ "300": "#9DC1F9",
36
+ "400": "#4D8EF3",
37
+ "500": "#015DEE",
38
+ "600": "#0154D6",
39
+ "700": "#0141A7",
40
+ "800": "#00255F",
41
+ "900": "#000F26",
42
+ },
43
+ warning: {
44
+ "50": "#FEF8F2",
45
+ "100": "#FEF1E5",
46
+ "200": "#FCE1C4",
47
+ "300": "#FABD7F",
48
+ "400": "#F57C00",
49
+ "500": "#AF5100",
50
+ "600": "#843600",
51
+ "700": "#672600",
52
+ "800": "#421400",
53
+ "900": "#1d1002",
54
+ },
55
+ },
56
+ };
57
+ const defaultTheme = extendTheme({
58
+ cssVarPrefix: "ceed",
59
+ spacing: 4,
60
+ breakpoints: {
61
+ values: {
62
+ xs: 0,
63
+ sm: 600,
64
+ md: 900,
65
+ lg: 1280,
66
+ xl: 1920,
67
+ },
68
+ },
69
+ fontFamily: {
70
+ display: '"Poppins", var(--ceed-fontFamily-fallback, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol")',
71
+ },
72
+ typography: {
73
+ "marketing-lg": {
74
+ color: "var(--ceed-palette-text-primary, var(--ceed-palette-neutral-800, #171A1C))",
75
+ fontFamily: 'var(--ceed-fontFamily-display, "Poppins", var(--ceed-fontFamily-fallback, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"))',
76
+ fontSize: "var(--ceed-fontSize-marketing-lg, 2.625rem)",
77
+ fontWeight: "var(--ceed-fontWeight-lg, 600)",
78
+ letterSpacing: "-0.025em",
79
+ lineHeight: "var(--ceed-lineHeight-xs, 1.33334)",
80
+ },
81
+ "marketing-md": {
82
+ color: "var(--ceed-palette-text-primary, var(--ceed-palette-neutral-800, #171A1C))",
83
+ fontFamily: 'var(--ceed-fontFamily-display, "Poppins", var(--ceed-fontFamily-fallback, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"))',
84
+ fontSize: "var(--ceed-fontSize-marketing-md, 2rem)",
85
+ fontWeight: "var(--ceed-fontWeight-lg, 600)",
86
+ letterSpacing: "-0.025em",
87
+ lineHeight: "var(--ceed-lineHeight-xs, 1.33334)",
88
+ },
89
+ "marketing-sm": {
90
+ color: "var(--ceed-palette-text-primary, var(--ceed-palette-neutral-800, #171A1C))",
91
+ fontFamily: 'var(--ceed-fontFamily-display, "Poppins", var(--ceed-fontFamily-fallback, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"))',
92
+ fontSize: "var(--ceed-fontSize-marketing-sm, 1.5rem)",
93
+ fontWeight: "var(--ceed-fontWeight-md, 500)",
94
+ letterSpacing: "-0.025em",
95
+ lineHeight: "var(--ceed-lineHeight-xs, 1.33334)",
96
+ },
97
+ },
98
+ colorSchemes: {
99
+ light: colorScheme,
100
+ dark: colorScheme,
101
+ },
102
+ components: {
103
+ DatePicker: {
104
+ defaultProps: {
105
+ size: "md",
106
+ },
107
+ styleOverrides: {
108
+ root: {
109
+ [`.${inputClasses.root}`]: {
110
+ // NOTE: placeholder char 를 텍스트로 표시하므로 동일한 너비를 가지는 mono font 를 사용해야 이질감이 없다.
111
+ "font-family": "monospace",
112
+ },
113
+ },
114
+ },
115
+ },
116
+ DateRangePicker: {
117
+ defaultProps: {
118
+ size: "md",
119
+ },
120
+ styleOverrides: {
121
+ root: {
122
+ [`.${inputClasses.root}`]: {
123
+ // NOTE: placeholder char 를 텍스트로 표시하므로 동일한 너비를 가지는 mono font 를 사용해야 이질감이 없다.
124
+ "font-family": "monospace",
125
+ },
126
+ },
127
+ },
128
+ },
129
+ MonthPicker: {
130
+ defaultProps: {
131
+ size: "md",
132
+ },
133
+ styleOverrides: {
134
+ root: {
135
+ [`.${inputClasses.root}`]: {
136
+ // NOTE: placeholder char 를 텍스트로 표시하므로 동일한 너비를 가지는 mono font 를 사용해야 이질감이 없다.
137
+ "font-family": "monospace",
138
+ },
139
+ },
140
+ },
141
+ },
142
+ MonthRangePicker: {
143
+ defaultProps: {
144
+ size: "md",
145
+ },
146
+ styleOverrides: {
147
+ root: {
148
+ [`.${inputClasses.root}`]: {
149
+ // NOTE: placeholder char 를 텍스트로 표시하므로 동일한 너비를 가지는 mono font 를 사용해야 이질감이 없다.
150
+ "font-family": "monospace",
151
+ },
152
+ },
153
+ },
154
+ },
155
+ PercentageInput: {
156
+ defaultProps: {
157
+ size: "md",
158
+ },
159
+ styleOverrides: {
160
+ root: {
161
+ [`.${inputClasses.root}`]: {
162
+ // NOTE: placeholder char 를 텍스트로 표시하므로 동일한 너비를 가지는 mono font 를 사용해야 이질감이 없다.
163
+ "font-family": "monospace",
164
+ },
165
+ },
166
+ },
167
+ },
168
+ JoyTypography: {
169
+ defaultProps: {
170
+ levelMapping: {
171
+ "marketing-lg": "div",
172
+ "marketing-md": "div",
173
+ "marketing-sm": "div",
174
+ },
175
+ },
176
+ },
177
+ JoyTable: {
178
+ defaultProps: {
179
+ size: "sm",
180
+ borderAxis: "bothBetween",
181
+ },
182
+ styleOverrides: {
183
+ root: ({ theme }) => ({
184
+ "--TableRow-stripeBackground": theme.palette.background.level1,
185
+ "--TableCell-selectedBackground": theme.palette.background.level2,
186
+ "--TableRow-hoverBackground": theme.palette.background.level3,
187
+ "& tbody tr:has([type=checkbox]:not(:checked)) th": {
188
+ "--TableCell-headBackground": "transparent",
189
+ },
190
+ "& tbody tr:has([type=checkbox]:checked):hover th": {
191
+ "--TableCell-headBackground": "var(--TableRow-hoverBackground)",
192
+ },
193
+ [`& tbody tr:has([type=checkbox]:checked):not(:hover) th`]: {
194
+ "--TableCell-headBackground": "var(--TableCell-selectedBackground)",
195
+ },
196
+ [`& tbody tr:has([type=checkbox]:checked):not(:hover) td`]: {
197
+ "--TableCell-dataBackground": "var(--TableCell-selectedBackground)",
198
+ },
199
+ [`& .${checkboxClasses.root}`]: {
200
+ verticalAlign: "middle",
201
+ },
202
+ }),
203
+ },
204
+ },
205
+ JoyTooltip: {
206
+ defaultProps: {
207
+ size: "sm",
208
+ placement: "top",
209
+ },
210
+ },
211
+ JoyAvatar: {
212
+ styleOverrides: {
213
+ root: ({ ownerState }) => ({
214
+ ...(ownerState.size === "xs" && {
215
+ width: "24px",
216
+ height: "24px",
217
+ fontSize: "12px",
218
+ }),
219
+ }),
220
+ },
221
+ },
222
+ JoyDialogTitle: {
223
+ styleOverrides: {
224
+ root: {
225
+ fontWeight: "var(--ceed-fontWeight-xl, 700)",
226
+ },
227
+ },
228
+ },
229
+ },
230
+ });
231
+ function ThemeProvider(props) {
232
+ const theme = props.theme || defaultTheme;
233
+ return (React__default.createElement(React__default.Fragment, null,
234
+ React__default.createElement(CssVarsProvider, { theme: theme },
235
+ React__default.createElement(CssBaseline, null),
236
+ props.children)));
237
+ }
238
+ ThemeProvider.displayName = "ThemeProvider";
239
+
240
+ export { ThemeProvider, defaultTheme as theme };
@@ -1,3 +1,3 @@
1
- import { ThemeProvider } from "./ThemeProvider";
2
- export * from "./ThemeProvider";
1
+ import { ThemeProvider } from "./ThemeProvider.js";
2
+ export * from "./ThemeProvider.js";
3
3
  export default ThemeProvider;
@@ -0,0 +1,19 @@
1
+ import React__default from 'react';
2
+ import { Tooltip as Tooltip$1 } from '@mui/joy';
3
+ import { motion } from 'framer-motion';
4
+
5
+ const MotionTooltip = motion(Tooltip$1);
6
+ const Tooltip = (props) => {
7
+ // prop destruction
8
+ // lib hooks
9
+ // state, ref, querystring hooks
10
+ // form hooks
11
+ // query hooks
12
+ // calculated values
13
+ // effects
14
+ // handlers
15
+ return React__default.createElement(MotionTooltip, { ...props });
16
+ };
17
+ Tooltip.displayName = "Tooltip";
18
+
19
+ export { Tooltip };
@@ -1,3 +1,3 @@
1
- import { Tooltip } from "./Tooltip";
2
- export * from "./Tooltip";
1
+ import { Tooltip } from "./Tooltip.js";
2
+ export * from "./Tooltip.js";
3
3
  export default Tooltip;
@@ -0,0 +1,5 @@
1
+ import { Tooltip } from './Tooltip.js';
2
+
3
+
4
+
5
+ export { Tooltip, Tooltip as default };
@@ -0,0 +1,19 @@
1
+ import React__default from 'react';
2
+ import { Typography as Typography$1 } from '@mui/joy';
3
+ import { motion } from 'framer-motion';
4
+
5
+ const MotionTypography = motion(Typography$1);
6
+ const Typography = (props) => {
7
+ // prop destruction
8
+ // lib hooks
9
+ // state, ref, querystring hooks
10
+ // form hooks
11
+ // query hooks
12
+ // calculated values
13
+ // effects
14
+ // handlers
15
+ return React__default.createElement(MotionTypography, { ...props });
16
+ };
17
+ Typography.displayName = "Typography";
18
+
19
+ export { Typography };
@@ -1,3 +1,3 @@
1
- import { Typography } from "./Typography";
2
- export * from "./Typography";
1
+ import { Typography } from "./Typography.js";
2
+ export * from "./Typography.js";
3
3
  export default Typography;
@@ -0,0 +1,5 @@
1
+ import { Typography } from './Typography.js';
2
+
3
+
4
+
5
+ export { Typography, Typography as default };
@@ -1,13 +1,13 @@
1
- import React from "react";
1
+ import React, { ComponentProps } from "react";
2
2
  type UserUpload = {
3
3
  id: string | number;
4
4
  name: string;
5
5
  size?: number;
6
6
  };
7
- declare const Uploader: React.MemoExoticComponent<(props: {
7
+ declare const _Uploader: React.MemoExoticComponent<(props: {
8
8
  onChange?: ((event: {
9
9
  target: {
10
- name?: string | undefined;
10
+ name?: string;
11
11
  value: File[];
12
12
  };
13
13
  }) => void) | undefined;
@@ -30,4 +30,5 @@ declare const Uploader: React.MemoExoticComponent<(props: {
30
30
  maxFileTotalSize: number;
31
31
  uploaded?: UserUpload[] | undefined;
32
32
  }) => React.JSX.Element>;
33
+ declare const Uploader: React.MemoExoticComponent<(props: ComponentProps<typeof _Uploader>) => React.JSX.Element>;
33
34
  export { Uploader };