@max-ts/components 0.2.3 → 0.3.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/lib/_virtual/_commonjsHelpers.mjs +6 -0
- package/lib/_virtual/index.mjs +5 -0
- package/lib/_virtual/index2.mjs +4 -0
- package/lib/_virtual/index3.mjs +4 -0
- package/lib/_virtual/index4.mjs +7 -0
- package/lib/_virtual/index5.mjs +4 -0
- package/lib/_virtual/react-is.development.mjs +4 -0
- package/lib/_virtual/react-is.development2.mjs +4 -0
- package/lib/_virtual/react-is.production.min.mjs +4 -0
- package/lib/_virtual/react-is.production.mjs +4 -0
- package/lib/components/Accordion/styles.d.ts +2 -2
- package/lib/components/Accordion/styles.mjs +21 -11
- package/lib/components/ActionCell/MainAction/MainAction.d.ts +1 -4
- package/lib/components/ActionCell/MainAction/MainAction.mjs +110 -44
- package/lib/components/ActionCell/SecondaryAction/SecondaryActions.d.ts +0 -3
- package/lib/components/ActionCell/styles.mjs +13 -3
- package/lib/components/ActionGroup/ActionGroup.d.ts +23 -0
- package/lib/components/ActionGroup/ActionGroup.mjs +17 -0
- package/lib/components/ActionGroup/MainActions/MainActions.d.ts +65 -0
- package/lib/components/ActionGroup/MainActions/MainActions.mjs +129 -0
- package/lib/components/ActionGroup/MainActions/index.d.ts +1 -0
- package/lib/components/ActionGroup/MainActions/styles.d.ts +13 -0
- package/lib/components/ActionGroup/MainActions/styles.mjs +18 -0
- package/lib/components/ActionGroup/SecondaryActions/SecondaryActions.d.ts +21 -0
- package/lib/components/ActionGroup/SecondaryActions/SecondaryActions.mjs +97 -0
- package/lib/components/ActionGroup/SecondaryActions/index.d.ts +1 -0
- package/lib/components/ActionGroup/SecondaryVisibleActions/SecondaryVisibleActions.d.ts +19 -0
- package/lib/components/ActionGroup/SecondaryVisibleActions/SecondaryVisibleActions.mjs +103 -0
- package/lib/components/ActionGroup/SecondaryVisibleActions/index.d.ts +1 -0
- package/lib/components/ActionGroup/SecondaryVisibleActions/styles.d.ts +9 -0
- package/lib/components/ActionGroup/index.d.ts +1 -0
- package/lib/components/ActionGroup/styles.d.ts +1 -0
- package/lib/components/ActionGroup/styles.mjs +18 -0
- package/lib/components/ActionGroup/useLogic/useLogic.d.ts +7 -0
- package/lib/components/ActionGroup/useLogic/useLogic.mjs +9 -0
- package/lib/components/Autocomplete/styles.mjs +13 -3
- package/lib/components/Badge/styles.d.ts +1 -1
- package/lib/components/BottomDrawer/styles.d.ts +3 -3
- package/lib/components/Breadcrumbs/index.d.ts +1 -0
- package/lib/components/Button/Button.mjs +17 -17
- package/lib/components/Button/constants.d.ts +1 -1
- package/lib/components/Button/constants.mjs +2 -2
- package/lib/components/Button/styles.d.ts +1 -1
- package/lib/components/ButtonBase/ButtonBase.d.ts +1 -0
- package/lib/components/ButtonBase/index.d.ts +1 -0
- package/lib/components/ButtonGroup/index.d.ts +1 -0
- package/lib/components/Card/index.d.ts +1 -0
- package/lib/components/CardActions/index.d.ts +1 -0
- package/lib/components/CardContent/index.d.ts +1 -0
- package/lib/components/CardHeader/index.d.ts +1 -0
- package/lib/components/CheckboxField/styles.mjs +15 -5
- package/lib/components/Chevron/styles.mjs +14 -4
- package/lib/components/ConfirmAction/styles.d.ts +2 -2
- package/lib/components/ConfirmAction/styles.mjs +17 -7
- package/lib/components/ConfirmDialog/styles.mjs +10 -4
- package/lib/components/ConfirmDialog/useLogic/useLogic.d.ts +1 -1
- package/lib/components/Container/styles.d.ts +1 -0
- package/lib/components/Container/styles.mjs +16 -13
- package/lib/components/ContentState/styles.mjs +13 -3
- package/lib/components/CopyTypography/styles.d.ts +2 -2
- package/lib/components/CopyTypography/styles.mjs +16 -6
- package/lib/components/DataGrid/Body/Body.d.ts +1 -29
- package/lib/components/DataGrid/Body/Body.mjs +26 -29
- package/lib/components/DataGrid/Body/styles.mjs +15 -5
- package/lib/components/DataGrid/Cell/styles.mjs +15 -5
- package/lib/components/DataGrid/DataGrid.d.ts +0 -53
- package/lib/components/DataGrid/DataGrid.mjs +49 -71
- package/lib/components/DataGrid/Head/styles.mjs +20 -10
- package/lib/components/DataGrid/HeadCell/HeadCell.mjs +21 -20
- package/lib/components/DataGrid/HeadCell/styles.d.ts +2 -2
- package/lib/components/DataGrid/HeadCell/styles.mjs +19 -8
- package/lib/components/DataGrid/Row/Row.d.ts +1 -38
- package/lib/components/DataGrid/Row/Row.mjs +55 -147
- package/lib/components/DataGrid/Row/constants.d.ts +0 -1
- package/lib/components/DataGrid/Row/constants.mjs +2 -3
- package/lib/components/DataGrid/Row/index.d.ts +0 -1
- package/lib/components/DataGrid/Row/styles.d.ts +0 -22
- package/lib/components/DataGrid/Row/styles.mjs +21 -78
- package/lib/components/DataGrid/Row/useLogic/useLogic.d.ts +2 -10
- package/lib/components/DataGrid/Row/useLogic/useLogic.mjs +36 -67
- package/lib/components/DataGrid/constants.d.ts +0 -3
- package/lib/components/DataGrid/constants.mjs +3 -6
- package/lib/components/DataGrid/enums.d.ts +0 -4
- package/lib/components/DataGrid/enums.mjs +2 -3
- package/lib/components/DataGrid/faker.d.ts +1 -1
- package/lib/components/DataGrid/styles.mjs +20 -10
- package/lib/components/DataGrid/types.d.ts +2 -7
- package/lib/components/DataGrid/useLogic/useLogic.d.ts +1 -6
- package/lib/components/DataGrid/useLogic/useLogic.mjs +31 -36
- package/lib/components/DataGridActionCell/styles.mjs +13 -3
- package/lib/components/DataGridActionCell/useLogic/useLogic.mjs +13 -42
- package/lib/components/DataGridOld/Cell/styles.d.ts +1 -1
- package/lib/components/DataGridOld/HeadCell/styles.d.ts +1 -1
- package/lib/components/DataGridPagination/DataGridPagination.mjs +9 -9
- package/lib/components/DataGridPagination/faker.d.ts +1 -1
- package/lib/components/DataGridPagination/styles.d.ts +2 -2
- package/lib/components/DataGridPagination/styles.mjs +22 -12
- package/lib/components/Description/Name/styles.mjs +15 -5
- package/lib/components/Description/Value/styles.d.ts +10 -10
- package/lib/components/Description/Value/styles.mjs +83 -9
- package/lib/components/Description/Value/useLogic/useLogic.mjs +3 -3
- package/lib/components/Description/styles.mjs +13 -3
- package/lib/components/Description/useLogic/useLogic.d.ts +1 -1
- package/lib/components/DescriptionList/styles.mjs +20 -10
- package/lib/components/DescriptionTooltip/DescriptionTooltip.d.ts +9 -0
- package/lib/components/DescriptionTooltip/DescriptionTooltip.mjs +14 -0
- package/lib/components/DescriptionTooltip/index.d.ts +1 -0
- package/lib/components/DescriptionTooltip/styles.d.ts +4 -0
- package/lib/components/DescriptionTooltip/styles.mjs +27 -0
- package/lib/components/DialogContentText/styles.d.ts +1 -1
- package/lib/components/DialogHeader/styles.mjs +22 -12
- package/lib/components/Filename/styles.d.ts +2 -2
- package/lib/components/Filename/styles.mjs +16 -6
- package/lib/components/FormHelperText/FormHelperTextContent/styles.mjs +26 -16
- package/lib/components/FormLabel/styles.d.ts +1 -1
- package/lib/components/IconButton/styles.mjs +20 -14
- package/lib/components/Link/Link.d.ts +1 -1
- package/lib/components/Link/styles.d.ts +1 -1
- package/lib/components/ListItem/styles.d.ts +1 -1
- package/lib/components/MaskField/MaskField.d.ts +6 -0
- package/lib/components/MaskField/MaskField.mjs +10 -0
- package/lib/components/MaskField/index.d.ts +1 -0
- package/lib/components/MenuList/styles.d.ts +1 -1
- package/lib/components/NavMenu/Item/ItemButton/styles.d.ts +125 -125
- package/lib/components/OverflowTypography/styles.d.ts +4 -4
- package/lib/components/OverflowTypography/styles.mjs +16 -6
- package/lib/components/Placeholder/Image/styles.mjs +14 -4
- package/lib/components/Placeholder/styles.d.ts +4 -4
- package/lib/components/Placeholder/styles.mjs +31 -21
- package/lib/components/SearchField/styles.mjs +22 -12
- package/lib/components/Select/styles.d.ts +1 -1
- package/lib/components/Skeleton/styles.d.ts +1 -1
- package/lib/components/Skeleton/styles.mjs +7 -10
- package/lib/components/Slider/Slider.d.ts +2 -0
- package/lib/components/Slider/Slider.mjs +6 -0
- package/lib/components/Slider/index.d.ts +1 -0
- package/lib/components/Slider/styles.d.ts +1 -0
- package/lib/components/Slider/styles.mjs +40 -0
- package/lib/components/Tab/styles.d.ts +1 -1
- package/lib/components/Tabs/styles.mjs +16 -6
- package/lib/components/Tag/Tag.mjs +27 -23
- package/lib/components/Tag/styles.d.ts +1 -1
- package/lib/components/TagBadge/styles.mjs +14 -4
- package/lib/components/TagsList/Tag/styles.d.ts +1 -1
- package/lib/components/TagsList/Tag/styles.mjs +14 -4
- package/lib/components/TagsList/styles.mjs +13 -3
- package/lib/components/TextField/TextField.d.ts +1 -1
- package/lib/components/TextField/TextField.mjs +1 -1
- package/lib/components/ThemeProvider/ThemeProvider.d.ts +11 -0
- package/lib/components/ThemeProvider/ThemeProvider.mjs +9 -0
- package/lib/components/ThemeProvider/index.d.ts +1 -0
- package/lib/components/index.d.ts +12 -0
- package/lib/components.css +1 -0
- package/lib/icons/index.d.ts +1 -0
- package/lib/index.mjs +225 -208
- package/lib/node_modules/.pnpm/@emotion_hash@0.9.2/node_modules/@emotion/hash/dist/emotion-hash.esm.mjs +22 -0
- package/lib/node_modules/.pnpm/@emotion_memoize@0.9.0/node_modules/@emotion/memoize/dist/emotion-memoize.esm.mjs +9 -0
- package/lib/node_modules/.pnpm/@emotion_serialize@1.3.3/node_modules/@emotion/serialize/dist/emotion-serialize.esm.mjs +120 -0
- package/lib/node_modules/.pnpm/@emotion_unitless@0.10.0/node_modules/@emotion/unitless/dist/emotion-unitless.esm.mjs +53 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/colors/blue.mjs +10 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/colors/common.mjs +7 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/colors/green.mjs +11 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/colors/grey.mjs +19 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/colors/lightBlue.mjs +10 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/colors/orange.mjs +10 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/colors/purple.mjs +11 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/colors/red.mjs +10 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/createColorScheme.mjs +44 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/createGetSelector.mjs +41 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/createMixins.mjs +19 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/createPalette.mjs +261 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/createTheme.mjs +60 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/createThemeNoVars.mjs +75 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/createThemeWithVars.mjs +161 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/createTransitions.mjs +66 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/createTypography.mjs +80 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/defaultTheme.mjs +5 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/excludeVariablesFromRoot.mjs +4 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/getOverlayAlpha.mjs +7 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/identifier.mjs +4 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/rootShouldForwardProp.mjs +5 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/shadows.mjs +7 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/shouldSkipGeneratingVar.mjs +7 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/slotShouldForwardProp.mjs +6 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/stringifyTheme.mjs +29 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/styled.mjs +13 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/useTheme.mjs +11 -0
- package/lib/node_modules/.pnpm/@mui_material@6.4.5_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion__861faf9ddc4761e7658ec96cff5e306a/node_modules/@mui/material/styles/zIndex.mjs +13 -0
- package/lib/node_modules/.pnpm/@mui_styled-engine@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emo_6faee6770fc007ef214af3c8aa5695a8/node_modules/@mui/styled-engine/index.mjs +33 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/borders/borders.mjs +45 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/breakpoints/breakpoints.mjs +67 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/colorManipulator/colorManipulator.mjs +145 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/compose/compose.mjs +10 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/createBreakpoints/createBreakpoints.mjs +62 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/createStyled/createStyled.mjs +153 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/createTheme/applyStyles.mjs +15 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/createTheme/createSpacing.mjs +15 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/createTheme/createTheme.mjs +44 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/createTheme/shape.mjs +6 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/cssContainerQueries/cssContainerQueries.mjs +49 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/cssGrid/cssGrid.mjs +78 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/cssVars/cssVarsParser.mjs +41 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/cssVars/getColorSchemeSelector.mjs +8 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/cssVars/prepareCssVars.mjs +117 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/cssVars/prepareTypographyVars.mjs +10 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/memoize/memoize.mjs +7 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/merge/merge.mjs +10 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/palette/palette.mjs +26 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/preprocessStyles.mjs +17 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/responsivePropType/responsivePropType.mjs +5 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/sizing/sizing.mjs +63 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/spacing/spacing.mjs +84 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/style/style.mjs +43 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/styleFunctionSx/defaultSxConfig.mjs +296 -0
- package/lib/node_modules/.pnpm/@mui_system@6.4.3_@emotion_react@11.14.0_@types_react@19.0.10_react@19.0.0__@emotion_st_5f10f346196051285cfc2e46c43ad4ff/node_modules/@mui/system/esm/styleFunctionSx/styleFunctionSx.mjs +92 -0
- package/lib/node_modules/.pnpm/@mui_utils@6.4.3_@types_react@19.0.10_react@19.0.0/node_modules/@mui/utils/esm/ClassNameGenerator/ClassNameGenerator.mjs +17 -0
- package/lib/node_modules/.pnpm/@mui_utils@6.4.3_@types_react@19.0.10_react@19.0.0/node_modules/@mui/utils/esm/capitalize/capitalize.mjs +9 -0
- package/lib/node_modules/.pnpm/@mui_utils@6.4.3_@types_react@19.0.10_react@19.0.0/node_modules/@mui/utils/esm/clamp/clamp.mjs +6 -0
- package/lib/node_modules/.pnpm/@mui_utils@6.4.3_@types_react@19.0.10_react@19.0.0/node_modules/@mui/utils/esm/deepmerge/deepmerge.mjs +31 -0
- package/lib/node_modules/.pnpm/@mui_utils@6.4.3_@types_react@19.0.10_react@19.0.0/node_modules/@mui/utils/esm/formatMuiErrorMessage/formatMuiErrorMessage.mjs +7 -0
- package/lib/node_modules/.pnpm/@mui_utils@6.4.3_@types_react@19.0.10_react@19.0.0/node_modules/@mui/utils/esm/generateUtilityClass/generateUtilityClass.mjs +23 -0
- package/lib/node_modules/.pnpm/@mui_utils@6.4.3_@types_react@19.0.10_react@19.0.0/node_modules/@mui/utils/esm/getDisplayName/getDisplayName.mjs +28 -0
- package/lib/node_modules/.pnpm/@react-input_core@2.0.2_@types_react@19.0.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/@react-input/core/module/Input.mjs +55 -0
- package/lib/node_modules/.pnpm/@react-input_core@2.0.2_@types_react@19.0.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/@react-input/core/module/SyntheticChangeError.mjs +11 -0
- package/lib/node_modules/.pnpm/@react-input_core@2.0.2_@types_react@19.0.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/@react-input/core/module/createProxy.mjs +8 -0
- package/lib/node_modules/.pnpm/@react-input_core@2.0.2_@types_react@19.0.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/@react-input/core/module/helpers-C8k3UfPS.mjs +129 -0
- package/lib/node_modules/.pnpm/@react-input_mask@2.0.4_@types_react@19.0.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/@react-input/mask/module/Mask.mjs +90 -0
- package/lib/node_modules/.pnpm/@react-input_mask@2.0.4_@types_react@19.0.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/@react-input/mask/module/helpers-BtaZ0NTN.mjs +226 -0
- package/lib/node_modules/.pnpm/@react-input_mask@2.0.4_@types_react@19.0.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/@react-input/mask/module/useMask.mjs +12 -0
- package/lib/node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign/index.mjs +54 -0
- package/lib/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/checkPropTypes.mjs +54 -0
- package/lib/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithThrowingShims.mjs +52 -0
- package/lib/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithTypeCheckers.mjs +329 -0
- package/lib/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/index.mjs +17 -0
- package/lib/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/ReactPropTypesSecret.mjs +10 -0
- package/lib/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/has.mjs +7 -0
- package/lib/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.development.mjs +95 -0
- package/lib/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.mjs +78 -0
- package/lib/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.mjs +10 -0
- package/lib/node_modules/.pnpm/react-is@19.0.0/node_modules/react-is/cjs/react-is.development.mjs +76 -0
- package/lib/node_modules/.pnpm/react-is@19.0.0/node_modules/react-is/cjs/react-is.production.mjs +76 -0
- package/lib/node_modules/.pnpm/react-is@19.0.0/node_modules/react-is/index.mjs +10 -0
- package/lib/node_modules/.pnpm/react@19.0.0/node_modules/react/cjs/react-jsx-runtime.development.mjs +18 -18
- package/lib/theme/baseTheme/baseTheme.d.ts +1 -3
- package/lib/theme/baseTheme/baseTheme.mjs +21 -21
- package/lib/theme/components/MuiButton.mjs +5 -5
- package/lib/theme/components/MuiSwitch.mjs +1 -1
- package/lib/theme/components/components.d.ts +1 -19
- package/lib/theme/components/components.mjs +71 -108
- package/lib/theme/index.d.ts +1 -1
- package/lib/theme/palette/palette.mjs +20 -20
- package/lib/theme/typography.mjs +6 -2
- package/package.json +3 -1
- package/lib/components/DataGrid/DataGridContext/DataGridContext.d.ts +0 -7
- package/lib/components/DataGrid/DataGridContext/DataGridContext.mjs +0 -12
- package/lib/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.d.ts +0 -6
- package/lib/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.mjs +0 -41
- package/lib/components/DataGrid/DataGridContext/DataGridProvider/index.d.ts +0 -1
- package/lib/components/DataGrid/DataGridContext/index.d.ts +0 -2
- package/lib/components/DataGrid/Row/NestedChildren/NestedChildren.d.ts +0 -55
- package/lib/components/DataGrid/Row/NestedChildren/NestedChildren.mjs +0 -72
- package/lib/components/DataGrid/Row/NestedChildren/index.d.ts +0 -1
- package/lib/components/DataGrid/Row/NestedChildren/styles.d.ts +0 -20
- package/lib/components/DataGrid/Row/NestedChildren/styles.mjs +0 -68
- package/lib/components/DataGrid/Row/NestedChildren/useLogic/useLogic.d.ts +0 -18
- package/lib/components/DataGrid/Row/NestedChildren/useLogic/useLogic.mjs +0 -27
- package/lib/components/DataGrid/Row/RowContext/RowContext.d.ts +0 -7
- package/lib/components/DataGrid/Row/RowContext/RowContext.mjs +0 -11
- package/lib/components/DataGrid/Row/RowContext/RowProvider/RowProvider.d.ts +0 -6
- package/lib/components/DataGrid/Row/RowContext/RowProvider/RowProvider.mjs +0 -25
- package/lib/components/DataGrid/Row/RowContext/RowProvider/index.d.ts +0 -1
- package/lib/components/DataGrid/Row/RowContext/index.d.ts +0 -2
- package/lib/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.d.ts +0 -4
- package/lib/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.mjs +0 -8
- package/lib/components/DataGrid/Row/useLogic/utils/getColumnsMap/index.d.ts +0 -1
- package/lib/components/DataGrid/Row/useLogic/utils/index.d.ts +0 -2
- package/lib/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/index.d.ts +0 -1
- package/lib/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.d.ts +0 -2
- package/lib/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.mjs +0 -14
- package/lib/theme/hooks/index.d.ts +0 -1
- package/lib/theme/hooks/useTheme/index.d.ts +0 -2
- package/lib/theme/hooks/useTheme/index.mjs +0 -5
- /package/lib/components/{DataGrid/Row/NestedChildren → ActionGroup}/useLogic/index.d.ts +0 -0
package/lib/node_modules/.pnpm/react-is@19.0.0/node_modules/react-is/cjs/react-is.production.mjs
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { __exports as e } from "../../../../../../_virtual/react-is.production.mjs";
|
|
2
|
+
/**
|
|
3
|
+
* @license React
|
|
4
|
+
* react-is.production.js
|
|
5
|
+
*
|
|
6
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
7
|
+
*
|
|
8
|
+
* This source code is licensed under the MIT license found in the
|
|
9
|
+
* LICENSE file in the root directory of this source tree.
|
|
10
|
+
*/
|
|
11
|
+
var R;
|
|
12
|
+
function d() {
|
|
13
|
+
if (R) return e;
|
|
14
|
+
R = 1;
|
|
15
|
+
var l = Symbol.for("react.transitional.element"), T = Symbol.for("react.portal"), n = Symbol.for("react.fragment"), o = Symbol.for("react.strict_mode"), f = Symbol.for("react.profiler"), s = Symbol.for("react.consumer"), i = Symbol.for("react.context"), u = Symbol.for("react.forward_ref"), a = Symbol.for("react.suspense"), E = Symbol.for("react.suspense_list"), c = Symbol.for("react.memo"), _ = Symbol.for("react.lazy"), S = Symbol.for("react.offscreen"), C = Symbol.for("react.client.reference");
|
|
16
|
+
function t(r) {
|
|
17
|
+
if (typeof r == "object" && r !== null) {
|
|
18
|
+
var m = r.$$typeof;
|
|
19
|
+
switch (m) {
|
|
20
|
+
case l:
|
|
21
|
+
switch (r = r.type, r) {
|
|
22
|
+
case n:
|
|
23
|
+
case f:
|
|
24
|
+
case o:
|
|
25
|
+
case a:
|
|
26
|
+
case E:
|
|
27
|
+
return r;
|
|
28
|
+
default:
|
|
29
|
+
switch (r = r && r.$$typeof, r) {
|
|
30
|
+
case i:
|
|
31
|
+
case u:
|
|
32
|
+
case _:
|
|
33
|
+
case c:
|
|
34
|
+
return r;
|
|
35
|
+
case s:
|
|
36
|
+
return r;
|
|
37
|
+
default:
|
|
38
|
+
return m;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
case T:
|
|
42
|
+
return m;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
return e.ContextConsumer = s, e.ContextProvider = i, e.Element = l, e.ForwardRef = u, e.Fragment = n, e.Lazy = _, e.Memo = c, e.Portal = T, e.Profiler = f, e.StrictMode = o, e.Suspense = a, e.SuspenseList = E, e.isContextConsumer = function(r) {
|
|
47
|
+
return t(r) === s;
|
|
48
|
+
}, e.isContextProvider = function(r) {
|
|
49
|
+
return t(r) === i;
|
|
50
|
+
}, e.isElement = function(r) {
|
|
51
|
+
return typeof r == "object" && r !== null && r.$$typeof === l;
|
|
52
|
+
}, e.isForwardRef = function(r) {
|
|
53
|
+
return t(r) === u;
|
|
54
|
+
}, e.isFragment = function(r) {
|
|
55
|
+
return t(r) === n;
|
|
56
|
+
}, e.isLazy = function(r) {
|
|
57
|
+
return t(r) === _;
|
|
58
|
+
}, e.isMemo = function(r) {
|
|
59
|
+
return t(r) === c;
|
|
60
|
+
}, e.isPortal = function(r) {
|
|
61
|
+
return t(r) === T;
|
|
62
|
+
}, e.isProfiler = function(r) {
|
|
63
|
+
return t(r) === f;
|
|
64
|
+
}, e.isStrictMode = function(r) {
|
|
65
|
+
return t(r) === o;
|
|
66
|
+
}, e.isSuspense = function(r) {
|
|
67
|
+
return t(r) === a;
|
|
68
|
+
}, e.isSuspenseList = function(r) {
|
|
69
|
+
return t(r) === E;
|
|
70
|
+
}, e.isValidElementType = function(r) {
|
|
71
|
+
return typeof r == "string" || typeof r == "function" || r === n || r === f || r === o || r === a || r === E || r === S || typeof r == "object" && r !== null && (r.$$typeof === _ || r.$$typeof === c || r.$$typeof === i || r.$$typeof === s || r.$$typeof === u || r.$$typeof === C || r.getModuleId !== void 0);
|
|
72
|
+
}, e.typeOf = t, e;
|
|
73
|
+
}
|
|
74
|
+
export {
|
|
75
|
+
d as __require
|
|
76
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { __module as e } from "../../../../../_virtual/index2.mjs";
|
|
2
|
+
import { __require as o } from "./cjs/react-is.production.mjs";
|
|
3
|
+
import { __require as t } from "./cjs/react-is.development.mjs";
|
|
4
|
+
var r;
|
|
5
|
+
function p() {
|
|
6
|
+
return r ? e.exports : (r = 1, process.env.NODE_ENV === "production" ? e.exports = /* @__PURE__ */ o() : e.exports = /* @__PURE__ */ t(), e.exports);
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
p as __require
|
|
10
|
+
};
|
package/lib/node_modules/.pnpm/react@19.0.0/node_modules/react/cjs/react-jsx-runtime.development.mjs
CHANGED
|
@@ -22,29 +22,29 @@ function he() {
|
|
|
22
22
|
return "Fragment";
|
|
23
23
|
case de:
|
|
24
24
|
return "Portal";
|
|
25
|
-
case
|
|
25
|
+
case K:
|
|
26
26
|
return "Profiler";
|
|
27
|
-
case
|
|
27
|
+
case H:
|
|
28
28
|
return "StrictMode";
|
|
29
29
|
case A:
|
|
30
30
|
return "Suspense";
|
|
31
|
-
case
|
|
31
|
+
case R:
|
|
32
32
|
return "SuspenseList";
|
|
33
33
|
}
|
|
34
34
|
if (typeof e == "object")
|
|
35
35
|
switch (typeof e.tag == "number" && console.error(
|
|
36
36
|
"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
|
|
37
37
|
), e.$$typeof) {
|
|
38
|
-
case
|
|
38
|
+
case q:
|
|
39
39
|
return (e.displayName || "Context") + ".Provider";
|
|
40
|
-
case
|
|
40
|
+
case X:
|
|
41
41
|
return (e._context.displayName || "Context") + ".Consumer";
|
|
42
42
|
case S:
|
|
43
43
|
var r = e.render;
|
|
44
44
|
return e = e.displayName, e || (e = r.displayName || r.name || "", e = e !== "" ? "ForwardRef(" + e + ")" : "ForwardRef"), e;
|
|
45
|
-
case
|
|
45
|
+
case k:
|
|
46
46
|
return r = e.displayName || null, r !== null ? r : s(e.type) || "Memo";
|
|
47
|
-
case
|
|
47
|
+
case p:
|
|
48
48
|
r = e._payload, e = e._init;
|
|
49
49
|
try {
|
|
50
50
|
return s(e(r));
|
|
@@ -235,16 +235,16 @@ function he() {
|
|
|
235
235
|
switch (e) {
|
|
236
236
|
case A:
|
|
237
237
|
return y("Suspense");
|
|
238
|
-
case
|
|
238
|
+
case R:
|
|
239
239
|
return y("SuspenseList");
|
|
240
240
|
}
|
|
241
241
|
if (typeof e == "object")
|
|
242
242
|
switch (e.$$typeof) {
|
|
243
243
|
case S:
|
|
244
244
|
return e = U(e.render, !1), e;
|
|
245
|
-
case
|
|
245
|
+
case k:
|
|
246
246
|
return T(e.type);
|
|
247
|
-
case
|
|
247
|
+
case p:
|
|
248
248
|
r = e._payload, e = e._init;
|
|
249
249
|
try {
|
|
250
250
|
return T(e(r));
|
|
@@ -305,11 +305,11 @@ function he() {
|
|
|
305
305
|
}), Object.freeze && (Object.freeze(e.props), Object.freeze(e)), e;
|
|
306
306
|
}
|
|
307
307
|
function z(e, r, o, n, u, a) {
|
|
308
|
-
if (typeof e == "string" || typeof e == "function" || e === j || e ===
|
|
308
|
+
if (typeof e == "string" || typeof e == "function" || e === j || e === K || e === H || e === A || e === R || e === ge || typeof e == "object" && e !== null && (e.$$typeof === p || e.$$typeof === k || e.$$typeof === q || e.$$typeof === X || e.$$typeof === S || e.$$typeof === _e || e.getModuleId !== void 0)) {
|
|
309
309
|
var t = r.children;
|
|
310
310
|
if (t !== void 0)
|
|
311
311
|
if (n)
|
|
312
|
-
if (
|
|
312
|
+
if (N(t)) {
|
|
313
313
|
for (n = 0; n < t.length; n++)
|
|
314
314
|
V(t[n], e);
|
|
315
315
|
Object.freeze && Object.freeze(t);
|
|
@@ -319,7 +319,7 @@ function he() {
|
|
|
319
319
|
);
|
|
320
320
|
else V(t, e);
|
|
321
321
|
} else
|
|
322
|
-
t = "", (e === void 0 || typeof e == "object" && e !== null && Object.keys(e).length === 0) && (t += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."), e === null ? n = "null" :
|
|
322
|
+
t = "", (e === void 0 || typeof e == "object" && e !== null && Object.keys(e).length === 0) && (t += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."), e === null ? n = "null" : N(e) ? n = "array" : e !== void 0 && e.$$typeof === O ? (n = "<" + (s(e.type) || "Unknown") + " />", t = " Did you accidentally export a JSX literal instead of a component?") : n = typeof e, console.error(
|
|
323
323
|
"React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",
|
|
324
324
|
n,
|
|
325
325
|
t
|
|
@@ -354,22 +354,22 @@ React keys must be passed directly to JSX without using spread:
|
|
|
354
354
|
}
|
|
355
355
|
function V(e, r) {
|
|
356
356
|
if (typeof e == "object" && e && e.$$typeof !== ye) {
|
|
357
|
-
if (
|
|
357
|
+
if (N(e))
|
|
358
358
|
for (var o = 0; o < e.length; o++) {
|
|
359
359
|
var n = e[o];
|
|
360
|
-
h(n) &&
|
|
360
|
+
h(n) && G(n, r);
|
|
361
361
|
}
|
|
362
362
|
else if (h(e))
|
|
363
363
|
e._store && (e._store.validated = 1);
|
|
364
364
|
else if (e === null || typeof e != "object" ? o = null : (o = B && e[B] || e["@@iterator"], o = typeof o == "function" ? o : null), typeof o == "function" && o !== e.entries && (o = o.call(e), o !== e))
|
|
365
365
|
for (; !(e = o.next()).done; )
|
|
366
|
-
h(e.value) &&
|
|
366
|
+
h(e.value) && G(e.value, r);
|
|
367
367
|
}
|
|
368
368
|
}
|
|
369
369
|
function h(e) {
|
|
370
370
|
return typeof e == "object" && e !== null && e.$$typeof === O;
|
|
371
371
|
}
|
|
372
|
-
function
|
|
372
|
+
function G(e, r) {
|
|
373
373
|
if (e._store && !e._store.validated && e.key == null && (e._store.validated = 1, r = ve(r), !ae[r])) {
|
|
374
374
|
ae[r] = !0;
|
|
375
375
|
var o = "";
|
|
@@ -393,7 +393,7 @@ Check the render method of \`` + o + "`."), r || (e = s(e)) && (r = `
|
|
|
393
393
|
|
|
394
394
|
Check the top-level render call using <` + e + ">."), r;
|
|
395
395
|
}
|
|
396
|
-
var be = we, O = Symbol.for("react.transitional.element"), de = Symbol.for("react.portal"), j = Symbol.for("react.fragment"),
|
|
396
|
+
var be = we, O = Symbol.for("react.transitional.element"), de = Symbol.for("react.portal"), j = Symbol.for("react.fragment"), H = Symbol.for("react.strict_mode"), K = Symbol.for("react.profiler"), X = Symbol.for("react.consumer"), q = Symbol.for("react.context"), S = Symbol.for("react.forward_ref"), A = Symbol.for("react.suspense"), R = Symbol.for("react.suspense_list"), k = Symbol.for("react.memo"), p = Symbol.for("react.lazy"), ge = Symbol.for("react.offscreen"), B = Symbol.iterator, me = Symbol.for("react.client.reference"), E = be.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, J = Object.prototype.hasOwnProperty, v = Object.assign, _e = Symbol.for("react.client.reference"), N = Array.isArray, g = 0, Z, F, I, L, Q, D, ee;
|
|
397
397
|
$.__reactDisabledLog = !0;
|
|
398
398
|
var x, re, P = !1, Y = new (typeof WeakMap == "function" ? WeakMap : Map)(), ye = Symbol.for("react.client.reference"), oe, te = {}, ne = {}, ae = {};
|
|
399
399
|
_.Fragment = j, _.jsx = function(e, r, o, n, u) {
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { BreakpointsOptions, ThemeOptions } from '@mui/material';
|
|
2
|
-
import { FontsUrls } from '../components';
|
|
3
2
|
import { Theme } from '../types';
|
|
4
3
|
export type CreateThemeParams = {
|
|
5
4
|
options?: ThemeOptions;
|
|
6
|
-
fontsUrls: FontsUrls;
|
|
7
5
|
breakpoints?: BreakpointsOptions;
|
|
8
6
|
};
|
|
9
|
-
export declare const createTheme: (params
|
|
7
|
+
export declare const createTheme: (params?: CreateThemeParams) => Theme;
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
import { createTheme as i } from "@mui/material";
|
|
2
2
|
import { mergeDeep as n } from "remeda";
|
|
3
|
-
import { defaultBreakpoints as
|
|
4
|
-
import {
|
|
5
|
-
import { SPACING as
|
|
6
|
-
import { elevation as
|
|
7
|
-
import { getPalette as
|
|
8
|
-
import { shape as
|
|
9
|
-
import { getTypography as
|
|
10
|
-
const x = (
|
|
11
|
-
const
|
|
12
|
-
breakpoints: s,
|
|
13
|
-
spacing:
|
|
14
|
-
palette:
|
|
15
|
-
components:
|
|
16
|
-
shape:
|
|
17
|
-
elevation:
|
|
18
|
-
},
|
|
19
|
-
return n(
|
|
20
|
-
elevation:
|
|
21
|
-
shape:
|
|
22
|
-
typography:
|
|
23
|
-
...
|
|
3
|
+
import { defaultBreakpoints as s } from "../breakpoints.mjs";
|
|
4
|
+
import { components as a } from "../components/components.mjs";
|
|
5
|
+
import { SPACING as c } from "../constants.mjs";
|
|
6
|
+
import { elevation as t } from "../elevation.mjs";
|
|
7
|
+
import { getPalette as f } from "../palette/palette.mjs";
|
|
8
|
+
import { shape as r } from "../shape.mjs";
|
|
9
|
+
import { getTypography as h } from "../typography.mjs";
|
|
10
|
+
const x = (e) => {
|
|
11
|
+
const p = e?.options || {}, m = {
|
|
12
|
+
breakpoints: e?.breakpoints || s,
|
|
13
|
+
spacing: c,
|
|
14
|
+
palette: f(),
|
|
15
|
+
components: a,
|
|
16
|
+
shape: r,
|
|
17
|
+
elevation: t
|
|
18
|
+
}, o = i(m);
|
|
19
|
+
return n(o, {
|
|
20
|
+
elevation: t,
|
|
21
|
+
shape: r,
|
|
22
|
+
typography: h(o),
|
|
23
|
+
...p
|
|
24
24
|
});
|
|
25
25
|
};
|
|
26
26
|
export {
|
|
@@ -93,10 +93,10 @@ const s = ({ type: t, values: r, defaultValue: a }) => t && r[t] || a, f = (t) =
|
|
|
93
93
|
}) => {
|
|
94
94
|
const l = {
|
|
95
95
|
selected: {
|
|
96
|
-
default: e.palette.
|
|
97
|
-
hover: e.palette.
|
|
98
|
-
active: e.palette.
|
|
99
|
-
focus: e.palette.
|
|
96
|
+
default: e.palette.primary[900],
|
|
97
|
+
hover: e.palette.primary[700],
|
|
98
|
+
active: e.palette.primary[800],
|
|
99
|
+
focus: e.palette.primary[900]
|
|
100
100
|
},
|
|
101
101
|
light: {
|
|
102
102
|
error: {
|
|
@@ -114,7 +114,7 @@ const s = ({ type: t, values: r, defaultValue: a }) => t && r[t] || a, f = (t) =
|
|
|
114
114
|
primary: {
|
|
115
115
|
default: e.palette.grey[100],
|
|
116
116
|
hover: e.palette.grey[200],
|
|
117
|
-
active: e.palette.
|
|
117
|
+
active: e.palette.grey[100],
|
|
118
118
|
focus: e.palette.grey[100]
|
|
119
119
|
},
|
|
120
120
|
warning: {
|
|
@@ -20,7 +20,7 @@ const o = (t) => t.replace("#", "%23"), e = (t) => `url('data:image/svg+xml;utf8
|
|
|
20
20
|
"& :not(.Mui-checked).MuiSwitch-switchBase": {
|
|
21
21
|
padding: 0,
|
|
22
22
|
"& + .MuiSwitch-track": {
|
|
23
|
-
backgroundColor: t.palette.grey[
|
|
23
|
+
backgroundColor: t.palette.grey[600],
|
|
24
24
|
opacity: 1
|
|
25
25
|
}
|
|
26
26
|
},
|
|
@@ -1,21 +1,3 @@
|
|
|
1
1
|
import { Components } from '@mui/material';
|
|
2
2
|
import { Theme } from '../types';
|
|
3
|
-
export
|
|
4
|
-
bold: {
|
|
5
|
-
woff: string;
|
|
6
|
-
woff2: string;
|
|
7
|
-
};
|
|
8
|
-
light: {
|
|
9
|
-
woff: string;
|
|
10
|
-
woff2: string;
|
|
11
|
-
};
|
|
12
|
-
medium: {
|
|
13
|
-
woff: string;
|
|
14
|
-
woff2: string;
|
|
15
|
-
};
|
|
16
|
-
regular: {
|
|
17
|
-
woff: string;
|
|
18
|
-
woff2: string;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
export declare const getComponents: (fontUrls: FontsUrls) => Components<Theme>;
|
|
3
|
+
export declare const components: Components<Theme>;
|
|
@@ -1,120 +1,83 @@
|
|
|
1
|
-
import { MuiAlert as
|
|
2
|
-
import { MuiAutocomplete as
|
|
3
|
-
import { MuiButton as
|
|
4
|
-
import { MuiButtonBase as
|
|
5
|
-
import { MuiCircularProgress as
|
|
6
|
-
import { MuiDialog as
|
|
7
|
-
import { MuiDialogActions as
|
|
8
|
-
import { MuiDialogContent as
|
|
9
|
-
import { MuiDialogTitle as
|
|
10
|
-
import { MuiDrawer as
|
|
11
|
-
import { MuiFormHelperText as
|
|
12
|
-
import { MuiFormLabel as
|
|
13
|
-
import { MuiInputLabel as
|
|
14
|
-
import { MuiLinearProgress as
|
|
15
|
-
import { MuiListItemButton as
|
|
16
|
-
import { MuiListItemText as
|
|
1
|
+
import { MuiAlert as o } from "./MuiAlert.mjs";
|
|
2
|
+
import { MuiAutocomplete as i } from "./MuiAutocomplete.mjs";
|
|
3
|
+
import { MuiButton as r } from "./MuiButton.mjs";
|
|
4
|
+
import { MuiButtonBase as t } from "./MuiButtonBase.mjs";
|
|
5
|
+
import { MuiCircularProgress as m } from "./MuiCircularProgress.mjs";
|
|
6
|
+
import { MuiDialog as p } from "./MuiDialog.mjs";
|
|
7
|
+
import { MuiDialogActions as u } from "./MuiDialogActions.mjs";
|
|
8
|
+
import { MuiDialogContent as e } from "./MuiDialogContent.mjs";
|
|
9
|
+
import { MuiDialogTitle as M } from "./MuiDialogTitle.mjs";
|
|
10
|
+
import { MuiDrawer as f } from "./MuiDrawer.mjs";
|
|
11
|
+
import { MuiFormHelperText as l } from "./MuiFormHelperText.mjs";
|
|
12
|
+
import { MuiFormLabel as a } from "./MuiFormLabel.mjs";
|
|
13
|
+
import { MuiInputLabel as n } from "./MuiInputLabel.mjs";
|
|
14
|
+
import { MuiLinearProgress as s } from "./MuiLinearProgress.mjs";
|
|
15
|
+
import { MuiListItemButton as g } from "./MuiListItemButton.mjs";
|
|
16
|
+
import { MuiListItemText as T } from "./MuiListItemText.mjs";
|
|
17
17
|
import { MuiMenu as b } from "./MuiMenu.mjs";
|
|
18
|
-
import { MuiMenuItem as
|
|
19
|
-
import { MuiOutlinedInput as
|
|
18
|
+
import { MuiMenuItem as c } from "./MuiMenuItem.mjs";
|
|
19
|
+
import { MuiOutlinedInput as d } from "./MuiOutlinedInput.mjs";
|
|
20
20
|
import { MuiPaginationItem as B } from "./MuiPaginationItem.mjs";
|
|
21
|
-
import { MuiPaper as
|
|
22
|
-
import { MuiStep as
|
|
23
|
-
import { MuiStepConnector as
|
|
24
|
-
import { MuiStepLabel as
|
|
25
|
-
import { MuiSwitch as
|
|
26
|
-
import { MuiTab as
|
|
27
|
-
import { MuiTableCell as
|
|
28
|
-
import { MuiTableHead as
|
|
29
|
-
import { MuiTableRow as
|
|
30
|
-
import { MuiTabs as
|
|
31
|
-
import { MuiTextField as
|
|
32
|
-
import { MuiToggleButton as
|
|
33
|
-
import { MuiToggleButtonGroup as
|
|
34
|
-
import { MuiTypography as
|
|
35
|
-
const
|
|
36
|
-
@font-face {
|
|
37
|
-
font-family: 'Ubuntu';
|
|
38
|
-
font-style: 'normal';
|
|
39
|
-
font-weight: 300;
|
|
40
|
-
font-display: swap;
|
|
41
|
-
src: url(${o.light.woff2}) format('woff2'), url(${o.light.woff}) format('woff');
|
|
42
|
-
}
|
|
43
|
-
@font-face {
|
|
44
|
-
font-family: 'Ubuntu';
|
|
45
|
-
font-style: 'normal';
|
|
46
|
-
font-weight: 400;
|
|
47
|
-
font-display: swap;
|
|
48
|
-
src: url(${o.regular.woff2}) format('woff2'), url(${o.regular.woff}) format('woff');
|
|
49
|
-
}
|
|
50
|
-
@font-face {
|
|
51
|
-
font-family: 'Ubuntu';
|
|
52
|
-
font-style: 'normal';
|
|
53
|
-
font-weight: 500;
|
|
54
|
-
font-display: swap;
|
|
55
|
-
src: url(${o.medium.woff2}) format('woff2'), url(${o.medium.woff}) format('woff');
|
|
56
|
-
}
|
|
57
|
-
@font-face {
|
|
58
|
-
font-family: 'Ubuntu';
|
|
59
|
-
font-style: 'normal';
|
|
60
|
-
font-weight: 700;
|
|
61
|
-
font-display: swap;
|
|
62
|
-
src: url(${o.bold.woff2}) format('woff2'), url(${o.bold.woff}) format('woff');
|
|
63
|
-
}
|
|
64
|
-
`, H = (o) => ({
|
|
65
|
-
styleOverrides: t(o)
|
|
66
|
-
}), k = (o) => ({
|
|
67
|
-
styleOverrides: {
|
|
68
|
-
root: t(o)
|
|
69
|
-
}
|
|
70
|
-
}), G = {
|
|
21
|
+
import { MuiPaper as I } from "./MuiPaper.mjs";
|
|
22
|
+
import { MuiStep as L } from "./MuiStep.mjs";
|
|
23
|
+
import { MuiStepConnector as P } from "./MuiStepConnector.mjs";
|
|
24
|
+
import { MuiStepLabel as x } from "./MuiStepLabel.mjs";
|
|
25
|
+
import { MuiSwitch as C } from "./MuiSwitch.mjs";
|
|
26
|
+
import { MuiTab as D } from "./MuiTab.mjs";
|
|
27
|
+
import { MuiTableCell as R } from "./MuiTableCell.mjs";
|
|
28
|
+
import { MuiTableHead as S } from "./MuiTableHead.mjs";
|
|
29
|
+
import { MuiTableRow as h } from "./MuiTableRow.mjs";
|
|
30
|
+
import { MuiTabs as w } from "./MuiTabs.mjs";
|
|
31
|
+
import { MuiTextField as A } from "./MuiTextField.mjs";
|
|
32
|
+
import { MuiToggleButton as F } from "./MuiToggleButton.mjs";
|
|
33
|
+
import { MuiToggleButtonGroup as y } from "./MuiToggleButtonGroup.mjs";
|
|
34
|
+
import { MuiTypography as H } from "./MuiTypography.mjs";
|
|
35
|
+
const k = {
|
|
71
36
|
defaultProps: {
|
|
72
37
|
disableRipple: !0
|
|
73
38
|
}
|
|
74
|
-
},
|
|
39
|
+
}, G = {
|
|
75
40
|
defaultProps: {
|
|
76
41
|
disableRipple: !0
|
|
77
42
|
}
|
|
78
|
-
},
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
MuiAutocomplete: r,
|
|
90
|
-
MuiCheckbox: G,
|
|
43
|
+
}, bo = {
|
|
44
|
+
MuiAlert: o,
|
|
45
|
+
MuiButton: r,
|
|
46
|
+
MuiButtonBase: t,
|
|
47
|
+
MuiTypography: H,
|
|
48
|
+
MuiInputLabel: n,
|
|
49
|
+
MuiOutlinedInput: d,
|
|
50
|
+
MuiFormLabel: a,
|
|
51
|
+
MuiFormHelperText: l,
|
|
52
|
+
MuiAutocomplete: i,
|
|
53
|
+
MuiCheckbox: k,
|
|
91
54
|
MuiMenu: b,
|
|
92
|
-
MuiMenuItem:
|
|
93
|
-
MuiRadio:
|
|
94
|
-
MuiDialog:
|
|
95
|
-
MuiDialogTitle:
|
|
96
|
-
MuiDialogContent:
|
|
97
|
-
MuiDialogActions:
|
|
98
|
-
MuiDrawer:
|
|
99
|
-
MuiTableCell:
|
|
100
|
-
MuiTableHead:
|
|
101
|
-
MuiTableRow:
|
|
55
|
+
MuiMenuItem: c,
|
|
56
|
+
MuiRadio: G,
|
|
57
|
+
MuiDialog: p,
|
|
58
|
+
MuiDialogTitle: M,
|
|
59
|
+
MuiDialogContent: e,
|
|
60
|
+
MuiDialogActions: u,
|
|
61
|
+
MuiDrawer: f,
|
|
62
|
+
MuiTableCell: R,
|
|
63
|
+
MuiTableHead: S,
|
|
64
|
+
MuiTableRow: h,
|
|
102
65
|
MuiPaginationItem: B,
|
|
103
|
-
MuiPaper:
|
|
104
|
-
MuiCircularProgress:
|
|
105
|
-
MuiListItemButton:
|
|
106
|
-
MuiListItemText:
|
|
107
|
-
MuiLinearProgress:
|
|
108
|
-
MuiTab:
|
|
109
|
-
MuiTabs:
|
|
110
|
-
MuiStepLabel:
|
|
111
|
-
MuiStep:
|
|
112
|
-
MuiStepConnector:
|
|
113
|
-
MuiToggleButtonGroup:
|
|
114
|
-
MuiToggleButton:
|
|
115
|
-
MuiTextField:
|
|
116
|
-
MuiSwitch:
|
|
117
|
-
}
|
|
66
|
+
MuiPaper: I,
|
|
67
|
+
MuiCircularProgress: m,
|
|
68
|
+
MuiListItemButton: g,
|
|
69
|
+
MuiListItemText: T,
|
|
70
|
+
MuiLinearProgress: s,
|
|
71
|
+
MuiTab: D,
|
|
72
|
+
MuiTabs: w,
|
|
73
|
+
MuiStepLabel: x,
|
|
74
|
+
MuiStep: L,
|
|
75
|
+
MuiStepConnector: P,
|
|
76
|
+
MuiToggleButtonGroup: y,
|
|
77
|
+
MuiToggleButton: F,
|
|
78
|
+
MuiTextField: A,
|
|
79
|
+
MuiSwitch: C
|
|
80
|
+
};
|
|
118
81
|
export {
|
|
119
|
-
|
|
82
|
+
bo as components
|
|
120
83
|
};
|
package/lib/theme/index.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { componentsColors as
|
|
2
|
-
const
|
|
3
|
-
const
|
|
1
|
+
import { componentsColors as e } from "./componentsColors/componentsColors.mjs";
|
|
2
|
+
const F = () => {
|
|
3
|
+
const r = {
|
|
4
4
|
primary: {
|
|
5
|
-
900: "#
|
|
6
|
-
800: "#
|
|
7
|
-
700: "#
|
|
8
|
-
600: "#
|
|
9
|
-
500: "#
|
|
10
|
-
400: "#
|
|
11
|
-
300: "#
|
|
12
|
-
200: "#
|
|
13
|
-
100: "#
|
|
5
|
+
900: "#013a63",
|
|
6
|
+
800: "#01497c",
|
|
7
|
+
700: "#014f86",
|
|
8
|
+
600: "#2a6f97",
|
|
9
|
+
500: "#2c7da0",
|
|
10
|
+
400: "#468faf",
|
|
11
|
+
300: "#61a5c2",
|
|
12
|
+
200: "#89c2d9",
|
|
13
|
+
100: "#a9d6e5"
|
|
14
14
|
},
|
|
15
15
|
secondary: {
|
|
16
16
|
800: "#55B8F0"
|
|
@@ -62,16 +62,16 @@ const t = () => {
|
|
|
62
62
|
100: "#F0F4F7"
|
|
63
63
|
},
|
|
64
64
|
primary: {
|
|
65
|
-
main:
|
|
66
|
-
dark:
|
|
65
|
+
main: r.primary[800],
|
|
66
|
+
dark: r.primary[900],
|
|
67
67
|
contrastText: "#FFF",
|
|
68
|
-
...
|
|
68
|
+
...r.primary
|
|
69
69
|
},
|
|
70
70
|
secondary: {
|
|
71
|
-
main:
|
|
72
|
-
dark:
|
|
71
|
+
main: r.secondary[800],
|
|
72
|
+
dark: r.primary[900],
|
|
73
73
|
contrastText: "#FFF",
|
|
74
|
-
...
|
|
74
|
+
...r.secondary
|
|
75
75
|
},
|
|
76
76
|
background: {
|
|
77
77
|
default: "#FFF",
|
|
@@ -117,9 +117,9 @@ const t = () => {
|
|
|
117
117
|
contrastText: "#FFF"
|
|
118
118
|
};
|
|
119
119
|
},
|
|
120
|
-
components:
|
|
120
|
+
components: e
|
|
121
121
|
};
|
|
122
122
|
};
|
|
123
123
|
export {
|
|
124
|
-
|
|
124
|
+
F as getPalette
|
|
125
125
|
};
|
package/lib/theme/typography.mjs
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
/* empty css */
|
|
2
|
+
/* empty css */
|
|
3
|
+
/* empty css */
|
|
4
|
+
/* empty css */
|
|
5
|
+
const e = (i) => ({
|
|
2
6
|
h1: {
|
|
3
7
|
fontSize: "36px",
|
|
4
8
|
fontWeight: i.typography.fontWeightMedium,
|
|
@@ -91,5 +95,5 @@ const t = (i) => ({
|
|
|
91
95
|
}
|
|
92
96
|
});
|
|
93
97
|
export {
|
|
94
|
-
|
|
98
|
+
e as getTypography
|
|
95
99
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@max-ts/components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"browser": "./src/index.ts",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"module": "./src/index.ts",
|
|
@@ -20,8 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@emotion/react": "^11.14.0",
|
|
22
22
|
"@emotion/styled": "^11.14.0",
|
|
23
|
+
"@fontsource/roboto": "^5.1.1",
|
|
23
24
|
"@mui/material": "^6.4.5",
|
|
24
25
|
"@mui/system": "^6.4.3",
|
|
26
|
+
"@react-input/mask": "^2.0.4",
|
|
25
27
|
"clsx": "^2.1.1",
|
|
26
28
|
"lucide-react": "^0.475.0",
|
|
27
29
|
"react": "^19.0.0",
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export type DataGridContextProps = {
|
|
2
|
-
checkIsOpened: (key: string) => boolean;
|
|
3
|
-
checkIsMoreOpened: (key: string) => boolean;
|
|
4
|
-
toggleOpenItems: (key: string) => void;
|
|
5
|
-
toggleOpenMoreItems: (key: string) => void;
|
|
6
|
-
};
|
|
7
|
-
export declare const DataGridContext: import('react').Context<DataGridContextProps>;
|