@ceed/cds 0.0.186 → 0.0.187-treeshaking.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 (334) 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.js +26 -0
  117. package/dist/components/Modal/Modal.d.ts +4 -4
  118. package/dist/components/Modal/Modal.js +43 -0
  119. package/dist/components/Modal/index.d.ts +2 -2
  120. package/dist/components/MonthPicker/MonthPicker.d.ts +1 -1
  121. package/dist/components/MonthPicker/MonthPicker.js +162 -0
  122. package/dist/components/MonthPicker/index.d.ts +2 -2
  123. package/dist/components/MonthRangePicker/MonthRangePicker.d.ts +1 -1
  124. package/dist/components/MonthRangePicker/MonthRangePicker.js +172 -0
  125. package/dist/components/MonthRangePicker/index.d.ts +2 -2
  126. package/dist/components/NavigationGroup/NavigationGroup.js +42 -0
  127. package/dist/components/NavigationGroup/index.d.ts +2 -2
  128. package/dist/components/NavigationItem/NavigationItem.js +45 -0
  129. package/dist/components/NavigationItem/index.d.ts +2 -2
  130. package/dist/components/Navigator/Navigator.js +30 -0
  131. package/dist/components/Navigator/index.d.ts +2 -2
  132. package/dist/components/Pagination/Pagination.d.ts +2 -2
  133. package/dist/components/Pagination/Pagination.js +117 -0
  134. package/dist/components/Pagination/index.d.ts +2 -2
  135. package/dist/components/Pagination/index.js +5 -0
  136. package/dist/components/PercentageInput/PercentageInput.js +85 -0
  137. package/dist/components/PercentageInput/index.d.ts +2 -2
  138. package/dist/components/Radio/Radio.js +11 -0
  139. package/dist/components/Radio/index.d.ts +2 -2
  140. package/dist/components/RadioList/RadioList.d.ts +1 -1
  141. package/dist/components/RadioList/RadioList.js +18 -0
  142. package/dist/components/RadioList/index.d.ts +2 -2
  143. package/dist/components/Select/Select.d.ts +1 -1
  144. package/dist/components/Select/Select.js +56 -0
  145. package/dist/components/Select/index.d.ts +2 -2
  146. package/dist/components/Select/index.js +6 -0
  147. package/dist/components/Sheet/Sheet.js +8 -0
  148. package/dist/components/Sheet/index.d.ts +2 -2
  149. package/dist/components/Sheet/index.js +5 -0
  150. package/dist/components/Stack/index.d.ts +2 -2
  151. package/dist/components/Stack/index.js +2 -0
  152. package/dist/components/Stepper/Stepper.js +66 -0
  153. package/dist/components/Stepper/index.d.ts +2 -2
  154. package/dist/components/Switch/Switch.js +46 -0
  155. package/dist/components/Switch/index.d.ts +2 -2
  156. package/dist/components/Table/Table.js +64 -0
  157. package/dist/components/Table/index.d.ts +2 -2
  158. package/dist/components/Tabs/Tabs.js +17 -0
  159. package/dist/components/Tabs/index.d.ts +2 -2
  160. package/dist/components/Textarea/Textarea.d.ts +3 -17
  161. package/dist/components/Textarea/Textarea.js +31 -0
  162. package/dist/components/Textarea/index.d.ts +2 -2
  163. package/dist/components/Textarea/index.js +5 -0
  164. package/dist/components/ThemeProvider/ThemeProvider.d.ts +7 -7
  165. package/dist/components/ThemeProvider/ThemeProvider.js +240 -0
  166. package/dist/components/ThemeProvider/index.d.ts +2 -2
  167. package/dist/components/Tooltip/Tooltip.js +19 -0
  168. package/dist/components/Tooltip/index.d.ts +2 -2
  169. package/dist/components/Tooltip/index.js +5 -0
  170. package/dist/components/Typography/Typography.js +19 -0
  171. package/dist/components/Typography/index.d.ts +2 -2
  172. package/dist/components/Typography/index.js +5 -0
  173. package/dist/components/Uploader/Uploader.d.ts +4 -3
  174. package/dist/components/Uploader/Uploader.js +402 -0
  175. package/dist/components/Uploader/index.d.ts +2 -2
  176. package/dist/components/index.d.ts +53 -53
  177. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/adapter/element-adapter-native-data-key.js +8 -0
  178. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/adapter/external-adapter.js +245 -0
  179. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/combine.js +1 -0
  180. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/external/adapter.js +1 -0
  181. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/external/file.js +1 -0
  182. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/prevent-unhandled.js +1 -0
  183. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/get-element-from-point-without-honey-pot.js +19 -0
  184. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/honey-pot-data-attribute.js +5 -0
  185. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/is-honey-pot-element.js +7 -0
  186. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/dispatch-consumer-event.js +128 -0
  187. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/lifecycle-manager.js +340 -0
  188. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/usage-ledger.js +33 -0
  189. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-adapter.js +60 -0
  190. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-drop-target.js +312 -0
  191. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-monitor.js +96 -0
  192. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/combine.js +13 -0
  193. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/external/file.js +23 -0
  194. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/once.js +18 -0
  195. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/prevent-unhandled.js +102 -0
  196. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/add-attribute.js +10 -0
  197. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/android.js +3 -0
  198. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/count-events-for-safari.js +123 -0
  199. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/is-entering-window.js +55 -0
  200. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/is-from-another-window.js +18 -0
  201. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/is-leaving-window.js +55 -0
  202. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/detect-broken-drag.js +49 -0
  203. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/get-input.js +16 -0
  204. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/is-firefox.js +15 -0
  205. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/is-safari.js +18 -0
  206. package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/media-types/text-media-type.js +8 -0
  207. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/arrayLikeToArray.js +7 -0
  208. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/arrayWithHoles.js +5 -0
  209. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/arrayWithoutHoles.js +7 -0
  210. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/defineProperty.js +18 -0
  211. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/iterableToArray.js +5 -0
  212. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/iterableToArrayLimit.js +26 -0
  213. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/nonIterableRest.js +5 -0
  214. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/nonIterableSpread.js +5 -0
  215. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/slicedToArray.js +10 -0
  216. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/toConsumableArray.js +10 -0
  217. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/toPrimitive.js +14 -0
  218. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/toPropertyKey.js +9 -0
  219. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/typeof.js +11 -0
  220. package/dist/external/@atlaskit/pragmatic-drag-and-drop/external/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +12 -0
  221. package/dist/external/@babel/runtime/helpers/esm/extends.js +16 -0
  222. package/dist/external/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +14 -0
  223. package/dist/external/@babel/runtime/helpers/extends.js +28 -0
  224. package/dist/external/@babel/runtime/helpers/interopRequireDefault.js +19 -0
  225. package/dist/external/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +26 -0
  226. package/dist/external/@emotion/cache/dist/emotion-cache.esm.js +653 -0
  227. package/dist/external/@emotion/memoize/dist/emotion-memoize.esm.js +9 -0
  228. package/dist/external/@emotion/sheet/dist/emotion-sheet.esm.js +154 -0
  229. package/dist/external/@emotion/weak-memoize/dist/emotion-weak-memoize.esm.js +16 -0
  230. package/dist/external/@mui/icons-material/esm/ArrowUpwardRounded.js +8 -0
  231. package/dist/external/@mui/icons-material/esm/CalendarToday.js +8 -0
  232. package/dist/external/@mui/icons-material/esm/Check.js +8 -0
  233. package/dist/external/@mui/icons-material/esm/ChevronLeft.js +8 -0
  234. package/dist/external/@mui/icons-material/esm/ChevronRight.js +8 -0
  235. package/dist/external/@mui/icons-material/esm/ClearRounded.js +8 -0
  236. package/dist/external/@mui/icons-material/esm/Close.js +8 -0
  237. package/dist/external/@mui/icons-material/esm/CloudUploadRounded.js +8 -0
  238. package/dist/external/@mui/icons-material/esm/ExpandMore.js +8 -0
  239. package/dist/external/@mui/icons-material/esm/Info.js +8 -0
  240. package/dist/external/@mui/icons-material/esm/UploadFileRounded.js +8 -0
  241. package/dist/external/@mui/material/SvgIcon/SvgIcon.js +186 -0
  242. package/dist/external/@mui/material/SvgIcon/svgIconClasses.js +9 -0
  243. package/dist/external/@mui/material/colors/blue.js +18 -0
  244. package/dist/external/@mui/material/colors/common.js +6 -0
  245. package/dist/external/@mui/material/colors/green.js +18 -0
  246. package/dist/external/@mui/material/colors/grey.js +18 -0
  247. package/dist/external/@mui/material/colors/lightBlue.js +18 -0
  248. package/dist/external/@mui/material/colors/orange.js +18 -0
  249. package/dist/external/@mui/material/colors/purple.js +18 -0
  250. package/dist/external/@mui/material/colors/red.js +18 -0
  251. package/dist/external/@mui/material/styles/createMixins.js +19 -0
  252. package/dist/external/@mui/material/styles/createPalette.js +308 -0
  253. package/dist/external/@mui/material/styles/createTheme.js +82 -0
  254. package/dist/external/@mui/material/styles/createTransitions.js +91 -0
  255. package/dist/external/@mui/material/styles/createTypography.js +93 -0
  256. package/dist/external/@mui/material/styles/defaultTheme.js +5 -0
  257. package/dist/external/@mui/material/styles/identifier.js +3 -0
  258. package/dist/external/@mui/material/styles/rootShouldForwardProp.js +5 -0
  259. package/dist/external/@mui/material/styles/shadows.js +11 -0
  260. package/dist/external/@mui/material/styles/slotShouldForwardProp.js +6 -0
  261. package/dist/external/@mui/material/styles/styled.js +12 -0
  262. package/dist/external/@mui/material/styles/useThemeProps.js +17 -0
  263. package/dist/external/@mui/material/styles/zIndex.js +14 -0
  264. package/dist/external/@mui/material/utils/capitalize.js +5 -0
  265. package/dist/external/@mui/material/utils/createSvgIcon.js +24 -0
  266. package/dist/external/@mui/styled-engine/GlobalStyles/GlobalStyles.js +24 -0
  267. package/dist/external/@mui/styled-engine/StyledEngineProvider/StyledEngineProvider.js +37 -0
  268. package/dist/external/@mui/styled-engine/index.js +38 -0
  269. package/dist/external/@mui/system/colorManipulator.js +385 -0
  270. package/dist/external/@mui/system/createStyled.js +270 -0
  271. package/dist/external/@mui/system/esm/borders.js +51 -0
  272. package/dist/external/@mui/system/esm/breakpoints.js +66 -0
  273. package/dist/external/@mui/system/esm/compose.js +26 -0
  274. package/dist/external/@mui/system/esm/createTheme/applyStyles.js +76 -0
  275. package/dist/external/@mui/system/esm/createTheme/createBreakpoints.js +82 -0
  276. package/dist/external/@mui/system/esm/createTheme/createSpacing.js +34 -0
  277. package/dist/external/@mui/system/esm/createTheme/createTheme.js +45 -0
  278. package/dist/external/@mui/system/esm/createTheme/index.js +3 -0
  279. package/dist/external/@mui/system/esm/createTheme/shape.js +5 -0
  280. package/dist/external/@mui/system/esm/cssGrid.js +86 -0
  281. package/dist/external/@mui/system/esm/memoize.js +11 -0
  282. package/dist/external/@mui/system/esm/merge.js +12 -0
  283. package/dist/external/@mui/system/esm/palette.js +28 -0
  284. package/dist/external/@mui/system/esm/responsivePropType.js +5 -0
  285. package/dist/external/@mui/system/esm/sizing.js +67 -0
  286. package/dist/external/@mui/system/esm/spacing.js +144 -0
  287. package/dist/external/@mui/system/esm/style.js +77 -0
  288. package/dist/external/@mui/system/esm/styleFunctionSx/defaultSxConfig.js +293 -0
  289. package/dist/external/@mui/system/esm/styleFunctionSx/extendSxProp.js +51 -0
  290. package/dist/external/@mui/system/esm/styleFunctionSx/index.js +3 -0
  291. package/dist/external/@mui/system/esm/styleFunctionSx/styleFunctionSx.js +129 -0
  292. package/dist/external/@mui/system/esm/useTheme.js +9 -0
  293. package/dist/external/@mui/system/esm/useThemeProps/getThemeProps.js +15 -0
  294. package/dist/external/@mui/system/esm/useThemeProps/useThemeProps.js +22 -0
  295. package/dist/external/@mui/system/esm/useThemeWithoutDefault.js +12 -0
  296. package/dist/external/@mui/utils/ClassNameGenerator/ClassNameGenerator.js +18 -0
  297. package/dist/external/@mui/utils/capitalize/capitalize.js +14 -0
  298. package/dist/external/@mui/utils/capitalize/index.js +1 -0
  299. package/dist/external/@mui/utils/clamp/clamp.js +5 -0
  300. package/dist/external/@mui/utils/clamp/index.js +1 -0
  301. package/dist/external/@mui/utils/composeClasses/composeClasses.js +23 -0
  302. package/dist/external/@mui/utils/deepmerge/deepmerge.js +44 -0
  303. package/dist/external/@mui/utils/deepmerge/index.js +1 -0
  304. package/dist/external/@mui/utils/formatMuiErrorMessage/formatMuiErrorMessage.js +21 -0
  305. package/dist/external/@mui/utils/formatMuiErrorMessage/index.js +1 -0
  306. package/dist/external/@mui/utils/generateUtilityClass/generateUtilityClass.js +22 -0
  307. package/dist/external/@mui/utils/generateUtilityClasses/generateUtilityClasses.js +11 -0
  308. package/dist/external/@mui/utils/getDisplayName/getDisplayName.js +49 -0
  309. package/dist/external/@mui/utils/getDisplayName/index.js +1 -0
  310. package/dist/external/@mui/utils/resolveProps/resolveProps.js +37 -0
  311. package/dist/external/bind-event-listener/dist/bind-all.js +54 -0
  312. package/dist/external/bind-event-listener/dist/bind.js +21 -0
  313. package/dist/external/bind-event-listener/dist/index.js +21 -0
  314. package/dist/external/clsx/dist/clsx.js +3 -0
  315. package/dist/external/object-assign/index.js +99 -0
  316. package/dist/external/prop-types/checkPropTypes.js +115 -0
  317. package/dist/external/prop-types/factoryWithThrowingShims.js +74 -0
  318. package/dist/external/prop-types/factoryWithTypeCheckers.js +625 -0
  319. package/dist/external/prop-types/index.js +33 -0
  320. package/dist/external/prop-types/lib/ReactPropTypesSecret.js +21 -0
  321. package/dist/external/prop-types/lib/has.js +11 -0
  322. package/dist/external/raf-schd/dist/raf-schd.esm.js +34 -0
  323. package/dist/external/stylis/src/Enum.js +12 -0
  324. package/dist/external/stylis/src/Middleware.js +32 -0
  325. package/dist/external/stylis/src/Parser.js +193 -0
  326. package/dist/external/stylis/src/Serializer.js +38 -0
  327. package/dist/external/stylis/src/Tokenizer.js +223 -0
  328. package/dist/external/stylis/src/Utility.js +117 -0
  329. package/dist/hooks/use-controlled-state/index.js +23 -0
  330. package/dist/index.d.ts +1 -1
  331. package/dist/index.js +52 -2
  332. package/dist/libs/rehype-accent/index.js +39 -0
  333. package/framer/index.js +30 -30
  334. package/package.json +8 -4
@@ -0,0 +1,293 @@
1
+ import { padding, margin } from '../spacing.js';
2
+ import { borderTransform, borderRadius } from '../borders.js';
3
+ import { gap, rowGap, columnGap } from '../cssGrid.js';
4
+ import { paletteTransform } from '../palette.js';
5
+ import { sizingTransform, maxWidth } from '../sizing.js';
6
+
7
+ const defaultSxConfig = {
8
+ // borders
9
+ border: {
10
+ themeKey: 'borders',
11
+ transform: borderTransform
12
+ },
13
+ borderTop: {
14
+ themeKey: 'borders',
15
+ transform: borderTransform
16
+ },
17
+ borderRight: {
18
+ themeKey: 'borders',
19
+ transform: borderTransform
20
+ },
21
+ borderBottom: {
22
+ themeKey: 'borders',
23
+ transform: borderTransform
24
+ },
25
+ borderLeft: {
26
+ themeKey: 'borders',
27
+ transform: borderTransform
28
+ },
29
+ borderColor: {
30
+ themeKey: 'palette'
31
+ },
32
+ borderTopColor: {
33
+ themeKey: 'palette'
34
+ },
35
+ borderRightColor: {
36
+ themeKey: 'palette'
37
+ },
38
+ borderBottomColor: {
39
+ themeKey: 'palette'
40
+ },
41
+ borderLeftColor: {
42
+ themeKey: 'palette'
43
+ },
44
+ outline: {
45
+ themeKey: 'borders',
46
+ transform: borderTransform
47
+ },
48
+ outlineColor: {
49
+ themeKey: 'palette'
50
+ },
51
+ borderRadius: {
52
+ themeKey: 'shape.borderRadius',
53
+ style: borderRadius
54
+ },
55
+ // palette
56
+ color: {
57
+ themeKey: 'palette',
58
+ transform: paletteTransform
59
+ },
60
+ bgcolor: {
61
+ themeKey: 'palette',
62
+ cssProperty: 'backgroundColor',
63
+ transform: paletteTransform
64
+ },
65
+ backgroundColor: {
66
+ themeKey: 'palette',
67
+ transform: paletteTransform
68
+ },
69
+ // spacing
70
+ p: {
71
+ style: padding
72
+ },
73
+ pt: {
74
+ style: padding
75
+ },
76
+ pr: {
77
+ style: padding
78
+ },
79
+ pb: {
80
+ style: padding
81
+ },
82
+ pl: {
83
+ style: padding
84
+ },
85
+ px: {
86
+ style: padding
87
+ },
88
+ py: {
89
+ style: padding
90
+ },
91
+ padding: {
92
+ style: padding
93
+ },
94
+ paddingTop: {
95
+ style: padding
96
+ },
97
+ paddingRight: {
98
+ style: padding
99
+ },
100
+ paddingBottom: {
101
+ style: padding
102
+ },
103
+ paddingLeft: {
104
+ style: padding
105
+ },
106
+ paddingX: {
107
+ style: padding
108
+ },
109
+ paddingY: {
110
+ style: padding
111
+ },
112
+ paddingInline: {
113
+ style: padding
114
+ },
115
+ paddingInlineStart: {
116
+ style: padding
117
+ },
118
+ paddingInlineEnd: {
119
+ style: padding
120
+ },
121
+ paddingBlock: {
122
+ style: padding
123
+ },
124
+ paddingBlockStart: {
125
+ style: padding
126
+ },
127
+ paddingBlockEnd: {
128
+ style: padding
129
+ },
130
+ m: {
131
+ style: margin
132
+ },
133
+ mt: {
134
+ style: margin
135
+ },
136
+ mr: {
137
+ style: margin
138
+ },
139
+ mb: {
140
+ style: margin
141
+ },
142
+ ml: {
143
+ style: margin
144
+ },
145
+ mx: {
146
+ style: margin
147
+ },
148
+ my: {
149
+ style: margin
150
+ },
151
+ margin: {
152
+ style: margin
153
+ },
154
+ marginTop: {
155
+ style: margin
156
+ },
157
+ marginRight: {
158
+ style: margin
159
+ },
160
+ marginBottom: {
161
+ style: margin
162
+ },
163
+ marginLeft: {
164
+ style: margin
165
+ },
166
+ marginX: {
167
+ style: margin
168
+ },
169
+ marginY: {
170
+ style: margin
171
+ },
172
+ marginInline: {
173
+ style: margin
174
+ },
175
+ marginInlineStart: {
176
+ style: margin
177
+ },
178
+ marginInlineEnd: {
179
+ style: margin
180
+ },
181
+ marginBlock: {
182
+ style: margin
183
+ },
184
+ marginBlockStart: {
185
+ style: margin
186
+ },
187
+ marginBlockEnd: {
188
+ style: margin
189
+ },
190
+ // display
191
+ displayPrint: {
192
+ cssProperty: false,
193
+ transform: value => ({
194
+ '@media print': {
195
+ display: value
196
+ }
197
+ })
198
+ },
199
+ display: {},
200
+ overflow: {},
201
+ textOverflow: {},
202
+ visibility: {},
203
+ whiteSpace: {},
204
+ // flexbox
205
+ flexBasis: {},
206
+ flexDirection: {},
207
+ flexWrap: {},
208
+ justifyContent: {},
209
+ alignItems: {},
210
+ alignContent: {},
211
+ order: {},
212
+ flex: {},
213
+ flexGrow: {},
214
+ flexShrink: {},
215
+ alignSelf: {},
216
+ justifyItems: {},
217
+ justifySelf: {},
218
+ // grid
219
+ gap: {
220
+ style: gap
221
+ },
222
+ rowGap: {
223
+ style: rowGap
224
+ },
225
+ columnGap: {
226
+ style: columnGap
227
+ },
228
+ gridColumn: {},
229
+ gridRow: {},
230
+ gridAutoFlow: {},
231
+ gridAutoColumns: {},
232
+ gridAutoRows: {},
233
+ gridTemplateColumns: {},
234
+ gridTemplateRows: {},
235
+ gridTemplateAreas: {},
236
+ gridArea: {},
237
+ // positions
238
+ position: {},
239
+ zIndex: {
240
+ themeKey: 'zIndex'
241
+ },
242
+ top: {},
243
+ right: {},
244
+ bottom: {},
245
+ left: {},
246
+ // shadows
247
+ boxShadow: {
248
+ themeKey: 'shadows'
249
+ },
250
+ // sizing
251
+ width: {
252
+ transform: sizingTransform
253
+ },
254
+ maxWidth: {
255
+ style: maxWidth
256
+ },
257
+ minWidth: {
258
+ transform: sizingTransform
259
+ },
260
+ height: {
261
+ transform: sizingTransform
262
+ },
263
+ maxHeight: {
264
+ transform: sizingTransform
265
+ },
266
+ minHeight: {
267
+ transform: sizingTransform
268
+ },
269
+ boxSizing: {},
270
+ // typography
271
+ fontFamily: {
272
+ themeKey: 'typography'
273
+ },
274
+ fontSize: {
275
+ themeKey: 'typography'
276
+ },
277
+ fontStyle: {
278
+ themeKey: 'typography'
279
+ },
280
+ fontWeight: {
281
+ themeKey: 'typography'
282
+ },
283
+ letterSpacing: {},
284
+ textTransform: {},
285
+ lineHeight: {},
286
+ textAlign: {},
287
+ typography: {
288
+ cssProperty: false,
289
+ themeKey: 'typography'
290
+ }
291
+ };
292
+
293
+ export { defaultSxConfig as default };
@@ -0,0 +1,51 @@
1
+ import _extends from '../../../../@babel/runtime/helpers/esm/extends.js';
2
+ import _objectWithoutPropertiesLoose from '../../../../@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js';
3
+ import defaultSxConfig from './defaultSxConfig.js';
4
+ import { isPlainObject } from '../../../utils/deepmerge/deepmerge.js';
5
+
6
+ const _excluded = ["sx"];
7
+ const splitProps = props => {
8
+ var _props$theme$unstable, _props$theme;
9
+ const result = {
10
+ systemProps: {},
11
+ otherProps: {}
12
+ };
13
+ const config = (_props$theme$unstable = props == null || (_props$theme = props.theme) == null ? undefined : _props$theme.unstable_sxConfig) != null ? _props$theme$unstable : defaultSxConfig;
14
+ Object.keys(props).forEach(prop => {
15
+ if (config[prop]) {
16
+ result.systemProps[prop] = props[prop];
17
+ } else {
18
+ result.otherProps[prop] = props[prop];
19
+ }
20
+ });
21
+ return result;
22
+ };
23
+ function extendSxProp(props) {
24
+ const {
25
+ sx: inSx
26
+ } = props,
27
+ other = _objectWithoutPropertiesLoose(props, _excluded);
28
+ const {
29
+ systemProps,
30
+ otherProps
31
+ } = splitProps(other);
32
+ let finalSx;
33
+ if (Array.isArray(inSx)) {
34
+ finalSx = [systemProps, ...inSx];
35
+ } else if (typeof inSx === 'function') {
36
+ finalSx = (...args) => {
37
+ const result = inSx(...args);
38
+ if (!isPlainObject(result)) {
39
+ return systemProps;
40
+ }
41
+ return _extends({}, systemProps, result);
42
+ };
43
+ } else {
44
+ finalSx = _extends({}, systemProps, inSx);
45
+ }
46
+ return _extends({}, otherProps, {
47
+ sx: finalSx
48
+ });
49
+ }
50
+
51
+ export { extendSxProp as default };
@@ -0,0 +1,3 @@
1
+ export { default, unstable_createStyleFunctionSx } from './styleFunctionSx.js';
2
+ export { default as extendSxProp } from './extendSxProp.js';
3
+ export { default as unstable_defaultSxConfig } from './defaultSxConfig.js';
@@ -0,0 +1,129 @@
1
+ import merge from '../merge.js';
2
+ import { getPath, getStyleValue } from '../style.js';
3
+ import { createEmptyBreakpointObject, handleBreakpoints, removeUnusedBreakpoints } from '../breakpoints.js';
4
+ import defaultSxConfig from './defaultSxConfig.js';
5
+ import capitalize from '../../../utils/capitalize/capitalize.js';
6
+
7
+ function objectsHaveSameKeys(...objects) {
8
+ const allKeys = objects.reduce((keys, object) => keys.concat(Object.keys(object)), []);
9
+ const union = new Set(allKeys);
10
+ return objects.every(object => union.size === Object.keys(object).length);
11
+ }
12
+ function callIfFn(maybeFn, arg) {
13
+ return typeof maybeFn === 'function' ? maybeFn(arg) : maybeFn;
14
+ }
15
+
16
+ // eslint-disable-next-line @typescript-eslint/naming-convention
17
+ function unstable_createStyleFunctionSx() {
18
+ function getThemeValue(prop, val, theme, config) {
19
+ const props = {
20
+ [prop]: val,
21
+ theme
22
+ };
23
+ const options = config[prop];
24
+ if (!options) {
25
+ return {
26
+ [prop]: val
27
+ };
28
+ }
29
+ const {
30
+ cssProperty = prop,
31
+ themeKey,
32
+ transform,
33
+ style
34
+ } = options;
35
+ if (val == null) {
36
+ return null;
37
+ }
38
+
39
+ // TODO v6: remove, see https://github.com/mui/material-ui/pull/38123
40
+ if (themeKey === 'typography' && val === 'inherit') {
41
+ return {
42
+ [prop]: val
43
+ };
44
+ }
45
+ const themeMapping = getPath(theme, themeKey) || {};
46
+ if (style) {
47
+ return style(props);
48
+ }
49
+ const styleFromPropValue = propValueFinal => {
50
+ let value = getStyleValue(themeMapping, transform, propValueFinal);
51
+ if (propValueFinal === value && typeof propValueFinal === 'string') {
52
+ // Haven't found value
53
+ value = getStyleValue(themeMapping, transform, `${prop}${propValueFinal === 'default' ? '' : capitalize(propValueFinal)}`, propValueFinal);
54
+ }
55
+ if (cssProperty === false) {
56
+ return value;
57
+ }
58
+ return {
59
+ [cssProperty]: value
60
+ };
61
+ };
62
+ return handleBreakpoints(props, val, styleFromPropValue);
63
+ }
64
+ function styleFunctionSx(props) {
65
+ var _theme$unstable_sxCon;
66
+ const {
67
+ sx,
68
+ theme = {}
69
+ } = props || {};
70
+ if (!sx) {
71
+ return null; // Emotion & styled-components will neglect null
72
+ }
73
+ const config = (_theme$unstable_sxCon = theme.unstable_sxConfig) != null ? _theme$unstable_sxCon : defaultSxConfig;
74
+
75
+ /*
76
+ * Receive `sxInput` as object or callback
77
+ * and then recursively check keys & values to create media query object styles.
78
+ * (the result will be used in `styled`)
79
+ */
80
+ function traverse(sxInput) {
81
+ let sxObject = sxInput;
82
+ if (typeof sxInput === 'function') {
83
+ sxObject = sxInput(theme);
84
+ } else if (typeof sxInput !== 'object') {
85
+ // value
86
+ return sxInput;
87
+ }
88
+ if (!sxObject) {
89
+ return null;
90
+ }
91
+ const emptyBreakpoints = createEmptyBreakpointObject(theme.breakpoints);
92
+ const breakpointsKeys = Object.keys(emptyBreakpoints);
93
+ let css = emptyBreakpoints;
94
+ Object.keys(sxObject).forEach(styleKey => {
95
+ const value = callIfFn(sxObject[styleKey], theme);
96
+ if (value !== null && value !== undefined) {
97
+ if (typeof value === 'object') {
98
+ if (config[styleKey]) {
99
+ css = merge(css, getThemeValue(styleKey, value, theme, config));
100
+ } else {
101
+ const breakpointsValues = handleBreakpoints({
102
+ theme
103
+ }, value, x => ({
104
+ [styleKey]: x
105
+ }));
106
+ if (objectsHaveSameKeys(breakpointsValues, value)) {
107
+ css[styleKey] = styleFunctionSx({
108
+ sx: value,
109
+ theme
110
+ });
111
+ } else {
112
+ css = merge(css, breakpointsValues);
113
+ }
114
+ }
115
+ } else {
116
+ css = merge(css, getThemeValue(styleKey, value, theme, config));
117
+ }
118
+ }
119
+ });
120
+ return removeUnusedBreakpoints(breakpointsKeys, css);
121
+ }
122
+ return Array.isArray(sx) ? sx.map(traverse) : traverse(sx);
123
+ }
124
+ return styleFunctionSx;
125
+ }
126
+ const styleFunctionSx = unstable_createStyleFunctionSx();
127
+ styleFunctionSx.filterProps = ['sx'];
128
+
129
+ export { styleFunctionSx as default, unstable_createStyleFunctionSx };
@@ -0,0 +1,9 @@
1
+ import useTheme$1 from './useThemeWithoutDefault.js';
2
+ import createTheme from './createTheme/createTheme.js';
3
+
4
+ const systemDefaultTheme = createTheme();
5
+ function useTheme(defaultTheme = systemDefaultTheme) {
6
+ return useTheme$1(defaultTheme);
7
+ }
8
+
9
+ export { useTheme as default, systemDefaultTheme };
@@ -0,0 +1,15 @@
1
+ import resolveProps from '../../../utils/resolveProps/resolveProps.js';
2
+
3
+ function getThemeProps(params) {
4
+ const {
5
+ theme,
6
+ name,
7
+ props
8
+ } = params;
9
+ if (!theme || !theme.components || !theme.components[name] || !theme.components[name].defaultProps) {
10
+ return props;
11
+ }
12
+ return resolveProps(theme.components[name].defaultProps, props);
13
+ }
14
+
15
+ export { getThemeProps as default };
@@ -0,0 +1,22 @@
1
+ import getThemeProps from './getThemeProps.js';
2
+ import useTheme from '../useTheme.js';
3
+
4
+ function useThemeProps({
5
+ props,
6
+ name,
7
+ defaultTheme,
8
+ themeId
9
+ }) {
10
+ let theme = useTheme(defaultTheme);
11
+ if (themeId) {
12
+ theme = theme[themeId] || theme;
13
+ }
14
+ const mergedProps = getThemeProps({
15
+ theme,
16
+ name,
17
+ props
18
+ });
19
+ return mergedProps;
20
+ }
21
+
22
+ export { useThemeProps as default };
@@ -0,0 +1,12 @@
1
+ import * as React from 'react';
2
+ import { ThemeContext } from '@emotion/react';
3
+
4
+ function isObjectEmpty(obj) {
5
+ return Object.keys(obj).length === 0;
6
+ }
7
+ function useTheme(defaultTheme = null) {
8
+ const contextTheme = React.useContext(ThemeContext);
9
+ return !contextTheme || isObjectEmpty(contextTheme) ? defaultTheme : contextTheme;
10
+ }
11
+
12
+ export { useTheme as default };
@@ -0,0 +1,18 @@
1
+ const defaultGenerator = componentName => componentName;
2
+ const createClassNameGenerator = () => {
3
+ let generate = defaultGenerator;
4
+ return {
5
+ configure(generator) {
6
+ generate = generator;
7
+ },
8
+ generate(componentName) {
9
+ return generate(componentName);
10
+ },
11
+ reset() {
12
+ generate = defaultGenerator;
13
+ }
14
+ };
15
+ };
16
+ const ClassNameGenerator = createClassNameGenerator();
17
+
18
+ export { ClassNameGenerator as default };
@@ -0,0 +1,14 @@
1
+ import formatMuiErrorMessage from '../formatMuiErrorMessage/formatMuiErrorMessage.js';
2
+
3
+ // It should to be noted that this function isn't equivalent to `text-transform: capitalize`.
4
+ //
5
+ // A strict capitalization should uppercase the first letter of each word in the sentence.
6
+ // We only handle the first word.
7
+ function capitalize(string) {
8
+ if (typeof string !== 'string') {
9
+ throw new Error(process.env.NODE_ENV !== "production" ? `MUI: \`capitalize(string)\` expects a string argument.` : formatMuiErrorMessage(7));
10
+ }
11
+ return string.charAt(0).toUpperCase() + string.slice(1);
12
+ }
13
+
14
+ export { capitalize as default };
@@ -0,0 +1 @@
1
+ export { default } from './capitalize.js';
@@ -0,0 +1,5 @@
1
+ function clamp(val, min = Number.MIN_SAFE_INTEGER, max = Number.MAX_SAFE_INTEGER) {
2
+ return Math.max(min, Math.min(val, max));
3
+ }
4
+
5
+ export { clamp as default };
@@ -0,0 +1 @@
1
+ export { default } from './clamp.js';
@@ -0,0 +1,23 @@
1
+ function composeClasses(slots, getUtilityClass, classes = undefined) {
2
+ const output = {};
3
+ Object.keys(slots).forEach(
4
+ // `Object.keys(slots)` can't be wider than `T` because we infer `T` from `slots`.
5
+ // @ts-expect-error https://github.com/microsoft/TypeScript/pull/12253#issuecomment-263132208
6
+ slot => {
7
+ output[slot] = slots[slot].reduce((acc, key) => {
8
+ if (key) {
9
+ const utilityClass = getUtilityClass(key);
10
+ if (utilityClass !== '') {
11
+ acc.push(utilityClass);
12
+ }
13
+ if (classes && classes[key]) {
14
+ acc.push(classes[key]);
15
+ }
16
+ }
17
+ return acc;
18
+ }, []).join(' ');
19
+ });
20
+ return output;
21
+ }
22
+
23
+ export { composeClasses as default };
@@ -0,0 +1,44 @@
1
+ import _extends from '../../../@babel/runtime/helpers/esm/extends.js';
2
+
3
+ // https://github.com/sindresorhus/is-plain-obj/blob/main/index.js
4
+ function isPlainObject(item) {
5
+ if (typeof item !== 'object' || item === null) {
6
+ return false;
7
+ }
8
+ const prototype = Object.getPrototypeOf(item);
9
+ return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in item) && !(Symbol.iterator in item);
10
+ }
11
+ function deepClone(source) {
12
+ if (!isPlainObject(source)) {
13
+ return source;
14
+ }
15
+ const output = {};
16
+ Object.keys(source).forEach(key => {
17
+ output[key] = deepClone(source[key]);
18
+ });
19
+ return output;
20
+ }
21
+ function deepmerge(target, source, options = {
22
+ clone: true
23
+ }) {
24
+ const output = options.clone ? _extends({}, target) : target;
25
+ if (isPlainObject(target) && isPlainObject(source)) {
26
+ Object.keys(source).forEach(key => {
27
+ // Avoid prototype pollution
28
+ if (key === '__proto__') {
29
+ return;
30
+ }
31
+ if (isPlainObject(source[key]) && key in target && isPlainObject(target[key])) {
32
+ // Since `output` is a clone of `target` and we have narrowed `target` in this block we can cast to the same type.
33
+ output[key] = deepmerge(target[key], source[key], options);
34
+ } else if (options.clone) {
35
+ output[key] = isPlainObject(source[key]) ? deepClone(source[key]) : source[key];
36
+ } else {
37
+ output[key] = source[key];
38
+ }
39
+ });
40
+ }
41
+ return output;
42
+ }
43
+
44
+ export { deepmerge as default, isPlainObject };
@@ -0,0 +1 @@
1
+ export { default, isPlainObject } from './deepmerge.js';
@@ -0,0 +1,21 @@
1
+ /**
2
+ * WARNING: Don't import this directly.
3
+ * Use `MuiError` from `@mui/internal-babel-macros/MuiError.macro` instead.
4
+ * @param {number} code
5
+ */
6
+ function formatMuiErrorMessage(code) {
7
+ // Apply babel-plugin-transform-template-literals in loose mode
8
+ // loose mode is safe if we're concatenating primitives
9
+ // see https://babeljs.io/docs/en/babel-plugin-transform-template-literals#loose
10
+ /* eslint-disable prefer-template */
11
+ let url = 'https://mui.com/production-error/?code=' + code;
12
+ for (let i = 1; i < arguments.length; i += 1) {
13
+ // rest params over-transpile for this case
14
+ // eslint-disable-next-line prefer-rest-params
15
+ url += '&args[]=' + encodeURIComponent(arguments[i]);
16
+ }
17
+ return 'Minified MUI error #' + code + '; visit ' + url + ' for the full message.';
18
+ /* eslint-enable prefer-template */
19
+ }
20
+
21
+ export { formatMuiErrorMessage as default };
@@ -0,0 +1 @@
1
+ export { default } from './formatMuiErrorMessage.js';