UNPKG

@wordpress/components

Version:
31 lines (30 loc) 1.04 kB
// packages/components/src/validated-form-controls/components/radio-control.tsx import { useMergeRefs } from "@wordpress/compose"; import { forwardRef, useRef } from "@wordpress/element"; import { ControlWithError } from "../control-with-error"; import RadioControl from "../../radio-control"; import { jsx as _jsx } from "react/jsx-runtime"; var UnforwardedValidatedRadioControl = ({ required, customValidity, markWhenOptional, ...restProps }, forwardedRef) => { const validityTargetRef = useRef(null); const mergedRefs = useMergeRefs([forwardedRef, validityTargetRef]); return /* @__PURE__ */ _jsx(ControlWithError, { required, markWhenOptional, ref: mergedRefs, customValidity, getValidityTarget: () => validityTargetRef.current?.querySelector('input[type="radio"]'), children: /* @__PURE__ */ _jsx(RadioControl, { ...restProps }) }); }; var ValidatedRadioControl = forwardRef(UnforwardedValidatedRadioControl); export { ValidatedRadioControl }; //# sourceMappingURL=radio-control.js.map