@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.
26 lines • 1.17 kB
JavaScript
import { CommonPopupDataAttributes } from "../../utils/popupStateMapping.js";
export let SelectScrollDownArrowDataAttributes = function (SelectScrollDownArrowDataAttributes) {
/**
* Present when the scroll arrow is animating in.
*/
SelectScrollDownArrowDataAttributes[SelectScrollDownArrowDataAttributes["startingStyle"] = CommonPopupDataAttributes.startingStyle] = "startingStyle";
/**
* Present when the scroll arrow is animating out.
*/
SelectScrollDownArrowDataAttributes[SelectScrollDownArrowDataAttributes["endingStyle"] = CommonPopupDataAttributes.endingStyle] = "endingStyle";
/**
* Indicates the direction of the scroll arrow.
* @type {'down'}
*/
SelectScrollDownArrowDataAttributes["direction"] = "data-direction";
/**
* Present when the scroll arrow is visible.
*/
SelectScrollDownArrowDataAttributes["visible"] = "data-visible";
/**
* Indicates which side the popup is positioned relative to the trigger.
* @type {'none' | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'}
*/
SelectScrollDownArrowDataAttributes["side"] = "data-side";
return SelectScrollDownArrowDataAttributes;
}({});