@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,461 +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
|
-
var _InputBase;
|
|
7
|
-
import * as React from 'react';
|
|
8
|
-
import PropTypes from 'prop-types';
|
|
9
|
-
import clsx from 'clsx';
|
|
10
|
-
import integerPropType from '@mui/utils/integerPropType';
|
|
11
|
-
import chainPropTypes from '@mui/utils/chainPropTypes';
|
|
12
|
-
import { isHostComponent } from '@mui/base/utils';
|
|
13
|
-
import composeClasses from '@mui/utils/composeClasses';
|
|
14
|
-
import styled from '../styles/styled';
|
|
15
|
-
import useThemeProps from '../styles/useThemeProps';
|
|
16
|
-
import InputBase from '../InputBase';
|
|
17
|
-
import MenuItem from '../MenuItem';
|
|
18
|
-
import Select from '../Select';
|
|
19
|
-
import TableCell from '../TableCell';
|
|
20
|
-
import Toolbar from '../Toolbar';
|
|
21
|
-
import TablePaginationActions from './TablePaginationActions';
|
|
22
|
-
import useId from '../utils/useId';
|
|
23
|
-
import tablePaginationClasses, { getTablePaginationUtilityClass } from './tablePaginationClasses';
|
|
24
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
25
|
-
import { createElement as _createElement } from "react";
|
|
26
|
-
var TablePaginationRoot = styled(TableCell, {
|
|
27
|
-
name: 'MuiTablePagination',
|
|
28
|
-
slot: 'Root',
|
|
29
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
30
|
-
return styles.root;
|
|
31
|
-
}
|
|
32
|
-
})(function (_ref) {
|
|
33
|
-
var theme = _ref.theme;
|
|
34
|
-
return {
|
|
35
|
-
overflow: 'auto',
|
|
36
|
-
color: (theme.vars || theme).palette.text.primary,
|
|
37
|
-
fontSize: theme.typography.pxToRem(14),
|
|
38
|
-
// Increase the specificity to override TableCell.
|
|
39
|
-
'&:last-child': {
|
|
40
|
-
padding: 0
|
|
41
|
-
}
|
|
42
|
-
};
|
|
43
|
-
});
|
|
44
|
-
var TablePaginationToolbar = styled(Toolbar, {
|
|
45
|
-
name: 'MuiTablePagination',
|
|
46
|
-
slot: 'Toolbar',
|
|
47
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
48
|
-
return _extends(_defineProperty({}, "& .".concat(tablePaginationClasses.actions), styles.actions), styles.toolbar);
|
|
49
|
-
}
|
|
50
|
-
})(function (_ref2) {
|
|
51
|
-
var theme = _ref2.theme;
|
|
52
|
-
return _defineProperty(_defineProperty(_defineProperty({
|
|
53
|
-
minHeight: 52,
|
|
54
|
-
paddingRight: 2
|
|
55
|
-
}, "".concat(theme.breakpoints.up('xs'), " and (orientation: landscape)"), {
|
|
56
|
-
minHeight: 52
|
|
57
|
-
}), theme.breakpoints.up('sm'), {
|
|
58
|
-
minHeight: 52,
|
|
59
|
-
paddingRight: 2
|
|
60
|
-
}), "& .".concat(tablePaginationClasses.actions), {
|
|
61
|
-
flexShrink: 0,
|
|
62
|
-
marginLeft: 20
|
|
63
|
-
});
|
|
64
|
-
});
|
|
65
|
-
var TablePaginationSpacer = styled('div', {
|
|
66
|
-
name: 'MuiTablePagination',
|
|
67
|
-
slot: 'Spacer',
|
|
68
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
69
|
-
return styles.spacer;
|
|
70
|
-
}
|
|
71
|
-
})({
|
|
72
|
-
flex: '1 1 100%'
|
|
73
|
-
});
|
|
74
|
-
var TablePaginationSelectLabel = styled('p', {
|
|
75
|
-
name: 'MuiTablePagination',
|
|
76
|
-
slot: 'SelectLabel',
|
|
77
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
78
|
-
return styles.selectLabel;
|
|
79
|
-
}
|
|
80
|
-
})(function (_ref4) {
|
|
81
|
-
var theme = _ref4.theme;
|
|
82
|
-
return _extends({}, theme.typography.body2, {
|
|
83
|
-
flexShrink: 0
|
|
84
|
-
});
|
|
85
|
-
});
|
|
86
|
-
var TablePaginationSelect = styled(Select, {
|
|
87
|
-
name: 'MuiTablePagination',
|
|
88
|
-
slot: 'Select',
|
|
89
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
90
|
-
return _extends(_defineProperty(_defineProperty({}, "& .".concat(tablePaginationClasses.selectIcon), styles.selectIcon), "& .".concat(tablePaginationClasses.select), styles.select), styles.input, styles.selectRoot);
|
|
91
|
-
}
|
|
92
|
-
})(_defineProperty({
|
|
93
|
-
color: 'inherit',
|
|
94
|
-
fontSize: 'inherit',
|
|
95
|
-
flexShrink: 0,
|
|
96
|
-
marginRight: 32,
|
|
97
|
-
marginLeft: 8
|
|
98
|
-
}, "& .".concat(tablePaginationClasses.select), {
|
|
99
|
-
paddingLeft: 8,
|
|
100
|
-
paddingRight: 24,
|
|
101
|
-
textAlign: 'right',
|
|
102
|
-
textAlignLast: 'right' // Align <select> on Chrome.
|
|
103
|
-
}));
|
|
104
|
-
var TablePaginationMenuItem = styled(MenuItem, {
|
|
105
|
-
name: 'MuiTablePagination',
|
|
106
|
-
slot: 'MenuItem',
|
|
107
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
108
|
-
return styles.menuItem;
|
|
109
|
-
}
|
|
110
|
-
})({});
|
|
111
|
-
var TablePaginationDisplayedRows = styled('p', {
|
|
112
|
-
name: 'MuiTablePagination',
|
|
113
|
-
slot: 'DisplayedRows',
|
|
114
|
-
overridesResolver: function overridesResolver(props, styles) {
|
|
115
|
-
return styles.displayedRows;
|
|
116
|
-
}
|
|
117
|
-
})(function (_ref5) {
|
|
118
|
-
var theme = _ref5.theme;
|
|
119
|
-
return _extends({}, theme.typography.body2, {
|
|
120
|
-
flexShrink: 0
|
|
121
|
-
});
|
|
122
|
-
});
|
|
123
|
-
function defaultLabelDisplayedRows(_ref6) {
|
|
124
|
-
var from = _ref6.from,
|
|
125
|
-
to = _ref6.to,
|
|
126
|
-
count = _ref6.count;
|
|
127
|
-
return "".concat(from, "\u2013").concat(to, " of ").concat(count !== -1 ? count : "more than ".concat(to));
|
|
128
|
-
}
|
|
129
|
-
function defaultGetAriaLabel(type) {
|
|
130
|
-
return "Go to ".concat(type, " page");
|
|
131
|
-
}
|
|
132
|
-
var useUtilityClasses = function useUtilityClasses(ownerState) {
|
|
133
|
-
var classes = ownerState.classes;
|
|
134
|
-
var slots = {
|
|
135
|
-
root: ['root'],
|
|
136
|
-
toolbar: ['toolbar'],
|
|
137
|
-
spacer: ['spacer'],
|
|
138
|
-
selectLabel: ['selectLabel'],
|
|
139
|
-
select: ['select'],
|
|
140
|
-
input: ['input'],
|
|
141
|
-
selectIcon: ['selectIcon'],
|
|
142
|
-
menuItem: ['menuItem'],
|
|
143
|
-
displayedRows: ['displayedRows'],
|
|
144
|
-
actions: ['actions']
|
|
145
|
-
};
|
|
146
|
-
return composeClasses(slots, getTablePaginationUtilityClass, classes);
|
|
147
|
-
};
|
|
148
|
-
|
|
149
|
-
/**
|
|
150
|
-
* A `TableCell` based component for placing inside `TableFooter` for pagination.
|
|
151
|
-
*/
|
|
152
|
-
var TablePagination = /*#__PURE__*/React.forwardRef(function TablePagination(inProps, ref) {
|
|
153
|
-
var _slotProps$select;
|
|
154
|
-
var props = useThemeProps({
|
|
155
|
-
props: inProps,
|
|
156
|
-
name: 'MuiTablePagination'
|
|
157
|
-
});
|
|
158
|
-
var _props$ActionsCompone = props.ActionsComponent,
|
|
159
|
-
ActionsComponent = _props$ActionsCompone === void 0 ? TablePaginationActions : _props$ActionsCompone,
|
|
160
|
-
backIconButtonProps = props.backIconButtonProps,
|
|
161
|
-
className = props.className,
|
|
162
|
-
colSpanProp = props.colSpan,
|
|
163
|
-
_props$component = props.component,
|
|
164
|
-
component = _props$component === void 0 ? TableCell : _props$component,
|
|
165
|
-
count = props.count,
|
|
166
|
-
_props$disabled = props.disabled,
|
|
167
|
-
disabled = _props$disabled === void 0 ? false : _props$disabled,
|
|
168
|
-
_props$getItemAriaLab = props.getItemAriaLabel,
|
|
169
|
-
getItemAriaLabel = _props$getItemAriaLab === void 0 ? defaultGetAriaLabel : _props$getItemAriaLab,
|
|
170
|
-
_props$labelDisplayed = props.labelDisplayedRows,
|
|
171
|
-
labelDisplayedRows = _props$labelDisplayed === void 0 ? defaultLabelDisplayedRows : _props$labelDisplayed,
|
|
172
|
-
_props$labelRowsPerPa = props.labelRowsPerPage,
|
|
173
|
-
labelRowsPerPage = _props$labelRowsPerPa === void 0 ? 'Rows per page:' : _props$labelRowsPerPa,
|
|
174
|
-
nextIconButtonProps = props.nextIconButtonProps,
|
|
175
|
-
onPageChange = props.onPageChange,
|
|
176
|
-
onRowsPerPageChange = props.onRowsPerPageChange,
|
|
177
|
-
page = props.page,
|
|
178
|
-
rowsPerPage = props.rowsPerPage,
|
|
179
|
-
_props$rowsPerPageOpt = props.rowsPerPageOptions,
|
|
180
|
-
rowsPerPageOptions = _props$rowsPerPageOpt === void 0 ? [10, 25, 50, 100] : _props$rowsPerPageOpt,
|
|
181
|
-
_props$SelectProps = props.SelectProps,
|
|
182
|
-
SelectProps = _props$SelectProps === void 0 ? {} : _props$SelectProps,
|
|
183
|
-
_props$showFirstButto = props.showFirstButton,
|
|
184
|
-
showFirstButton = _props$showFirstButto === void 0 ? false : _props$showFirstButto,
|
|
185
|
-
_props$showLastButton = props.showLastButton,
|
|
186
|
-
showLastButton = _props$showLastButton === void 0 ? false : _props$showLastButton,
|
|
187
|
-
_props$slotProps = props.slotProps,
|
|
188
|
-
slotProps = _props$slotProps === void 0 ? {} : _props$slotProps,
|
|
189
|
-
_props$slots = props.slots,
|
|
190
|
-
slots = _props$slots === void 0 ? {} : _props$slots,
|
|
191
|
-
other = _objectWithoutProperties(props, ["ActionsComponent", "backIconButtonProps", "className", "colSpan", "component", "count", "disabled", "getItemAriaLabel", "labelDisplayedRows", "labelRowsPerPage", "nextIconButtonProps", "onPageChange", "onRowsPerPageChange", "page", "rowsPerPage", "rowsPerPageOptions", "SelectProps", "showFirstButton", "showLastButton", "slotProps", "slots"]);
|
|
192
|
-
var ownerState = props;
|
|
193
|
-
var classes = useUtilityClasses(ownerState);
|
|
194
|
-
var selectProps = (_slotProps$select = slotProps == null ? void 0 : slotProps.select) != null ? _slotProps$select : SelectProps;
|
|
195
|
-
var MenuItemComponent = selectProps.native ? 'option' : TablePaginationMenuItem;
|
|
196
|
-
var colSpan;
|
|
197
|
-
if (component === TableCell || component === 'td') {
|
|
198
|
-
colSpan = colSpanProp || 1000; // col-span over everything
|
|
199
|
-
}
|
|
200
|
-
var selectId = useId(selectProps.id);
|
|
201
|
-
var labelId = useId(selectProps.labelId);
|
|
202
|
-
var getLabelDisplayedRowsTo = function getLabelDisplayedRowsTo() {
|
|
203
|
-
if (count === -1) {
|
|
204
|
-
return (page + 1) * rowsPerPage;
|
|
205
|
-
}
|
|
206
|
-
return rowsPerPage === -1 ? count : Math.min(count, (page + 1) * rowsPerPage);
|
|
207
|
-
};
|
|
208
|
-
return /*#__PURE__*/_jsx(TablePaginationRoot, _extends({
|
|
209
|
-
colSpan: colSpan,
|
|
210
|
-
ref: ref,
|
|
211
|
-
as: component,
|
|
212
|
-
ownerState: ownerState,
|
|
213
|
-
className: clsx(classes.root, className)
|
|
214
|
-
}, other, {
|
|
215
|
-
children: /*#__PURE__*/_jsxs(TablePaginationToolbar, {
|
|
216
|
-
className: classes.toolbar,
|
|
217
|
-
children: [/*#__PURE__*/_jsx(TablePaginationSpacer, {
|
|
218
|
-
className: classes.spacer
|
|
219
|
-
}), rowsPerPageOptions.length > 1 && /*#__PURE__*/_jsx(TablePaginationSelectLabel, {
|
|
220
|
-
className: classes.selectLabel,
|
|
221
|
-
id: labelId,
|
|
222
|
-
children: labelRowsPerPage
|
|
223
|
-
}), rowsPerPageOptions.length > 1 && /*#__PURE__*/_jsx(TablePaginationSelect, _extends({
|
|
224
|
-
variant: "standard"
|
|
225
|
-
}, !selectProps.variant && {
|
|
226
|
-
input: _InputBase || (_InputBase = /*#__PURE__*/_jsx(InputBase, {}))
|
|
227
|
-
}, {
|
|
228
|
-
value: rowsPerPage,
|
|
229
|
-
onChange: onRowsPerPageChange,
|
|
230
|
-
id: selectId,
|
|
231
|
-
labelId: labelId
|
|
232
|
-
}, selectProps, {
|
|
233
|
-
classes: _extends({}, selectProps.classes, {
|
|
234
|
-
// TODO v5 remove `classes.input`
|
|
235
|
-
root: clsx(classes.input, classes.selectRoot, (selectProps.classes || {}).root),
|
|
236
|
-
select: clsx(classes.select, (selectProps.classes || {}).select),
|
|
237
|
-
// TODO v5 remove `selectIcon`
|
|
238
|
-
icon: clsx(classes.selectIcon, (selectProps.classes || {}).icon)
|
|
239
|
-
}),
|
|
240
|
-
disabled: disabled,
|
|
241
|
-
children: rowsPerPageOptions.map(function (rowsPerPageOption) {
|
|
242
|
-
return /*#__PURE__*/_createElement(MenuItemComponent, _extends({}, !isHostComponent(MenuItemComponent) && {
|
|
243
|
-
ownerState: ownerState
|
|
244
|
-
}, {
|
|
245
|
-
className: classes.menuItem,
|
|
246
|
-
key: rowsPerPageOption.label ? rowsPerPageOption.label : rowsPerPageOption,
|
|
247
|
-
value: rowsPerPageOption.value ? rowsPerPageOption.value : rowsPerPageOption
|
|
248
|
-
}), rowsPerPageOption.label ? rowsPerPageOption.label : rowsPerPageOption);
|
|
249
|
-
})
|
|
250
|
-
})), /*#__PURE__*/_jsx(TablePaginationDisplayedRows, {
|
|
251
|
-
className: classes.displayedRows,
|
|
252
|
-
children: labelDisplayedRows({
|
|
253
|
-
from: count === 0 ? 0 : page * rowsPerPage + 1,
|
|
254
|
-
to: getLabelDisplayedRowsTo(),
|
|
255
|
-
count: count === -1 ? -1 : count,
|
|
256
|
-
page: page
|
|
257
|
-
})
|
|
258
|
-
}), /*#__PURE__*/_jsx(ActionsComponent, {
|
|
259
|
-
className: classes.actions,
|
|
260
|
-
backIconButtonProps: backIconButtonProps,
|
|
261
|
-
count: count,
|
|
262
|
-
nextIconButtonProps: nextIconButtonProps,
|
|
263
|
-
onPageChange: onPageChange,
|
|
264
|
-
page: page,
|
|
265
|
-
rowsPerPage: rowsPerPage,
|
|
266
|
-
showFirstButton: showFirstButton,
|
|
267
|
-
showLastButton: showLastButton,
|
|
268
|
-
slotProps: slotProps.actions,
|
|
269
|
-
slots: slots.actions,
|
|
270
|
-
getItemAriaLabel: getItemAriaLabel,
|
|
271
|
-
disabled: disabled
|
|
272
|
-
})]
|
|
273
|
-
})
|
|
274
|
-
}));
|
|
275
|
-
});
|
|
276
|
-
process.env.NODE_ENV !== "production" ? TablePagination.propTypes /* remove-proptypes */ = {
|
|
277
|
-
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
278
|
-
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
279
|
-
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
280
|
-
// └─────────────────────────────────────────────────────────────────────┘
|
|
281
|
-
/**
|
|
282
|
-
* The component used for displaying the actions.
|
|
283
|
-
* Either a string to use a HTML element or a component.
|
|
284
|
-
* @default TablePaginationActions
|
|
285
|
-
*/
|
|
286
|
-
ActionsComponent: PropTypes.elementType,
|
|
287
|
-
/**
|
|
288
|
-
* Props applied to the back arrow [`IconButton`](/material-ui/api/icon-button/) component.
|
|
289
|
-
*
|
|
290
|
-
* This prop is an alias for `slotProps.actions.previousButton` and will be overriden by it if both are used.
|
|
291
|
-
* @deprecated Use `slotProps.actions.previousButton` instead.
|
|
292
|
-
*/
|
|
293
|
-
backIconButtonProps: PropTypes.object,
|
|
294
|
-
/**
|
|
295
|
-
* Override or extend the styles applied to the component.
|
|
296
|
-
*/
|
|
297
|
-
classes: PropTypes.object,
|
|
298
|
-
/**
|
|
299
|
-
* @ignore
|
|
300
|
-
*/
|
|
301
|
-
className: PropTypes.string,
|
|
302
|
-
/**
|
|
303
|
-
* @ignore
|
|
304
|
-
*/
|
|
305
|
-
colSpan: PropTypes.number,
|
|
306
|
-
/**
|
|
307
|
-
* The component used for the root node.
|
|
308
|
-
* Either a string to use a HTML element or a component.
|
|
309
|
-
*/
|
|
310
|
-
component: PropTypes.elementType,
|
|
311
|
-
/**
|
|
312
|
-
* The total number of rows.
|
|
313
|
-
*
|
|
314
|
-
* To enable server side pagination for an unknown number of items, provide -1.
|
|
315
|
-
*/
|
|
316
|
-
count: integerPropType.isRequired,
|
|
317
|
-
/**
|
|
318
|
-
* If `true`, the component is disabled.
|
|
319
|
-
* @default false
|
|
320
|
-
*/
|
|
321
|
-
disabled: PropTypes.bool,
|
|
322
|
-
/**
|
|
323
|
-
* Accepts a function which returns a string value that provides a user-friendly name for the current page.
|
|
324
|
-
* This is important for screen reader users.
|
|
325
|
-
*
|
|
326
|
-
* For localization purposes, you can use the provided [translations](/material-ui/guides/localization/).
|
|
327
|
-
* @param {string} type The link or button type to format ('first' | 'last' | 'next' | 'previous').
|
|
328
|
-
* @returns {string}
|
|
329
|
-
* @default function defaultGetAriaLabel(type) {
|
|
330
|
-
* return `Go to ${type} page`;
|
|
331
|
-
* }
|
|
332
|
-
*/
|
|
333
|
-
getItemAriaLabel: PropTypes.func,
|
|
334
|
-
/**
|
|
335
|
-
* Customize the displayed rows label. Invoked with a `{ from, to, count, page }`
|
|
336
|
-
* object.
|
|
337
|
-
*
|
|
338
|
-
* For localization purposes, you can use the provided [translations](/material-ui/guides/localization/).
|
|
339
|
-
* @default function defaultLabelDisplayedRows({ from, to, count }) {
|
|
340
|
-
* return `${from}–${to} of ${count !== -1 ? count : `more than ${to}`}`;
|
|
341
|
-
* }
|
|
342
|
-
*/
|
|
343
|
-
labelDisplayedRows: PropTypes.func,
|
|
344
|
-
/**
|
|
345
|
-
* Customize the rows per page label.
|
|
346
|
-
*
|
|
347
|
-
* For localization purposes, you can use the provided [translations](/material-ui/guides/localization/).
|
|
348
|
-
* @default 'Rows per page:'
|
|
349
|
-
*/
|
|
350
|
-
labelRowsPerPage: PropTypes.node,
|
|
351
|
-
/**
|
|
352
|
-
* Props applied to the next arrow [`IconButton`](/material-ui/api/icon-button/) element.
|
|
353
|
-
*
|
|
354
|
-
* This prop is an alias for `slotProps.actions.nextButton` and will be overriden by it if both are used.
|
|
355
|
-
* @deprecated Use `slotProps.actions.nextButton` instead.
|
|
356
|
-
*/
|
|
357
|
-
nextIconButtonProps: PropTypes.object,
|
|
358
|
-
/**
|
|
359
|
-
* Callback fired when the page is changed.
|
|
360
|
-
*
|
|
361
|
-
* @param {React.MouseEvent<HTMLButtonElement> | null} event The event source of the callback.
|
|
362
|
-
* @param {number} page The page selected.
|
|
363
|
-
*/
|
|
364
|
-
onPageChange: PropTypes.func.isRequired,
|
|
365
|
-
/**
|
|
366
|
-
* Callback fired when the number of rows per page is changed.
|
|
367
|
-
*
|
|
368
|
-
* @param {React.ChangeEvent<HTMLTextAreaElement | HTMLInputElement>} event The event source of the callback.
|
|
369
|
-
*/
|
|
370
|
-
onRowsPerPageChange: PropTypes.func,
|
|
371
|
-
/**
|
|
372
|
-
* The zero-based index of the current page.
|
|
373
|
-
*/
|
|
374
|
-
page: chainPropTypes(integerPropType.isRequired, function (props) {
|
|
375
|
-
var count = props.count,
|
|
376
|
-
page = props.page,
|
|
377
|
-
rowsPerPage = props.rowsPerPage;
|
|
378
|
-
if (count === -1) {
|
|
379
|
-
return null;
|
|
380
|
-
}
|
|
381
|
-
var newLastPage = Math.max(0, Math.ceil(count / rowsPerPage) - 1);
|
|
382
|
-
if (page < 0 || page > newLastPage) {
|
|
383
|
-
return new Error('MUI: The page prop of a TablePagination is out of range ' + "(0 to ".concat(newLastPage, ", but page is ").concat(page, ")."));
|
|
384
|
-
}
|
|
385
|
-
return null;
|
|
386
|
-
}),
|
|
387
|
-
/**
|
|
388
|
-
* The number of rows per page.
|
|
389
|
-
*
|
|
390
|
-
* Set -1 to display all the rows.
|
|
391
|
-
*/
|
|
392
|
-
rowsPerPage: integerPropType.isRequired,
|
|
393
|
-
/**
|
|
394
|
-
* Customizes the options of the rows per page select field. If less than two options are
|
|
395
|
-
* available, no select field will be displayed.
|
|
396
|
-
* Use -1 for the value with a custom label to show all the rows.
|
|
397
|
-
* @default [10, 25, 50, 100]
|
|
398
|
-
*/
|
|
399
|
-
rowsPerPageOptions: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
|
|
400
|
-
label: PropTypes.string.isRequired,
|
|
401
|
-
value: PropTypes.number.isRequired
|
|
402
|
-
})]).isRequired),
|
|
403
|
-
/**
|
|
404
|
-
* Props applied to the rows per page [`Select`](/material-ui/api/select/) element.
|
|
405
|
-
*
|
|
406
|
-
* This prop is an alias for `slotProps.select` and will be overriden by it if both are used.
|
|
407
|
-
* @deprecated Use `slotProps.select` instead.
|
|
408
|
-
*
|
|
409
|
-
* @default {}
|
|
410
|
-
*/
|
|
411
|
-
SelectProps: PropTypes.object,
|
|
412
|
-
/**
|
|
413
|
-
* If `true`, show the first-page button.
|
|
414
|
-
* @default false
|
|
415
|
-
*/
|
|
416
|
-
showFirstButton: PropTypes.bool,
|
|
417
|
-
/**
|
|
418
|
-
* If `true`, show the last-page button.
|
|
419
|
-
* @default false
|
|
420
|
-
*/
|
|
421
|
-
showLastButton: PropTypes.bool,
|
|
422
|
-
/**
|
|
423
|
-
* The props used for each slot inside the TablePagination.
|
|
424
|
-
* @default {}
|
|
425
|
-
*/
|
|
426
|
-
slotProps: PropTypes.shape({
|
|
427
|
-
actions: PropTypes.shape({
|
|
428
|
-
firstButton: PropTypes.object,
|
|
429
|
-
firstButtonIcon: PropTypes.object,
|
|
430
|
-
lastButton: PropTypes.object,
|
|
431
|
-
lastButtonIcon: PropTypes.object,
|
|
432
|
-
nextButton: PropTypes.object,
|
|
433
|
-
nextButtonIcon: PropTypes.object,
|
|
434
|
-
previousButton: PropTypes.object,
|
|
435
|
-
previousButtonIcon: PropTypes.object
|
|
436
|
-
}),
|
|
437
|
-
select: PropTypes.object
|
|
438
|
-
}),
|
|
439
|
-
/**
|
|
440
|
-
* The components used for each slot inside the TablePagination.
|
|
441
|
-
* Either a string to use a HTML element or a component.
|
|
442
|
-
* @default {}
|
|
443
|
-
*/
|
|
444
|
-
slots: PropTypes.shape({
|
|
445
|
-
actions: PropTypes.shape({
|
|
446
|
-
firstButton: PropTypes.elementType,
|
|
447
|
-
firstButtonIcon: PropTypes.elementType,
|
|
448
|
-
lastButton: PropTypes.elementType,
|
|
449
|
-
lastButtonIcon: PropTypes.elementType,
|
|
450
|
-
nextButton: PropTypes.elementType,
|
|
451
|
-
nextButtonIcon: PropTypes.elementType,
|
|
452
|
-
previousButton: PropTypes.elementType,
|
|
453
|
-
previousButtonIcon: PropTypes.elementType
|
|
454
|
-
})
|
|
455
|
-
}),
|
|
456
|
-
/**
|
|
457
|
-
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
458
|
-
*/
|
|
459
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
|
460
|
-
} : void 0;
|
|
461
|
-
export default TablePagination;
|
|
@@ -1,182 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import PropTypes from 'prop-types';
|
|
7
|
-
import { useRtl } from '@mui/system/RtlProvider';
|
|
8
|
-
import KeyboardArrowLeft from '../internal/svg-icons/KeyboardArrowLeft';
|
|
9
|
-
import KeyboardArrowRight from '../internal/svg-icons/KeyboardArrowRight';
|
|
10
|
-
import IconButton from '../IconButton';
|
|
11
|
-
import LastPageIconDefault from '../internal/svg-icons/LastPage';
|
|
12
|
-
import FirstPageIconDefault from '../internal/svg-icons/FirstPage';
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* @ignore - internal component.
|
|
16
|
-
*/
|
|
17
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
18
|
-
var TablePaginationActions = /*#__PURE__*/React.forwardRef(function TablePaginationActions(props, ref) {
|
|
19
|
-
var _slots$firstButton, _slots$lastButton, _slots$nextButton, _slots$previousButton, _slots$firstButtonIco, _slots$lastButtonIcon, _slots$nextButtonIcon, _slots$previousButton2;
|
|
20
|
-
var backIconButtonProps = props.backIconButtonProps,
|
|
21
|
-
count = props.count,
|
|
22
|
-
_props$disabled = props.disabled,
|
|
23
|
-
disabled = _props$disabled === void 0 ? false : _props$disabled,
|
|
24
|
-
getItemAriaLabel = props.getItemAriaLabel,
|
|
25
|
-
nextIconButtonProps = props.nextIconButtonProps,
|
|
26
|
-
onPageChange = props.onPageChange,
|
|
27
|
-
page = props.page,
|
|
28
|
-
rowsPerPage = props.rowsPerPage,
|
|
29
|
-
showFirstButton = props.showFirstButton,
|
|
30
|
-
showLastButton = props.showLastButton,
|
|
31
|
-
_props$slots = props.slots,
|
|
32
|
-
slots = _props$slots === void 0 ? {} : _props$slots,
|
|
33
|
-
_props$slotProps = props.slotProps,
|
|
34
|
-
slotProps = _props$slotProps === void 0 ? {} : _props$slotProps,
|
|
35
|
-
other = _objectWithoutProperties(props, ["backIconButtonProps", "count", "disabled", "getItemAriaLabel", "nextIconButtonProps", "onPageChange", "page", "rowsPerPage", "showFirstButton", "showLastButton", "slots", "slotProps"]);
|
|
36
|
-
var isRtl = useRtl();
|
|
37
|
-
var handleFirstPageButtonClick = function handleFirstPageButtonClick(event) {
|
|
38
|
-
onPageChange(event, 0);
|
|
39
|
-
};
|
|
40
|
-
var handleBackButtonClick = function handleBackButtonClick(event) {
|
|
41
|
-
onPageChange(event, page - 1);
|
|
42
|
-
};
|
|
43
|
-
var handleNextButtonClick = function handleNextButtonClick(event) {
|
|
44
|
-
onPageChange(event, page + 1);
|
|
45
|
-
};
|
|
46
|
-
var handleLastPageButtonClick = function handleLastPageButtonClick(event) {
|
|
47
|
-
onPageChange(event, Math.max(0, Math.ceil(count / rowsPerPage) - 1));
|
|
48
|
-
};
|
|
49
|
-
var FirstButton = (_slots$firstButton = slots.firstButton) != null ? _slots$firstButton : IconButton;
|
|
50
|
-
var LastButton = (_slots$lastButton = slots.lastButton) != null ? _slots$lastButton : IconButton;
|
|
51
|
-
var NextButton = (_slots$nextButton = slots.nextButton) != null ? _slots$nextButton : IconButton;
|
|
52
|
-
var PreviousButton = (_slots$previousButton = slots.previousButton) != null ? _slots$previousButton : IconButton;
|
|
53
|
-
var FirstButtonIcon = (_slots$firstButtonIco = slots.firstButtonIcon) != null ? _slots$firstButtonIco : FirstPageIconDefault;
|
|
54
|
-
var LastButtonIcon = (_slots$lastButtonIcon = slots.lastButtonIcon) != null ? _slots$lastButtonIcon : LastPageIconDefault;
|
|
55
|
-
var NextButtonIcon = (_slots$nextButtonIcon = slots.nextButtonIcon) != null ? _slots$nextButtonIcon : KeyboardArrowRight;
|
|
56
|
-
var PreviousButtonIcon = (_slots$previousButton2 = slots.previousButtonIcon) != null ? _slots$previousButton2 : KeyboardArrowLeft;
|
|
57
|
-
var FirstButtonSlot = isRtl ? LastButton : FirstButton;
|
|
58
|
-
var PreviousButtonSlot = isRtl ? NextButton : PreviousButton;
|
|
59
|
-
var NextButtonSlot = isRtl ? PreviousButton : NextButton;
|
|
60
|
-
var LastButtonSlot = isRtl ? FirstButton : LastButton;
|
|
61
|
-
var firstButtonSlotProps = isRtl ? slotProps.lastButton : slotProps.firstButton;
|
|
62
|
-
var previousButtonSlotProps = isRtl ? slotProps.nextButton : slotProps.previousButton;
|
|
63
|
-
var nextButtonSlotProps = isRtl ? slotProps.previousButton : slotProps.nextButton;
|
|
64
|
-
var lastButtonSlotProps = isRtl ? slotProps.firstButton : slotProps.lastButton;
|
|
65
|
-
return /*#__PURE__*/_jsxs("div", _extends({
|
|
66
|
-
ref: ref
|
|
67
|
-
}, other, {
|
|
68
|
-
children: [showFirstButton && /*#__PURE__*/_jsx(FirstButtonSlot, _extends({
|
|
69
|
-
onClick: handleFirstPageButtonClick,
|
|
70
|
-
disabled: disabled || page === 0,
|
|
71
|
-
"aria-label": getItemAriaLabel('first', page),
|
|
72
|
-
title: getItemAriaLabel('first', page)
|
|
73
|
-
}, firstButtonSlotProps, {
|
|
74
|
-
children: isRtl ? /*#__PURE__*/_jsx(LastButtonIcon, _extends({}, slotProps.lastButtonIcon)) : /*#__PURE__*/_jsx(FirstButtonIcon, _extends({}, slotProps.firstButtonIcon))
|
|
75
|
-
})), /*#__PURE__*/_jsx(PreviousButtonSlot, _extends({
|
|
76
|
-
onClick: handleBackButtonClick,
|
|
77
|
-
disabled: disabled || page === 0,
|
|
78
|
-
color: "inherit",
|
|
79
|
-
"aria-label": getItemAriaLabel('previous', page),
|
|
80
|
-
title: getItemAriaLabel('previous', page)
|
|
81
|
-
}, previousButtonSlotProps != null ? previousButtonSlotProps : backIconButtonProps, {
|
|
82
|
-
children: isRtl ? /*#__PURE__*/_jsx(NextButtonIcon, _extends({}, slotProps.nextButtonIcon)) : /*#__PURE__*/_jsx(PreviousButtonIcon, _extends({}, slotProps.previousButtonIcon))
|
|
83
|
-
})), /*#__PURE__*/_jsx(NextButtonSlot, _extends({
|
|
84
|
-
onClick: handleNextButtonClick,
|
|
85
|
-
disabled: disabled || (count !== -1 ? page >= Math.ceil(count / rowsPerPage) - 1 : false),
|
|
86
|
-
color: "inherit",
|
|
87
|
-
"aria-label": getItemAriaLabel('next', page),
|
|
88
|
-
title: getItemAriaLabel('next', page)
|
|
89
|
-
}, nextButtonSlotProps != null ? nextButtonSlotProps : nextIconButtonProps, {
|
|
90
|
-
children: isRtl ? /*#__PURE__*/_jsx(PreviousButtonIcon, _extends({}, slotProps.previousButtonIcon)) : /*#__PURE__*/_jsx(NextButtonIcon, _extends({}, slotProps.nextButtonIcon))
|
|
91
|
-
})), showLastButton && /*#__PURE__*/_jsx(LastButtonSlot, _extends({
|
|
92
|
-
onClick: handleLastPageButtonClick,
|
|
93
|
-
disabled: disabled || page >= Math.ceil(count / rowsPerPage) - 1,
|
|
94
|
-
"aria-label": getItemAriaLabel('last', page),
|
|
95
|
-
title: getItemAriaLabel('last', page)
|
|
96
|
-
}, lastButtonSlotProps, {
|
|
97
|
-
children: isRtl ? /*#__PURE__*/_jsx(FirstButtonIcon, _extends({}, slotProps.firstButtonIcon)) : /*#__PURE__*/_jsx(LastButtonIcon, _extends({}, slotProps.lastButtonIcon))
|
|
98
|
-
}))]
|
|
99
|
-
}));
|
|
100
|
-
});
|
|
101
|
-
process.env.NODE_ENV !== "production" ? TablePaginationActions.propTypes = {
|
|
102
|
-
/**
|
|
103
|
-
* Props applied to the back arrow [`IconButton`](/material-ui/api/icon-button/) element.
|
|
104
|
-
*/
|
|
105
|
-
backIconButtonProps: PropTypes.object,
|
|
106
|
-
/**
|
|
107
|
-
* The total number of rows.
|
|
108
|
-
*/
|
|
109
|
-
count: PropTypes.number.isRequired,
|
|
110
|
-
/**
|
|
111
|
-
* If `true`, the component is disabled.
|
|
112
|
-
* @default false
|
|
113
|
-
*/
|
|
114
|
-
disabled: PropTypes.bool,
|
|
115
|
-
/**
|
|
116
|
-
* Accepts a function which returns a string value that provides a user-friendly name for the current page.
|
|
117
|
-
*
|
|
118
|
-
* For localization purposes, you can use the provided [translations](/material-ui/guides/localization/).
|
|
119
|
-
*
|
|
120
|
-
* @param {string} type The link or button type to format ('page' | 'first' | 'last' | 'next' | 'previous'). Defaults to 'page'.
|
|
121
|
-
* @param {number} page The page number to format.
|
|
122
|
-
* @returns {string}
|
|
123
|
-
*/
|
|
124
|
-
getItemAriaLabel: PropTypes.func.isRequired,
|
|
125
|
-
/**
|
|
126
|
-
* Props applied to the next arrow [`IconButton`](/material-ui/api/icon-button/) element.
|
|
127
|
-
*/
|
|
128
|
-
nextIconButtonProps: PropTypes.object,
|
|
129
|
-
/**
|
|
130
|
-
* Callback fired when the page is changed.
|
|
131
|
-
*
|
|
132
|
-
* @param {object} event The event source of the callback.
|
|
133
|
-
* @param {number} page The page selected.
|
|
134
|
-
*/
|
|
135
|
-
onPageChange: PropTypes.func.isRequired,
|
|
136
|
-
/**
|
|
137
|
-
* The zero-based index of the current page.
|
|
138
|
-
*/
|
|
139
|
-
page: PropTypes.number.isRequired,
|
|
140
|
-
/**
|
|
141
|
-
* The number of rows per page.
|
|
142
|
-
*/
|
|
143
|
-
rowsPerPage: PropTypes.number.isRequired,
|
|
144
|
-
/**
|
|
145
|
-
* If `true`, show the first-page button.
|
|
146
|
-
*/
|
|
147
|
-
showFirstButton: PropTypes.bool.isRequired,
|
|
148
|
-
/**
|
|
149
|
-
* If `true`, show the last-page button.
|
|
150
|
-
*/
|
|
151
|
-
showLastButton: PropTypes.bool.isRequired,
|
|
152
|
-
/**
|
|
153
|
-
* The props used for each slot inside the TablePaginationActions.
|
|
154
|
-
* @default {}
|
|
155
|
-
*/
|
|
156
|
-
slotProps: PropTypes.shape({
|
|
157
|
-
firstButton: PropTypes.object,
|
|
158
|
-
firstButtonIcon: PropTypes.object,
|
|
159
|
-
lastButton: PropTypes.object,
|
|
160
|
-
lastButtonIcon: PropTypes.object,
|
|
161
|
-
nextButton: PropTypes.object,
|
|
162
|
-
nextButtonIcon: PropTypes.object,
|
|
163
|
-
previousButton: PropTypes.object,
|
|
164
|
-
previousButtonIcon: PropTypes.object
|
|
165
|
-
}),
|
|
166
|
-
/**
|
|
167
|
-
* The components used for each slot inside the TablePaginationActions.
|
|
168
|
-
* Either a string to use a HTML element or a component.
|
|
169
|
-
* @default {}
|
|
170
|
-
*/
|
|
171
|
-
slots: PropTypes.shape({
|
|
172
|
-
firstButton: PropTypes.elementType,
|
|
173
|
-
firstButtonIcon: PropTypes.elementType,
|
|
174
|
-
lastButton: PropTypes.elementType,
|
|
175
|
-
lastButtonIcon: PropTypes.elementType,
|
|
176
|
-
nextButton: PropTypes.elementType,
|
|
177
|
-
nextButtonIcon: PropTypes.elementType,
|
|
178
|
-
previousButton: PropTypes.elementType,
|
|
179
|
-
previousButtonIcon: PropTypes.elementType
|
|
180
|
-
})
|
|
181
|
-
} : void 0;
|
|
182
|
-
export default TablePaginationActions;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
|
2
|
-
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
|
3
|
-
export function getTablePaginationUtilityClass(slot) {
|
|
4
|
-
return generateUtilityClass('MuiTablePagination', slot);
|
|
5
|
-
}
|
|
6
|
-
var tablePaginationClasses = generateUtilityClasses('MuiTablePagination', ['root', 'toolbar', 'spacer', 'selectLabel', 'selectRoot', 'select', 'selectIcon', 'input', 'menuItem', 'displayedRows', 'actions']);
|
|
7
|
-
export default tablePaginationClasses;
|