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