@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.
17 lines (16 loc) • 809 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.NumberFieldInputDataAttributes = void 0;
let NumberFieldInputDataAttributes = exports.NumberFieldInputDataAttributes = /*#__PURE__*/function (NumberFieldInputDataAttributes) {
NumberFieldInputDataAttributes["scrubbing"] = "data-scrubbing";
NumberFieldInputDataAttributes["disabled"] = "data-disabled";
NumberFieldInputDataAttributes["readonly"] = "data-readonly";
NumberFieldInputDataAttributes["required"] = "data-required";
NumberFieldInputDataAttributes["valid"] = "data-valid";
NumberFieldInputDataAttributes["invalid"] = "data-invalid";
NumberFieldInputDataAttributes["touched"] = "data-touched";
NumberFieldInputDataAttributes["dirty"] = "data-dirty";
return NumberFieldInputDataAttributes;
}({});