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.

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