@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.
- package/dist/_virtual/_commonjsHelpers.js +30 -0
- package/dist/_virtual/bind-all.js +3 -0
- package/dist/_virtual/bind.js +3 -0
- package/dist/_virtual/colorManipulator.js +5 -0
- package/dist/_virtual/colorManipulator2.js +3 -0
- package/dist/_virtual/createStyled.js +7 -0
- package/dist/_virtual/createStyled2.js +3 -0
- package/dist/_virtual/extends.js +3 -0
- package/dist/_virtual/index.js +5 -0
- package/dist/_virtual/index10.js +6 -0
- package/dist/_virtual/index11.js +6 -0
- package/dist/_virtual/index12.js +6 -0
- package/dist/_virtual/index2.js +3 -0
- package/dist/_virtual/index3.js +7 -0
- package/dist/_virtual/index4.js +3 -0
- package/dist/_virtual/index5.js +6 -0
- package/dist/_virtual/index6.js +6 -0
- package/dist/_virtual/index7.js +6 -0
- package/dist/_virtual/index8.js +6 -0
- package/dist/_virtual/index9.js +6 -0
- package/dist/_virtual/interopRequireDefault.js +3 -0
- package/dist/_virtual/objectWithoutPropertiesLoose.js +3 -0
- package/dist/components/Accordions/Accordions.js +43 -0
- package/dist/components/Accordions/index.d.ts +2 -2
- package/dist/components/Autocomplete/Autocomplete.js +196 -0
- package/dist/components/Autocomplete/index.d.ts +2 -2
- package/dist/components/Autocomplete/index.js +5 -0
- package/dist/components/Avatar/Avatar.js +42 -0
- package/dist/components/Avatar/index.d.ts +2 -2
- package/dist/components/Box/Box.js +8 -0
- package/dist/components/Box/index.d.ts +2 -2
- package/dist/components/Box/index.js +5 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.js +47 -0
- package/dist/components/Breadcrumbs/index.d.ts +2 -2
- package/dist/components/Button/Button.js +20 -0
- package/dist/components/Button/index.d.ts +2 -2
- package/dist/components/Button/index.js +5 -0
- package/dist/components/Calendar/Calendar.d.ts +1 -1
- package/dist/components/Calendar/Calendar.js +333 -0
- package/dist/components/Calendar/hooks/use-calendar-props.d.ts +3 -3
- package/dist/components/Calendar/hooks/use-calendar-props.js +74 -0
- package/dist/components/Calendar/hooks/use-calendar.d.ts +1 -1
- package/dist/components/Calendar/hooks/use-calendar.js +247 -0
- package/dist/components/Calendar/index.d.ts +2 -2
- package/dist/components/Calendar/index.js +5 -0
- package/dist/components/Calendar/utils/index.js +74 -0
- package/dist/components/Card/Card.js +20 -0
- package/dist/components/Card/index.d.ts +2 -2
- package/dist/components/Checkbox/Checkbox.js +19 -0
- package/dist/components/Checkbox/index.d.ts +2 -2
- package/dist/components/Checkbox/index.js +5 -0
- package/dist/components/Chip/Chip.js +8 -0
- package/dist/components/Chip/index.d.ts +2 -2
- package/dist/components/Chip/index.js +5 -0
- package/dist/components/Container/Container.js +49 -0
- package/dist/components/Container/index.d.ts +2 -2
- package/dist/components/CurrencyInput/CurrencyInput.js +91 -0
- package/dist/components/CurrencyInput/hooks/use-currency-setting.js +167 -0
- package/dist/components/CurrencyInput/index.d.ts +2 -2
- package/dist/components/CurrencyInput/index.js +5 -0
- package/dist/components/DataTable/DataTable.d.ts +1 -1
- package/dist/components/DataTable/DataTable.js +568 -0
- package/dist/components/DataTable/index.d.ts +2 -2
- package/dist/components/DataTable/types.d.ts +7 -7
- package/dist/components/DatePicker/DatePicker.d.ts +1 -1
- package/dist/components/DatePicker/DatePicker.js +210 -0
- package/dist/components/DatePicker/index.d.ts +2 -2
- package/dist/components/DatePicker/index.js +5 -0
- package/dist/components/DateRangePicker/DateRangePicker.d.ts +1 -1
- package/dist/components/DateRangePicker/DateRangePicker.js +213 -0
- package/dist/components/DateRangePicker/index.d.ts +2 -2
- package/dist/components/DialogActions/DialogActions.js +14 -0
- package/dist/components/DialogActions/index.d.ts +2 -2
- package/dist/components/DialogActions/index.js +5 -0
- package/dist/components/DialogContent/DialogContent.js +11 -0
- package/dist/components/DialogContent/index.d.ts +2 -2
- package/dist/components/DialogContent/index.js +5 -0
- package/dist/components/DialogFrame/DialogFrame.d.ts +1 -1
- package/dist/components/DialogFrame/DialogFrame.js +31 -0
- package/dist/components/DialogFrame/index.d.ts +2 -2
- package/dist/components/DialogTitle/DialogTitle.js +11 -0
- package/dist/components/DialogTitle/index.d.ts +2 -2
- package/dist/components/DialogTitle/index.js +5 -0
- package/dist/components/Divider/Divider.js +19 -0
- package/dist/components/Divider/index.d.ts +2 -2
- package/dist/components/Drawer/Drawer.js +40 -0
- package/dist/components/Drawer/index.d.ts +2 -2
- package/dist/components/Dropdown/Dropdown.js +8 -0
- package/dist/components/Dropdown/index.d.ts +2 -2
- package/dist/components/Dropdown/index.js +5 -0
- package/dist/components/FormControl/FormControl.js +15 -0
- package/dist/components/FormControl/index.d.ts +2 -2
- package/dist/components/FormControl/index.js +5 -0
- package/dist/components/FormHelperText/FormHelperText.js +8 -0
- package/dist/components/FormHelperText/index.d.ts +2 -2
- package/dist/components/FormHelperText/index.js +5 -0
- package/dist/components/FormLabel/FormLabel.js +8 -0
- package/dist/components/FormLabel/index.d.ts +2 -2
- package/dist/components/FormLabel/index.js +5 -0
- package/dist/components/Grid/index.d.ts +2 -2
- package/dist/components/IconButton/IconButton.js +20 -0
- package/dist/components/IconButton/index.d.ts +2 -2
- package/dist/components/IconButton/index.js +5 -0
- package/dist/components/Input/Input.d.ts +1 -1
- package/dist/components/Input/Input.js +60 -0
- package/dist/components/Input/index.d.ts +2 -2
- package/dist/components/Input/index.js +5 -0
- package/dist/components/InsetDrawer/InsetDrawer.js +30 -0
- package/dist/components/InsetDrawer/index.d.ts +2 -2
- package/dist/components/Markdown/Markdown.d.ts +6 -22
- package/dist/components/Markdown/Markdown.js +36 -0
- package/dist/components/Markdown/index.d.ts +2 -2
- package/dist/components/Menu/Menu.js +43 -0
- package/dist/components/Menu/index.d.ts +2 -2
- package/dist/components/Menu/index.js +6 -0
- package/dist/components/MenuButton/MenuButton.d.ts +6 -4
- package/dist/components/MenuButton/MenuButton.js +26 -0
- package/dist/components/Modal/Modal.d.ts +4 -4
- package/dist/components/Modal/Modal.js +43 -0
- package/dist/components/Modal/index.d.ts +2 -2
- package/dist/components/MonthPicker/MonthPicker.d.ts +1 -1
- package/dist/components/MonthPicker/MonthPicker.js +162 -0
- package/dist/components/MonthPicker/index.d.ts +2 -2
- package/dist/components/MonthRangePicker/MonthRangePicker.d.ts +1 -1
- package/dist/components/MonthRangePicker/MonthRangePicker.js +172 -0
- package/dist/components/MonthRangePicker/index.d.ts +2 -2
- package/dist/components/NavigationGroup/NavigationGroup.js +42 -0
- package/dist/components/NavigationGroup/index.d.ts +2 -2
- package/dist/components/NavigationItem/NavigationItem.js +45 -0
- package/dist/components/NavigationItem/index.d.ts +2 -2
- package/dist/components/Navigator/Navigator.js +30 -0
- package/dist/components/Navigator/index.d.ts +2 -2
- package/dist/components/Pagination/Pagination.d.ts +2 -2
- package/dist/components/Pagination/Pagination.js +117 -0
- package/dist/components/Pagination/index.d.ts +2 -2
- package/dist/components/Pagination/index.js +5 -0
- package/dist/components/PercentageInput/PercentageInput.js +85 -0
- package/dist/components/PercentageInput/index.d.ts +2 -2
- package/dist/components/Radio/Radio.js +11 -0
- package/dist/components/Radio/index.d.ts +2 -2
- package/dist/components/RadioList/RadioList.d.ts +1 -1
- package/dist/components/RadioList/RadioList.js +18 -0
- package/dist/components/RadioList/index.d.ts +2 -2
- package/dist/components/Select/Select.d.ts +1 -1
- package/dist/components/Select/Select.js +56 -0
- package/dist/components/Select/index.d.ts +2 -2
- package/dist/components/Select/index.js +6 -0
- package/dist/components/Sheet/Sheet.js +8 -0
- package/dist/components/Sheet/index.d.ts +2 -2
- package/dist/components/Sheet/index.js +5 -0
- package/dist/components/Stack/index.d.ts +2 -2
- package/dist/components/Stack/index.js +2 -0
- package/dist/components/Stepper/Stepper.js +66 -0
- package/dist/components/Stepper/index.d.ts +2 -2
- package/dist/components/Switch/Switch.js +46 -0
- package/dist/components/Switch/index.d.ts +2 -2
- package/dist/components/Table/Table.js +64 -0
- package/dist/components/Table/index.d.ts +2 -2
- package/dist/components/Tabs/Tabs.js +17 -0
- package/dist/components/Tabs/index.d.ts +2 -2
- package/dist/components/Textarea/Textarea.d.ts +3 -17
- package/dist/components/Textarea/Textarea.js +31 -0
- package/dist/components/Textarea/index.d.ts +2 -2
- package/dist/components/Textarea/index.js +5 -0
- package/dist/components/ThemeProvider/ThemeProvider.d.ts +7 -7
- package/dist/components/ThemeProvider/ThemeProvider.js +240 -0
- package/dist/components/ThemeProvider/index.d.ts +2 -2
- package/dist/components/Tooltip/Tooltip.js +19 -0
- package/dist/components/Tooltip/index.d.ts +2 -2
- package/dist/components/Tooltip/index.js +5 -0
- package/dist/components/Typography/Typography.js +19 -0
- package/dist/components/Typography/index.d.ts +2 -2
- package/dist/components/Typography/index.js +5 -0
- package/dist/components/Uploader/Uploader.d.ts +4 -3
- package/dist/components/Uploader/Uploader.js +402 -0
- package/dist/components/Uploader/index.d.ts +2 -2
- package/dist/components/index.d.ts +53 -53
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/adapter/element-adapter-native-data-key.js +8 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/adapter/external-adapter.js +245 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/combine.js +1 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/external/adapter.js +1 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/external/file.js +1 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/prevent-unhandled.js +1 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/get-element-from-point-without-honey-pot.js +19 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/honey-pot-data-attribute.js +5 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/honey-pot-fix/is-honey-pot-element.js +7 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/dispatch-consumer-event.js +128 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/lifecycle-manager.js +340 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/usage-ledger.js +33 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-adapter.js +60 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-drop-target.js +312 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/make-adapter/make-monitor.js +96 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/combine.js +13 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/external/file.js +23 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/once.js +18 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/public-utils/prevent-unhandled.js +102 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/add-attribute.js +10 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/android.js +3 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/count-events-for-safari.js +123 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/is-entering-window.js +55 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/is-from-another-window.js +18 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/changing-window/is-leaving-window.js +55 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/detect-broken-drag.js +49 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/get-input.js +16 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/is-firefox.js +15 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/is-safari.js +18 -0
- package/dist/external/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/media-types/text-media-type.js +8 -0
- package/dist/external/@babel/runtime/helpers/esm/extends.js +16 -0
- package/dist/external/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +14 -0
- package/dist/external/@babel/runtime/helpers/extends.js +28 -0
- package/dist/external/@babel/runtime/helpers/interopRequireDefault.js +19 -0
- package/dist/external/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +26 -0
- package/dist/external/@emotion/cache/dist/emotion-cache.esm.js +653 -0
- package/dist/external/@emotion/memoize/dist/emotion-memoize.esm.js +9 -0
- package/dist/external/@emotion/sheet/dist/emotion-sheet.esm.js +154 -0
- package/dist/external/@emotion/weak-memoize/dist/emotion-weak-memoize.esm.js +16 -0
- package/dist/external/@mui/icons-material/esm/ArrowUpwardRounded.js +8 -0
- package/dist/external/@mui/icons-material/esm/CalendarToday.js +8 -0
- package/dist/external/@mui/icons-material/esm/Check.js +8 -0
- package/dist/external/@mui/icons-material/esm/ChevronLeft.js +8 -0
- package/dist/external/@mui/icons-material/esm/ChevronRight.js +8 -0
- package/dist/external/@mui/icons-material/esm/ClearRounded.js +8 -0
- package/dist/external/@mui/icons-material/esm/Close.js +8 -0
- package/dist/external/@mui/icons-material/esm/CloudUploadRounded.js +8 -0
- package/dist/external/@mui/icons-material/esm/ExpandMore.js +8 -0
- package/dist/external/@mui/icons-material/esm/Info.js +8 -0
- package/dist/external/@mui/icons-material/esm/UploadFileRounded.js +8 -0
- package/dist/external/@mui/material/SvgIcon/SvgIcon.js +186 -0
- package/dist/external/@mui/material/SvgIcon/svgIconClasses.js +9 -0
- package/dist/external/@mui/material/colors/blue.js +18 -0
- package/dist/external/@mui/material/colors/common.js +6 -0
- package/dist/external/@mui/material/colors/green.js +18 -0
- package/dist/external/@mui/material/colors/grey.js +18 -0
- package/dist/external/@mui/material/colors/lightBlue.js +18 -0
- package/dist/external/@mui/material/colors/orange.js +18 -0
- package/dist/external/@mui/material/colors/purple.js +18 -0
- package/dist/external/@mui/material/colors/red.js +18 -0
- package/dist/external/@mui/material/styles/createMixins.js +19 -0
- package/dist/external/@mui/material/styles/createPalette.js +308 -0
- package/dist/external/@mui/material/styles/createTheme.js +82 -0
- package/dist/external/@mui/material/styles/createTransitions.js +91 -0
- package/dist/external/@mui/material/styles/createTypography.js +93 -0
- package/dist/external/@mui/material/styles/defaultTheme.js +5 -0
- package/dist/external/@mui/material/styles/identifier.js +3 -0
- package/dist/external/@mui/material/styles/rootShouldForwardProp.js +5 -0
- package/dist/external/@mui/material/styles/shadows.js +11 -0
- package/dist/external/@mui/material/styles/slotShouldForwardProp.js +6 -0
- package/dist/external/@mui/material/styles/styled.js +12 -0
- package/dist/external/@mui/material/styles/useThemeProps.js +17 -0
- package/dist/external/@mui/material/styles/zIndex.js +14 -0
- package/dist/external/@mui/material/utils/capitalize.js +5 -0
- package/dist/external/@mui/material/utils/createSvgIcon.js +24 -0
- package/dist/external/@mui/styled-engine/GlobalStyles/GlobalStyles.js +24 -0
- package/dist/external/@mui/styled-engine/StyledEngineProvider/StyledEngineProvider.js +37 -0
- package/dist/external/@mui/styled-engine/index.js +38 -0
- package/dist/external/@mui/system/colorManipulator.js +385 -0
- package/dist/external/@mui/system/createStyled.js +270 -0
- package/dist/external/@mui/system/esm/borders.js +51 -0
- package/dist/external/@mui/system/esm/breakpoints.js +66 -0
- package/dist/external/@mui/system/esm/compose.js +26 -0
- package/dist/external/@mui/system/esm/createTheme/applyStyles.js +76 -0
- package/dist/external/@mui/system/esm/createTheme/createBreakpoints.js +82 -0
- package/dist/external/@mui/system/esm/createTheme/createSpacing.js +34 -0
- package/dist/external/@mui/system/esm/createTheme/createTheme.js +45 -0
- package/dist/external/@mui/system/esm/createTheme/index.js +3 -0
- package/dist/external/@mui/system/esm/createTheme/shape.js +5 -0
- package/dist/external/@mui/system/esm/cssGrid.js +86 -0
- package/dist/external/@mui/system/esm/memoize.js +11 -0
- package/dist/external/@mui/system/esm/merge.js +12 -0
- package/dist/external/@mui/system/esm/palette.js +28 -0
- package/dist/external/@mui/system/esm/responsivePropType.js +5 -0
- package/dist/external/@mui/system/esm/sizing.js +67 -0
- package/dist/external/@mui/system/esm/spacing.js +144 -0
- package/dist/external/@mui/system/esm/style.js +77 -0
- package/dist/external/@mui/system/esm/styleFunctionSx/defaultSxConfig.js +293 -0
- package/dist/external/@mui/system/esm/styleFunctionSx/extendSxProp.js +51 -0
- package/dist/external/@mui/system/esm/styleFunctionSx/index.js +3 -0
- package/dist/external/@mui/system/esm/styleFunctionSx/styleFunctionSx.js +129 -0
- package/dist/external/@mui/system/esm/useTheme.js +9 -0
- package/dist/external/@mui/system/esm/useThemeProps/getThemeProps.js +15 -0
- package/dist/external/@mui/system/esm/useThemeProps/useThemeProps.js +22 -0
- package/dist/external/@mui/system/esm/useThemeWithoutDefault.js +12 -0
- package/dist/external/@mui/utils/ClassNameGenerator/ClassNameGenerator.js +18 -0
- package/dist/external/@mui/utils/capitalize/capitalize.js +14 -0
- package/dist/external/@mui/utils/capitalize/index.js +1 -0
- package/dist/external/@mui/utils/clamp/clamp.js +5 -0
- package/dist/external/@mui/utils/clamp/index.js +1 -0
- package/dist/external/@mui/utils/composeClasses/composeClasses.js +23 -0
- package/dist/external/@mui/utils/deepmerge/deepmerge.js +44 -0
- package/dist/external/@mui/utils/deepmerge/index.js +1 -0
- package/dist/external/@mui/utils/formatMuiErrorMessage/formatMuiErrorMessage.js +21 -0
- package/dist/external/@mui/utils/formatMuiErrorMessage/index.js +1 -0
- package/dist/external/@mui/utils/generateUtilityClass/generateUtilityClass.js +22 -0
- package/dist/external/@mui/utils/generateUtilityClasses/generateUtilityClasses.js +11 -0
- package/dist/external/@mui/utils/getDisplayName/getDisplayName.js +49 -0
- package/dist/external/@mui/utils/getDisplayName/index.js +1 -0
- package/dist/external/@mui/utils/resolveProps/resolveProps.js +37 -0
- package/dist/external/bind-event-listener/dist/bind-all.js +54 -0
- package/dist/external/bind-event-listener/dist/bind.js +21 -0
- package/dist/external/bind-event-listener/dist/index.js +21 -0
- package/dist/external/clsx/dist/clsx.js +3 -0
- package/dist/external/object-assign/index.js +99 -0
- package/dist/external/prop-types/checkPropTypes.js +115 -0
- package/dist/external/prop-types/factoryWithThrowingShims.js +74 -0
- package/dist/external/prop-types/factoryWithTypeCheckers.js +625 -0
- package/dist/external/prop-types/index.js +33 -0
- package/dist/external/prop-types/lib/ReactPropTypesSecret.js +21 -0
- package/dist/external/prop-types/lib/has.js +11 -0
- package/dist/external/raf-schd/dist/raf-schd.esm.js +34 -0
- package/dist/external/stylis/src/Enum.js +12 -0
- package/dist/external/stylis/src/Middleware.js +32 -0
- package/dist/external/stylis/src/Parser.js +193 -0
- package/dist/external/stylis/src/Serializer.js +38 -0
- package/dist/external/stylis/src/Tokenizer.js +223 -0
- package/dist/external/stylis/src/Utility.js +117 -0
- package/dist/hooks/use-controlled-state/index.js +23 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +52 -2
- package/dist/libs/rehype-accent/index.js +39 -0
- package/framer/index.js +30 -30
- 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,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;
|
|
@@ -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
|
|
7
|
+
declare const _Uploader: React.MemoExoticComponent<(props: {
|
|
8
8
|
onChange?: ((event: {
|
|
9
9
|
target: {
|
|
10
|
-
name?: string
|
|
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 };
|