@mui/base
Version:
A library of headless ('unstyled') React UI components and low-level hooks.
95 lines (94 loc) • 2.95 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["children", "slotProps", "slots"];
import * as React from 'react';
import PropTypes from 'prop-types';
import composeClasses from '../composeClasses';
import { useSlotProps } from '../utils';
import { getTabsListUtilityClass } from './tabsListClasses';
import useTabsList from '../useTabsList';
import { useClassNamesOverride } from '../utils/ClassNameConfigurator';
import TabsListProvider from '../useTabsList/TabsListProvider';
import { jsx as _jsx } from "react/jsx-runtime";
const useUtilityClasses = ownerState => {
const {
orientation
} = ownerState;
const slots = {
root: ['root', orientation]
};
return composeClasses(slots, useClassNamesOverride(getTabsListUtilityClass));
};
/**
*
* Demos:
*
* - [Tabs](https://mui.com/base/react-tabs/)
*
* API:
*
* - [TabsList API](https://mui.com/base/react-tabs/components-api/#tabs-list)
*/
const TabsList = /*#__PURE__*/React.forwardRef(function TabsList(props, forwardedRef) {
var _slots$root;
const {
children,
slotProps = {},
slots = {}
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const {
isRtl,
orientation,
getRootProps,
contextValue
} = useTabsList({
rootRef: forwardedRef
});
const ownerState = _extends({}, props, {
isRtl,
orientation
});
const classes = useUtilityClasses(ownerState);
const TabsListRoot = (_slots$root = slots.root) != null ? _slots$root : 'div';
const tabsListRootProps = useSlotProps({
elementType: TabsListRoot,
getSlotProps: getRootProps,
externalSlotProps: slotProps.root,
externalForwardedProps: other,
ownerState,
className: classes.root
});
return /*#__PURE__*/_jsx(TabsListProvider, {
value: contextValue,
children: /*#__PURE__*/_jsx(TabsListRoot, _extends({}, tabsListRootProps, {
children: children
}))
});
});
process.env.NODE_ENV !== "production" ? TabsList.propTypes /* remove-proptypes */ = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit TypeScript types and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* The props used for each slot inside the TabsList.
* @default {}
*/
slotProps: PropTypes.shape({
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
}),
/**
* The components used for each slot inside the TabsList.
* Either a string to use a HTML element or a component.
* @default {}
*/
slots: PropTypes.shape({
root: PropTypes.elementType
})
} : void 0;
export default TabsList;