UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

279 lines (259 loc) 9.69 kB
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import _extends from "@babel/runtime/helpers/esm/extends"; const _excluded = ["children", "className", "color", "component", "disabled", "disableElevation", "disableFocusRipple", "disableRipple", "fullWidth", "orientation", "size", "variant"]; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import { unstable_composeClasses as composeClasses } from '@mui/base'; import { alpha } from '@mui/system'; import capitalize from '../utils/capitalize'; import styled from '../styles/styled'; import useThemeProps from '../styles/useThemeProps'; import buttonGroupClasses, { getButtonGroupUtilityClass } from './buttonGroupClasses'; import ButtonGroupContext from './ButtonGroupContext'; import { jsx as _jsx } from "react/jsx-runtime"; const overridesResolver = (props, styles) => { const { ownerState } = props; return [{ [`& .${buttonGroupClasses.grouped}`]: styles.grouped }, { [`& .${buttonGroupClasses.grouped}`]: styles[`grouped${capitalize(ownerState.orientation)}`] }, { [`& .${buttonGroupClasses.grouped}`]: styles[`grouped${capitalize(ownerState.variant)}`] }, { [`& .${buttonGroupClasses.grouped}`]: styles[`grouped${capitalize(ownerState.variant)}${capitalize(ownerState.orientation)}`] }, { [`& .${buttonGroupClasses.grouped}`]: styles[`grouped${capitalize(ownerState.variant)}${capitalize(ownerState.color)}`] }, styles.root, styles[ownerState.variant], ownerState.disableElevation === true && styles.disableElevation, ownerState.fullWidth && styles.fullWidth, ownerState.orientation === 'vertical' && styles.vertical]; }; const useUtilityClasses = ownerState => { const { classes, color, disabled, disableElevation, fullWidth, orientation, variant } = ownerState; const slots = { root: ['root', variant, orientation === 'vertical' && 'vertical', fullWidth && 'fullWidth', disableElevation && 'disableElevation'], grouped: ['grouped', `grouped${capitalize(orientation)}`, `grouped${capitalize(variant)}`, `grouped${capitalize(variant)}${capitalize(orientation)}`, `grouped${capitalize(variant)}${capitalize(color)}`, disabled && 'disabled'] }; return composeClasses(slots, getButtonGroupUtilityClass, classes); }; const ButtonGroupRoot = styled('div', { name: 'MuiButtonGroup', slot: 'Root', overridesResolver })(({ theme, ownerState }) => _extends({ display: 'inline-flex', borderRadius: theme.shape.borderRadius }, ownerState.variant === 'contained' && { boxShadow: theme.shadows[2] }, ownerState.disableElevation && { boxShadow: 'none' }, ownerState.fullWidth && { width: '100%' }, ownerState.orientation === 'vertical' && { flexDirection: 'column' }, { [`& .${buttonGroupClasses.grouped}`]: _extends({ minWidth: 40, '&:not(:first-of-type)': _extends({}, ownerState.orientation === 'horizontal' && { borderTopLeftRadius: 0, borderBottomLeftRadius: 0 }, ownerState.orientation === 'vertical' && { borderTopRightRadius: 0, borderTopLeftRadius: 0 }, ownerState.variant === 'outlined' && ownerState.orientation === 'horizontal' && { marginLeft: -1 }, ownerState.variant === 'outlined' && ownerState.orientation === 'vertical' && { marginTop: -1 }), '&:not(:last-of-type)': _extends({}, ownerState.orientation === 'horizontal' && { borderTopRightRadius: 0, borderBottomRightRadius: 0 }, ownerState.orientation === 'vertical' && { borderBottomRightRadius: 0, borderBottomLeftRadius: 0 }, ownerState.variant === 'text' && ownerState.orientation === 'horizontal' && { borderRight: `1px solid ${theme.palette.mode === 'light' ? 'rgba(0, 0, 0, 0.23)' : 'rgba(255, 255, 255, 0.23)'}` }, ownerState.variant === 'text' && ownerState.orientation === 'vertical' && { borderBottom: `1px solid ${theme.palette.mode === 'light' ? 'rgba(0, 0, 0, 0.23)' : 'rgba(255, 255, 255, 0.23)'}` }, ownerState.variant === 'text' && ownerState.color !== 'inherit' && { borderColor: alpha(theme.palette[ownerState.color].main, 0.5) }, ownerState.variant === 'outlined' && ownerState.orientation === 'horizontal' && { borderRightColor: 'transparent' }, ownerState.variant === 'outlined' && ownerState.orientation === 'vertical' && { borderBottomColor: 'transparent' }, ownerState.variant === 'contained' && ownerState.orientation === 'horizontal' && { borderRight: `1px solid ${theme.palette.grey[400]}`, [`&.${buttonGroupClasses.disabled}`]: { borderRight: `1px solid ${theme.palette.action.disabled}` } }, ownerState.variant === 'contained' && ownerState.orientation === 'vertical' && { borderBottom: `1px solid ${theme.palette.grey[400]}`, [`&.${buttonGroupClasses.disabled}`]: { borderBottom: `1px solid ${theme.palette.action.disabled}` } }, ownerState.variant === 'contained' && ownerState.color !== 'inherit' && { borderColor: theme.palette[ownerState.color].dark }, { '&:hover': _extends({}, ownerState.variant === 'outlined' && ownerState.orientation === 'horizontal' && { borderRightColor: 'currentColor' }, ownerState.variant === 'outlined' && ownerState.orientation === 'vertical' && { borderBottomColor: 'currentColor' }) }), '&:hover': _extends({}, ownerState.variant === 'contained' && { boxShadow: 'none' }) }, ownerState.variant === 'contained' && { boxShadow: 'none' }) })); const ButtonGroup = /*#__PURE__*/React.forwardRef(function ButtonGroup(inProps, ref) { const props = useThemeProps({ props: inProps, name: 'MuiButtonGroup' }); const { children, className, color = 'primary', component = 'div', disabled = false, disableElevation = false, disableFocusRipple = false, disableRipple = false, fullWidth = false, orientation = 'horizontal', size = 'medium', variant = 'outlined' } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const ownerState = _extends({}, props, { color, component, disabled, disableElevation, disableFocusRipple, disableRipple, fullWidth, orientation, size, variant }); const classes = useUtilityClasses(ownerState); const context = React.useMemo(() => ({ className: classes.grouped, color, disabled, disableElevation, disableFocusRipple, disableRipple, fullWidth, size, variant }), [color, disabled, disableElevation, disableFocusRipple, disableRipple, fullWidth, size, variant, classes.grouped]); return /*#__PURE__*/_jsx(ButtonGroupRoot, _extends({ as: component, role: "group", className: clsx(classes.root, className), ref: ref, ownerState: ownerState }, other, { children: /*#__PURE__*/_jsx(ButtonGroupContext.Provider, { value: context, children: children }) })); }); process.env.NODE_ENV !== "production" ? ButtonGroup.propTypes /* remove-proptypes */ = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the d.ts file and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * The content of the component. */ children: PropTypes.node, /** * Override or extend the styles applied to the component. */ classes: PropTypes.object, /** * @ignore */ className: PropTypes.string, /** * The color of the component. It supports those theme colors that make sense for this component. * @default 'primary' */ color: PropTypes /* @typescript-to-proptypes-ignore */ .oneOfType([PropTypes.oneOf(['inherit', 'primary', 'secondary', 'error', 'info', 'success', 'warning']), PropTypes.string]), /** * The component used for the root node. * Either a string to use a HTML element or a component. */ component: PropTypes.elementType, /** * If `true`, the component is disabled. * @default false */ disabled: PropTypes.bool, /** * If `true`, no elevation is used. * @default false */ disableElevation: PropTypes.bool, /** * If `true`, the button keyboard focus ripple is disabled. * @default false */ disableFocusRipple: PropTypes.bool, /** * If `true`, the button ripple effect is disabled. * @default false */ disableRipple: PropTypes.bool, /** * If `true`, the buttons will take up the full width of its container. * @default false */ fullWidth: PropTypes.bool, /** * The component orientation (layout flow direction). * @default 'horizontal' */ orientation: PropTypes.oneOf(['horizontal', 'vertical']), /** * The size of the component. * `small` is equivalent to the dense button styling. * @default 'medium' */ size: PropTypes /* @typescript-to-proptypes-ignore */ .oneOfType([PropTypes.oneOf(['small', 'medium', 'large']), PropTypes.string]), /** * 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 variant to use. * @default 'outlined' */ variant: PropTypes /* @typescript-to-proptypes-ignore */ .oneOfType([PropTypes.oneOf(['contained', 'outlined', 'text']), PropTypes.string]) } : void 0; export default ButtonGroup;