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.

24 lines (23 loc) 600 B
export declare enum TooltipArrowDataAttributes { /** * Present when the tooltip is open. */ open = "data-open", /** * Present when the tooltip is closed. */ closed = "data-closed", /** * Present when the anchor is hidden. */ anchorHidden = "data-anchor-hidden", /** * Indicates which side the tooltip is positioned relative to the trigger. * @type {'none' | 'top' | 'right' | 'bottom' | 'left'} */ side = "data-side", /** * Present when the tooltip arrow is uncentered. */ uncetered = "data-uncentered" }