UNPKG

@mui/base

Version:

A library of headless ('unstyled') React UI components and low-level hooks.

106 lines (105 loc) 3.13 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; const _excluded = ["children", "disabled", "label", "slotProps", "slots"]; import * as React from 'react'; import PropTypes from 'prop-types'; import { getMenuItemUtilityClass } from './menuItemClasses'; import useMenuItem from '../useMenuItem'; import composeClasses from '../composeClasses'; import useSlotProps from '../utils/useSlotProps'; import { useClassNamesOverride } from '../utils/ClassNameConfigurator'; import { jsx as _jsx } from "react/jsx-runtime"; function useUtilityClasses(ownerState) { const { disabled, focusVisible } = ownerState; const slots = { root: ['root', disabled && 'disabled', focusVisible && 'focusVisible'] }; return composeClasses(slots, useClassNamesOverride(getMenuItemUtilityClass)); } /** * * Demos: * * - [Menu](https://mui.com/base/react-menu/) * * API: * * - [MenuItem API](https://mui.com/base/react-menu/components-api/#menu-item) */ const MenuItem = /*#__PURE__*/React.forwardRef(function MenuItem(props, forwardedRef) { var _slots$root; const { children, disabled: disabledProp = false, label, slotProps = {}, slots = {} } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const { getRootProps, disabled, focusVisible, highlighted } = useMenuItem({ disabled: disabledProp, rootRef: forwardedRef, label }); const ownerState = _extends({}, props, { disabled, focusVisible, highlighted }); const classes = useUtilityClasses(ownerState); const Root = (_slots$root = slots.root) != null ? _slots$root : 'li'; const rootProps = useSlotProps({ elementType: Root, getSlotProps: getRootProps, externalSlotProps: slotProps.root, externalForwardedProps: other, className: classes.root, ownerState }); return /*#__PURE__*/_jsx(Root, _extends({}, rootProps, { children: children })); }); process.env.NODE_ENV !== "production" ? MenuItem.propTypes /* remove-proptypes */ = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit TypeScript types and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * @ignore */ children: PropTypes.node, /** * @ignore */ disabled: PropTypes.bool, /** * A text representation of the menu item's content. * Used for keyboard text navigation matching. */ label: PropTypes.string, /** * The props used for each slot inside the MenuItem. * @default {} */ slotProps: PropTypes.shape({ root: PropTypes.oneOfType([PropTypes.func, PropTypes.object]) }), /** * The components used for each slot inside the MenuItem. * Either a string to use a HTML element or a component. * @default {} */ slots: PropTypes.shape({ root: PropTypes.elementType }) } : void 0; export default MenuItem;