@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.
12 lines • 660 B
JavaScript
export let CheckboxRootDataAttributes = /*#__PURE__*/function (CheckboxRootDataAttributes) {
CheckboxRootDataAttributes["checked"] = "data-checked";
CheckboxRootDataAttributes["unchecked"] = "data-unchecked";
CheckboxRootDataAttributes["disabled"] = "data-disabled";
CheckboxRootDataAttributes["readonly"] = "data-readonly";
CheckboxRootDataAttributes["required"] = "data-required";
CheckboxRootDataAttributes["valid"] = "data-valid";
CheckboxRootDataAttributes["invalid"] = "data-invalid";
CheckboxRootDataAttributes["touched"] = "data-touched";
CheckboxRootDataAttributes["dirty"] = "data-dirty";
return CheckboxRootDataAttributes;
}({});