UNPKG

@mui/base

Version:

MUI Base is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

130 lines (128 loc) 3.9 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import { useSlotProps } from "../utils/index.js"; import { unstable_composeClasses as composeClasses } from "../composeClasses/index.js"; import { getTabsUtilityClass } from "./tabsClasses.js"; import { useTabs } from "../useTabs/index.js"; import { TabsProvider } from "../useTabs/TabsProvider.js"; import { useClassNamesOverride } from "../utils/ClassNameConfigurator.js"; import { jsx as _jsx } from "react/jsx-runtime"; const useUtilityClasses = ownerState => { const { orientation } = ownerState; const slots = { root: ['root', orientation] }; return composeClasses(slots, useClassNamesOverride(getTabsUtilityClass)); }; /** * * Demos: * * - [Tabs](https://mui.com/base-ui/react-tabs/) * * API: * * - [Tabs API](https://mui.com/base-ui/react-tabs/components-api/#tabs) */ const Tabs = /*#__PURE__*/React.forwardRef(function Tabs(props, forwardedRef) { const { children, value: valueProp, defaultValue, orientation = 'horizontal', direction = 'ltr', onChange, selectionFollowsFocus, slotProps = {}, slots = {}, ...other } = props; const ownerState = { ...props, orientation, direction }; const { contextValue } = useTabs(ownerState); const classes = useUtilityClasses(ownerState); const TabsRoot = slots.root ?? 'div'; const tabsRootProps = useSlotProps({ elementType: TabsRoot, externalSlotProps: slotProps.root, externalForwardedProps: other, additionalProps: { ref: forwardedRef }, ownerState, className: classes.root }); return /*#__PURE__*/_jsx(TabsRoot, { ...tabsRootProps, children: /*#__PURE__*/_jsx(TabsProvider, { value: contextValue, children: children }) }); }); process.env.NODE_ENV !== "production" ? Tabs.propTypes /* remove-proptypes */ = { // ┌────────────────────────────── Warning ──────────────────────────────┐ // │ These PropTypes are generated from the TypeScript type definitions. │ // │ To update them, edit the TypeScript types and run `pnpm proptypes`. │ // └─────────────────────────────────────────────────────────────────────┘ /** * The content of the component. */ children: PropTypes.node, /** * @ignore */ className: PropTypes.string, /** * The default value. Use when the component is not controlled. */ defaultValue: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), /** * The direction of the text. * @default 'ltr' */ direction: PropTypes.oneOf(['ltr', 'rtl']), /** * Callback invoked when new value is being set. */ onChange: PropTypes.func, /** * The component orientation (layout flow direction). * @default 'horizontal' */ orientation: PropTypes.oneOf(['horizontal', 'vertical']), /** * If `true` the selected tab changes on focus. Otherwise it only * changes on activation. */ selectionFollowsFocus: PropTypes.bool, /** * The props used for each slot inside the Tabs. * @default {} */ slotProps: PropTypes.shape({ root: PropTypes.oneOfType([PropTypes.func, PropTypes.object]) }), /** * The components used for each slot inside the Tabs. * Either a string to use a HTML element or a component. * @default {} */ slots: PropTypes.shape({ root: PropTypes.elementType }), /** * The value of the currently selected `Tab`. * If you don't want any selected `Tab`, you can set this prop to `null`. */ value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]) } : void 0; export { Tabs };