@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
76 lines (75 loc) • 2.61 kB
JavaScript
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import { useComponentRenderer } from '../../utils/useComponentRenderer.js';
import { FieldsetRootContext } from './FieldsetRootContext.js';
import { useFieldsetRoot } from './useFieldsetRoot.js';
import { jsx as _jsx } from "react/jsx-runtime";
/**
* Groups the fieldset legend and the associated fields.
* Renders a `<fieldset>` element.
*
* Documentation: [Base UI Fieldset](https://base-ui.com/react/components/fieldset)
*/
const FieldsetRoot = /*#__PURE__*/React.forwardRef(function FieldsetRoot(props, forwardedRef) {
const {
render,
className,
disabled = false,
...otherProps
} = props;
const {
legendId,
setLegendId,
getRootProps
} = useFieldsetRoot();
const state = React.useMemo(() => ({
disabled
}), [disabled]);
const {
renderElement
} = useComponentRenderer({
propGetter: getRootProps,
ref: forwardedRef,
render: render ?? 'fieldset',
className,
state,
extraProps: otherProps
});
const contextValue = React.useMemo(() => ({
legendId,
setLegendId,
disabled
}), [legendId, setLegendId, disabled]);
return /*#__PURE__*/_jsx(FieldsetRootContext.Provider, {
value: contextValue,
children: renderElement()
});
});
process.env.NODE_ENV !== "production" ? FieldsetRoot.propTypes /* remove-proptypes */ = {
// ┌────────────────────────────── Warning ──────────────────────────────┐
// │ These PropTypes are generated from the TypeScript type definitions. │
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* @ignore
*/
children: PropTypes.node,
/**
* CSS class applied to the element, or a function that
* returns a class based on the component’s state.
*/
className: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
/**
* @ignore
*/
disabled: PropTypes.bool,
/**
* Allows you to replace the component’s HTML element
* with a different tag, or compose it with another component.
*
* Accepts a `ReactElement` or a function that returns the element to render.
*/
render: PropTypes.oneOfType([PropTypes.element, PropTypes.func])
} : void 0;
export { FieldsetRoot };