worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
470
node_modules/@mui/material/esm/PaginationItem/PaginationItem.js
generated
vendored
Normal file
470
node_modules/@mui/material/esm/PaginationItem/PaginationItem.js
generated
vendored
Normal file
|
|
@ -0,0 +1,470 @@
|
|||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import clsx from 'clsx';
|
||||
import composeClasses from '@mui/utils/composeClasses';
|
||||
import { useRtl } from '@mui/system/RtlProvider';
|
||||
import paginationItemClasses, { getPaginationItemUtilityClass } from "./paginationItemClasses.js";
|
||||
import ButtonBase from "../ButtonBase/index.js";
|
||||
import capitalize from "../utils/capitalize.js";
|
||||
import createSimplePaletteValueFilter from "../utils/createSimplePaletteValueFilter.js";
|
||||
import FirstPageIcon from "../internal/svg-icons/FirstPage.js";
|
||||
import LastPageIcon from "../internal/svg-icons/LastPage.js";
|
||||
import NavigateBeforeIcon from "../internal/svg-icons/NavigateBefore.js";
|
||||
import NavigateNextIcon from "../internal/svg-icons/NavigateNext.js";
|
||||
import useSlot from "../utils/useSlot.js";
|
||||
import { styled } from "../zero-styled/index.js";
|
||||
import memoTheme from "../utils/memoTheme.js";
|
||||
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
|
||||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
||||
const overridesResolver = (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.root, styles[ownerState.variant], styles[`size${capitalize(ownerState.size)}`], ownerState.variant === 'text' && styles[`text${capitalize(ownerState.color)}`], ownerState.variant === 'outlined' && styles[`outlined${capitalize(ownerState.color)}`], ownerState.shape === 'rounded' && styles.rounded, ownerState.type === 'page' && styles.page, (ownerState.type === 'start-ellipsis' || ownerState.type === 'end-ellipsis') && styles.ellipsis, (ownerState.type === 'previous' || ownerState.type === 'next') && styles.previousNext, (ownerState.type === 'first' || ownerState.type === 'last') && styles.firstLast];
|
||||
};
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
classes,
|
||||
color,
|
||||
disabled,
|
||||
selected,
|
||||
size,
|
||||
shape,
|
||||
type,
|
||||
variant
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root', `size${capitalize(size)}`, variant, shape, color !== 'standard' && `color${capitalize(color)}`, color !== 'standard' && `${variant}${capitalize(color)}`, disabled && 'disabled', selected && 'selected', {
|
||||
page: 'page',
|
||||
first: 'firstLast',
|
||||
last: 'firstLast',
|
||||
'start-ellipsis': 'ellipsis',
|
||||
'end-ellipsis': 'ellipsis',
|
||||
previous: 'previousNext',
|
||||
next: 'previousNext'
|
||||
}[type]],
|
||||
icon: ['icon']
|
||||
};
|
||||
return composeClasses(slots, getPaginationItemUtilityClass, classes);
|
||||
};
|
||||
const PaginationItemEllipsis = styled('div', {
|
||||
name: 'MuiPaginationItem',
|
||||
slot: 'Root',
|
||||
overridesResolver
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => ({
|
||||
...theme.typography.body2,
|
||||
borderRadius: 32 / 2,
|
||||
textAlign: 'center',
|
||||
boxSizing: 'border-box',
|
||||
minWidth: 32,
|
||||
padding: '0 6px',
|
||||
margin: '0 3px',
|
||||
color: (theme.vars || theme).palette.text.primary,
|
||||
height: 'auto',
|
||||
[`&.${paginationItemClasses.disabled}`]: {
|
||||
opacity: (theme.vars || theme).palette.action.disabledOpacity
|
||||
},
|
||||
variants: [{
|
||||
props: {
|
||||
size: 'small'
|
||||
},
|
||||
style: {
|
||||
minWidth: 26,
|
||||
borderRadius: 26 / 2,
|
||||
margin: '0 1px',
|
||||
padding: '0 4px'
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
size: 'large'
|
||||
},
|
||||
style: {
|
||||
minWidth: 40,
|
||||
borderRadius: 40 / 2,
|
||||
padding: '0 10px',
|
||||
fontSize: theme.typography.pxToRem(15)
|
||||
}
|
||||
}]
|
||||
})));
|
||||
const PaginationItemPage = styled(ButtonBase, {
|
||||
name: 'MuiPaginationItem',
|
||||
slot: 'Root',
|
||||
overridesResolver
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => ({
|
||||
...theme.typography.body2,
|
||||
borderRadius: 32 / 2,
|
||||
textAlign: 'center',
|
||||
boxSizing: 'border-box',
|
||||
minWidth: 32,
|
||||
height: 32,
|
||||
padding: '0 6px',
|
||||
margin: '0 3px',
|
||||
color: (theme.vars || theme).palette.text.primary,
|
||||
[`&.${paginationItemClasses.focusVisible}`]: {
|
||||
backgroundColor: (theme.vars || theme).palette.action.focus
|
||||
},
|
||||
[`&.${paginationItemClasses.disabled}`]: {
|
||||
opacity: (theme.vars || theme).palette.action.disabledOpacity
|
||||
},
|
||||
transition: theme.transitions.create(['color', 'background-color'], {
|
||||
duration: theme.transitions.duration.short
|
||||
}),
|
||||
'&:hover': {
|
||||
backgroundColor: (theme.vars || theme).palette.action.hover,
|
||||
// Reset on touch devices, it doesn't add specificity
|
||||
'@media (hover: none)': {
|
||||
backgroundColor: 'transparent'
|
||||
}
|
||||
},
|
||||
[`&.${paginationItemClasses.selected}`]: {
|
||||
backgroundColor: (theme.vars || theme).palette.action.selected,
|
||||
'&:hover': {
|
||||
backgroundColor: theme.alpha((theme.vars || theme).palette.action.selected, `${(theme.vars || theme).palette.action.selectedOpacity} + ${(theme.vars || theme).palette.action.hoverOpacity}`),
|
||||
// Reset on touch devices, it doesn't add specificity
|
||||
'@media (hover: none)': {
|
||||
backgroundColor: (theme.vars || theme).palette.action.selected
|
||||
}
|
||||
},
|
||||
[`&.${paginationItemClasses.focusVisible}`]: {
|
||||
backgroundColor: theme.alpha((theme.vars || theme).palette.action.selected, `${(theme.vars || theme).palette.action.selectedOpacity} + ${(theme.vars || theme).palette.action.focusOpacity}`)
|
||||
},
|
||||
[`&.${paginationItemClasses.disabled}`]: {
|
||||
opacity: 1,
|
||||
color: (theme.vars || theme).palette.action.disabled,
|
||||
backgroundColor: (theme.vars || theme).palette.action.selected
|
||||
}
|
||||
},
|
||||
variants: [{
|
||||
props: {
|
||||
size: 'small'
|
||||
},
|
||||
style: {
|
||||
minWidth: 26,
|
||||
height: 26,
|
||||
borderRadius: 26 / 2,
|
||||
margin: '0 1px',
|
||||
padding: '0 4px'
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
size: 'large'
|
||||
},
|
||||
style: {
|
||||
minWidth: 40,
|
||||
height: 40,
|
||||
borderRadius: 40 / 2,
|
||||
padding: '0 10px',
|
||||
fontSize: theme.typography.pxToRem(15)
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
shape: 'rounded'
|
||||
},
|
||||
style: {
|
||||
borderRadius: (theme.vars || theme).shape.borderRadius
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
variant: 'outlined'
|
||||
},
|
||||
style: {
|
||||
border: theme.vars ? `1px solid ${theme.alpha(theme.vars.palette.common.onBackground, 0.23)}` : `1px solid ${theme.palette.mode === 'light' ? 'rgba(0, 0, 0, 0.23)' : 'rgba(255, 255, 255, 0.23)'}`,
|
||||
[`&.${paginationItemClasses.selected}`]: {
|
||||
[`&.${paginationItemClasses.disabled}`]: {
|
||||
borderColor: (theme.vars || theme).palette.action.disabledBackground,
|
||||
color: (theme.vars || theme).palette.action.disabled
|
||||
}
|
||||
}
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
variant: 'text'
|
||||
},
|
||||
style: {
|
||||
[`&.${paginationItemClasses.selected}`]: {
|
||||
[`&.${paginationItemClasses.disabled}`]: {
|
||||
color: (theme.vars || theme).palette.action.disabled
|
||||
}
|
||||
}
|
||||
}
|
||||
}, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter(['dark', 'contrastText'])).map(([color]) => ({
|
||||
props: {
|
||||
variant: 'text',
|
||||
color
|
||||
},
|
||||
style: {
|
||||
[`&.${paginationItemClasses.selected}`]: {
|
||||
color: (theme.vars || theme).palette[color].contrastText,
|
||||
backgroundColor: (theme.vars || theme).palette[color].main,
|
||||
'&:hover': {
|
||||
backgroundColor: (theme.vars || theme).palette[color].dark,
|
||||
// Reset on touch devices, it doesn't add specificity
|
||||
'@media (hover: none)': {
|
||||
backgroundColor: (theme.vars || theme).palette[color].main
|
||||
}
|
||||
},
|
||||
[`&.${paginationItemClasses.focusVisible}`]: {
|
||||
backgroundColor: (theme.vars || theme).palette[color].dark
|
||||
},
|
||||
[`&.${paginationItemClasses.disabled}`]: {
|
||||
color: (theme.vars || theme).palette.action.disabled
|
||||
}
|
||||
}
|
||||
}
|
||||
})), ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter(['light'])).map(([color]) => ({
|
||||
props: {
|
||||
variant: 'outlined',
|
||||
color
|
||||
},
|
||||
style: {
|
||||
[`&.${paginationItemClasses.selected}`]: {
|
||||
color: (theme.vars || theme).palette[color].main,
|
||||
border: `1px solid ${theme.alpha((theme.vars || theme).palette[color].main, 0.5)}`,
|
||||
backgroundColor: theme.alpha((theme.vars || theme).palette[color].main, (theme.vars || theme).palette.action.activatedOpacity),
|
||||
'&:hover': {
|
||||
backgroundColor: theme.alpha((theme.vars || theme).palette[color].main, `${(theme.vars || theme).palette.action.activatedOpacity} + ${(theme.vars || theme).palette.action.focusOpacity}`),
|
||||
// Reset on touch devices, it doesn't add specificity
|
||||
'@media (hover: none)': {
|
||||
backgroundColor: 'transparent'
|
||||
}
|
||||
},
|
||||
[`&.${paginationItemClasses.focusVisible}`]: {
|
||||
backgroundColor: theme.alpha((theme.vars || theme).palette[color].main, `${(theme.vars || theme).palette.action.activatedOpacity} + ${(theme.vars || theme).palette.action.focusOpacity}`)
|
||||
}
|
||||
}
|
||||
}
|
||||
}))]
|
||||
})));
|
||||
const PaginationItemPageIcon = styled('div', {
|
||||
name: 'MuiPaginationItem',
|
||||
slot: 'Icon'
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => ({
|
||||
fontSize: theme.typography.pxToRem(20),
|
||||
margin: '0 -8px',
|
||||
variants: [{
|
||||
props: {
|
||||
size: 'small'
|
||||
},
|
||||
style: {
|
||||
fontSize: theme.typography.pxToRem(18)
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
size: 'large'
|
||||
},
|
||||
style: {
|
||||
fontSize: theme.typography.pxToRem(22)
|
||||
}
|
||||
}]
|
||||
})));
|
||||
const PaginationItem = /*#__PURE__*/React.forwardRef(function PaginationItem(inProps, ref) {
|
||||
const props = useDefaultProps({
|
||||
props: inProps,
|
||||
name: 'MuiPaginationItem'
|
||||
});
|
||||
const {
|
||||
className,
|
||||
color = 'standard',
|
||||
component,
|
||||
components = {},
|
||||
disabled = false,
|
||||
page,
|
||||
selected = false,
|
||||
shape = 'circular',
|
||||
size = 'medium',
|
||||
slots = {},
|
||||
slotProps = {},
|
||||
type = 'page',
|
||||
variant = 'text',
|
||||
...other
|
||||
} = props;
|
||||
const ownerState = {
|
||||
...props,
|
||||
color,
|
||||
disabled,
|
||||
selected,
|
||||
shape,
|
||||
size,
|
||||
type,
|
||||
variant
|
||||
};
|
||||
const isRtl = useRtl();
|
||||
const classes = useUtilityClasses(ownerState);
|
||||
const externalForwardedProps = {
|
||||
slots: {
|
||||
previous: slots.previous ?? components.previous,
|
||||
next: slots.next ?? components.next,
|
||||
first: slots.first ?? components.first,
|
||||
last: slots.last ?? components.last
|
||||
},
|
||||
slotProps
|
||||
};
|
||||
const [PreviousSlot, previousSlotProps] = useSlot('previous', {
|
||||
elementType: NavigateBeforeIcon,
|
||||
externalForwardedProps,
|
||||
ownerState
|
||||
});
|
||||
const [NextSlot, nextSlotProps] = useSlot('next', {
|
||||
elementType: NavigateNextIcon,
|
||||
externalForwardedProps,
|
||||
ownerState
|
||||
});
|
||||
const [FirstSlot, firstSlotProps] = useSlot('first', {
|
||||
elementType: FirstPageIcon,
|
||||
externalForwardedProps,
|
||||
ownerState
|
||||
});
|
||||
const [LastSlot, lastSlotProps] = useSlot('last', {
|
||||
elementType: LastPageIcon,
|
||||
externalForwardedProps,
|
||||
ownerState
|
||||
});
|
||||
const rtlAwareType = isRtl ? {
|
||||
previous: 'next',
|
||||
next: 'previous',
|
||||
first: 'last',
|
||||
last: 'first'
|
||||
}[type] : type;
|
||||
const IconSlot = {
|
||||
previous: PreviousSlot,
|
||||
next: NextSlot,
|
||||
first: FirstSlot,
|
||||
last: LastSlot
|
||||
}[rtlAwareType];
|
||||
const iconSlotProps = {
|
||||
previous: previousSlotProps,
|
||||
next: nextSlotProps,
|
||||
first: firstSlotProps,
|
||||
last: lastSlotProps
|
||||
}[rtlAwareType];
|
||||
return type === 'start-ellipsis' || type === 'end-ellipsis' ? /*#__PURE__*/_jsx(PaginationItemEllipsis, {
|
||||
ref: ref,
|
||||
ownerState: ownerState,
|
||||
className: clsx(classes.root, className),
|
||||
children: "\u2026"
|
||||
}) : /*#__PURE__*/_jsxs(PaginationItemPage, {
|
||||
ref: ref,
|
||||
ownerState: ownerState,
|
||||
component: component,
|
||||
disabled: disabled,
|
||||
className: clsx(classes.root, className),
|
||||
...other,
|
||||
children: [type === 'page' && page, IconSlot ? /*#__PURE__*/_jsx(PaginationItemPageIcon, {
|
||||
...iconSlotProps,
|
||||
className: classes.icon,
|
||||
as: IconSlot
|
||||
}) : null]
|
||||
});
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? PaginationItem.propTypes /* remove-proptypes */ = {
|
||||
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
||||
// │ These PropTypes are generated from the TypeScript type definitions. │
|
||||
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: PropTypes.string,
|
||||
/**
|
||||
* The active color.
|
||||
* It supports both default and custom theme colors, which can be added as shown in the
|
||||
* [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
|
||||
* @default 'standard'
|
||||
*/
|
||||
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['primary', 'secondary', 'standard']), PropTypes.string]),
|
||||
/**
|
||||
* The component used for the root node.
|
||||
* Either a string to use a HTML element or a component.
|
||||
*/
|
||||
component: PropTypes.elementType,
|
||||
/**
|
||||
* The components used for each slot inside.
|
||||
*
|
||||
* This prop is an alias for the `slots` prop.
|
||||
* It's recommended to use the `slots` prop instead.
|
||||
*
|
||||
* @default {}
|
||||
* @deprecated use the `slots` prop instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](https://mui.com/material-ui/migration/migrating-from-deprecated-apis/) for more details.
|
||||
*/
|
||||
components: PropTypes.shape({
|
||||
first: PropTypes.elementType,
|
||||
last: PropTypes.elementType,
|
||||
next: PropTypes.elementType,
|
||||
previous: PropTypes.elementType
|
||||
}),
|
||||
/**
|
||||
* If `true`, the component is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disabled: PropTypes.bool,
|
||||
/**
|
||||
* The current page number.
|
||||
*/
|
||||
page: PropTypes.node,
|
||||
/**
|
||||
* If `true` the pagination item is selected.
|
||||
* @default false
|
||||
*/
|
||||
selected: PropTypes.bool,
|
||||
/**
|
||||
* The shape of the pagination item.
|
||||
* @default 'circular'
|
||||
*/
|
||||
shape: PropTypes.oneOf(['circular', 'rounded']),
|
||||
/**
|
||||
* The size of the component.
|
||||
* @default 'medium'
|
||||
*/
|
||||
size: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['small', 'medium', 'large']), PropTypes.string]),
|
||||
/**
|
||||
* The props used for each slot inside.
|
||||
* @default {}
|
||||
*/
|
||||
slotProps: PropTypes.shape({
|
||||
first: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
||||
last: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
||||
next: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
||||
previous: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
||||
}),
|
||||
/**
|
||||
* The components used for each slot inside.
|
||||
* @default {}
|
||||
*/
|
||||
slots: PropTypes.shape({
|
||||
first: PropTypes.elementType,
|
||||
last: PropTypes.elementType,
|
||||
next: PropTypes.elementType,
|
||||
previous: PropTypes.elementType
|
||||
}),
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
||||
/**
|
||||
* The type of pagination item.
|
||||
* @default 'page'
|
||||
*/
|
||||
type: PropTypes.oneOf(['end-ellipsis', 'first', 'last', 'next', 'page', 'previous', 'start-ellipsis']),
|
||||
/**
|
||||
* The variant to use.
|
||||
* @default 'text'
|
||||
*/
|
||||
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['outlined', 'text']), PropTypes.string])
|
||||
} : void 0;
|
||||
export default PaginationItem;
|
||||
Loading…
Add table
Add a link
Reference in a new issue