UNPKG

@mui/lab

Version:
96 lines (95 loc) 3.23 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import clsx from 'clsx'; import { styled, useThemeProps } from '@mui/material/styles'; import { unstable_composeClasses as composeClasses } from '@mui/base'; import { getTabPanelUtilityClass } from "./tabPanelClasses.js"; import { getPanelId, getTabId, useTabContext } from "../TabContext/index.js"; import { jsx as _jsx } from "react/jsx-runtime"; const useUtilityClasses = ownerState => { const { classes, hidden } = ownerState; const slots = { root: ['root', hidden && 'hidden'] }; return composeClasses(slots, getTabPanelUtilityClass, classes); }; const TabPanelRoot = styled('div', { name: 'MuiTabPanel', slot: 'Root', overridesResolver: (props, styles) => styles.root })(({ theme }) => ({ padding: theme.spacing(3) })); const TabPanel = /*#__PURE__*/React.forwardRef(function TabPanel(inProps, ref) { const props = useThemeProps({ props: inProps, name: 'MuiTabPanel' }); const { children, className, value, keepMounted = false, ...other } = props; const ownerState = { ...props }; const classes = useUtilityClasses(ownerState); const context = useTabContext(); if (context === null) { throw new TypeError('No TabContext provided'); } const id = getPanelId(context, value); const tabId = getTabId(context, value); return /*#__PURE__*/_jsx(TabPanelRoot, { "aria-labelledby": tabId, className: clsx(classes.root, className), hidden: value !== context.value, id: id, ref: ref, role: "tabpanel", ownerState: ownerState, ...other, children: (keepMounted || value === context.value) && children }); }); process.env.NODE_ENV !== "production" ? TabPanel.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.node, /** * Override or extend the styles applied to the component. */ classes: PropTypes.object, /** * @ignore */ className: PropTypes.string, /** * Always keep the children in the DOM. * @default false */ keepMounted: PropTypes.bool, /** * 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 `value` of the corresponding `Tab`. Must use the index of the `Tab` when * no `value` was passed to `Tab`. */ value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired } : void 0; export default TabPanel;