UNPKG

@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.

44 lines 1.52 kB
export let SliderIndicatorDataAttributes = /*#__PURE__*/function (SliderIndicatorDataAttributes) { /** * Present while the user is dragging. */ SliderIndicatorDataAttributes["dragging"] = "data-dragging"; /** * Indicates the orientation of the slider. * @type {'horizontal' | 'vertical'} */ SliderIndicatorDataAttributes["orientation"] = "data-orientation"; /** * Present when the slider is disabled. */ SliderIndicatorDataAttributes["disabled"] = "data-disabled"; /** * Present when the slider is readonly. */ SliderIndicatorDataAttributes["readonly"] = "data-readonly"; /** * Present when the slider is required. */ SliderIndicatorDataAttributes["required"] = "data-required"; /** * Present when the slider is in valid state (when wrapped in Field.Root). */ SliderIndicatorDataAttributes["valid"] = "data-valid"; /** * Present when the slider is in invalid state (when wrapped in Field.Root). */ SliderIndicatorDataAttributes["invalid"] = "data-invalid"; /** * Present when the slider has been touched (when wrapped in Field.Root). */ SliderIndicatorDataAttributes["touched"] = "data-touched"; /** * Present when the slider's value has changed (when wrapped in Field.Root). */ SliderIndicatorDataAttributes["dirty"] = "data-dirty"; /** * Present when the slider is focused (when wrapped in Field.Root). */ SliderIndicatorDataAttributes["focused"] = "data-focused"; return SliderIndicatorDataAttributes; }({});