UNPKG

@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.

77 lines (76 loc) 2.69 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import { useComponentRenderer } from '../../utils/useComponentRenderer.js'; import { useFieldRootContext } from '../root/FieldRootContext.js'; import { useFieldLabel } from './useFieldLabel.js'; import { STYLE_HOOK_MAPPING } from '../utils/constants.js'; import { useBaseUiId } from '../../utils/useBaseUiId.js'; import { useEnhancedEffect } from '../../utils/useEnhancedEffect.js'; /** * An accessible label that is automatically associated with the field control. * Renders a `<label>` element. * * Documentation: [Base UI Field](https://base-ui.com/react/components/field) */ const FieldLabel = /*#__PURE__*/React.forwardRef(function FieldLabel(props, forwardedRef) { const { render, className, id: idProp, ...otherProps } = props; const { setLabelId, state } = useFieldRootContext(false); const id = useBaseUiId(idProp); useEnhancedEffect(() => { setLabelId(id); return () => { setLabelId(undefined); }; }, [id, setLabelId]); const { getLabelProps } = useFieldLabel(); const { renderElement } = useComponentRenderer({ propGetter: getLabelProps, render: render ?? 'label', ref: forwardedRef, className, state, extraProps: otherProps, customStyleHookMapping: STYLE_HOOK_MAPPING }); return renderElement(); }); process.env.NODE_ENV !== "production" ? FieldLabel.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 */ id: PropTypes.string, /** * 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 { FieldLabel };