@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.SliderTrackDataAttributes = void 0;
let SliderTrackDataAttributes = exports.SliderTrackDataAttributes = /*#__PURE__*/function (SliderTrackDataAttributes) {
SliderTrackDataAttributes["dragging"] = "data-dragging";
SliderTrackDataAttributes["orientation"] = "data-orientation";
SliderTrackDataAttributes["disabled"] = "data-disabled";
SliderTrackDataAttributes["readonly"] = "data-readonly";
SliderTrackDataAttributes["required"] = "data-required";
SliderTrackDataAttributes["valid"] = "data-valid";
SliderTrackDataAttributes["invalid"] = "data-invalid";
SliderTrackDataAttributes["touched"] = "data-touched";
SliderTrackDataAttributes["dirty"] = "data-dirty";
return SliderTrackDataAttributes;
}({});