@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,49 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import * as React from 'react';
|
|
4
|
-
import PropTypes from 'prop-types';
|
|
5
|
-
import clsx from 'clsx';
|
|
6
|
-
import sliderClasses from './sliderClasses';
|
|
7
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
|
-
var useValueLabelClasses = function useValueLabelClasses(props) {
|
|
9
|
-
var open = props.open;
|
|
10
|
-
var utilityClasses = {
|
|
11
|
-
offset: clsx(open && sliderClasses.valueLabelOpen),
|
|
12
|
-
circle: sliderClasses.valueLabelCircle,
|
|
13
|
-
label: sliderClasses.valueLabelLabel
|
|
14
|
-
};
|
|
15
|
-
return utilityClasses;
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* @ignore - internal component.
|
|
20
|
-
*/
|
|
21
|
-
export default function SliderValueLabel(props) {
|
|
22
|
-
var children = props.children,
|
|
23
|
-
className = props.className,
|
|
24
|
-
value = props.value;
|
|
25
|
-
var classes = useValueLabelClasses(props);
|
|
26
|
-
if (!children) {
|
|
27
|
-
return null;
|
|
28
|
-
}
|
|
29
|
-
return /*#__PURE__*/React.cloneElement(children, {
|
|
30
|
-
className: clsx(children.props.className)
|
|
31
|
-
}, /*#__PURE__*/_jsxs(React.Fragment, {
|
|
32
|
-
children: [children.props.children, /*#__PURE__*/_jsx("span", {
|
|
33
|
-
className: clsx(classes.offset, className),
|
|
34
|
-
"aria-hidden": true,
|
|
35
|
-
children: /*#__PURE__*/_jsx("span", {
|
|
36
|
-
className: classes.circle,
|
|
37
|
-
children: /*#__PURE__*/_jsx("span", {
|
|
38
|
-
className: classes.label,
|
|
39
|
-
children: value
|
|
40
|
-
})
|
|
41
|
-
})
|
|
42
|
-
})]
|
|
43
|
-
}));
|
|
44
|
-
}
|
|
45
|
-
process.env.NODE_ENV !== "production" ? SliderValueLabel.propTypes = {
|
|
46
|
-
children: PropTypes.element.isRequired,
|
|
47
|
-
className: PropTypes.string,
|
|
48
|
-
value: PropTypes.node
|
|
49
|
-
} : void 0;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/legacy/Slider/index.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
|
2
|
-
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
|
3
|
-
export function getSliderUtilityClass(slot) {
|
|
4
|
-
return generateUtilityClass('MuiSlider', slot);
|
|
5
|
-
}
|
|
6
|
-
var sliderClasses = generateUtilityClasses('MuiSlider', ['root', 'active', 'colorPrimary', 'colorSecondary', 'colorError', 'colorInfo', 'colorSuccess', 'colorWarning', 'disabled', 'dragging', 'focusVisible', 'mark', 'markActive', 'marked', 'markLabel', 'markLabelActive', 'rail', 'sizeSmall', 'thumb', 'thumbColorPrimary', 'thumbColorSecondary', 'thumbColorError', 'thumbColorSuccess', 'thumbColorInfo', 'thumbColorWarning', 'track', 'trackInverted', 'trackFalse', 'thumbSizeSmall', 'valueLabel', 'valueLabelOpen', 'valueLabelCircle', 'valueLabelLabel', 'vertical']);
|
|
7
|
-
export default sliderClasses;
|
|
@@ -1,312 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
4
|
-
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
5
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
6
|
-
import * as React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import { useSlotProps } from '@mui/base/utils';
|
|
9
|
-
import composeClasses from '@mui/utils/composeClasses';
|
|
10
|
-
import { ClickAwayListener } from '@mui/base/ClickAwayListener';
|
|
11
|
-
import { useSnackbar } from '@mui/base/useSnackbar';
|
|
12
|
-
import styled from '../styles/styled';
|
|
13
|
-
import useTheme from '../styles/useTheme';
|
|
14
|
-
import useThemeProps from '../styles/useThemeProps';
|
|
15
|
-
import capitalize from '../utils/capitalize';
|
|
16
|
-
import Grow from '../Grow';
|
|
17
|
-
import SnackbarContent from '../SnackbarContent';
|
|
18
|
-
import { getSnackbarUtilityClass } from './snackbarClasses';
|
|
19
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
20
|
-
var useUtilityClasses = function useUtilityClasses(ownerState) {
|
|
21
|
-
var classes = ownerState.classes,
|
|
22
|
-
anchorOrigin = ownerState.anchorOrigin;
|
|
23
|
-
var slots = {
|
|
24
|
-
root: ['root', "anchorOrigin".concat(capitalize(anchorOrigin.vertical)).concat(capitalize(anchorOrigin.horizontal))]
|
|
25
|
-
};
|
|
26
|
-
return composeClasses(slots, getSnackbarUtilityClass, classes);
|
|
27
|
-
};
|
|
28
|
-
var SnackbarRoot = styled('div', {
|
|
29
|
-
name: 'MuiSnackbar',
|
|
30
|
-
slot: 'Root',
|
|
31
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
32
|
-
var ownerState = props.ownerState;
|
|
33
|
-
return [styles.root, styles["anchorOrigin".concat(capitalize(ownerState.anchorOrigin.vertical)).concat(capitalize(ownerState.anchorOrigin.horizontal))]];
|
|
34
|
-
}
|
|
35
|
-
})(function (_ref) {
|
|
36
|
-
var theme = _ref.theme,
|
|
37
|
-
ownerState = _ref.ownerState;
|
|
38
|
-
var center = {
|
|
39
|
-
left: '50%',
|
|
40
|
-
right: 'auto',
|
|
41
|
-
transform: 'translateX(-50%)'
|
|
42
|
-
};
|
|
43
|
-
return _extends({
|
|
44
|
-
zIndex: (theme.vars || theme).zIndex.snackbar,
|
|
45
|
-
position: 'fixed',
|
|
46
|
-
display: 'flex',
|
|
47
|
-
left: 8,
|
|
48
|
-
right: 8,
|
|
49
|
-
justifyContent: 'center',
|
|
50
|
-
alignItems: 'center'
|
|
51
|
-
}, ownerState.anchorOrigin.vertical === 'top' ? {
|
|
52
|
-
top: 8
|
|
53
|
-
} : {
|
|
54
|
-
bottom: 8
|
|
55
|
-
}, ownerState.anchorOrigin.horizontal === 'left' && {
|
|
56
|
-
justifyContent: 'flex-start'
|
|
57
|
-
}, ownerState.anchorOrigin.horizontal === 'right' && {
|
|
58
|
-
justifyContent: 'flex-end'
|
|
59
|
-
}, _defineProperty({}, theme.breakpoints.up('sm'), _extends({}, ownerState.anchorOrigin.vertical === 'top' ? {
|
|
60
|
-
top: 24
|
|
61
|
-
} : {
|
|
62
|
-
bottom: 24
|
|
63
|
-
}, ownerState.anchorOrigin.horizontal === 'center' && center, ownerState.anchorOrigin.horizontal === 'left' && {
|
|
64
|
-
left: 24,
|
|
65
|
-
right: 'auto'
|
|
66
|
-
}, ownerState.anchorOrigin.horizontal === 'right' && {
|
|
67
|
-
right: 24,
|
|
68
|
-
left: 'auto'
|
|
69
|
-
})));
|
|
70
|
-
});
|
|
71
|
-
var Snackbar = /*#__PURE__*/React.forwardRef(function Snackbar(inProps, ref) {
|
|
72
|
-
var props = useThemeProps({
|
|
73
|
-
props: inProps,
|
|
74
|
-
name: 'MuiSnackbar'
|
|
75
|
-
});
|
|
76
|
-
var theme = useTheme();
|
|
77
|
-
var defaultTransitionDuration = {
|
|
78
|
-
enter: theme.transitions.duration.enteringScreen,
|
|
79
|
-
exit: theme.transitions.duration.leavingScreen
|
|
80
|
-
};
|
|
81
|
-
var action = props.action,
|
|
82
|
-
_props$anchorOrigin = props.anchorOrigin,
|
|
83
|
-
_props$anchorOrigin2 = _props$anchorOrigin === void 0 ? {
|
|
84
|
-
vertical: 'bottom',
|
|
85
|
-
horizontal: 'left'
|
|
86
|
-
} : _props$anchorOrigin,
|
|
87
|
-
vertical = _props$anchorOrigin2.vertical,
|
|
88
|
-
horizontal = _props$anchorOrigin2.horizontal,
|
|
89
|
-
_props$autoHideDurati = props.autoHideDuration,
|
|
90
|
-
autoHideDuration = _props$autoHideDurati === void 0 ? null : _props$autoHideDurati,
|
|
91
|
-
children = props.children,
|
|
92
|
-
className = props.className,
|
|
93
|
-
ClickAwayListenerProps = props.ClickAwayListenerProps,
|
|
94
|
-
ContentProps = props.ContentProps,
|
|
95
|
-
_props$disableWindowB = props.disableWindowBlurListener,
|
|
96
|
-
disableWindowBlurListener = _props$disableWindowB === void 0 ? false : _props$disableWindowB,
|
|
97
|
-
message = props.message,
|
|
98
|
-
onBlur = props.onBlur,
|
|
99
|
-
onClose = props.onClose,
|
|
100
|
-
onFocus = props.onFocus,
|
|
101
|
-
onMouseEnter = props.onMouseEnter,
|
|
102
|
-
onMouseLeave = props.onMouseLeave,
|
|
103
|
-
open = props.open,
|
|
104
|
-
resumeHideDuration = props.resumeHideDuration,
|
|
105
|
-
_props$TransitionComp = props.TransitionComponent,
|
|
106
|
-
TransitionComponent = _props$TransitionComp === void 0 ? Grow : _props$TransitionComp,
|
|
107
|
-
_props$transitionDura = props.transitionDuration,
|
|
108
|
-
transitionDuration = _props$transitionDura === void 0 ? defaultTransitionDuration : _props$transitionDura,
|
|
109
|
-
_props$TransitionProp = props.TransitionProps,
|
|
110
|
-
_props$TransitionProp2 = _props$TransitionProp === void 0 ? {} : _props$TransitionProp,
|
|
111
|
-
onEnter = _props$TransitionProp2.onEnter,
|
|
112
|
-
onExited = _props$TransitionProp2.onExited,
|
|
113
|
-
TransitionProps = _objectWithoutProperties(_props$TransitionProp2, ["onEnter", "onExited"]),
|
|
114
|
-
other = _objectWithoutProperties(props, ["action", "anchorOrigin", "autoHideDuration", "children", "className", "ClickAwayListenerProps", "ContentProps", "disableWindowBlurListener", "message", "onBlur", "onClose", "onFocus", "onMouseEnter", "onMouseLeave", "open", "resumeHideDuration", "TransitionComponent", "transitionDuration", "TransitionProps"]);
|
|
115
|
-
var ownerState = _extends({}, props, {
|
|
116
|
-
anchorOrigin: {
|
|
117
|
-
vertical: vertical,
|
|
118
|
-
horizontal: horizontal
|
|
119
|
-
},
|
|
120
|
-
autoHideDuration: autoHideDuration,
|
|
121
|
-
disableWindowBlurListener: disableWindowBlurListener,
|
|
122
|
-
TransitionComponent: TransitionComponent,
|
|
123
|
-
transitionDuration: transitionDuration
|
|
124
|
-
});
|
|
125
|
-
var classes = useUtilityClasses(ownerState);
|
|
126
|
-
var _useSnackbar = useSnackbar(_extends({}, ownerState)),
|
|
127
|
-
getRootProps = _useSnackbar.getRootProps,
|
|
128
|
-
onClickAway = _useSnackbar.onClickAway;
|
|
129
|
-
var _React$useState = React.useState(true),
|
|
130
|
-
exited = _React$useState[0],
|
|
131
|
-
setExited = _React$useState[1];
|
|
132
|
-
var rootProps = useSlotProps({
|
|
133
|
-
elementType: SnackbarRoot,
|
|
134
|
-
getSlotProps: getRootProps,
|
|
135
|
-
externalForwardedProps: other,
|
|
136
|
-
ownerState: ownerState,
|
|
137
|
-
additionalProps: {
|
|
138
|
-
ref: ref
|
|
139
|
-
},
|
|
140
|
-
className: [classes.root, className]
|
|
141
|
-
});
|
|
142
|
-
var handleExited = function handleExited(node) {
|
|
143
|
-
setExited(true);
|
|
144
|
-
if (onExited) {
|
|
145
|
-
onExited(node);
|
|
146
|
-
}
|
|
147
|
-
};
|
|
148
|
-
var handleEnter = function handleEnter(node, isAppearing) {
|
|
149
|
-
setExited(false);
|
|
150
|
-
if (onEnter) {
|
|
151
|
-
onEnter(node, isAppearing);
|
|
152
|
-
}
|
|
153
|
-
};
|
|
154
|
-
|
|
155
|
-
// So we only render active snackbars.
|
|
156
|
-
if (!open && exited) {
|
|
157
|
-
return null;
|
|
158
|
-
}
|
|
159
|
-
return /*#__PURE__*/_jsx(ClickAwayListener, _extends({
|
|
160
|
-
onClickAway: onClickAway
|
|
161
|
-
}, ClickAwayListenerProps, {
|
|
162
|
-
children: /*#__PURE__*/_jsx(SnackbarRoot, _extends({}, rootProps, {
|
|
163
|
-
children: /*#__PURE__*/_jsx(TransitionComponent, _extends({
|
|
164
|
-
appear: true,
|
|
165
|
-
in: open,
|
|
166
|
-
timeout: transitionDuration,
|
|
167
|
-
direction: vertical === 'top' ? 'down' : 'up',
|
|
168
|
-
onEnter: handleEnter,
|
|
169
|
-
onExited: handleExited
|
|
170
|
-
}, TransitionProps, {
|
|
171
|
-
children: children || /*#__PURE__*/_jsx(SnackbarContent, _extends({
|
|
172
|
-
message: message,
|
|
173
|
-
action: action
|
|
174
|
-
}, ContentProps))
|
|
175
|
-
}))
|
|
176
|
-
}))
|
|
177
|
-
}));
|
|
178
|
-
});
|
|
179
|
-
process.env.NODE_ENV !== "production" ? Snackbar.propTypes /* remove-proptypes */ = {
|
|
180
|
-
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
181
|
-
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
182
|
-
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
183
|
-
// └─────────────────────────────────────────────────────────────────────┘
|
|
184
|
-
/**
|
|
185
|
-
* The action to display. It renders after the message, at the end of the snackbar.
|
|
186
|
-
*/
|
|
187
|
-
action: PropTypes.node,
|
|
188
|
-
/**
|
|
189
|
-
* The anchor of the `Snackbar`.
|
|
190
|
-
* On smaller screens, the component grows to occupy all the available width,
|
|
191
|
-
* the horizontal alignment is ignored.
|
|
192
|
-
* @default { vertical: 'bottom', horizontal: 'left' }
|
|
193
|
-
*/
|
|
194
|
-
anchorOrigin: PropTypes.shape({
|
|
195
|
-
horizontal: PropTypes.oneOf(['center', 'left', 'right']).isRequired,
|
|
196
|
-
vertical: PropTypes.oneOf(['bottom', 'top']).isRequired
|
|
197
|
-
}),
|
|
198
|
-
/**
|
|
199
|
-
* The number of milliseconds to wait before automatically calling the
|
|
200
|
-
* `onClose` function. `onClose` should then set the state of the `open`
|
|
201
|
-
* prop to hide the Snackbar. This behavior is disabled by default with
|
|
202
|
-
* the `null` value.
|
|
203
|
-
* @default null
|
|
204
|
-
*/
|
|
205
|
-
autoHideDuration: PropTypes.number,
|
|
206
|
-
/**
|
|
207
|
-
* Replace the `SnackbarContent` component.
|
|
208
|
-
*/
|
|
209
|
-
children: PropTypes.element,
|
|
210
|
-
/**
|
|
211
|
-
* Override or extend the styles applied to the component.
|
|
212
|
-
*/
|
|
213
|
-
classes: PropTypes.object,
|
|
214
|
-
/**
|
|
215
|
-
* @ignore
|
|
216
|
-
*/
|
|
217
|
-
className: PropTypes.string,
|
|
218
|
-
/**
|
|
219
|
-
* Props applied to the `ClickAwayListener` element.
|
|
220
|
-
*/
|
|
221
|
-
ClickAwayListenerProps: PropTypes.object,
|
|
222
|
-
/**
|
|
223
|
-
* Props applied to the [`SnackbarContent`](/material-ui/api/snackbar-content/) element.
|
|
224
|
-
*/
|
|
225
|
-
ContentProps: PropTypes.object,
|
|
226
|
-
/**
|
|
227
|
-
* If `true`, the `autoHideDuration` timer will expire even if the window is not focused.
|
|
228
|
-
* @default false
|
|
229
|
-
*/
|
|
230
|
-
disableWindowBlurListener: PropTypes.bool,
|
|
231
|
-
/**
|
|
232
|
-
* When displaying multiple consecutive snackbars using a single parent-rendered
|
|
233
|
-
* `<Snackbar/>`, add the `key` prop to ensure independent treatment of each message.
|
|
234
|
-
* For instance, use `<Snackbar key={message} />`. Otherwise, messages might update
|
|
235
|
-
* in place, and features like `autoHideDuration` could be affected.
|
|
236
|
-
*/
|
|
237
|
-
key: function key() {
|
|
238
|
-
return null;
|
|
239
|
-
},
|
|
240
|
-
/**
|
|
241
|
-
* The message to display.
|
|
242
|
-
*/
|
|
243
|
-
message: PropTypes.node,
|
|
244
|
-
/**
|
|
245
|
-
* @ignore
|
|
246
|
-
*/
|
|
247
|
-
onBlur: PropTypes.func,
|
|
248
|
-
/**
|
|
249
|
-
* Callback fired when the component requests to be closed.
|
|
250
|
-
* Typically `onClose` is used to set state in the parent component,
|
|
251
|
-
* which is used to control the `Snackbar` `open` prop.
|
|
252
|
-
* The `reason` parameter can optionally be used to control the response to `onClose`,
|
|
253
|
-
* for example ignoring `clickaway`.
|
|
254
|
-
*
|
|
255
|
-
* @param {React.SyntheticEvent<any> | Event} event The event source of the callback.
|
|
256
|
-
* @param {string} reason Can be: `"timeout"` (`autoHideDuration` expired), `"clickaway"`, or `"escapeKeyDown"`.
|
|
257
|
-
*/
|
|
258
|
-
onClose: PropTypes.func,
|
|
259
|
-
/**
|
|
260
|
-
* @ignore
|
|
261
|
-
*/
|
|
262
|
-
onFocus: PropTypes.func,
|
|
263
|
-
/**
|
|
264
|
-
* @ignore
|
|
265
|
-
*/
|
|
266
|
-
onMouseEnter: PropTypes.func,
|
|
267
|
-
/**
|
|
268
|
-
* @ignore
|
|
269
|
-
*/
|
|
270
|
-
onMouseLeave: PropTypes.func,
|
|
271
|
-
/**
|
|
272
|
-
* If `true`, the component is shown.
|
|
273
|
-
*/
|
|
274
|
-
open: PropTypes.bool,
|
|
275
|
-
/**
|
|
276
|
-
* The number of milliseconds to wait before dismissing after user interaction.
|
|
277
|
-
* If `autoHideDuration` prop isn't specified, it does nothing.
|
|
278
|
-
* If `autoHideDuration` prop is specified but `resumeHideDuration` isn't,
|
|
279
|
-
* we default to `autoHideDuration / 2` ms.
|
|
280
|
-
*/
|
|
281
|
-
resumeHideDuration: PropTypes.number,
|
|
282
|
-
/**
|
|
283
|
-
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
284
|
-
*/
|
|
285
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
286
|
-
/**
|
|
287
|
-
* The component used for the transition.
|
|
288
|
-
* [Follow this guide](/material-ui/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.
|
|
289
|
-
* @default Grow
|
|
290
|
-
*/
|
|
291
|
-
TransitionComponent: PropTypes.elementType,
|
|
292
|
-
/**
|
|
293
|
-
* The duration for the transition, in milliseconds.
|
|
294
|
-
* You may specify a single timeout for all transitions, or individually with an object.
|
|
295
|
-
* @default {
|
|
296
|
-
* enter: theme.transitions.duration.enteringScreen,
|
|
297
|
-
* exit: theme.transitions.duration.leavingScreen,
|
|
298
|
-
* }
|
|
299
|
-
*/
|
|
300
|
-
transitionDuration: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
301
|
-
appear: PropTypes.number,
|
|
302
|
-
enter: PropTypes.number,
|
|
303
|
-
exit: PropTypes.number
|
|
304
|
-
})]),
|
|
305
|
-
/**
|
|
306
|
-
* Props applied to the transition element.
|
|
307
|
-
* By default, the element is based on this [`Transition`](https://reactcommunity.org/react-transition-group/transition/) component.
|
|
308
|
-
* @default {}
|
|
309
|
-
*/
|
|
310
|
-
TransitionProps: PropTypes.object
|
|
311
|
-
} : void 0;
|
|
312
|
-
export default Snackbar;
|
package/legacy/Snackbar/index.js
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
|
2
|
-
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
|
3
|
-
export function getSnackbarUtilityClass(slot) {
|
|
4
|
-
return generateUtilityClass('MuiSnackbar', slot);
|
|
5
|
-
}
|
|
6
|
-
var snackbarClasses = generateUtilityClasses('MuiSnackbar', ['root', 'anchorOriginTopCenter', 'anchorOriginBottomCenter', 'anchorOriginTopRight', 'anchorOriginBottomRight', 'anchorOriginTopLeft', 'anchorOriginBottomLeft']);
|
|
7
|
-
export default snackbarClasses;
|
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
4
|
-
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
5
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
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 { emphasize } from '@mui/system/colorManipulator';
|
|
11
|
-
import styled from '../styles/styled';
|
|
12
|
-
import useThemeProps from '../styles/useThemeProps';
|
|
13
|
-
import Paper from '../Paper';
|
|
14
|
-
import { getSnackbarContentUtilityClass } from './snackbarContentClasses';
|
|
15
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
16
|
-
var useUtilityClasses = function useUtilityClasses(ownerState) {
|
|
17
|
-
var classes = ownerState.classes;
|
|
18
|
-
var slots = {
|
|
19
|
-
root: ['root'],
|
|
20
|
-
action: ['action'],
|
|
21
|
-
message: ['message']
|
|
22
|
-
};
|
|
23
|
-
return composeClasses(slots, getSnackbarContentUtilityClass, classes);
|
|
24
|
-
};
|
|
25
|
-
var SnackbarContentRoot = styled(Paper, {
|
|
26
|
-
name: 'MuiSnackbarContent',
|
|
27
|
-
slot: 'Root',
|
|
28
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
29
|
-
return styles.root;
|
|
30
|
-
}
|
|
31
|
-
})(function (_ref) {
|
|
32
|
-
var theme = _ref.theme;
|
|
33
|
-
var emphasis = theme.palette.mode === 'light' ? 0.8 : 0.98;
|
|
34
|
-
var backgroundColor = emphasize(theme.palette.background.default, emphasis);
|
|
35
|
-
return _extends({}, theme.typography.body2, _defineProperty({
|
|
36
|
-
color: theme.vars ? theme.vars.palette.SnackbarContent.color : theme.palette.getContrastText(backgroundColor),
|
|
37
|
-
backgroundColor: theme.vars ? theme.vars.palette.SnackbarContent.bg : backgroundColor,
|
|
38
|
-
display: 'flex',
|
|
39
|
-
alignItems: 'center',
|
|
40
|
-
flexWrap: 'wrap',
|
|
41
|
-
padding: '6px 16px',
|
|
42
|
-
borderRadius: (theme.vars || theme).shape.borderRadius,
|
|
43
|
-
flexGrow: 1
|
|
44
|
-
}, theme.breakpoints.up('sm'), {
|
|
45
|
-
flexGrow: 'initial',
|
|
46
|
-
minWidth: 288
|
|
47
|
-
}));
|
|
48
|
-
});
|
|
49
|
-
var SnackbarContentMessage = styled('div', {
|
|
50
|
-
name: 'MuiSnackbarContent',
|
|
51
|
-
slot: 'Message',
|
|
52
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
53
|
-
return styles.message;
|
|
54
|
-
}
|
|
55
|
-
})({
|
|
56
|
-
padding: '8px 0'
|
|
57
|
-
});
|
|
58
|
-
var SnackbarContentAction = styled('div', {
|
|
59
|
-
name: 'MuiSnackbarContent',
|
|
60
|
-
slot: 'Action',
|
|
61
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
62
|
-
return styles.action;
|
|
63
|
-
}
|
|
64
|
-
})({
|
|
65
|
-
display: 'flex',
|
|
66
|
-
alignItems: 'center',
|
|
67
|
-
marginLeft: 'auto',
|
|
68
|
-
paddingLeft: 16,
|
|
69
|
-
marginRight: -8
|
|
70
|
-
});
|
|
71
|
-
var SnackbarContent = /*#__PURE__*/React.forwardRef(function SnackbarContent(inProps, ref) {
|
|
72
|
-
var props = useThemeProps({
|
|
73
|
-
props: inProps,
|
|
74
|
-
name: 'MuiSnackbarContent'
|
|
75
|
-
});
|
|
76
|
-
var action = props.action,
|
|
77
|
-
className = props.className,
|
|
78
|
-
message = props.message,
|
|
79
|
-
_props$role = props.role,
|
|
80
|
-
role = _props$role === void 0 ? 'alert' : _props$role,
|
|
81
|
-
other = _objectWithoutProperties(props, ["action", "className", "message", "role"]);
|
|
82
|
-
var ownerState = props;
|
|
83
|
-
var classes = useUtilityClasses(ownerState);
|
|
84
|
-
return /*#__PURE__*/_jsxs(SnackbarContentRoot, _extends({
|
|
85
|
-
role: role,
|
|
86
|
-
square: true,
|
|
87
|
-
elevation: 6,
|
|
88
|
-
className: clsx(classes.root, className),
|
|
89
|
-
ownerState: ownerState,
|
|
90
|
-
ref: ref
|
|
91
|
-
}, other, {
|
|
92
|
-
children: [/*#__PURE__*/_jsx(SnackbarContentMessage, {
|
|
93
|
-
className: classes.message,
|
|
94
|
-
ownerState: ownerState,
|
|
95
|
-
children: message
|
|
96
|
-
}), action ? /*#__PURE__*/_jsx(SnackbarContentAction, {
|
|
97
|
-
className: classes.action,
|
|
98
|
-
ownerState: ownerState,
|
|
99
|
-
children: action
|
|
100
|
-
}) : null]
|
|
101
|
-
}));
|
|
102
|
-
});
|
|
103
|
-
process.env.NODE_ENV !== "production" ? SnackbarContent.propTypes /* remove-proptypes */ = {
|
|
104
|
-
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
105
|
-
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
106
|
-
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
107
|
-
// └─────────────────────────────────────────────────────────────────────┘
|
|
108
|
-
/**
|
|
109
|
-
* The action to display. It renders after the message, at the end of the snackbar.
|
|
110
|
-
*/
|
|
111
|
-
action: PropTypes.node,
|
|
112
|
-
/**
|
|
113
|
-
* Override or extend the styles applied to the component.
|
|
114
|
-
*/
|
|
115
|
-
classes: PropTypes.object,
|
|
116
|
-
/**
|
|
117
|
-
* @ignore
|
|
118
|
-
*/
|
|
119
|
-
className: PropTypes.string,
|
|
120
|
-
/**
|
|
121
|
-
* The message to display.
|
|
122
|
-
*/
|
|
123
|
-
message: PropTypes.node,
|
|
124
|
-
/**
|
|
125
|
-
* The ARIA role attribute of the element.
|
|
126
|
-
* @default 'alert'
|
|
127
|
-
*/
|
|
128
|
-
role: PropTypes /* @typescript-to-proptypes-ignore */.string,
|
|
129
|
-
/**
|
|
130
|
-
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
131
|
-
*/
|
|
132
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
|
133
|
-
} : void 0;
|
|
134
|
-
export default SnackbarContent;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
|
2
|
-
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
|
3
|
-
export function getSnackbarContentUtilityClass(slot) {
|
|
4
|
-
return generateUtilityClass('MuiSnackbarContent', slot);
|
|
5
|
-
}
|
|
6
|
-
var snackbarContentClasses = generateUtilityClasses('MuiSnackbarContent', ['root', 'message', 'action']);
|
|
7
|
-
export default snackbarContentClasses;
|