@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,211 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
4
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
5
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
6
|
-
import * as React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import clsx from 'clsx';
|
|
9
|
-
import composeClasses from '@mui/utils/composeClasses';
|
|
10
|
-
import { styled, createUseThemeProps } from '../zero-styled';
|
|
11
|
-
import useSlot from '../utils/useSlot';
|
|
12
|
-
import Fade from '../Fade';
|
|
13
|
-
import { getBackdropUtilityClass } from './backdropClasses';
|
|
14
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
15
|
-
var useThemeProps = createUseThemeProps('MuiBackdrop');
|
|
16
|
-
var useUtilityClasses = function useUtilityClasses(ownerState) {
|
|
17
|
-
var classes = ownerState.classes,
|
|
18
|
-
invisible = ownerState.invisible;
|
|
19
|
-
var slots = {
|
|
20
|
-
root: ['root', invisible && 'invisible']
|
|
21
|
-
};
|
|
22
|
-
return composeClasses(slots, getBackdropUtilityClass, classes);
|
|
23
|
-
};
|
|
24
|
-
var BackdropRoot = styled('div', {
|
|
25
|
-
name: 'MuiBackdrop',
|
|
26
|
-
slot: 'Root',
|
|
27
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
28
|
-
var ownerState = props.ownerState;
|
|
29
|
-
return [styles.root, ownerState.invisible && styles.invisible];
|
|
30
|
-
}
|
|
31
|
-
})({
|
|
32
|
-
position: 'fixed',
|
|
33
|
-
display: 'flex',
|
|
34
|
-
alignItems: 'center',
|
|
35
|
-
justifyContent: 'center',
|
|
36
|
-
right: 0,
|
|
37
|
-
bottom: 0,
|
|
38
|
-
top: 0,
|
|
39
|
-
left: 0,
|
|
40
|
-
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
|
41
|
-
WebkitTapHighlightColor: 'transparent',
|
|
42
|
-
variants: [{
|
|
43
|
-
props: {
|
|
44
|
-
invisible: true
|
|
45
|
-
},
|
|
46
|
-
style: {
|
|
47
|
-
backgroundColor: 'transparent'
|
|
48
|
-
}
|
|
49
|
-
}]
|
|
50
|
-
});
|
|
51
|
-
var Backdrop = /*#__PURE__*/React.forwardRef(function Backdrop(inProps, ref) {
|
|
52
|
-
var props = useThemeProps({
|
|
53
|
-
props: inProps,
|
|
54
|
-
name: 'MuiBackdrop'
|
|
55
|
-
});
|
|
56
|
-
var children = props.children,
|
|
57
|
-
className = props.className,
|
|
58
|
-
_props$component = props.component,
|
|
59
|
-
component = _props$component === void 0 ? 'div' : _props$component,
|
|
60
|
-
_props$invisible = props.invisible,
|
|
61
|
-
invisible = _props$invisible === void 0 ? false : _props$invisible,
|
|
62
|
-
open = props.open,
|
|
63
|
-
_props$components = props.components,
|
|
64
|
-
components = _props$components === void 0 ? {} : _props$components,
|
|
65
|
-
_props$componentsProp = props.componentsProps,
|
|
66
|
-
componentsProps = _props$componentsProp === void 0 ? {} : _props$componentsProp,
|
|
67
|
-
_props$slotProps = props.slotProps,
|
|
68
|
-
slotProps = _props$slotProps === void 0 ? {} : _props$slotProps,
|
|
69
|
-
_props$slots = props.slots,
|
|
70
|
-
slots = _props$slots === void 0 ? {} : _props$slots,
|
|
71
|
-
TransitionComponentProp = props.TransitionComponent,
|
|
72
|
-
transitionDuration = props.transitionDuration,
|
|
73
|
-
other = _objectWithoutProperties(props, ["children", "className", "component", "invisible", "open", "components", "componentsProps", "slotProps", "slots", "TransitionComponent", "transitionDuration"]);
|
|
74
|
-
var ownerState = _extends({}, props, {
|
|
75
|
-
component: component,
|
|
76
|
-
invisible: invisible
|
|
77
|
-
});
|
|
78
|
-
var classes = useUtilityClasses(ownerState);
|
|
79
|
-
var backwardCompatibleSlots = _extends({
|
|
80
|
-
transition: TransitionComponentProp,
|
|
81
|
-
root: components.Root
|
|
82
|
-
}, slots);
|
|
83
|
-
var backwardCompatibleSlotProps = _extends({}, componentsProps, slotProps);
|
|
84
|
-
var externalForwardedProps = {
|
|
85
|
-
slots: backwardCompatibleSlots,
|
|
86
|
-
slotProps: backwardCompatibleSlotProps
|
|
87
|
-
};
|
|
88
|
-
var _useSlot = useSlot('root', {
|
|
89
|
-
elementType: BackdropRoot,
|
|
90
|
-
externalForwardedProps: externalForwardedProps,
|
|
91
|
-
className: clsx(classes.root, className),
|
|
92
|
-
ownerState: ownerState
|
|
93
|
-
}),
|
|
94
|
-
_useSlot2 = _slicedToArray(_useSlot, 2),
|
|
95
|
-
RootSlot = _useSlot2[0],
|
|
96
|
-
rootProps = _useSlot2[1];
|
|
97
|
-
var _useSlot3 = useSlot('transition', {
|
|
98
|
-
elementType: Fade,
|
|
99
|
-
externalForwardedProps: externalForwardedProps,
|
|
100
|
-
ownerState: ownerState
|
|
101
|
-
}),
|
|
102
|
-
_useSlot4 = _slicedToArray(_useSlot3, 2),
|
|
103
|
-
TransitionSlot = _useSlot4[0],
|
|
104
|
-
transitionProps = _useSlot4[1];
|
|
105
|
-
delete transitionProps.ownerState;
|
|
106
|
-
return /*#__PURE__*/_jsx(TransitionSlot, _extends({
|
|
107
|
-
in: open,
|
|
108
|
-
timeout: transitionDuration
|
|
109
|
-
}, other, transitionProps, {
|
|
110
|
-
children: /*#__PURE__*/_jsx(RootSlot, _extends({
|
|
111
|
-
"aria-hidden": true
|
|
112
|
-
}, rootProps, {
|
|
113
|
-
classes: classes,
|
|
114
|
-
ref: ref,
|
|
115
|
-
children: children
|
|
116
|
-
}))
|
|
117
|
-
}));
|
|
118
|
-
});
|
|
119
|
-
process.env.NODE_ENV !== "production" ? Backdrop.propTypes /* remove-proptypes */ = {
|
|
120
|
-
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
121
|
-
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
122
|
-
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
123
|
-
// └─────────────────────────────────────────────────────────────────────┘
|
|
124
|
-
/**
|
|
125
|
-
* The content of the component.
|
|
126
|
-
*/
|
|
127
|
-
children: PropTypes.node,
|
|
128
|
-
/**
|
|
129
|
-
* Override or extend the styles applied to the component.
|
|
130
|
-
*/
|
|
131
|
-
classes: PropTypes.object,
|
|
132
|
-
/**
|
|
133
|
-
* @ignore
|
|
134
|
-
*/
|
|
135
|
-
className: PropTypes.string,
|
|
136
|
-
/**
|
|
137
|
-
* The component used for the root node.
|
|
138
|
-
* Either a string to use a HTML element or a component.
|
|
139
|
-
*/
|
|
140
|
-
component: PropTypes.elementType,
|
|
141
|
-
/**
|
|
142
|
-
* The components used for each slot inside.
|
|
143
|
-
*
|
|
144
|
-
* This prop is an alias for the `slots` prop.
|
|
145
|
-
* It's recommended to use the `slots` prop instead.
|
|
146
|
-
*
|
|
147
|
-
* @default {}
|
|
148
|
-
*/
|
|
149
|
-
components: PropTypes.shape({
|
|
150
|
-
Root: PropTypes.elementType
|
|
151
|
-
}),
|
|
152
|
-
/**
|
|
153
|
-
* The extra props for the slot components.
|
|
154
|
-
* You can override the existing props or add new ones.
|
|
155
|
-
*
|
|
156
|
-
* This prop is an alias for the `slotProps` prop.
|
|
157
|
-
* It's recommended to use the `slotProps` prop instead, as `componentsProps` will be deprecated in the future.
|
|
158
|
-
*
|
|
159
|
-
* @default {}
|
|
160
|
-
*/
|
|
161
|
-
componentsProps: PropTypes.shape({
|
|
162
|
-
root: PropTypes.object
|
|
163
|
-
}),
|
|
164
|
-
/**
|
|
165
|
-
* If `true`, the backdrop is invisible.
|
|
166
|
-
* It can be used when rendering a popover or a custom select component.
|
|
167
|
-
* @default false
|
|
168
|
-
*/
|
|
169
|
-
invisible: PropTypes.bool,
|
|
170
|
-
/**
|
|
171
|
-
* If `true`, the component is shown.
|
|
172
|
-
*/
|
|
173
|
-
open: PropTypes.bool.isRequired,
|
|
174
|
-
/**
|
|
175
|
-
* The props used for each slot inside.
|
|
176
|
-
* @default {}
|
|
177
|
-
*/
|
|
178
|
-
slotProps: PropTypes.shape({
|
|
179
|
-
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
180
|
-
transition: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
181
|
-
}),
|
|
182
|
-
/**
|
|
183
|
-
* The components used for each slot inside.
|
|
184
|
-
* @default {}
|
|
185
|
-
*/
|
|
186
|
-
slots: PropTypes.shape({
|
|
187
|
-
root: PropTypes.elementType,
|
|
188
|
-
transition: PropTypes.elementType
|
|
189
|
-
}),
|
|
190
|
-
/**
|
|
191
|
-
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
192
|
-
*/
|
|
193
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
194
|
-
/**
|
|
195
|
-
* The component used for the transition.
|
|
196
|
-
* [Follow this guide](/material-ui/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.
|
|
197
|
-
* @default Fade
|
|
198
|
-
* @deprecated Use `slots.transition` instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/).
|
|
199
|
-
*/
|
|
200
|
-
TransitionComponent: PropTypes.elementType,
|
|
201
|
-
/**
|
|
202
|
-
* The duration for the transition, in milliseconds.
|
|
203
|
-
* You may specify a single timeout for all transitions, or individually with an object.
|
|
204
|
-
*/
|
|
205
|
-
transitionDuration: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
206
|
-
appear: PropTypes.number,
|
|
207
|
-
enter: PropTypes.number,
|
|
208
|
-
exit: PropTypes.number
|
|
209
|
-
})])
|
|
210
|
-
} : void 0;
|
|
211
|
-
export default Backdrop;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
|
2
|
-
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
|
3
|
-
export function getBackdropUtilityClass(slot) {
|
|
4
|
-
return generateUtilityClass('MuiBackdrop', slot);
|
|
5
|
-
}
|
|
6
|
-
var backdropClasses = generateUtilityClasses('MuiBackdrop', ['root', 'invisible']);
|
|
7
|
-
export default backdropClasses;
|
package/legacy/Backdrop/index.js
DELETED
package/legacy/Badge/Badge.js
DELETED
|
@@ -1,439 +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 _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
6
|
-
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
7
|
-
import * as React from 'react';
|
|
8
|
-
import PropTypes from 'prop-types';
|
|
9
|
-
import clsx from 'clsx';
|
|
10
|
-
import usePreviousProps from '@mui/utils/usePreviousProps';
|
|
11
|
-
import composeClasses from '@mui/utils/composeClasses';
|
|
12
|
-
import { useBadge } from '@mui/base/useBadge';
|
|
13
|
-
import { useSlotProps } from '@mui/base/utils';
|
|
14
|
-
import { styled, createUseThemeProps } from '../zero-styled';
|
|
15
|
-
import capitalize from '../utils/capitalize';
|
|
16
|
-
import badgeClasses, { getBadgeUtilityClass } from './badgeClasses';
|
|
17
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
18
|
-
var RADIUS_STANDARD = 10;
|
|
19
|
-
var RADIUS_DOT = 4;
|
|
20
|
-
var useThemeProps = createUseThemeProps('MuiBadge');
|
|
21
|
-
var useUtilityClasses = function useUtilityClasses(ownerState) {
|
|
22
|
-
var color = ownerState.color,
|
|
23
|
-
anchorOrigin = ownerState.anchorOrigin,
|
|
24
|
-
invisible = ownerState.invisible,
|
|
25
|
-
overlap = ownerState.overlap,
|
|
26
|
-
variant = ownerState.variant,
|
|
27
|
-
_ownerState$classes = ownerState.classes,
|
|
28
|
-
classes = _ownerState$classes === void 0 ? {} : _ownerState$classes;
|
|
29
|
-
var slots = {
|
|
30
|
-
root: ['root'],
|
|
31
|
-
badge: ['badge', variant, invisible && 'invisible', "anchorOrigin".concat(capitalize(anchorOrigin.vertical)).concat(capitalize(anchorOrigin.horizontal)), "anchorOrigin".concat(capitalize(anchorOrigin.vertical)).concat(capitalize(anchorOrigin.horizontal)).concat(capitalize(overlap)), "overlap".concat(capitalize(overlap)), color !== 'default' && "color".concat(capitalize(color))]
|
|
32
|
-
};
|
|
33
|
-
return composeClasses(slots, getBadgeUtilityClass, classes);
|
|
34
|
-
};
|
|
35
|
-
var BadgeRoot = styled('span', {
|
|
36
|
-
name: 'MuiBadge',
|
|
37
|
-
slot: 'Root',
|
|
38
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
39
|
-
return styles.root;
|
|
40
|
-
}
|
|
41
|
-
})({
|
|
42
|
-
position: 'relative',
|
|
43
|
-
display: 'inline-flex',
|
|
44
|
-
// For correct alignment with the text.
|
|
45
|
-
verticalAlign: 'middle',
|
|
46
|
-
flexShrink: 0
|
|
47
|
-
});
|
|
48
|
-
var BadgeBadge = styled('span', {
|
|
49
|
-
name: 'MuiBadge',
|
|
50
|
-
slot: 'Badge',
|
|
51
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
52
|
-
var ownerState = props.ownerState;
|
|
53
|
-
return [styles.badge, styles[ownerState.variant], styles["anchorOrigin".concat(capitalize(ownerState.anchorOrigin.vertical)).concat(capitalize(ownerState.anchorOrigin.horizontal)).concat(capitalize(ownerState.overlap))], ownerState.color !== 'default' && styles["color".concat(capitalize(ownerState.color))], ownerState.invisible && styles.invisible];
|
|
54
|
-
}
|
|
55
|
-
})(function (_ref) {
|
|
56
|
-
var _theme$vars;
|
|
57
|
-
var theme = _ref.theme;
|
|
58
|
-
return {
|
|
59
|
-
display: 'flex',
|
|
60
|
-
flexDirection: 'row',
|
|
61
|
-
flexWrap: 'wrap',
|
|
62
|
-
justifyContent: 'center',
|
|
63
|
-
alignContent: 'center',
|
|
64
|
-
alignItems: 'center',
|
|
65
|
-
position: 'absolute',
|
|
66
|
-
boxSizing: 'border-box',
|
|
67
|
-
fontFamily: theme.typography.fontFamily,
|
|
68
|
-
fontWeight: theme.typography.fontWeightMedium,
|
|
69
|
-
fontSize: theme.typography.pxToRem(12),
|
|
70
|
-
minWidth: RADIUS_STANDARD * 2,
|
|
71
|
-
lineHeight: 1,
|
|
72
|
-
padding: '0 6px',
|
|
73
|
-
height: RADIUS_STANDARD * 2,
|
|
74
|
-
borderRadius: RADIUS_STANDARD,
|
|
75
|
-
zIndex: 1,
|
|
76
|
-
// Render the badge on top of potential ripples.
|
|
77
|
-
transition: theme.transitions.create('transform', {
|
|
78
|
-
easing: theme.transitions.easing.easeInOut,
|
|
79
|
-
duration: theme.transitions.duration.enteringScreen
|
|
80
|
-
}),
|
|
81
|
-
variants: [].concat(_toConsumableArray(Object.keys(((_theme$vars = theme.vars) != null ? _theme$vars : theme).palette).filter(function (key) {
|
|
82
|
-
var _theme$vars2, _theme$vars3;
|
|
83
|
-
return ((_theme$vars2 = theme.vars) != null ? _theme$vars2 : theme).palette[key].main && ((_theme$vars3 = theme.vars) != null ? _theme$vars3 : theme).palette[key].contrastText;
|
|
84
|
-
}).map(function (color) {
|
|
85
|
-
return {
|
|
86
|
-
props: {
|
|
87
|
-
color: color
|
|
88
|
-
},
|
|
89
|
-
style: {
|
|
90
|
-
backgroundColor: (theme.vars || theme).palette[color].main,
|
|
91
|
-
color: (theme.vars || theme).palette[color].contrastText
|
|
92
|
-
}
|
|
93
|
-
};
|
|
94
|
-
})), [{
|
|
95
|
-
props: {
|
|
96
|
-
variant: 'dot'
|
|
97
|
-
},
|
|
98
|
-
style: {
|
|
99
|
-
borderRadius: RADIUS_DOT,
|
|
100
|
-
height: RADIUS_DOT * 2,
|
|
101
|
-
minWidth: RADIUS_DOT * 2,
|
|
102
|
-
padding: 0
|
|
103
|
-
}
|
|
104
|
-
}, {
|
|
105
|
-
props: function props(_ref2) {
|
|
106
|
-
var ownerState = _ref2.ownerState;
|
|
107
|
-
return ownerState.anchorOrigin.vertical === 'top' && ownerState.anchorOrigin.horizontal === 'right' && ownerState.overlap === 'rectangular';
|
|
108
|
-
},
|
|
109
|
-
style: _defineProperty({
|
|
110
|
-
top: 0,
|
|
111
|
-
right: 0,
|
|
112
|
-
transform: 'scale(1) translate(50%, -50%)',
|
|
113
|
-
transformOrigin: '100% 0%'
|
|
114
|
-
}, "&.".concat(badgeClasses.invisible), {
|
|
115
|
-
transform: 'scale(0) translate(50%, -50%)'
|
|
116
|
-
})
|
|
117
|
-
}, {
|
|
118
|
-
props: function props(_ref3) {
|
|
119
|
-
var ownerState = _ref3.ownerState;
|
|
120
|
-
return ownerState.anchorOrigin.vertical === 'bottom' && ownerState.anchorOrigin.horizontal === 'right' && ownerState.overlap === 'rectangular';
|
|
121
|
-
},
|
|
122
|
-
style: _defineProperty({
|
|
123
|
-
bottom: 0,
|
|
124
|
-
right: 0,
|
|
125
|
-
transform: 'scale(1) translate(50%, 50%)',
|
|
126
|
-
transformOrigin: '100% 100%'
|
|
127
|
-
}, "&.".concat(badgeClasses.invisible), {
|
|
128
|
-
transform: 'scale(0) translate(50%, 50%)'
|
|
129
|
-
})
|
|
130
|
-
}, {
|
|
131
|
-
props: function props(_ref4) {
|
|
132
|
-
var ownerState = _ref4.ownerState;
|
|
133
|
-
return ownerState.anchorOrigin.vertical === 'top' && ownerState.anchorOrigin.horizontal === 'left' && ownerState.overlap === 'rectangular';
|
|
134
|
-
},
|
|
135
|
-
style: _defineProperty({
|
|
136
|
-
top: 0,
|
|
137
|
-
left: 0,
|
|
138
|
-
transform: 'scale(1) translate(-50%, -50%)',
|
|
139
|
-
transformOrigin: '0% 0%'
|
|
140
|
-
}, "&.".concat(badgeClasses.invisible), {
|
|
141
|
-
transform: 'scale(0) translate(-50%, -50%)'
|
|
142
|
-
})
|
|
143
|
-
}, {
|
|
144
|
-
props: function props(_ref5) {
|
|
145
|
-
var ownerState = _ref5.ownerState;
|
|
146
|
-
return ownerState.anchorOrigin.vertical === 'bottom' && ownerState.anchorOrigin.horizontal === 'left' && ownerState.overlap === 'rectangular';
|
|
147
|
-
},
|
|
148
|
-
style: _defineProperty({
|
|
149
|
-
bottom: 0,
|
|
150
|
-
left: 0,
|
|
151
|
-
transform: 'scale(1) translate(-50%, 50%)',
|
|
152
|
-
transformOrigin: '0% 100%'
|
|
153
|
-
}, "&.".concat(badgeClasses.invisible), {
|
|
154
|
-
transform: 'scale(0) translate(-50%, 50%)'
|
|
155
|
-
})
|
|
156
|
-
}, {
|
|
157
|
-
props: function props(_ref6) {
|
|
158
|
-
var ownerState = _ref6.ownerState;
|
|
159
|
-
return ownerState.anchorOrigin.vertical === 'top' && ownerState.anchorOrigin.horizontal === 'right' && ownerState.overlap === 'circular';
|
|
160
|
-
},
|
|
161
|
-
style: _defineProperty({
|
|
162
|
-
top: '14%',
|
|
163
|
-
right: '14%',
|
|
164
|
-
transform: 'scale(1) translate(50%, -50%)',
|
|
165
|
-
transformOrigin: '100% 0%'
|
|
166
|
-
}, "&.".concat(badgeClasses.invisible), {
|
|
167
|
-
transform: 'scale(0) translate(50%, -50%)'
|
|
168
|
-
})
|
|
169
|
-
}, {
|
|
170
|
-
props: function props(_ref7) {
|
|
171
|
-
var ownerState = _ref7.ownerState;
|
|
172
|
-
return ownerState.anchorOrigin.vertical === 'bottom' && ownerState.anchorOrigin.horizontal === 'right' && ownerState.overlap === 'circular';
|
|
173
|
-
},
|
|
174
|
-
style: _defineProperty({
|
|
175
|
-
bottom: '14%',
|
|
176
|
-
right: '14%',
|
|
177
|
-
transform: 'scale(1) translate(50%, 50%)',
|
|
178
|
-
transformOrigin: '100% 100%'
|
|
179
|
-
}, "&.".concat(badgeClasses.invisible), {
|
|
180
|
-
transform: 'scale(0) translate(50%, 50%)'
|
|
181
|
-
})
|
|
182
|
-
}, {
|
|
183
|
-
props: function props(_ref8) {
|
|
184
|
-
var ownerState = _ref8.ownerState;
|
|
185
|
-
return ownerState.anchorOrigin.vertical === 'top' && ownerState.anchorOrigin.horizontal === 'left' && ownerState.overlap === 'circular';
|
|
186
|
-
},
|
|
187
|
-
style: _defineProperty({
|
|
188
|
-
top: '14%',
|
|
189
|
-
left: '14%',
|
|
190
|
-
transform: 'scale(1) translate(-50%, -50%)',
|
|
191
|
-
transformOrigin: '0% 0%'
|
|
192
|
-
}, "&.".concat(badgeClasses.invisible), {
|
|
193
|
-
transform: 'scale(0) translate(-50%, -50%)'
|
|
194
|
-
})
|
|
195
|
-
}, {
|
|
196
|
-
props: function props(_ref9) {
|
|
197
|
-
var ownerState = _ref9.ownerState;
|
|
198
|
-
return ownerState.anchorOrigin.vertical === 'bottom' && ownerState.anchorOrigin.horizontal === 'left' && ownerState.overlap === 'circular';
|
|
199
|
-
},
|
|
200
|
-
style: _defineProperty({
|
|
201
|
-
bottom: '14%',
|
|
202
|
-
left: '14%',
|
|
203
|
-
transform: 'scale(1) translate(-50%, 50%)',
|
|
204
|
-
transformOrigin: '0% 100%'
|
|
205
|
-
}, "&.".concat(badgeClasses.invisible), {
|
|
206
|
-
transform: 'scale(0) translate(-50%, 50%)'
|
|
207
|
-
})
|
|
208
|
-
}, {
|
|
209
|
-
props: {
|
|
210
|
-
invisible: true
|
|
211
|
-
},
|
|
212
|
-
style: {
|
|
213
|
-
transition: theme.transitions.create('transform', {
|
|
214
|
-
easing: theme.transitions.easing.easeInOut,
|
|
215
|
-
duration: theme.transitions.duration.leavingScreen
|
|
216
|
-
})
|
|
217
|
-
}
|
|
218
|
-
}])
|
|
219
|
-
};
|
|
220
|
-
});
|
|
221
|
-
var Badge = /*#__PURE__*/React.forwardRef(function Badge(inProps, ref) {
|
|
222
|
-
var _ref11, _slots$root, _ref12, _slots$badge, _slotProps$root, _slotProps$badge;
|
|
223
|
-
var props = useThemeProps({
|
|
224
|
-
props: inProps,
|
|
225
|
-
name: 'MuiBadge'
|
|
226
|
-
});
|
|
227
|
-
var _props$anchorOrigin = props.anchorOrigin,
|
|
228
|
-
anchorOriginProp = _props$anchorOrigin === void 0 ? {
|
|
229
|
-
vertical: 'top',
|
|
230
|
-
horizontal: 'right'
|
|
231
|
-
} : _props$anchorOrigin,
|
|
232
|
-
className = props.className,
|
|
233
|
-
classesProp = props.classes,
|
|
234
|
-
component = props.component,
|
|
235
|
-
_props$components = props.components,
|
|
236
|
-
components = _props$components === void 0 ? {} : _props$components,
|
|
237
|
-
_props$componentsProp = props.componentsProps,
|
|
238
|
-
componentsProps = _props$componentsProp === void 0 ? {} : _props$componentsProp,
|
|
239
|
-
children = props.children,
|
|
240
|
-
_props$overlap = props.overlap,
|
|
241
|
-
overlapProp = _props$overlap === void 0 ? 'rectangular' : _props$overlap,
|
|
242
|
-
_props$color = props.color,
|
|
243
|
-
colorProp = _props$color === void 0 ? 'default' : _props$color,
|
|
244
|
-
_props$invisible = props.invisible,
|
|
245
|
-
invisibleProp = _props$invisible === void 0 ? false : _props$invisible,
|
|
246
|
-
_props$max = props.max,
|
|
247
|
-
maxProp = _props$max === void 0 ? 99 : _props$max,
|
|
248
|
-
badgeContentProp = props.badgeContent,
|
|
249
|
-
slots = props.slots,
|
|
250
|
-
slotProps = props.slotProps,
|
|
251
|
-
_props$showZero = props.showZero,
|
|
252
|
-
showZero = _props$showZero === void 0 ? false : _props$showZero,
|
|
253
|
-
_props$variant = props.variant,
|
|
254
|
-
variantProp = _props$variant === void 0 ? 'standard' : _props$variant,
|
|
255
|
-
other = _objectWithoutProperties(props, ["anchorOrigin", "className", "classes", "component", "components", "componentsProps", "children", "overlap", "color", "invisible", "max", "badgeContent", "slots", "slotProps", "showZero", "variant"]);
|
|
256
|
-
var _useBadge = useBadge({
|
|
257
|
-
max: maxProp,
|
|
258
|
-
invisible: invisibleProp,
|
|
259
|
-
badgeContent: badgeContentProp,
|
|
260
|
-
showZero: showZero
|
|
261
|
-
}),
|
|
262
|
-
badgeContent = _useBadge.badgeContent,
|
|
263
|
-
invisibleFromHook = _useBadge.invisible,
|
|
264
|
-
max = _useBadge.max,
|
|
265
|
-
displayValueFromHook = _useBadge.displayValue;
|
|
266
|
-
var prevProps = usePreviousProps({
|
|
267
|
-
anchorOrigin: anchorOriginProp,
|
|
268
|
-
color: colorProp,
|
|
269
|
-
overlap: overlapProp,
|
|
270
|
-
variant: variantProp,
|
|
271
|
-
badgeContent: badgeContentProp
|
|
272
|
-
});
|
|
273
|
-
var invisible = invisibleFromHook || badgeContent == null && variantProp !== 'dot';
|
|
274
|
-
var _ref10 = invisible ? prevProps : props,
|
|
275
|
-
_ref10$color = _ref10.color,
|
|
276
|
-
color = _ref10$color === void 0 ? colorProp : _ref10$color,
|
|
277
|
-
_ref10$overlap = _ref10.overlap,
|
|
278
|
-
overlap = _ref10$overlap === void 0 ? overlapProp : _ref10$overlap,
|
|
279
|
-
_ref10$anchorOrigin = _ref10.anchorOrigin,
|
|
280
|
-
anchorOrigin = _ref10$anchorOrigin === void 0 ? anchorOriginProp : _ref10$anchorOrigin,
|
|
281
|
-
_ref10$variant = _ref10.variant,
|
|
282
|
-
variant = _ref10$variant === void 0 ? variantProp : _ref10$variant;
|
|
283
|
-
var displayValue = variant !== 'dot' ? displayValueFromHook : undefined;
|
|
284
|
-
var ownerState = _extends({}, props, {
|
|
285
|
-
badgeContent: badgeContent,
|
|
286
|
-
invisible: invisible,
|
|
287
|
-
max: max,
|
|
288
|
-
displayValue: displayValue,
|
|
289
|
-
showZero: showZero,
|
|
290
|
-
anchorOrigin: anchorOrigin,
|
|
291
|
-
color: color,
|
|
292
|
-
overlap: overlap,
|
|
293
|
-
variant: variant
|
|
294
|
-
});
|
|
295
|
-
var classes = useUtilityClasses(ownerState);
|
|
296
|
-
|
|
297
|
-
// support both `slots` and `components` for backward compatibility
|
|
298
|
-
var RootSlot = (_ref11 = (_slots$root = slots == null ? void 0 : slots.root) != null ? _slots$root : components.Root) != null ? _ref11 : BadgeRoot;
|
|
299
|
-
var BadgeSlot = (_ref12 = (_slots$badge = slots == null ? void 0 : slots.badge) != null ? _slots$badge : components.Badge) != null ? _ref12 : BadgeBadge;
|
|
300
|
-
var rootSlotProps = (_slotProps$root = slotProps == null ? void 0 : slotProps.root) != null ? _slotProps$root : componentsProps.root;
|
|
301
|
-
var badgeSlotProps = (_slotProps$badge = slotProps == null ? void 0 : slotProps.badge) != null ? _slotProps$badge : componentsProps.badge;
|
|
302
|
-
var rootProps = useSlotProps({
|
|
303
|
-
elementType: RootSlot,
|
|
304
|
-
externalSlotProps: rootSlotProps,
|
|
305
|
-
externalForwardedProps: other,
|
|
306
|
-
additionalProps: {
|
|
307
|
-
ref: ref,
|
|
308
|
-
as: component
|
|
309
|
-
},
|
|
310
|
-
ownerState: ownerState,
|
|
311
|
-
className: clsx(rootSlotProps == null ? void 0 : rootSlotProps.className, classes.root, className)
|
|
312
|
-
});
|
|
313
|
-
var badgeProps = useSlotProps({
|
|
314
|
-
elementType: BadgeSlot,
|
|
315
|
-
externalSlotProps: badgeSlotProps,
|
|
316
|
-
ownerState: ownerState,
|
|
317
|
-
className: clsx(classes.badge, badgeSlotProps == null ? void 0 : badgeSlotProps.className)
|
|
318
|
-
});
|
|
319
|
-
return /*#__PURE__*/_jsxs(RootSlot, _extends({}, rootProps, {
|
|
320
|
-
children: [children, /*#__PURE__*/_jsx(BadgeSlot, _extends({}, badgeProps, {
|
|
321
|
-
children: displayValue
|
|
322
|
-
}))]
|
|
323
|
-
}));
|
|
324
|
-
});
|
|
325
|
-
process.env.NODE_ENV !== "production" ? Badge.propTypes /* remove-proptypes */ = {
|
|
326
|
-
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
327
|
-
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
328
|
-
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
329
|
-
// └─────────────────────────────────────────────────────────────────────┘
|
|
330
|
-
/**
|
|
331
|
-
* The anchor of the badge.
|
|
332
|
-
* @default {
|
|
333
|
-
* vertical: 'top',
|
|
334
|
-
* horizontal: 'right',
|
|
335
|
-
* }
|
|
336
|
-
*/
|
|
337
|
-
anchorOrigin: PropTypes.shape({
|
|
338
|
-
horizontal: PropTypes.oneOf(['left', 'right']).isRequired,
|
|
339
|
-
vertical: PropTypes.oneOf(['bottom', 'top']).isRequired
|
|
340
|
-
}),
|
|
341
|
-
/**
|
|
342
|
-
* The content rendered within the badge.
|
|
343
|
-
*/
|
|
344
|
-
badgeContent: PropTypes.node,
|
|
345
|
-
/**
|
|
346
|
-
* The badge will be added relative to this node.
|
|
347
|
-
*/
|
|
348
|
-
children: PropTypes.node,
|
|
349
|
-
/**
|
|
350
|
-
* Override or extend the styles applied to the component.
|
|
351
|
-
*/
|
|
352
|
-
classes: PropTypes.object,
|
|
353
|
-
/**
|
|
354
|
-
* @ignore
|
|
355
|
-
*/
|
|
356
|
-
className: PropTypes.string,
|
|
357
|
-
/**
|
|
358
|
-
* The color of the component.
|
|
359
|
-
* It supports both default and custom theme colors, which can be added as shown in the
|
|
360
|
-
* [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
|
|
361
|
-
* @default 'default'
|
|
362
|
-
*/
|
|
363
|
-
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['default', 'primary', 'secondary', 'error', 'info', 'success', 'warning']), PropTypes.string]),
|
|
364
|
-
/**
|
|
365
|
-
* The component used for the root node.
|
|
366
|
-
* Either a string to use a HTML element or a component.
|
|
367
|
-
*/
|
|
368
|
-
component: PropTypes.elementType,
|
|
369
|
-
/**
|
|
370
|
-
* The components used for each slot inside.
|
|
371
|
-
*
|
|
372
|
-
* @deprecated use the `slots` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/).
|
|
373
|
-
*
|
|
374
|
-
* @default {}
|
|
375
|
-
*/
|
|
376
|
-
components: PropTypes.shape({
|
|
377
|
-
Badge: PropTypes.elementType,
|
|
378
|
-
Root: PropTypes.elementType
|
|
379
|
-
}),
|
|
380
|
-
/**
|
|
381
|
-
* The extra props for the slot components.
|
|
382
|
-
* You can override the existing props or add new ones.
|
|
383
|
-
*
|
|
384
|
-
* @deprecated use the `slotProps` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/).
|
|
385
|
-
*
|
|
386
|
-
* @default {}
|
|
387
|
-
*/
|
|
388
|
-
componentsProps: PropTypes.shape({
|
|
389
|
-
badge: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
390
|
-
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
391
|
-
}),
|
|
392
|
-
/**
|
|
393
|
-
* If `true`, the badge is invisible.
|
|
394
|
-
* @default false
|
|
395
|
-
*/
|
|
396
|
-
invisible: PropTypes.bool,
|
|
397
|
-
/**
|
|
398
|
-
* Max count to show.
|
|
399
|
-
* @default 99
|
|
400
|
-
*/
|
|
401
|
-
max: PropTypes.number,
|
|
402
|
-
/**
|
|
403
|
-
* Wrapped shape the badge should overlap.
|
|
404
|
-
* @default 'rectangular'
|
|
405
|
-
*/
|
|
406
|
-
overlap: PropTypes.oneOf(['circular', 'rectangular']),
|
|
407
|
-
/**
|
|
408
|
-
* Controls whether the badge is hidden when `badgeContent` is zero.
|
|
409
|
-
* @default false
|
|
410
|
-
*/
|
|
411
|
-
showZero: PropTypes.bool,
|
|
412
|
-
/**
|
|
413
|
-
* The props used for each slot inside the Badge.
|
|
414
|
-
* @default {}
|
|
415
|
-
*/
|
|
416
|
-
slotProps: PropTypes.shape({
|
|
417
|
-
badge: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
418
|
-
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
419
|
-
}),
|
|
420
|
-
/**
|
|
421
|
-
* The components used for each slot inside the Badge.
|
|
422
|
-
* Either a string to use a HTML element or a component.
|
|
423
|
-
* @default {}
|
|
424
|
-
*/
|
|
425
|
-
slots: PropTypes.shape({
|
|
426
|
-
badge: PropTypes.elementType,
|
|
427
|
-
root: PropTypes.elementType
|
|
428
|
-
}),
|
|
429
|
-
/**
|
|
430
|
-
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
431
|
-
*/
|
|
432
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
433
|
-
/**
|
|
434
|
-
* The variant to use.
|
|
435
|
-
* @default 'standard'
|
|
436
|
-
*/
|
|
437
|
-
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['dot', 'standard']), PropTypes.string])
|
|
438
|
-
} : void 0;
|
|
439
|
-
export default Badge;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
|
2
|
-
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
|
3
|
-
export function getBadgeUtilityClass(slot) {
|
|
4
|
-
return generateUtilityClass('MuiBadge', slot);
|
|
5
|
-
}
|
|
6
|
-
var badgeClasses = generateUtilityClasses('MuiBadge', ['root', 'badge', 'dot', 'standard', 'anchorOriginTopRight', 'anchorOriginBottomRight', 'anchorOriginTopLeft', 'anchorOriginBottomLeft', 'invisible', 'colorError', 'colorInfo', 'colorPrimary', 'colorSecondary', 'colorSuccess', 'colorWarning', 'overlapRectangular', 'overlapCircular',
|
|
7
|
-
// TODO: v6 remove the overlap value from these class keys
|
|
8
|
-
'anchorOriginTopLeftCircular', 'anchorOriginTopLeftRectangular', 'anchorOriginTopRightCircular', 'anchorOriginTopRightRectangular', 'anchorOriginBottomLeftCircular', 'anchorOriginBottomLeftRectangular', 'anchorOriginBottomRightCircular', 'anchorOriginBottomRightRectangular']);
|
|
9
|
-
export default badgeClasses;
|