UNPKG

@base-ui/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.

30 lines 1.1 kB
import * as React from 'react'; import { BaseUIComponentProps } from "../../utils/types.js"; /** * A viewport for displaying content transitions. * This component is only required if one popup can be opened by multiple triggers, its content change based on the trigger * and switching between them is animated. * Renders a `<div>` element. * * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip) */ export declare const TooltipViewport: React.ForwardRefExoticComponent<Omit<TooltipViewport.Props, "ref"> & React.RefAttributes<HTMLDivElement>>; export declare namespace TooltipViewport { interface Props extends BaseUIComponentProps<'div', State> { /** * The content to render inside the transition container. */ children?: React.ReactNode; } interface State { activationDirection: string | undefined; /** * Whether the viewport is currently transitioning between contents. */ transitioning: boolean; /** * Present if animations should be instant. */ instant: 'delay' | 'dismiss' | 'focus' | undefined; } }