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