@wordpress/components
Version:
UI components for WordPress.
32 lines (31 loc) • 1.11 kB
JavaScript
// packages/components/src/validated-form-controls/components/checkbox-control.tsx
import { useMergeRefs } from "@wordpress/compose";
import { forwardRef, useRef } from "@wordpress/element";
import { ControlWithError } from "../control-with-error";
import CheckboxControl from "../../checkbox-control";
import { jsx as _jsx } from "react/jsx-runtime";
var UnforwardedValidatedCheckboxControl = ({
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="checkbox"]'),
children: /* @__PURE__ */ _jsx(CheckboxControl, {
__nextHasNoMarginBottom: true,
...restProps
})
});
};
var ValidatedCheckboxControl = forwardRef(UnforwardedValidatedCheckboxControl);
export {
ValidatedCheckboxControl
};
//# sourceMappingURL=checkbox-control.js.map