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.

92 lines 3.73 kB
import * as React from 'react'; import { type BaseUIChangeEventDetails } from "../../utils/createBaseUIEventDetails.js"; import { type PayloadChildRenderFunction } from "../../utils/popups/index.js"; import { type TooltipHandle } from "../store/TooltipHandle.js"; import { REASONS } from "../../utils/reasons.js"; /** * Groups all parts of the tooltip. * Doesn’t render its own HTML element. * * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip) */ export declare function TooltipRoot<Payload>(props: TooltipRoot.Props<Payload>): import("react/jsx-runtime").JSX.Element; export interface TooltipRootState {} export interface TooltipRootProps<Payload = unknown> { /** * Whether the tooltip is initially open. * * To render a controlled tooltip, use the `open` prop instead. * @default false */ defaultOpen?: boolean; /** * Whether the tooltip is currently open. */ open?: boolean; /** * Event handler called when the tooltip is opened or closed. */ onOpenChange?: (open: boolean, eventDetails: TooltipRoot.ChangeEventDetails) => void; /** * Event handler called after any animations complete when the tooltip is opened or closed. */ onOpenChangeComplete?: (open: boolean) => void; /** * Whether the tooltip contents can be hovered without closing the tooltip. * @default false */ disableHoverablePopup?: boolean; /** * Determines which axis the tooltip should track the cursor on. * @default 'none' */ trackCursorAxis?: 'none' | 'x' | 'y' | 'both'; /** * A ref to imperative actions. * - `unmount`: When specified, the tooltip will not be unmounted when closed. * Instead, the `unmount` function must be called to unmount the tooltip manually. * Useful when the tooltip's animation is controlled by an external library. */ actionsRef?: React.RefObject<TooltipRoot.Actions>; /** * Whether the tooltip is disabled. * @default false */ disabled?: boolean; /** * A handle to associate the tooltip with a trigger. * If specified, allows external triggers to control the tooltip's open state. * Can be created with the Tooltip.createHandle() method. */ handle?: TooltipHandle<Payload>; /** * The content of the tooltip. * This can be a regular React node or a render function that receives the `payload` of the active trigger. */ children?: React.ReactNode | PayloadChildRenderFunction<Payload>; /** * ID of the trigger that the tooltip is associated with. * This is useful in conjuntion with the `open` prop to create a controlled tooltip. * There's no need to specify this prop when the tooltip is uncontrolled (i.e. when the `open` prop is not set). */ triggerId?: string | null; /** * ID of the trigger that the tooltip is associated with. * This is useful in conjunction with the `defaultOpen` prop to create an initially open tooltip. */ defaultTriggerId?: string | null; } export interface TooltipRootActions { unmount: () => void; } export type TooltipRootChangeEventReason = typeof REASONS.triggerHover | typeof REASONS.triggerFocus | typeof REASONS.triggerPress | typeof REASONS.outsidePress | typeof REASONS.escapeKey | typeof REASONS.disabled | typeof REASONS.imperativeAction | typeof REASONS.none; export type TooltipRootChangeEventDetails = BaseUIChangeEventDetails<TooltipRoot.ChangeEventReason> & { preventUnmountOnClose(): void; }; export declare namespace TooltipRoot { type State = TooltipRootState; type Props<Payload = unknown> = TooltipRootProps<Payload>; type Actions = TooltipRootActions; type ChangeEventReason = TooltipRootChangeEventReason; type ChangeEventDetails = TooltipRootChangeEventDetails; }