@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.
24 lines • 662 B
TypeScript
export declare enum SelectScrollUpArrowDataAttributes {
/**
* Present when the scroll arrow is animating in.
*/
startingStyle = "data-starting-style",
/**
* Present when the scroll arrow is animating out.
*/
endingStyle = "data-ending-style",
/**
* Indicates the direction of the scroll arrow.
* @type {'up'}
*/
direction = "data-direction",
/**
* Present when the scroll arrow is visible.
*/
visible = "data-visible",
/**
* Indicates which side the popup is positioned relative to the trigger.
* @type {'none' | 'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'}
*/
side = "data-side",
}