You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
237 lines
9.7 KiB
JavaScript
237 lines
9.7 KiB
JavaScript
"use strict";
|
|
'use client';
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose"));
|
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
var _clsx = _interopRequireDefault(require("clsx"));
|
|
var _composeClasses = require("@mui/base/composeClasses");
|
|
var _ButtonBase = _interopRequireDefault(require("../ButtonBase"));
|
|
var _capitalize = _interopRequireDefault(require("../utils/capitalize"));
|
|
var _useThemeProps = _interopRequireDefault(require("../styles/useThemeProps"));
|
|
var _fabClasses = _interopRequireWildcard(require("./fabClasses"));
|
|
var _styled = _interopRequireWildcard(require("../styles/styled"));
|
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
const _excluded = ["children", "className", "color", "component", "disabled", "disableFocusRipple", "focusVisibleClassName", "size", "variant"];
|
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
color,
|
|
variant,
|
|
classes,
|
|
size
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', variant, `size${(0, _capitalize.default)(size)}`, color === 'inherit' ? 'colorInherit' : color]
|
|
};
|
|
const composedClasses = (0, _composeClasses.unstable_composeClasses)(slots, _fabClasses.getFabUtilityClass, classes);
|
|
return (0, _extends2.default)({}, classes, composedClasses);
|
|
};
|
|
const FabRoot = (0, _styled.default)(_ButtonBase.default, {
|
|
name: 'MuiFab',
|
|
slot: 'Root',
|
|
shouldForwardProp: prop => (0, _styled.rootShouldForwardProp)(prop) || prop === 'classes',
|
|
overridesResolver: (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.root, styles[ownerState.variant], styles[`size${(0, _capitalize.default)(ownerState.size)}`], ownerState.color === 'inherit' && styles.colorInherit, styles[(0, _capitalize.default)(ownerState.size)], styles[ownerState.color]];
|
|
}
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => {
|
|
var _theme$palette$getCon, _theme$palette;
|
|
return (0, _extends2.default)({}, theme.typography.button, {
|
|
minHeight: 36,
|
|
transition: theme.transitions.create(['background-color', 'box-shadow', 'border-color'], {
|
|
duration: theme.transitions.duration.short
|
|
}),
|
|
borderRadius: '50%',
|
|
padding: 0,
|
|
minWidth: 0,
|
|
width: 56,
|
|
height: 56,
|
|
zIndex: (theme.vars || theme).zIndex.fab,
|
|
boxShadow: (theme.vars || theme).shadows[6],
|
|
'&:active': {
|
|
boxShadow: (theme.vars || theme).shadows[12]
|
|
},
|
|
color: theme.vars ? theme.vars.palette.text.primary : (_theme$palette$getCon = (_theme$palette = theme.palette).getContrastText) == null ? void 0 : _theme$palette$getCon.call(_theme$palette, theme.palette.grey[300]),
|
|
backgroundColor: (theme.vars || theme).palette.grey[300],
|
|
'&:hover': {
|
|
backgroundColor: (theme.vars || theme).palette.grey.A100,
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: (theme.vars || theme).palette.grey[300]
|
|
},
|
|
textDecoration: 'none'
|
|
},
|
|
[`&.${_fabClasses.default.focusVisible}`]: {
|
|
boxShadow: (theme.vars || theme).shadows[6]
|
|
}
|
|
}, ownerState.size === 'small' && {
|
|
width: 40,
|
|
height: 40
|
|
}, ownerState.size === 'medium' && {
|
|
width: 48,
|
|
height: 48
|
|
}, ownerState.variant === 'extended' && {
|
|
borderRadius: 48 / 2,
|
|
padding: '0 16px',
|
|
width: 'auto',
|
|
minHeight: 'auto',
|
|
minWidth: 48,
|
|
height: 48
|
|
}, ownerState.variant === 'extended' && ownerState.size === 'small' && {
|
|
width: 'auto',
|
|
padding: '0 8px',
|
|
borderRadius: 34 / 2,
|
|
minWidth: 34,
|
|
height: 34
|
|
}, ownerState.variant === 'extended' && ownerState.size === 'medium' && {
|
|
width: 'auto',
|
|
padding: '0 16px',
|
|
borderRadius: 40 / 2,
|
|
minWidth: 40,
|
|
height: 40
|
|
}, ownerState.color === 'inherit' && {
|
|
color: 'inherit'
|
|
});
|
|
}, ({
|
|
theme,
|
|
ownerState
|
|
}) => (0, _extends2.default)({}, ownerState.color !== 'inherit' && ownerState.color !== 'default' && (theme.vars || theme).palette[ownerState.color] != null && {
|
|
color: (theme.vars || theme).palette[ownerState.color].contrastText,
|
|
backgroundColor: (theme.vars || theme).palette[ownerState.color].main,
|
|
'&:hover': {
|
|
backgroundColor: (theme.vars || theme).palette[ownerState.color].dark,
|
|
// Reset on touch devices, it doesn't add specificity
|
|
'@media (hover: none)': {
|
|
backgroundColor: (theme.vars || theme).palette[ownerState.color].main
|
|
}
|
|
}
|
|
}), ({
|
|
theme
|
|
}) => ({
|
|
[`&.${_fabClasses.default.disabled}`]: {
|
|
color: (theme.vars || theme).palette.action.disabled,
|
|
boxShadow: (theme.vars || theme).shadows[0],
|
|
backgroundColor: (theme.vars || theme).palette.action.disabledBackground
|
|
}
|
|
}));
|
|
const Fab = /*#__PURE__*/React.forwardRef(function Fab(inProps, ref) {
|
|
const props = (0, _useThemeProps.default)({
|
|
props: inProps,
|
|
name: 'MuiFab'
|
|
});
|
|
const {
|
|
children,
|
|
className,
|
|
color = 'default',
|
|
component = 'button',
|
|
disabled = false,
|
|
disableFocusRipple = false,
|
|
focusVisibleClassName,
|
|
size = 'large',
|
|
variant = 'circular'
|
|
} = props,
|
|
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded);
|
|
const ownerState = (0, _extends2.default)({}, props, {
|
|
color,
|
|
component,
|
|
disabled,
|
|
disableFocusRipple,
|
|
size,
|
|
variant
|
|
});
|
|
const classes = useUtilityClasses(ownerState);
|
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(FabRoot, (0, _extends2.default)({
|
|
className: (0, _clsx.default)(classes.root, className),
|
|
component: component,
|
|
disabled: disabled,
|
|
focusRipple: !disableFocusRipple,
|
|
focusVisibleClassName: (0, _clsx.default)(classes.focusVisible, focusVisibleClassName),
|
|
ownerState: ownerState,
|
|
ref: ref
|
|
}, other, {
|
|
classes: classes,
|
|
children: children
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? Fab.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`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* The content of the component.
|
|
*/
|
|
children: _propTypes.default.node,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: _propTypes.default.object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: _propTypes.default.string,
|
|
/**
|
|
* The color of the component.
|
|
* 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 'default'
|
|
*/
|
|
color: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['default', 'error', 'info', 'inherit', 'primary', 'secondary', 'success', 'warning']), _propTypes.default.string]),
|
|
/**
|
|
* The component used for the root node.
|
|
* Either a string to use a HTML element or a component.
|
|
*/
|
|
component: _propTypes.default.elementType,
|
|
/**
|
|
* If `true`, the component is disabled.
|
|
* @default false
|
|
*/
|
|
disabled: _propTypes.default.bool,
|
|
/**
|
|
* If `true`, the keyboard focus ripple is disabled.
|
|
* @default false
|
|
*/
|
|
disableFocusRipple: _propTypes.default.bool,
|
|
/**
|
|
* If `true`, the ripple effect is disabled.
|
|
*/
|
|
disableRipple: _propTypes.default.bool,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
focusVisibleClassName: _propTypes.default.string,
|
|
/**
|
|
* The URL to link to when the button is clicked.
|
|
* If defined, an `a` element will be used as the root node.
|
|
*/
|
|
href: _propTypes.default.string,
|
|
/**
|
|
* The size of the component.
|
|
* `small` is equivalent to the dense button styling.
|
|
* @default 'large'
|
|
*/
|
|
size: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['small', 'medium', 'large']), _propTypes.default.string]),
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object]),
|
|
/**
|
|
* The variant to use.
|
|
* @default 'circular'
|
|
*/
|
|
variant: _propTypes.default /* @typescript-to-proptypes-ignore */.oneOfType([_propTypes.default.oneOf(['circular', 'extended']), _propTypes.default.string])
|
|
} : void 0;
|
|
var _default = exports.default = Fab; |