270 lines
9.9 KiB
Plaintext
270 lines
9.9 KiB
Plaintext
"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 = _interopRequireDefault(require("@mui/utils/composeClasses"));
|
|
var _ButtonBase = _interopRequireDefault(require("../ButtonBase"));
|
|
var _capitalize = _interopRequireDefault(require("../utils/capitalize"));
|
|
var _useThemeProps = _interopRequireDefault(require("../styles/useThemeProps"));
|
|
var _styled = _interopRequireDefault(require("../styles/styled"));
|
|
var _unsupportedProp = _interopRequireDefault(require("../utils/unsupportedProp"));
|
|
var _tabClasses = _interopRequireWildcard(require("./tabClasses"));
|
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
const _excluded = ["className", "disabled", "disableFocusRipple", "fullWidth", "icon", "iconPosition", "indicator", "label", "onChange", "onClick", "onFocus", "selected", "selectionFollowsFocus", "textColor", "value", "wrapped"];
|
|
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 {
|
|
classes,
|
|
textColor,
|
|
fullWidth,
|
|
wrapped,
|
|
icon,
|
|
label,
|
|
selected,
|
|
disabled
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', icon && label && 'labelIcon', `textColor${(0, _capitalize.default)(textColor)}`, fullWidth && 'fullWidth', wrapped && 'wrapped', selected && 'selected', disabled && 'disabled'],
|
|
iconWrapper: ['iconWrapper']
|
|
};
|
|
return (0, _composeClasses.default)(slots, _tabClasses.getTabUtilityClass, classes);
|
|
};
|
|
const TabRoot = (0, _styled.default)(_ButtonBase.default, {
|
|
name: 'MuiTab',
|
|
slot: 'Root',
|
|
overridesResolver: (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.root, ownerState.label && ownerState.icon && styles.labelIcon, styles[`textColor${(0, _capitalize.default)(ownerState.textColor)}`], ownerState.fullWidth && styles.fullWidth, ownerState.wrapped && styles.wrapped];
|
|
}
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => (0, _extends2.default)({}, theme.typography.button, {
|
|
maxWidth: 360,
|
|
minWidth: 90,
|
|
position: 'relative',
|
|
minHeight: 48,
|
|
flexShrink: 0,
|
|
padding: '12px 16px',
|
|
overflow: 'hidden',
|
|
whiteSpace: 'normal',
|
|
textAlign: 'center'
|
|
}, ownerState.label && {
|
|
flexDirection: ownerState.iconPosition === 'top' || ownerState.iconPosition === 'bottom' ? 'column' : 'row'
|
|
}, {
|
|
lineHeight: 1.25
|
|
}, ownerState.icon && ownerState.label && {
|
|
minHeight: 72,
|
|
paddingTop: 9,
|
|
paddingBottom: 9,
|
|
[`& > .${_tabClasses.default.iconWrapper}`]: (0, _extends2.default)({}, ownerState.iconPosition === 'top' && {
|
|
marginBottom: 6
|
|
}, ownerState.iconPosition === 'bottom' && {
|
|
marginTop: 6
|
|
}, ownerState.iconPosition === 'start' && {
|
|
marginRight: theme.spacing(1)
|
|
}, ownerState.iconPosition === 'end' && {
|
|
marginLeft: theme.spacing(1)
|
|
})
|
|
}, ownerState.textColor === 'inherit' && {
|
|
color: 'inherit',
|
|
opacity: 0.6,
|
|
// same opacity as theme.palette.text.secondary
|
|
[`&.${_tabClasses.default.selected}`]: {
|
|
opacity: 1
|
|
},
|
|
[`&.${_tabClasses.default.disabled}`]: {
|
|
opacity: (theme.vars || theme).palette.action.disabledOpacity
|
|
}
|
|
}, ownerState.textColor === 'primary' && {
|
|
color: (theme.vars || theme).palette.text.secondary,
|
|
[`&.${_tabClasses.default.selected}`]: {
|
|
color: (theme.vars || theme).palette.primary.main
|
|
},
|
|
[`&.${_tabClasses.default.disabled}`]: {
|
|
color: (theme.vars || theme).palette.text.disabled
|
|
}
|
|
}, ownerState.textColor === 'secondary' && {
|
|
color: (theme.vars || theme).palette.text.secondary,
|
|
[`&.${_tabClasses.default.selected}`]: {
|
|
color: (theme.vars || theme).palette.secondary.main
|
|
},
|
|
[`&.${_tabClasses.default.disabled}`]: {
|
|
color: (theme.vars || theme).palette.text.disabled
|
|
}
|
|
}, ownerState.fullWidth && {
|
|
flexShrink: 1,
|
|
flexGrow: 1,
|
|
flexBasis: 0,
|
|
maxWidth: 'none'
|
|
}, ownerState.wrapped && {
|
|
fontSize: theme.typography.pxToRem(12)
|
|
}));
|
|
const Tab = /*#__PURE__*/React.forwardRef(function Tab(inProps, ref) {
|
|
const props = (0, _useThemeProps.default)({
|
|
props: inProps,
|
|
name: 'MuiTab'
|
|
});
|
|
const {
|
|
className,
|
|
disabled = false,
|
|
disableFocusRipple = false,
|
|
// eslint-disable-next-line react/prop-types
|
|
fullWidth,
|
|
icon: iconProp,
|
|
iconPosition = 'top',
|
|
// eslint-disable-next-line react/prop-types
|
|
indicator,
|
|
label,
|
|
onChange,
|
|
onClick,
|
|
onFocus,
|
|
// eslint-disable-next-line react/prop-types
|
|
selected,
|
|
// eslint-disable-next-line react/prop-types
|
|
selectionFollowsFocus,
|
|
// eslint-disable-next-line react/prop-types
|
|
textColor = 'inherit',
|
|
value,
|
|
wrapped = false
|
|
} = props,
|
|
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded);
|
|
const ownerState = (0, _extends2.default)({}, props, {
|
|
disabled,
|
|
disableFocusRipple,
|
|
selected,
|
|
icon: !!iconProp,
|
|
iconPosition,
|
|
label: !!label,
|
|
fullWidth,
|
|
textColor,
|
|
wrapped
|
|
});
|
|
const classes = useUtilityClasses(ownerState);
|
|
const icon = iconProp && label && /*#__PURE__*/React.isValidElement(iconProp) ? /*#__PURE__*/React.cloneElement(iconProp, {
|
|
className: (0, _clsx.default)(classes.iconWrapper, iconProp.props.className)
|
|
}) : iconProp;
|
|
const handleClick = event => {
|
|
if (!selected && onChange) {
|
|
onChange(event, value);
|
|
}
|
|
if (onClick) {
|
|
onClick(event);
|
|
}
|
|
};
|
|
const handleFocus = event => {
|
|
if (selectionFollowsFocus && !selected && onChange) {
|
|
onChange(event, value);
|
|
}
|
|
if (onFocus) {
|
|
onFocus(event);
|
|
}
|
|
};
|
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(TabRoot, (0, _extends2.default)({
|
|
focusRipple: !disableFocusRipple,
|
|
className: (0, _clsx.default)(classes.root, className),
|
|
ref: ref,
|
|
role: "tab",
|
|
"aria-selected": selected,
|
|
disabled: disabled,
|
|
onClick: handleClick,
|
|
onFocus: handleFocus,
|
|
ownerState: ownerState,
|
|
tabIndex: selected ? 0 : -1
|
|
}, other, {
|
|
children: [iconPosition === 'top' || iconPosition === 'start' ? /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
children: [icon, label]
|
|
}) : /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
|
children: [label, icon]
|
|
}), indicator]
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? Tab.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`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* This prop isn't supported.
|
|
* Use the `component` prop if you need to change the children structure.
|
|
*/
|
|
children: _unsupportedProp.default,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: _propTypes.default.object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: _propTypes.default.string,
|
|
/**
|
|
* 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.
|
|
*
|
|
* ⚠️ Without a ripple there is no styling for :focus-visible by default. Be sure
|
|
* to highlight the element by applying separate styles with the `.Mui-focusVisible` class.
|
|
* @default false
|
|
*/
|
|
disableRipple: _propTypes.default.bool,
|
|
/**
|
|
* The icon to display.
|
|
*/
|
|
icon: _propTypes.default.oneOfType([_propTypes.default.element, _propTypes.default.string]),
|
|
/**
|
|
* The position of the icon relative to the label.
|
|
* @default 'top'
|
|
*/
|
|
iconPosition: _propTypes.default.oneOf(['bottom', 'end', 'start', 'top']),
|
|
/**
|
|
* The label element.
|
|
*/
|
|
label: _propTypes.default.node,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onChange: _propTypes.default.func,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onClick: _propTypes.default.func,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
onFocus: _propTypes.default.func,
|
|
/**
|
|
* 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]),
|
|
/**
|
|
* You can provide your own value. Otherwise, we fallback to the child position index.
|
|
*/
|
|
value: _propTypes.default.any,
|
|
/**
|
|
* Tab labels appear in a single row.
|
|
* They can use a second line if needed.
|
|
* @default false
|
|
*/
|
|
wrapped: _propTypes.default.bool
|
|
} : void 0;
|
|
var _default = exports.default = Tab; |