@mui/material 6.0.0-alpha.2 → 6.0.0-alpha.4
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/AppBar/AppBar.js +0 -1
- package/Avatar/Avatar.js +1 -1
- package/CHANGELOG.md +128 -0
- package/CardMedia/CardMedia.js +0 -1
- package/Checkbox/Checkbox.js +51 -20
- package/CircularProgress/CircularProgress.js +66 -30
- package/Dialog/Dialog.js +10 -1
- package/Fab/Fab.js +83 -43
- package/FormHelperText/FormHelperText.js +18 -8
- package/IconButton/IconButton.js +97 -40
- package/ImageList/ImageList.js +16 -14
- package/ImageListItem/ImageListItem.js +37 -22
- package/ImageListItemBar/ImageListItemBar.js +65 -32
- package/LinearProgress/LinearProgress.js +180 -75
- package/ListItem/ListItem.js +94 -50
- package/ListItemAvatar/ListItemAvatar.js +12 -8
- package/ListItemButton/ListItemButton.js +35 -15
- package/ListItemSecondaryAction/ListItemSecondaryAction.js +12 -8
- package/ListItemText/ListItemText.js +20 -11
- package/ListSubheader/ListSubheader.js +44 -19
- package/PaginationItem/PaginationItem.js +137 -76
- package/Radio/Radio.js +50 -20
- package/Radio/RadioButtonIcon.js +18 -12
- package/Rating/Rating.js +71 -37
- package/StepConnector/stepConnectorClasses.d.ts +6 -2
- package/StepLabel/StepLabel.d.ts +7 -0
- package/StepLabel/StepLabel.js +17 -6
- package/Table/Table.js +11 -6
- package/TableCell/TableCell.js +96 -41
- package/TableSortLabel/TableSortLabel.js +19 -9
- package/ToggleButton/ToggleButton.js +74 -45
- package/ToggleButtonGroup/ToggleButtonGroup.js +63 -51
- package/ToggleButtonGroup/toggleButtonGroupClasses.d.ts +8 -2
- package/ToggleButtonGroup/toggleButtonGroupClasses.js +1 -1
- package/Toolbar/Toolbar.js +33 -17
- package/Tooltip/Tooltip.js +1 -2
- package/Typography/Typography.js +6 -3
- package/index.js +1 -1
- package/modern/AppBar/AppBar.js +0 -1
- package/modern/Avatar/Avatar.js +1 -1
- package/modern/CardMedia/CardMedia.js +0 -1
- package/modern/Checkbox/Checkbox.js +51 -20
- package/modern/CircularProgress/CircularProgress.js +66 -30
- package/modern/Dialog/Dialog.js +10 -1
- package/modern/Fab/Fab.js +83 -43
- package/modern/FormHelperText/FormHelperText.js +18 -8
- package/modern/IconButton/IconButton.js +97 -40
- package/modern/ImageList/ImageList.js +16 -14
- package/modern/ImageListItem/ImageListItem.js +37 -22
- package/modern/ImageListItemBar/ImageListItemBar.js +65 -32
- package/modern/LinearProgress/LinearProgress.js +180 -75
- package/modern/ListItem/ListItem.js +94 -50
- package/modern/ListItemAvatar/ListItemAvatar.js +12 -8
- package/modern/ListItemButton/ListItemButton.js +35 -15
- package/modern/ListItemSecondaryAction/ListItemSecondaryAction.js +12 -8
- package/modern/ListItemText/ListItemText.js +20 -11
- package/modern/ListSubheader/ListSubheader.js +44 -19
- package/modern/PaginationItem/PaginationItem.js +137 -76
- package/modern/Radio/Radio.js +50 -20
- package/modern/Radio/RadioButtonIcon.js +18 -12
- package/modern/Rating/Rating.js +71 -37
- package/modern/StepLabel/StepLabel.js +17 -6
- package/modern/Table/Table.js +11 -6
- package/modern/TableCell/TableCell.js +96 -41
- package/modern/TableSortLabel/TableSortLabel.js +19 -9
- package/modern/ToggleButton/ToggleButton.js +74 -45
- package/modern/ToggleButtonGroup/ToggleButtonGroup.js +63 -51
- package/modern/ToggleButtonGroup/toggleButtonGroupClasses.js +1 -1
- package/modern/Toolbar/Toolbar.js +33 -17
- package/modern/Tooltip/Tooltip.js +1 -2
- package/modern/Typography/Typography.js +6 -3
- package/modern/index.js +1 -1
- package/modern/styles/createTransitions.js +1 -3
- package/modern/styles/experimental_extendTheme.js +2 -1
- package/modern/styles/getOverlayAlpha.js +3 -4
- package/modern/zero-styled/index.js +1 -1
- package/node/AppBar/AppBar.js +0 -1
- package/node/Avatar/Avatar.js +1 -1
- package/node/CardMedia/CardMedia.js +0 -1
- package/node/Checkbox/Checkbox.js +54 -23
- package/node/CircularProgress/CircularProgress.js +72 -36
- package/node/Dialog/Dialog.js +10 -1
- package/node/Fab/Fab.js +85 -45
- package/node/FormHelperText/FormHelperText.js +18 -8
- package/node/IconButton/IconButton.js +99 -43
- package/node/ImageList/ImageList.js +16 -14
- package/node/ImageListItem/ImageListItem.js +37 -22
- package/node/ImageListItemBar/ImageListItemBar.js +65 -32
- package/node/LinearProgress/LinearProgress.js +188 -83
- package/node/ListItem/ListItem.js +94 -50
- package/node/ListItemAvatar/ListItemAvatar.js +12 -8
- package/node/ListItemButton/ListItemButton.js +35 -15
- package/node/ListItemSecondaryAction/ListItemSecondaryAction.js +12 -8
- package/node/ListItemText/ListItemText.js +20 -11
- package/node/ListSubheader/ListSubheader.js +44 -19
- package/node/PaginationItem/PaginationItem.js +141 -80
- package/node/Radio/Radio.js +52 -22
- package/node/Radio/RadioButtonIcon.js +21 -15
- package/node/Rating/Rating.js +71 -37
- package/node/StepLabel/StepLabel.js +17 -6
- package/node/Table/Table.js +11 -6
- package/node/TableCell/TableCell.js +96 -41
- package/node/TableSortLabel/TableSortLabel.js +19 -9
- package/node/ToggleButton/ToggleButton.js +76 -47
- package/node/ToggleButtonGroup/ToggleButtonGroup.js +65 -53
- package/node/ToggleButtonGroup/toggleButtonGroupClasses.js +1 -1
- package/node/Toolbar/Toolbar.js +33 -17
- package/node/Tooltip/Tooltip.js +1 -2
- package/node/Typography/Typography.js +6 -3
- package/node/index.js +1 -1
- package/node/styles/createTransitions.js +1 -3
- package/node/styles/experimental_extendTheme.js +1 -0
- package/node/styles/getOverlayAlpha.js +4 -5
- package/node/zero-styled/index.js +6 -0
- package/package.json +4 -4
- package/styles/createTransitions.js +1 -3
- package/styles/experimental_extendTheme.d.ts +2 -0
- package/styles/experimental_extendTheme.js +2 -1
- package/styles/getOverlayAlpha.d.ts +1 -2
- package/styles/getOverlayAlpha.js +3 -4
- package/umd/material-ui.development.js +1849 -890
- package/umd/material-ui.production.min.js +4 -4
- package/zero-styled/index.d.ts +1 -1
- package/zero-styled/index.js +1 -1
- package/legacy/Accordion/Accordion.js +0 -306
- package/legacy/Accordion/AccordionContext.js +0 -13
- package/legacy/Accordion/accordionClasses.js +0 -7
- package/legacy/Accordion/index.js +0 -3
- package/legacy/AccordionActions/AccordionActions.js +0 -90
- package/legacy/AccordionActions/accordionActionsClasses.js +0 -7
- package/legacy/AccordionActions/index.js +0 -3
- package/legacy/AccordionDetails/AccordionDetails.js +0 -69
- package/legacy/AccordionDetails/accordionDetailsClasses.js +0 -7
- package/legacy/AccordionDetails/index.js +0 -3
- package/legacy/AccordionSummary/AccordionSummary.js +0 -198
- package/legacy/AccordionSummary/accordionSummaryClasses.js +0 -7
- package/legacy/AccordionSummary/index.js +0 -3
- package/legacy/Alert/Alert.js +0 -385
- package/legacy/Alert/alertClasses.js +0 -7
- package/legacy/Alert/index.js +0 -5
- package/legacy/AlertTitle/AlertTitle.js +0 -73
- package/legacy/AlertTitle/alertTitleClasses.js +0 -7
- package/legacy/AlertTitle/index.js +0 -5
- package/legacy/AppBar/AppBar.js +0 -235
- package/legacy/AppBar/appBarClasses.js +0 -7
- package/legacy/AppBar/index.js +0 -5
- package/legacy/Autocomplete/Autocomplete.js +0 -1127
- package/legacy/Autocomplete/autocompleteClasses.js +0 -7
- package/legacy/Autocomplete/index.js +0 -5
- package/legacy/Avatar/Avatar.js +0 -296
- package/legacy/Avatar/avatarClasses.js +0 -7
- package/legacy/Avatar/index.js +0 -5
- package/legacy/AvatarGroup/AvatarGroup.js +0 -205
- package/legacy/AvatarGroup/avatarGroupClasses.js +0 -7
- package/legacy/AvatarGroup/index.js +0 -5
- package/legacy/Backdrop/Backdrop.js +0 -211
- package/legacy/Backdrop/backdropClasses.js +0 -7
- package/legacy/Backdrop/index.js +0 -5
- package/legacy/Badge/Badge.js +0 -439
- package/legacy/Badge/badgeClasses.js +0 -9
- package/legacy/Badge/index.js +0 -5
- package/legacy/BottomNavigation/BottomNavigation.js +0 -124
- package/legacy/BottomNavigation/bottomNavigationClasses.js +0 -7
- package/legacy/BottomNavigation/index.js +0 -5
- package/legacy/BottomNavigationAction/BottomNavigationAction.js +0 -185
- package/legacy/BottomNavigationAction/bottomNavigationActionClasses.js +0 -7
- package/legacy/BottomNavigationAction/index.js +0 -5
- package/legacy/Box/Box.js +0 -35
- package/legacy/Box/boxClasses.js +0 -3
- package/legacy/Box/index.js +0 -5
- package/legacy/Breadcrumbs/BreadcrumbCollapsed.js +0 -88
- package/legacy/Breadcrumbs/Breadcrumbs.js +0 -253
- package/legacy/Breadcrumbs/breadcrumbsClasses.js +0 -7
- package/legacy/Breadcrumbs/index.js +0 -5
- package/legacy/Button/Button.js +0 -472
- package/legacy/Button/buttonClasses.js +0 -7
- package/legacy/Button/index.js +0 -5
- package/legacy/ButtonBase/ButtonBase.js +0 -487
- package/legacy/ButtonBase/Ripple.js +0 -89
- package/legacy/ButtonBase/TouchRipple.js +0 -267
- package/legacy/ButtonBase/buttonBaseClasses.js +0 -7
- package/legacy/ButtonBase/index.js +0 -7
- package/legacy/ButtonBase/touchRippleClasses.js +0 -7
- package/legacy/ButtonGroup/ButtonGroup.js +0 -371
- package/legacy/ButtonGroup/ButtonGroupButtonContext.js +0 -9
- package/legacy/ButtonGroup/ButtonGroupContext.js +0 -9
- package/legacy/ButtonGroup/buttonGroupClasses.js +0 -7
- package/legacy/ButtonGroup/index.js +0 -7
- package/legacy/Card/Card.js +0 -83
- package/legacy/Card/cardClasses.js +0 -7
- package/legacy/Card/index.js +0 -5
- package/legacy/CardActionArea/CardActionArea.js +0 -119
- package/legacy/CardActionArea/cardActionAreaClasses.js +0 -7
- package/legacy/CardActionArea/index.js +0 -5
- package/legacy/CardActions/CardActions.js +0 -89
- package/legacy/CardActions/cardActionsClasses.js +0 -7
- package/legacy/CardActions/index.js +0 -5
- package/legacy/CardContent/CardContent.js +0 -79
- package/legacy/CardContent/cardContentClasses.js +0 -7
- package/legacy/CardContent/index.js +0 -5
- package/legacy/CardHeader/CardHeader.js +0 -198
- package/legacy/CardHeader/cardHeaderClasses.js +0 -7
- package/legacy/CardHeader/index.js +0 -5
- package/legacy/CardMedia/CardMedia.js +0 -139
- package/legacy/CardMedia/cardMediaClasses.js +0 -7
- package/legacy/CardMedia/index.js +0 -5
- package/legacy/Checkbox/Checkbox.js +0 -212
- package/legacy/Checkbox/checkboxClasses.js +0 -7
- package/legacy/Checkbox/index.js +0 -5
- package/legacy/Chip/Chip.js +0 -547
- package/legacy/Chip/chipClasses.js +0 -7
- package/legacy/Chip/index.js +0 -5
- package/legacy/CircularProgress/CircularProgress.js +0 -224
- package/legacy/CircularProgress/circularProgressClasses.js +0 -7
- package/legacy/CircularProgress/index.js +0 -5
- package/legacy/ClickAwayListener/index.js +0 -1
- package/legacy/Collapse/Collapse.js +0 -383
- package/legacy/Collapse/collapseClasses.js +0 -7
- package/legacy/Collapse/index.js +0 -5
- package/legacy/Container/Container.js +0 -67
- package/legacy/Container/containerClasses.js +0 -7
- package/legacy/Container/index.js +0 -5
- package/legacy/CssBaseline/CssBaseline.js +0 -113
- package/legacy/CssBaseline/index.js +0 -3
- package/legacy/Dialog/Dialog.js +0 -392
- package/legacy/Dialog/DialogContext.js +0 -6
- package/legacy/Dialog/dialogClasses.js +0 -7
- package/legacy/Dialog/index.js +0 -5
- package/legacy/DialogActions/DialogActions.js +0 -88
- package/legacy/DialogActions/dialogActionsClasses.js +0 -7
- package/legacy/DialogActions/index.js +0 -5
- package/legacy/DialogContent/DialogContent.js +0 -93
- package/legacy/DialogContent/dialogContentClasses.js +0 -7
- package/legacy/DialogContent/index.js +0 -5
- package/legacy/DialogContentText/DialogContentText.js +0 -74
- package/legacy/DialogContentText/dialogContentTextClasses.js +0 -7
- package/legacy/DialogContentText/index.js +0 -5
- package/legacy/DialogTitle/DialogTitle.js +0 -80
- package/legacy/DialogTitle/dialogTitleClasses.js +0 -7
- package/legacy/DialogTitle/index.js +0 -5
- package/legacy/Divider/Divider.js +0 -316
- package/legacy/Divider/dividerClasses.js +0 -7
- package/legacy/Divider/index.js +0 -5
- package/legacy/Drawer/Drawer.js +0 -316
- package/legacy/Drawer/drawerClasses.js +0 -7
- package/legacy/Drawer/index.js +0 -5
- package/legacy/Fab/Fab.js +0 -229
- package/legacy/Fab/fabClasses.js +0 -7
- package/legacy/Fab/index.js +0 -5
- package/legacy/Fade/Fade.js +0 -206
- package/legacy/Fade/index.js +0 -3
- package/legacy/FilledInput/FilledInput.js +0 -425
- package/legacy/FilledInput/filledInputClasses.js +0 -9
- package/legacy/FilledInput/index.js +0 -5
- package/legacy/FormControl/FormControl.js +0 -315
- package/legacy/FormControl/FormControlContext.js +0 -9
- package/legacy/FormControl/formControlClasses.js +0 -7
- package/legacy/FormControl/formControlState.js +0 -14
- package/legacy/FormControl/index.js +0 -6
- package/legacy/FormControl/useFormControl.js +0 -7
- package/legacy/FormControlLabel/FormControlLabel.js +0 -258
- package/legacy/FormControlLabel/formControlLabelClasses.js +0 -7
- package/legacy/FormControlLabel/index.js +0 -5
- package/legacy/FormGroup/FormGroup.js +0 -103
- package/legacy/FormGroup/formGroupClasses.js +0 -7
- package/legacy/FormGroup/index.js +0 -5
- package/legacy/FormHelperText/FormHelperText.js +0 -167
- package/legacy/FormHelperText/formHelperTextClasses.js +0 -7
- package/legacy/FormHelperText/index.js +0 -5
- package/legacy/FormLabel/FormLabel.js +0 -166
- package/legacy/FormLabel/formLabelClasses.js +0 -7
- package/legacy/FormLabel/index.js +0 -6
- package/legacy/GlobalStyles/GlobalStyles.js +0 -26
- package/legacy/GlobalStyles/index.js +0 -1
- package/legacy/Grid/Grid.js +0 -561
- package/legacy/Grid/GridContext.js +0 -12
- package/legacy/Grid/gridClasses.js +0 -28
- package/legacy/Grid/index.js +0 -5
- package/legacy/Grow/Grow.js +0 -253
- package/legacy/Grow/index.js +0 -3
- package/legacy/Hidden/Hidden.js +0 -147
- package/legacy/Hidden/HiddenCss.js +0 -168
- package/legacy/Hidden/HiddenJs.js +0 -123
- package/legacy/Hidden/hiddenCssClasses.js +0 -7
- package/legacy/Hidden/index.js +0 -3
- package/legacy/Hidden/withWidth.js +0 -110
- package/legacy/Icon/Icon.js +0 -144
- package/legacy/Icon/iconClasses.js +0 -7
- package/legacy/Icon/index.js +0 -5
- package/legacy/IconButton/IconButton.js +0 -204
- package/legacy/IconButton/iconButtonClasses.js +0 -7
- package/legacy/IconButton/index.js +0 -5
- package/legacy/ImageList/ImageList.js +0 -155
- package/legacy/ImageList/ImageListContext.js +0 -13
- package/legacy/ImageList/imageListClasses.js +0 -7
- package/legacy/ImageList/index.js +0 -5
- package/legacy/ImageListItem/ImageListItem.js +0 -168
- package/legacy/ImageListItem/imageListItemClasses.js +0 -7
- package/legacy/ImageListItem/index.js +0 -5
- package/legacy/ImageListItemBar/ImageListItemBar.js +0 -211
- package/legacy/ImageListItemBar/imageListItemBarClasses.js +0 -7
- package/legacy/ImageListItemBar/index.js +0 -5
- package/legacy/Input/Input.js +0 -339
- package/legacy/Input/index.js +0 -5
- package/legacy/Input/inputClasses.js +0 -9
- package/legacy/InputAdornment/InputAdornment.js +0 -167
- package/legacy/InputAdornment/index.js +0 -5
- package/legacy/InputAdornment/inputAdornmentClasses.js +0 -7
- package/legacy/InputBase/InputBase.js +0 -713
- package/legacy/InputBase/index.js +0 -5
- package/legacy/InputBase/inputBaseClasses.js +0 -7
- package/legacy/InputBase/utils.js +0 -31
- package/legacy/InputLabel/InputLabel.js +0 -214
- package/legacy/InputLabel/index.js +0 -5
- package/legacy/InputLabel/inputLabelClasses.js +0 -7
- package/legacy/LinearProgress/LinearProgress.js +0 -285
- package/legacy/LinearProgress/index.js +0 -5
- package/legacy/LinearProgress/linearProgressClasses.js +0 -7
- package/legacy/Link/Link.js +0 -209
- package/legacy/Link/getTextDecoration.js +0 -24
- package/legacy/Link/index.js +0 -5
- package/legacy/Link/linkClasses.js +0 -7
- package/legacy/List/List.js +0 -126
- package/legacy/List/ListContext.js +0 -12
- package/legacy/List/index.js +0 -5
- package/legacy/List/listClasses.js +0 -7
- package/legacy/ListItem/ListItem.js +0 -425
- package/legacy/ListItem/index.js +0 -5
- package/legacy/ListItem/listItemClasses.js +0 -7
- package/legacy/ListItemAvatar/ListItemAvatar.js +0 -82
- package/legacy/ListItemAvatar/index.js +0 -5
- package/legacy/ListItemAvatar/listItemAvatarClasses.js +0 -7
- package/legacy/ListItemButton/ListItemButton.js +0 -242
- package/legacy/ListItemButton/index.js +0 -5
- package/legacy/ListItemButton/listItemButtonClasses.js +0 -7
- package/legacy/ListItemIcon/ListItemIcon.js +0 -86
- package/legacy/ListItemIcon/index.js +0 -5
- package/legacy/ListItemIcon/listItemIconClasses.js +0 -7
- package/legacy/ListItemSecondaryAction/ListItemSecondaryAction.js +0 -85
- package/legacy/ListItemSecondaryAction/index.js +0 -5
- package/legacy/ListItemSecondaryAction/listItemSecondaryActionClasses.js +0 -7
- package/legacy/ListItemText/ListItemText.js +0 -160
- package/legacy/ListItemText/index.js +0 -5
- package/legacy/ListItemText/listItemTextClasses.js +0 -7
- package/legacy/ListSubheader/ListSubheader.js +0 -139
- package/legacy/ListSubheader/index.js +0 -5
- package/legacy/ListSubheader/listSubheaderClasses.js +0 -7
- package/legacy/Menu/Menu.js +0 -317
- package/legacy/Menu/index.js +0 -5
- package/legacy/Menu/menuClasses.js +0 -7
- package/legacy/MenuItem/MenuItem.js +0 -251
- package/legacy/MenuItem/index.js +0 -5
- package/legacy/MenuItem/menuItemClasses.js +0 -7
- package/legacy/MenuList/MenuList.js +0 -285
- package/legacy/MenuList/index.js +0 -3
- package/legacy/MobileStepper/MobileStepper.js +0 -254
- package/legacy/MobileStepper/index.js +0 -5
- package/legacy/MobileStepper/mobileStepperClasses.js +0 -7
- package/legacy/Modal/Modal.js +0 -398
- package/legacy/Modal/index.js +0 -6
- package/legacy/Modal/modalClasses.js +0 -7
- package/legacy/NativeSelect/NativeSelect.js +0 -128
- package/legacy/NativeSelect/NativeSelectInput.js +0 -203
- package/legacy/NativeSelect/index.js +0 -5
- package/legacy/NativeSelect/nativeSelectClasses.js +0 -7
- package/legacy/NoSsr/index.js +0 -1
- package/legacy/OutlinedInput/NotchedOutline.js +0 -135
- package/legacy/OutlinedInput/OutlinedInput.js +0 -347
- package/legacy/OutlinedInput/index.js +0 -5
- package/legacy/OutlinedInput/outlinedInputClasses.js +0 -9
- package/legacy/Pagination/Pagination.js +0 -256
- package/legacy/Pagination/index.js +0 -5
- package/legacy/Pagination/paginationClasses.js +0 -7
- package/legacy/PaginationItem/PaginationItem.js +0 -356
- package/legacy/PaginationItem/index.js +0 -5
- package/legacy/PaginationItem/paginationItemClasses.js +0 -7
- package/legacy/Paper/Paper.js +0 -141
- package/legacy/Paper/index.js +0 -5
- package/legacy/Paper/paperClasses.js +0 -7
- package/legacy/Popover/Popover.js +0 -548
- package/legacy/Popover/index.js +0 -6
- package/legacy/Popover/popoverClasses.js +0 -7
- package/legacy/Popper/Popper.js +0 -207
- package/legacy/Popper/index.js +0 -3
- package/legacy/Portal/index.js +0 -1
- package/legacy/Radio/Radio.js +0 -212
- package/legacy/Radio/RadioButtonIcon.js +0 -81
- package/legacy/Radio/index.js +0 -5
- package/legacy/Radio/radioClasses.js +0 -7
- package/legacy/RadioGroup/RadioGroup.js +0 -118
- package/legacy/RadioGroup/RadioGroupContext.js +0 -9
- package/legacy/RadioGroup/index.js +0 -6
- package/legacy/RadioGroup/radioGroupClasses.js +0 -7
- package/legacy/RadioGroup/useRadioGroup.js +0 -7
- package/legacy/Rating/Rating.js +0 -657
- package/legacy/Rating/index.js +0 -3
- package/legacy/Rating/ratingClasses.js +0 -7
- package/legacy/ScopedCssBaseline/ScopedCssBaseline.js +0 -106
- package/legacy/ScopedCssBaseline/index.js +0 -5
- package/legacy/ScopedCssBaseline/scopedCssBaselineClasses.js +0 -7
- package/legacy/Select/Select.js +0 -290
- package/legacy/Select/SelectInput.js +0 -667
- package/legacy/Select/index.js +0 -5
- package/legacy/Select/selectClasses.js +0 -7
- package/legacy/Skeleton/Skeleton.js +0 -166
- package/legacy/Skeleton/index.js +0 -5
- package/legacy/Skeleton/skeletonClasses.js +0 -7
- package/legacy/Slide/Slide.js +0 -333
- package/legacy/Slide/index.js +0 -3
- package/legacy/Slider/Slider.js +0 -1063
- package/legacy/Slider/SliderValueLabel.js +0 -49
- package/legacy/Slider/SliderValueLabel.types.js +0 -1
- package/legacy/Slider/index.js +0 -6
- package/legacy/Slider/sliderClasses.js +0 -7
- package/legacy/Snackbar/Snackbar.js +0 -312
- package/legacy/Snackbar/index.js +0 -5
- package/legacy/Snackbar/snackbarClasses.js +0 -7
- package/legacy/SnackbarContent/SnackbarContent.js +0 -134
- package/legacy/SnackbarContent/index.js +0 -5
- package/legacy/SnackbarContent/snackbarContentClasses.js +0 -7
- package/legacy/SpeedDial/SpeedDial.js +0 -491
- package/legacy/SpeedDial/index.js +0 -5
- package/legacy/SpeedDial/speedDialClasses.js +0 -7
- package/legacy/SpeedDialAction/SpeedDialAction.js +0 -247
- package/legacy/SpeedDialAction/index.js +0 -5
- package/legacy/SpeedDialAction/speedDialActionClasses.js +0 -7
- package/legacy/SpeedDialIcon/SpeedDialIcon.js +0 -120
- package/legacy/SpeedDialIcon/index.js +0 -5
- package/legacy/SpeedDialIcon/speedDialIconClasses.js +0 -7
- package/legacy/Stack/Stack.js +0 -66
- package/legacy/Stack/index.js +0 -4
- package/legacy/Stack/stackClasses.js +0 -7
- package/legacy/Step/Step.js +0 -179
- package/legacy/Step/StepContext.js +0 -17
- package/legacy/Step/index.js +0 -7
- package/legacy/Step/stepClasses.js +0 -7
- package/legacy/StepButton/StepButton.js +0 -122
- package/legacy/StepButton/index.js +0 -5
- package/legacy/StepButton/stepButtonClasses.js +0 -7
- package/legacy/StepConnector/StepConnector.js +0 -142
- package/legacy/StepConnector/index.js +0 -5
- package/legacy/StepConnector/stepConnectorClasses.js +0 -7
- package/legacy/StepContent/StepContent.js +0 -152
- package/legacy/StepContent/index.js +0 -5
- package/legacy/StepContent/stepContentClasses.js +0 -7
- package/legacy/StepIcon/StepIcon.js +0 -162
- package/legacy/StepIcon/index.js +0 -5
- package/legacy/StepIcon/stepIconClasses.js +0 -7
- package/legacy/StepLabel/StepLabel.js +0 -258
- package/legacy/StepLabel/index.js +0 -5
- package/legacy/StepLabel/stepLabelClasses.js +0 -7
- package/legacy/Stepper/Stepper.js +0 -167
- package/legacy/Stepper/StepperContext.js +0 -17
- package/legacy/Stepper/index.js +0 -7
- package/legacy/Stepper/stepperClasses.js +0 -7
- package/legacy/StyledEngineProvider/index.js +0 -1
- package/legacy/SvgIcon/SvgIcon.js +0 -183
- package/legacy/SvgIcon/index.js +0 -5
- package/legacy/SvgIcon/svgIconClasses.js +0 -7
- package/legacy/SwipeableDrawer/SwipeArea.js +0 -81
- package/legacy/SwipeableDrawer/SwipeableDrawer.js +0 -621
- package/legacy/SwipeableDrawer/index.js +0 -3
- package/legacy/Switch/Switch.js +0 -337
- package/legacy/Switch/index.js +0 -5
- package/legacy/Switch/switchClasses.js +0 -7
- package/legacy/Tab/Tab.js +0 -249
- package/legacy/Tab/index.js +0 -5
- package/legacy/Tab/tabClasses.js +0 -7
- package/legacy/TabScrollButton/TabScrollButton.js +0 -153
- package/legacy/TabScrollButton/index.js +0 -5
- package/legacy/TabScrollButton/tabScrollButtonClasses.js +0 -7
- package/legacy/Table/Table.js +0 -130
- package/legacy/Table/TableContext.js +0 -12
- package/legacy/Table/Tablelvl2Context.js +0 -10
- package/legacy/Table/index.js +0 -5
- package/legacy/Table/tableClasses.js +0 -7
- package/legacy/TableBody/TableBody.js +0 -85
- package/legacy/TableBody/index.js +0 -5
- package/legacy/TableBody/tableBodyClasses.js +0 -7
- package/legacy/TableCell/TableCell.js +0 -208
- package/legacy/TableCell/index.js +0 -5
- package/legacy/TableCell/tableCellClasses.js +0 -7
- package/legacy/TableContainer/TableContainer.js +0 -77
- package/legacy/TableContainer/index.js +0 -5
- package/legacy/TableContainer/tableContainerClasses.js +0 -7
- package/legacy/TableFooter/TableFooter.js +0 -85
- package/legacy/TableFooter/index.js +0 -5
- package/legacy/TableFooter/tableFooterClasses.js +0 -7
- package/legacy/TableHead/TableHead.js +0 -85
- package/legacy/TableHead/index.js +0 -5
- package/legacy/TableHead/tableHeadClasses.js +0 -7
- package/legacy/TablePagination/TablePagination.js +0 -461
- package/legacy/TablePagination/TablePaginationActions.js +0 -182
- package/legacy/TablePagination/index.js +0 -5
- package/legacy/TablePagination/tablePaginationClasses.js +0 -7
- package/legacy/TableRow/TableRow.js +0 -123
- package/legacy/TableRow/index.js +0 -5
- package/legacy/TableRow/tableRowClasses.js +0 -7
- package/legacy/TableSortLabel/TableSortLabel.js +0 -165
- package/legacy/TableSortLabel/index.js +0 -5
- package/legacy/TableSortLabel/tableSortLabelClasses.js +0 -7
- package/legacy/Tabs/ScrollbarSize.js +0 -57
- package/legacy/Tabs/Tabs.js +0 -849
- package/legacy/Tabs/index.js +0 -5
- package/legacy/Tabs/tabsClasses.js +0 -7
- package/legacy/TextField/TextField.js +0 -381
- package/legacy/TextField/index.js +0 -5
- package/legacy/TextField/textFieldClasses.js +0 -7
- package/legacy/TextareaAutosize/index.js +0 -1
- package/legacy/ToggleButton/ToggleButton.js +0 -230
- package/legacy/ToggleButton/index.js +0 -5
- package/legacy/ToggleButton/toggleButtonClasses.js +0 -7
- package/legacy/ToggleButtonGroup/ToggleButtonGroup.js +0 -247
- package/legacy/ToggleButtonGroup/ToggleButtonGroupButtonContext.js +0 -9
- package/legacy/ToggleButtonGroup/ToggleButtonGroupContext.js +0 -9
- package/legacy/ToggleButtonGroup/index.js +0 -5
- package/legacy/ToggleButtonGroup/isValueSelected.js +0 -11
- package/legacy/ToggleButtonGroup/toggleButtonGroupClasses.js +0 -7
- package/legacy/Toolbar/Toolbar.js +0 -115
- package/legacy/Toolbar/index.js +0 -3
- package/legacy/Toolbar/toolbarClasses.js +0 -7
- package/legacy/Tooltip/Tooltip.js +0 -788
- package/legacy/Tooltip/index.js +0 -5
- package/legacy/Tooltip/tooltipClasses.js +0 -7
- package/legacy/Typography/Typography.js +0 -198
- package/legacy/Typography/index.js +0 -5
- package/legacy/Typography/typographyClasses.js +0 -7
- package/legacy/Unstable_Grid2/Grid2.js +0 -36
- package/legacy/Unstable_Grid2/Grid2Props.js +0 -1
- package/legacy/Unstable_Grid2/grid2Classes.js +0 -28
- package/legacy/Unstable_Grid2/index.js +0 -6
- package/legacy/Unstable_TrapFocus/index.js +0 -1
- package/legacy/Zoom/Zoom.js +0 -206
- package/legacy/Zoom/index.js +0 -3
- package/legacy/className/index.js +0 -2
- package/legacy/colors/amber.js +0 -17
- package/legacy/colors/blue.js +0 -17
- package/legacy/colors/blueGrey.js +0 -17
- package/legacy/colors/brown.js +0 -17
- package/legacy/colors/common.js +0 -5
- package/legacy/colors/cyan.js +0 -17
- package/legacy/colors/deepOrange.js +0 -17
- package/legacy/colors/deepPurple.js +0 -17
- package/legacy/colors/green.js +0 -17
- package/legacy/colors/grey.js +0 -17
- package/legacy/colors/index.js +0 -20
- package/legacy/colors/indigo.js +0 -17
- package/legacy/colors/lightBlue.js +0 -17
- package/legacy/colors/lightGreen.js +0 -17
- package/legacy/colors/lime.js +0 -17
- package/legacy/colors/orange.js +0 -17
- package/legacy/colors/pink.js +0 -17
- package/legacy/colors/purple.js +0 -17
- package/legacy/colors/red.js +0 -17
- package/legacy/colors/teal.js +0 -17
- package/legacy/colors/yellow.js +0 -17
- package/legacy/darkScrollbar/index.js +0 -33
- package/legacy/generateUtilityClass/index.js +0 -1
- package/legacy/generateUtilityClasses/index.js +0 -1
- package/legacy/index.js +0 -288
- package/legacy/internal/SwitchBase.js +0 -275
- package/legacy/internal/animate.js +0 -41
- package/legacy/internal/svg-icons/Add.js +0 -12
- package/legacy/internal/svg-icons/ArrowDownward.js +0 -12
- package/legacy/internal/svg-icons/ArrowDropDown.js +0 -12
- package/legacy/internal/svg-icons/Cancel.js +0 -12
- package/legacy/internal/svg-icons/CheckBox.js +0 -12
- package/legacy/internal/svg-icons/CheckBoxOutlineBlank.js +0 -12
- package/legacy/internal/svg-icons/CheckCircle.js +0 -12
- package/legacy/internal/svg-icons/Close.js +0 -14
- package/legacy/internal/svg-icons/ErrorOutline.js +0 -12
- package/legacy/internal/svg-icons/FirstPage.js +0 -12
- package/legacy/internal/svg-icons/IndeterminateCheckBox.js +0 -12
- package/legacy/internal/svg-icons/InfoOutlined.js +0 -12
- package/legacy/internal/svg-icons/KeyboardArrowLeft.js +0 -12
- package/legacy/internal/svg-icons/KeyboardArrowRight.js +0 -12
- package/legacy/internal/svg-icons/LastPage.js +0 -12
- package/legacy/internal/svg-icons/MoreHoriz.js +0 -12
- package/legacy/internal/svg-icons/NavigateBefore.js +0 -12
- package/legacy/internal/svg-icons/NavigateNext.js +0 -12
- package/legacy/internal/svg-icons/Person.js +0 -12
- package/legacy/internal/svg-icons/RadioButtonChecked.js +0 -12
- package/legacy/internal/svg-icons/RadioButtonUnchecked.js +0 -12
- package/legacy/internal/svg-icons/ReportProblemOutlined.js +0 -12
- package/legacy/internal/svg-icons/Star.js +0 -12
- package/legacy/internal/svg-icons/StarBorder.js +0 -12
- package/legacy/internal/svg-icons/SuccessOutlined.js +0 -12
- package/legacy/internal/svg-icons/Warning.js +0 -12
- package/legacy/internal/switchBaseClasses.js +0 -7
- package/legacy/locale/index.js +0 -4389
- package/legacy/styles/CssVarsProvider.js +0 -39
- package/legacy/styles/ThemeProvider.js +0 -28
- package/legacy/styles/adaptV4Theme.js +0 -81
- package/legacy/styles/createGetSelector.js +0 -21
- package/legacy/styles/createMixins.js +0 -15
- package/legacy/styles/createMuiStrictModeTheme.js +0 -10
- package/legacy/styles/createPalette.js +0 -299
- package/legacy/styles/createStyles.js +0 -10
- package/legacy/styles/createTheme.js +0 -97
- package/legacy/styles/createTransitions.js +0 -97
- package/legacy/styles/createTypography.js +0 -93
- package/legacy/styles/cssUtils.js +0 -122
- package/legacy/styles/defaultTheme.js +0 -5
- package/legacy/styles/excludeVariablesFromRoot.js +0 -10
- package/legacy/styles/experimental_extendTheme.js +0 -377
- package/legacy/styles/getOverlayAlpha.js +0 -11
- package/legacy/styles/identifier.js +0 -1
- package/legacy/styles/index.js +0 -37
- package/legacy/styles/makeStyles.js +0 -4
- package/legacy/styles/responsiveFontSizes.js +0 -63
- package/legacy/styles/rootShouldForwardProp.js +0 -5
- package/legacy/styles/shadows.js +0 -10
- package/legacy/styles/shouldSkipGeneratingVar.js +0 -6
- package/legacy/styles/slotShouldForwardProp.js +0 -5
- package/legacy/styles/styled.js +0 -14
- package/legacy/styles/useTheme.js +0 -14
- package/legacy/styles/useThemeProps.js +0 -15
- package/legacy/styles/withStyles.js +0 -4
- package/legacy/styles/withTheme.js +0 -4
- package/legacy/styles/zIndex.js +0 -13
- package/legacy/transitions/index.js +0 -1
- package/legacy/transitions/transition.js +0 -1
- package/legacy/transitions/utils.js +0 -16
- package/legacy/types/OverridableComponentAugmentation.js +0 -1
- package/legacy/useAutocomplete/index.js +0 -3
- package/legacy/useAutocomplete/useAutocomplete.js +0 -4
- package/legacy/useMediaQuery/index.js +0 -1
- package/legacy/useMediaQuery/useMediaQueryTheme.js +0 -8
- package/legacy/usePagination/index.js +0 -3
- package/legacy/usePagination/usePagination.js +0 -122
- package/legacy/useScrollTrigger/index.js +0 -3
- package/legacy/useScrollTrigger/useScrollTrigger.js +0 -57
- package/legacy/useTouchRipple/index.js +0 -3
- package/legacy/useTouchRipple/useTouchRipple.js +0 -102
- package/legacy/utils/capitalize.js +0 -2
- package/legacy/utils/createChainedFunction.js +0 -2
- package/legacy/utils/createSvgIcon.js +0 -27
- package/legacy/utils/debounce.js +0 -2
- package/legacy/utils/deprecatedPropType.js +0 -2
- package/legacy/utils/getScrollbarSize.js +0 -2
- package/legacy/utils/index.js +0 -30
- package/legacy/utils/isMuiElement.js +0 -2
- package/legacy/utils/ownerDocument.js +0 -2
- package/legacy/utils/ownerWindow.js +0 -2
- package/legacy/utils/requirePropFactory.js +0 -2
- package/legacy/utils/scrollLeft.js +0 -1
- package/legacy/utils/setRef.js +0 -2
- package/legacy/utils/shouldSpreadAdditionalProps.js +0 -5
- package/legacy/utils/types.js +0 -1
- package/legacy/utils/unsupportedProp.js +0 -2
- package/legacy/utils/useControlled.js +0 -4
- package/legacy/utils/useEnhancedEffect.js +0 -4
- package/legacy/utils/useEventCallback.js +0 -4
- package/legacy/utils/useForkRef.js +0 -4
- package/legacy/utils/useId.js +0 -4
- package/legacy/utils/useIsFocusVisible.js +0 -4
- package/legacy/utils/useSlot.js +0 -71
- package/legacy/zero-styled/index.js +0 -8
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
// do not remove the following import (https://github.com/microsoft/TypeScript/issues/29808#issuecomment-1320713018)
|
|
4
|
-
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
|
-
// @ts-ignore
|
|
6
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
7
|
-
import { unstable_createCssVarsProvider as createCssVarsProvider } from '@mui/system';
|
|
8
|
-
import styleFunctionSx from '@mui/system/styleFunctionSx';
|
|
9
|
-
import experimental_extendTheme from './experimental_extendTheme';
|
|
10
|
-
import createTypography from './createTypography';
|
|
11
|
-
import THEME_ID from './identifier';
|
|
12
|
-
var defaultTheme = experimental_extendTheme();
|
|
13
|
-
var _createCssVarsProvide = createCssVarsProvider({
|
|
14
|
-
themeId: THEME_ID,
|
|
15
|
-
theme: defaultTheme,
|
|
16
|
-
attribute: 'data-mui-color-scheme',
|
|
17
|
-
modeStorageKey: 'mui-mode',
|
|
18
|
-
colorSchemeStorageKey: 'mui-color-scheme',
|
|
19
|
-
defaultColorScheme: {
|
|
20
|
-
light: 'light',
|
|
21
|
-
dark: 'dark'
|
|
22
|
-
},
|
|
23
|
-
resolveTheme: function resolveTheme(theme) {
|
|
24
|
-
var newTheme = _extends({}, theme, {
|
|
25
|
-
typography: createTypography(theme.palette, theme.typography)
|
|
26
|
-
});
|
|
27
|
-
newTheme.unstable_sx = function sx(props) {
|
|
28
|
-
return styleFunctionSx({
|
|
29
|
-
sx: props,
|
|
30
|
-
theme: this
|
|
31
|
-
});
|
|
32
|
-
};
|
|
33
|
-
return newTheme;
|
|
34
|
-
}
|
|
35
|
-
}),
|
|
36
|
-
CssVarsProvider = _createCssVarsProvide.CssVarsProvider,
|
|
37
|
-
useColorScheme = _createCssVarsProvide.useColorScheme,
|
|
38
|
-
getInitColorSchemeScript = _createCssVarsProvide.getInitColorSchemeScript;
|
|
39
|
-
export { useColorScheme, getInitColorSchemeScript, CssVarsProvider as Experimental_CssVarsProvider };
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import PropTypes from 'prop-types';
|
|
7
|
-
import { ThemeProvider as SystemThemeProvider } from '@mui/system';
|
|
8
|
-
import THEME_ID from './identifier';
|
|
9
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
-
export default function ThemeProvider(_ref) {
|
|
11
|
-
var themeInput = _ref.theme,
|
|
12
|
-
props = _objectWithoutProperties(_ref, ["theme"]);
|
|
13
|
-
var scopedTheme = themeInput[THEME_ID];
|
|
14
|
-
return /*#__PURE__*/_jsx(SystemThemeProvider, _extends({}, props, {
|
|
15
|
-
themeId: scopedTheme ? THEME_ID : undefined,
|
|
16
|
-
theme: scopedTheme || themeInput
|
|
17
|
-
}));
|
|
18
|
-
}
|
|
19
|
-
process.env.NODE_ENV !== "production" ? ThemeProvider.propTypes = {
|
|
20
|
-
/**
|
|
21
|
-
* Your component tree.
|
|
22
|
-
*/
|
|
23
|
-
children: PropTypes.node,
|
|
24
|
-
/**
|
|
25
|
-
* A theme object. You can provide a function to extend the outer theme.
|
|
26
|
-
*/
|
|
27
|
-
theme: PropTypes.oneOfType([PropTypes.object, PropTypes.func]).isRequired
|
|
28
|
-
} : void 0;
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
3
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
4
|
-
import { createBreakpoints, createSpacing } from '@mui/system';
|
|
5
|
-
export default function adaptV4Theme(inputTheme) {
|
|
6
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
7
|
-
console.warn(['MUI: adaptV4Theme() is deprecated.', 'Follow the upgrade guide on https://mui.com/r/migration-v4#theme.'].join('\n'));
|
|
8
|
-
}
|
|
9
|
-
var _inputTheme$defaultPr = inputTheme.defaultProps,
|
|
10
|
-
defaultProps = _inputTheme$defaultPr === void 0 ? {} : _inputTheme$defaultPr,
|
|
11
|
-
_inputTheme$mixins = inputTheme.mixins,
|
|
12
|
-
mixins = _inputTheme$mixins === void 0 ? {} : _inputTheme$mixins,
|
|
13
|
-
_inputTheme$overrides = inputTheme.overrides,
|
|
14
|
-
overrides = _inputTheme$overrides === void 0 ? {} : _inputTheme$overrides,
|
|
15
|
-
_inputTheme$palette = inputTheme.palette,
|
|
16
|
-
palette = _inputTheme$palette === void 0 ? {} : _inputTheme$palette,
|
|
17
|
-
_inputTheme$props = inputTheme.props,
|
|
18
|
-
props = _inputTheme$props === void 0 ? {} : _inputTheme$props,
|
|
19
|
-
_inputTheme$styleOver = inputTheme.styleOverrides,
|
|
20
|
-
styleOverrides = _inputTheme$styleOver === void 0 ? {} : _inputTheme$styleOver,
|
|
21
|
-
other = _objectWithoutProperties(inputTheme, ["defaultProps", "mixins", "overrides", "palette", "props", "styleOverrides"]);
|
|
22
|
-
var theme = _extends({}, other, {
|
|
23
|
-
components: {}
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
// default props
|
|
27
|
-
Object.keys(defaultProps).forEach(function (component) {
|
|
28
|
-
var componentValue = theme.components[component] || {};
|
|
29
|
-
componentValue.defaultProps = defaultProps[component];
|
|
30
|
-
theme.components[component] = componentValue;
|
|
31
|
-
});
|
|
32
|
-
Object.keys(props).forEach(function (component) {
|
|
33
|
-
var componentValue = theme.components[component] || {};
|
|
34
|
-
componentValue.defaultProps = props[component];
|
|
35
|
-
theme.components[component] = componentValue;
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
// CSS overrides
|
|
39
|
-
Object.keys(styleOverrides).forEach(function (component) {
|
|
40
|
-
var componentValue = theme.components[component] || {};
|
|
41
|
-
componentValue.styleOverrides = styleOverrides[component];
|
|
42
|
-
theme.components[component] = componentValue;
|
|
43
|
-
});
|
|
44
|
-
Object.keys(overrides).forEach(function (component) {
|
|
45
|
-
var componentValue = theme.components[component] || {};
|
|
46
|
-
componentValue.styleOverrides = overrides[component];
|
|
47
|
-
theme.components[component] = componentValue;
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
// theme.spacing
|
|
51
|
-
theme.spacing = createSpacing(inputTheme.spacing);
|
|
52
|
-
|
|
53
|
-
// theme.mixins.gutters
|
|
54
|
-
var breakpoints = createBreakpoints(inputTheme.breakpoints || {});
|
|
55
|
-
var spacing = theme.spacing;
|
|
56
|
-
theme.mixins = _extends({
|
|
57
|
-
gutters: function gutters() {
|
|
58
|
-
var styles = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
59
|
-
return _extends({
|
|
60
|
-
paddingLeft: spacing(2),
|
|
61
|
-
paddingRight: spacing(2)
|
|
62
|
-
}, styles, _defineProperty({}, breakpoints.up('sm'), _extends({
|
|
63
|
-
paddingLeft: spacing(3),
|
|
64
|
-
paddingRight: spacing(3)
|
|
65
|
-
}, styles[breakpoints.up('sm')])));
|
|
66
|
-
}
|
|
67
|
-
}, mixins);
|
|
68
|
-
var typeInput = palette.type,
|
|
69
|
-
modeInput = palette.mode,
|
|
70
|
-
paletteRest = _objectWithoutProperties(palette, ["type", "mode"]);
|
|
71
|
-
var finalMode = modeInput || typeInput || 'light';
|
|
72
|
-
theme.palette = _extends({
|
|
73
|
-
// theme.palette.text.hint
|
|
74
|
-
text: {
|
|
75
|
-
hint: finalMode === 'dark' ? 'rgba(255, 255, 255, 0.5)' : 'rgba(0, 0, 0, 0.38)'
|
|
76
|
-
},
|
|
77
|
-
mode: finalMode,
|
|
78
|
-
type: finalMode
|
|
79
|
-
}, paletteRest);
|
|
80
|
-
return theme;
|
|
81
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
-
import excludeVariablesFromRoot from './excludeVariablesFromRoot';
|
|
3
|
-
export default (function (theme) {
|
|
4
|
-
return function (colorScheme, css) {
|
|
5
|
-
if (theme.defaultColorScheme === colorScheme) {
|
|
6
|
-
if (colorScheme === 'dark') {
|
|
7
|
-
var excludedVariables = {};
|
|
8
|
-
excludeVariablesFromRoot(theme.cssVarPrefix).forEach(function (cssVar) {
|
|
9
|
-
excludedVariables[cssVar] = css[cssVar];
|
|
10
|
-
delete css[cssVar];
|
|
11
|
-
});
|
|
12
|
-
return _defineProperty(_defineProperty({}, "[".concat(theme.attribute, "=\"").concat(String(colorScheme), "\"]"), excludedVariables), theme.colorSchemeSelector, css);
|
|
13
|
-
}
|
|
14
|
-
return "".concat(theme.colorSchemeSelector, ", [").concat(theme.attribute, "=\"").concat(String(colorScheme), "\"]");
|
|
15
|
-
}
|
|
16
|
-
if (colorScheme) {
|
|
17
|
-
return "[".concat(theme.attribute, "=\"").concat(String(colorScheme), "\"]");
|
|
18
|
-
}
|
|
19
|
-
return theme.colorSchemeSelector;
|
|
20
|
-
};
|
|
21
|
-
});
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
3
|
-
export default function createMixins(breakpoints, mixins) {
|
|
4
|
-
return _extends({
|
|
5
|
-
toolbar: _defineProperty(_defineProperty({
|
|
6
|
-
minHeight: 56
|
|
7
|
-
}, breakpoints.up('xs'), {
|
|
8
|
-
'@media (orientation: landscape)': {
|
|
9
|
-
minHeight: 48
|
|
10
|
-
}
|
|
11
|
-
}), breakpoints.up('sm'), {
|
|
12
|
-
minHeight: 64
|
|
13
|
-
})
|
|
14
|
-
}, mixins);
|
|
15
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import deepmerge from '@mui/utils/deepmerge';
|
|
2
|
-
import createTheme from './createTheme';
|
|
3
|
-
export default function createMuiStrictModeTheme(options) {
|
|
4
|
-
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
5
|
-
args[_key - 1] = arguments[_key];
|
|
6
|
-
}
|
|
7
|
-
return createTheme.apply(void 0, [deepmerge({
|
|
8
|
-
unstable_strictMode: true
|
|
9
|
-
}, options)].concat(args));
|
|
10
|
-
}
|
|
@@ -1,299 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
-
import _formatMuiErrorMessage from "@mui/utils/formatMuiErrorMessage";
|
|
4
|
-
import deepmerge from '@mui/utils/deepmerge';
|
|
5
|
-
import { darken, getContrastRatio, lighten } from '@mui/system/colorManipulator';
|
|
6
|
-
import common from '../colors/common';
|
|
7
|
-
import grey from '../colors/grey';
|
|
8
|
-
import purple from '../colors/purple';
|
|
9
|
-
import red from '../colors/red';
|
|
10
|
-
import orange from '../colors/orange';
|
|
11
|
-
import blue from '../colors/blue';
|
|
12
|
-
import lightBlue from '../colors/lightBlue';
|
|
13
|
-
import green from '../colors/green';
|
|
14
|
-
export var light = {
|
|
15
|
-
// The colors used to style the text.
|
|
16
|
-
text: {
|
|
17
|
-
// The most important text.
|
|
18
|
-
primary: 'rgba(0, 0, 0, 0.87)',
|
|
19
|
-
// Secondary text.
|
|
20
|
-
secondary: 'rgba(0, 0, 0, 0.6)',
|
|
21
|
-
// Disabled text have even lower visual prominence.
|
|
22
|
-
disabled: 'rgba(0, 0, 0, 0.38)'
|
|
23
|
-
},
|
|
24
|
-
// The color used to divide different elements.
|
|
25
|
-
divider: 'rgba(0, 0, 0, 0.12)',
|
|
26
|
-
// The background colors used to style the surfaces.
|
|
27
|
-
// Consistency between these values is important.
|
|
28
|
-
background: {
|
|
29
|
-
paper: common.white,
|
|
30
|
-
default: common.white
|
|
31
|
-
},
|
|
32
|
-
// The colors used to style the action elements.
|
|
33
|
-
action: {
|
|
34
|
-
// The color of an active action like an icon button.
|
|
35
|
-
active: 'rgba(0, 0, 0, 0.54)',
|
|
36
|
-
// The color of an hovered action.
|
|
37
|
-
hover: 'rgba(0, 0, 0, 0.04)',
|
|
38
|
-
hoverOpacity: 0.04,
|
|
39
|
-
// The color of a selected action.
|
|
40
|
-
selected: 'rgba(0, 0, 0, 0.08)',
|
|
41
|
-
selectedOpacity: 0.08,
|
|
42
|
-
// The color of a disabled action.
|
|
43
|
-
disabled: 'rgba(0, 0, 0, 0.26)',
|
|
44
|
-
// The background color of a disabled action.
|
|
45
|
-
disabledBackground: 'rgba(0, 0, 0, 0.12)',
|
|
46
|
-
disabledOpacity: 0.38,
|
|
47
|
-
focus: 'rgba(0, 0, 0, 0.12)',
|
|
48
|
-
focusOpacity: 0.12,
|
|
49
|
-
activatedOpacity: 0.12
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
export var dark = {
|
|
53
|
-
text: {
|
|
54
|
-
primary: common.white,
|
|
55
|
-
secondary: 'rgba(255, 255, 255, 0.7)',
|
|
56
|
-
disabled: 'rgba(255, 255, 255, 0.5)',
|
|
57
|
-
icon: 'rgba(255, 255, 255, 0.5)'
|
|
58
|
-
},
|
|
59
|
-
divider: 'rgba(255, 255, 255, 0.12)',
|
|
60
|
-
background: {
|
|
61
|
-
paper: '#121212',
|
|
62
|
-
default: '#121212'
|
|
63
|
-
},
|
|
64
|
-
action: {
|
|
65
|
-
active: common.white,
|
|
66
|
-
hover: 'rgba(255, 255, 255, 0.08)',
|
|
67
|
-
hoverOpacity: 0.08,
|
|
68
|
-
selected: 'rgba(255, 255, 255, 0.16)',
|
|
69
|
-
selectedOpacity: 0.16,
|
|
70
|
-
disabled: 'rgba(255, 255, 255, 0.3)',
|
|
71
|
-
disabledBackground: 'rgba(255, 255, 255, 0.12)',
|
|
72
|
-
disabledOpacity: 0.38,
|
|
73
|
-
focus: 'rgba(255, 255, 255, 0.12)',
|
|
74
|
-
focusOpacity: 0.12,
|
|
75
|
-
activatedOpacity: 0.24
|
|
76
|
-
}
|
|
77
|
-
};
|
|
78
|
-
function addLightOrDark(intent, direction, shade, tonalOffset) {
|
|
79
|
-
var tonalOffsetLight = tonalOffset.light || tonalOffset;
|
|
80
|
-
var tonalOffsetDark = tonalOffset.dark || tonalOffset * 1.5;
|
|
81
|
-
if (!intent[direction]) {
|
|
82
|
-
if (intent.hasOwnProperty(shade)) {
|
|
83
|
-
intent[direction] = intent[shade];
|
|
84
|
-
} else if (direction === 'light') {
|
|
85
|
-
intent.light = lighten(intent.main, tonalOffsetLight);
|
|
86
|
-
} else if (direction === 'dark') {
|
|
87
|
-
intent.dark = darken(intent.main, tonalOffsetDark);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
function getDefaultPrimary() {
|
|
92
|
-
var mode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'light';
|
|
93
|
-
if (mode === 'dark') {
|
|
94
|
-
return {
|
|
95
|
-
main: blue[200],
|
|
96
|
-
light: blue[50],
|
|
97
|
-
dark: blue[400]
|
|
98
|
-
};
|
|
99
|
-
}
|
|
100
|
-
return {
|
|
101
|
-
main: blue[700],
|
|
102
|
-
light: blue[400],
|
|
103
|
-
dark: blue[800]
|
|
104
|
-
};
|
|
105
|
-
}
|
|
106
|
-
function getDefaultSecondary() {
|
|
107
|
-
var mode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'light';
|
|
108
|
-
if (mode === 'dark') {
|
|
109
|
-
return {
|
|
110
|
-
main: purple[200],
|
|
111
|
-
light: purple[50],
|
|
112
|
-
dark: purple[400]
|
|
113
|
-
};
|
|
114
|
-
}
|
|
115
|
-
return {
|
|
116
|
-
main: purple[500],
|
|
117
|
-
light: purple[300],
|
|
118
|
-
dark: purple[700]
|
|
119
|
-
};
|
|
120
|
-
}
|
|
121
|
-
function getDefaultError() {
|
|
122
|
-
var mode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'light';
|
|
123
|
-
if (mode === 'dark') {
|
|
124
|
-
return {
|
|
125
|
-
main: red[500],
|
|
126
|
-
light: red[300],
|
|
127
|
-
dark: red[700]
|
|
128
|
-
};
|
|
129
|
-
}
|
|
130
|
-
return {
|
|
131
|
-
main: red[700],
|
|
132
|
-
light: red[400],
|
|
133
|
-
dark: red[800]
|
|
134
|
-
};
|
|
135
|
-
}
|
|
136
|
-
function getDefaultInfo() {
|
|
137
|
-
var mode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'light';
|
|
138
|
-
if (mode === 'dark') {
|
|
139
|
-
return {
|
|
140
|
-
main: lightBlue[400],
|
|
141
|
-
light: lightBlue[300],
|
|
142
|
-
dark: lightBlue[700]
|
|
143
|
-
};
|
|
144
|
-
}
|
|
145
|
-
return {
|
|
146
|
-
main: lightBlue[700],
|
|
147
|
-
light: lightBlue[500],
|
|
148
|
-
dark: lightBlue[900]
|
|
149
|
-
};
|
|
150
|
-
}
|
|
151
|
-
function getDefaultSuccess() {
|
|
152
|
-
var mode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'light';
|
|
153
|
-
if (mode === 'dark') {
|
|
154
|
-
return {
|
|
155
|
-
main: green[400],
|
|
156
|
-
light: green[300],
|
|
157
|
-
dark: green[700]
|
|
158
|
-
};
|
|
159
|
-
}
|
|
160
|
-
return {
|
|
161
|
-
main: green[800],
|
|
162
|
-
light: green[500],
|
|
163
|
-
dark: green[900]
|
|
164
|
-
};
|
|
165
|
-
}
|
|
166
|
-
function getDefaultWarning() {
|
|
167
|
-
var mode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'light';
|
|
168
|
-
if (mode === 'dark') {
|
|
169
|
-
return {
|
|
170
|
-
main: orange[400],
|
|
171
|
-
light: orange[300],
|
|
172
|
-
dark: orange[700]
|
|
173
|
-
};
|
|
174
|
-
}
|
|
175
|
-
return {
|
|
176
|
-
main: '#ed6c02',
|
|
177
|
-
// closest to orange[800] that pass 3:1.
|
|
178
|
-
light: orange[500],
|
|
179
|
-
dark: orange[900]
|
|
180
|
-
};
|
|
181
|
-
}
|
|
182
|
-
export default function createPalette(palette) {
|
|
183
|
-
var _palette$mode = palette.mode,
|
|
184
|
-
mode = _palette$mode === void 0 ? 'light' : _palette$mode,
|
|
185
|
-
_palette$contrastThre = palette.contrastThreshold,
|
|
186
|
-
contrastThreshold = _palette$contrastThre === void 0 ? 3 : _palette$contrastThre,
|
|
187
|
-
_palette$tonalOffset = palette.tonalOffset,
|
|
188
|
-
tonalOffset = _palette$tonalOffset === void 0 ? 0.2 : _palette$tonalOffset,
|
|
189
|
-
other = _objectWithoutProperties(palette, ["mode", "contrastThreshold", "tonalOffset"]);
|
|
190
|
-
var primary = palette.primary || getDefaultPrimary(mode);
|
|
191
|
-
var secondary = palette.secondary || getDefaultSecondary(mode);
|
|
192
|
-
var error = palette.error || getDefaultError(mode);
|
|
193
|
-
var info = palette.info || getDefaultInfo(mode);
|
|
194
|
-
var success = palette.success || getDefaultSuccess(mode);
|
|
195
|
-
var warning = palette.warning || getDefaultWarning(mode);
|
|
196
|
-
|
|
197
|
-
// Use the same logic as
|
|
198
|
-
// Bootstrap: https://github.com/twbs/bootstrap/blob/1d6e3710dd447de1a200f29e8fa521f8a0908f70/scss/_functions.scss#L59
|
|
199
|
-
// and material-components-web https://github.com/material-components/material-components-web/blob/ac46b8863c4dab9fc22c4c662dc6bd1b65dd652f/packages/mdc-theme/_functions.scss#L54
|
|
200
|
-
function getContrastText(background) {
|
|
201
|
-
var contrastText = getContrastRatio(background, dark.text.primary) >= contrastThreshold ? dark.text.primary : light.text.primary;
|
|
202
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
203
|
-
var contrast = getContrastRatio(background, contrastText);
|
|
204
|
-
if (contrast < 3) {
|
|
205
|
-
console.error(["MUI: The contrast ratio of ".concat(contrast, ":1 for ").concat(contrastText, " on ").concat(background), 'falls below the WCAG recommended absolute minimum contrast ratio of 3:1.', 'https://www.w3.org/TR/2008/REC-WCAG20-20081211/#visual-audio-contrast-contrast'].join('\n'));
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
return contrastText;
|
|
209
|
-
}
|
|
210
|
-
var augmentColor = function augmentColor(_ref) {
|
|
211
|
-
var color = _ref.color,
|
|
212
|
-
name = _ref.name,
|
|
213
|
-
_ref$mainShade = _ref.mainShade,
|
|
214
|
-
mainShade = _ref$mainShade === void 0 ? 500 : _ref$mainShade,
|
|
215
|
-
_ref$lightShade = _ref.lightShade,
|
|
216
|
-
lightShade = _ref$lightShade === void 0 ? 300 : _ref$lightShade,
|
|
217
|
-
_ref$darkShade = _ref.darkShade,
|
|
218
|
-
darkShade = _ref$darkShade === void 0 ? 700 : _ref$darkShade;
|
|
219
|
-
color = _extends({}, color);
|
|
220
|
-
if (!color.main && color[mainShade]) {
|
|
221
|
-
color.main = color[mainShade];
|
|
222
|
-
}
|
|
223
|
-
if (!color.hasOwnProperty('main')) {
|
|
224
|
-
throw new Error(process.env.NODE_ENV !== "production" ? "MUI: The color".concat(name ? " (".concat(name, ")") : '', " provided to augmentColor(color) is invalid.\nThe color object needs to have a `main` property or a `").concat(mainShade, "` property.") : _formatMuiErrorMessage(11, name ? " (".concat(name, ")") : '', mainShade));
|
|
225
|
-
}
|
|
226
|
-
if (typeof color.main !== 'string') {
|
|
227
|
-
throw new Error(process.env.NODE_ENV !== "production" ? "MUI: The color".concat(name ? " (".concat(name, ")") : '', " provided to augmentColor(color) is invalid.\n`color.main` should be a string, but `").concat(JSON.stringify(color.main), "` was provided instead.\n\nDid you intend to use one of the following approaches?\n\nimport { green } from \"@mui/material/colors\";\n\nconst theme1 = createTheme({ palette: {\n primary: green,\n} });\n\nconst theme2 = createTheme({ palette: {\n primary: { main: green[500] },\n} });") : _formatMuiErrorMessage(12, name ? " (".concat(name, ")") : '', JSON.stringify(color.main)));
|
|
228
|
-
}
|
|
229
|
-
addLightOrDark(color, 'light', lightShade, tonalOffset);
|
|
230
|
-
addLightOrDark(color, 'dark', darkShade, tonalOffset);
|
|
231
|
-
if (!color.contrastText) {
|
|
232
|
-
color.contrastText = getContrastText(color.main);
|
|
233
|
-
}
|
|
234
|
-
return color;
|
|
235
|
-
};
|
|
236
|
-
var modes = {
|
|
237
|
-
dark: dark,
|
|
238
|
-
light: light
|
|
239
|
-
};
|
|
240
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
241
|
-
if (!modes[mode]) {
|
|
242
|
-
console.error("MUI: The palette mode `".concat(mode, "` is not supported."));
|
|
243
|
-
}
|
|
244
|
-
}
|
|
245
|
-
var paletteOutput = deepmerge(_extends({
|
|
246
|
-
// A collection of common colors.
|
|
247
|
-
common: _extends({}, common),
|
|
248
|
-
// prevent mutable object.
|
|
249
|
-
// The palette mode, can be light or dark.
|
|
250
|
-
mode: mode,
|
|
251
|
-
// The colors used to represent primary interface elements for a user.
|
|
252
|
-
primary: augmentColor({
|
|
253
|
-
color: primary,
|
|
254
|
-
name: 'primary'
|
|
255
|
-
}),
|
|
256
|
-
// The colors used to represent secondary interface elements for a user.
|
|
257
|
-
secondary: augmentColor({
|
|
258
|
-
color: secondary,
|
|
259
|
-
name: 'secondary',
|
|
260
|
-
mainShade: 'A400',
|
|
261
|
-
lightShade: 'A200',
|
|
262
|
-
darkShade: 'A700'
|
|
263
|
-
}),
|
|
264
|
-
// The colors used to represent interface elements that the user should be made aware of.
|
|
265
|
-
error: augmentColor({
|
|
266
|
-
color: error,
|
|
267
|
-
name: 'error'
|
|
268
|
-
}),
|
|
269
|
-
// The colors used to represent potentially dangerous actions or important messages.
|
|
270
|
-
warning: augmentColor({
|
|
271
|
-
color: warning,
|
|
272
|
-
name: 'warning'
|
|
273
|
-
}),
|
|
274
|
-
// The colors used to present information to the user that is neutral and not necessarily important.
|
|
275
|
-
info: augmentColor({
|
|
276
|
-
color: info,
|
|
277
|
-
name: 'info'
|
|
278
|
-
}),
|
|
279
|
-
// The colors used to indicate the successful completion of an action that user triggered.
|
|
280
|
-
success: augmentColor({
|
|
281
|
-
color: success,
|
|
282
|
-
name: 'success'
|
|
283
|
-
}),
|
|
284
|
-
// The grey colors.
|
|
285
|
-
grey: grey,
|
|
286
|
-
// Used by `getContrastText()` to maximize the contrast between
|
|
287
|
-
// the background and the text.
|
|
288
|
-
contrastThreshold: contrastThreshold,
|
|
289
|
-
// Takes a background color and returns the text color that maximizes the contrast.
|
|
290
|
-
getContrastText: getContrastText,
|
|
291
|
-
// Generate a rich color object.
|
|
292
|
-
augmentColor: augmentColor,
|
|
293
|
-
// Used by the functions below to shift a color's luminance by approximately
|
|
294
|
-
// two indexes within its tonal palette.
|
|
295
|
-
// E.g., shift from Red 500 to Red 300 or Red 700.
|
|
296
|
-
tonalOffset: tonalOffset
|
|
297
|
-
}, modes[mode]), other);
|
|
298
|
-
return paletteOutput;
|
|
299
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
var warnedOnce = false;
|
|
2
|
-
|
|
3
|
-
// To remove in v6
|
|
4
|
-
export default function createStyles(styles) {
|
|
5
|
-
if (!warnedOnce) {
|
|
6
|
-
console.warn(['MUI: createStyles from @mui/material/styles is deprecated.', 'Please use @mui/styles/createStyles'].join('\n'));
|
|
7
|
-
warnedOnce = true;
|
|
8
|
-
}
|
|
9
|
-
return styles;
|
|
10
|
-
}
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
3
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
4
|
-
import _formatMuiErrorMessage from "@mui/utils/formatMuiErrorMessage";
|
|
5
|
-
import deepmerge from '@mui/utils/deepmerge';
|
|
6
|
-
import styleFunctionSx, { unstable_defaultSxConfig as defaultSxConfig } from '@mui/system/styleFunctionSx';
|
|
7
|
-
import systemCreateTheme from '@mui/system/createTheme';
|
|
8
|
-
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
|
9
|
-
import createMixins from './createMixins';
|
|
10
|
-
import createPalette from './createPalette';
|
|
11
|
-
import createTypography from './createTypography';
|
|
12
|
-
import shadows from './shadows';
|
|
13
|
-
import createTransitions from './createTransitions';
|
|
14
|
-
import zIndex from './zIndex';
|
|
15
|
-
function createTheme() {
|
|
16
|
-
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
17
|
-
var breakpointsInput = options.breakpoints,
|
|
18
|
-
_options$mixins = options.mixins,
|
|
19
|
-
mixinsInput = _options$mixins === void 0 ? {} : _options$mixins,
|
|
20
|
-
spacingInput = options.spacing,
|
|
21
|
-
_options$palette = options.palette,
|
|
22
|
-
paletteInput = _options$palette === void 0 ? {} : _options$palette,
|
|
23
|
-
_options$transitions = options.transitions,
|
|
24
|
-
transitionsInput = _options$transitions === void 0 ? {} : _options$transitions,
|
|
25
|
-
_options$typography = options.typography,
|
|
26
|
-
typographyInput = _options$typography === void 0 ? {} : _options$typography,
|
|
27
|
-
shapeInput = options.shape,
|
|
28
|
-
other = _objectWithoutProperties(options, ["breakpoints", "mixins", "spacing", "palette", "transitions", "typography", "shape"]);
|
|
29
|
-
if (options.vars) {
|
|
30
|
-
throw new Error(process.env.NODE_ENV !== "production" ? "MUI: `vars` is a private field used for CSS variables support.\nPlease use another name." : _formatMuiErrorMessage(18));
|
|
31
|
-
}
|
|
32
|
-
var palette = createPalette(paletteInput);
|
|
33
|
-
var systemTheme = systemCreateTheme(options);
|
|
34
|
-
var muiTheme = deepmerge(systemTheme, {
|
|
35
|
-
mixins: createMixins(systemTheme.breakpoints, mixinsInput),
|
|
36
|
-
palette: palette,
|
|
37
|
-
// Don't use [...shadows] until you've verified its transpiled code is not invoking the iterator protocol.
|
|
38
|
-
shadows: shadows.slice(),
|
|
39
|
-
typography: createTypography(palette, typographyInput),
|
|
40
|
-
transitions: createTransitions(transitionsInput),
|
|
41
|
-
zIndex: _extends({}, zIndex)
|
|
42
|
-
});
|
|
43
|
-
muiTheme = deepmerge(muiTheme, other);
|
|
44
|
-
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
45
|
-
args[_key - 1] = arguments[_key];
|
|
46
|
-
}
|
|
47
|
-
muiTheme = args.reduce(function (acc, argument) {
|
|
48
|
-
return deepmerge(acc, argument);
|
|
49
|
-
}, muiTheme);
|
|
50
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
51
|
-
// TODO v6: Refactor to use globalStateClassesMapping from @mui/utils once `readOnly` state class is used in Rating component.
|
|
52
|
-
var stateClasses = ['active', 'checked', 'completed', 'disabled', 'error', 'expanded', 'focused', 'focusVisible', 'required', 'selected'];
|
|
53
|
-
var traverse = function traverse(node, component) {
|
|
54
|
-
var key;
|
|
55
|
-
|
|
56
|
-
// eslint-disable-next-line guard-for-in, no-restricted-syntax
|
|
57
|
-
for (key in node) {
|
|
58
|
-
var child = node[key];
|
|
59
|
-
if (stateClasses.indexOf(key) !== -1 && Object.keys(child).length > 0) {
|
|
60
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
61
|
-
var stateClass = generateUtilityClass('', key);
|
|
62
|
-
console.error(["MUI: The `".concat(component, "` component increases ") + "the CSS specificity of the `".concat(key, "` internal state."), 'You can not override it like this: ', JSON.stringify(node, null, 2), '', "Instead, you need to use the '&.".concat(stateClass, "' syntax:"), JSON.stringify({
|
|
63
|
-
root: _defineProperty({}, "&.".concat(stateClass), child)
|
|
64
|
-
}, null, 2), '', 'https://mui.com/r/state-classes-guide'].join('\n'));
|
|
65
|
-
}
|
|
66
|
-
// Remove the style to prevent global conflicts.
|
|
67
|
-
node[key] = {};
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
};
|
|
71
|
-
Object.keys(muiTheme.components).forEach(function (component) {
|
|
72
|
-
var styleOverrides = muiTheme.components[component].styleOverrides;
|
|
73
|
-
if (styleOverrides && component.indexOf('Mui') === 0) {
|
|
74
|
-
traverse(styleOverrides, component);
|
|
75
|
-
}
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
muiTheme.unstable_sxConfig = _extends({}, defaultSxConfig, other == null ? void 0 : other.unstable_sxConfig);
|
|
79
|
-
muiTheme.unstable_sx = function sx(props) {
|
|
80
|
-
return styleFunctionSx({
|
|
81
|
-
sx: props,
|
|
82
|
-
theme: this
|
|
83
|
-
});
|
|
84
|
-
};
|
|
85
|
-
return muiTheme;
|
|
86
|
-
}
|
|
87
|
-
var warnedOnce = false;
|
|
88
|
-
export function createMuiTheme() {
|
|
89
|
-
if (process.env.NODE_ENV !== 'production') {
|
|
90
|
-
if (!warnedOnce) {
|
|
91
|
-
warnedOnce = true;
|
|
92
|
-
console.error(['MUI: the createMuiTheme function was renamed to createTheme.', '', "You should use `import { createTheme } from '@mui/material/styles'`"].join('\n'));
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
return createTheme.apply(void 0, arguments);
|
|
96
|
-
}
|
|
97
|
-
export default createTheme;
|