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.

14 lines 705 B
import * as React from 'react'; import { type FloatingPortal } from "../floating-ui-react/index.js"; /** * `FloatingPortal` includes tabbable logic handling for focus management. * For components that don't need tabbable logic, use `FloatingPortalLite`. * @internal */ export declare const FloatingPortalLite: React.ForwardRefExoticComponent<Omit<FloatingPortalLite.Props<any>, "ref"> & React.RefAttributes<HTMLDivElement>>; export interface FloatingPortalLiteState {} export interface FloatingPortalLiteProps<TState> extends FloatingPortal.Props<TState> {} export declare namespace FloatingPortalLite { type State = FloatingPortalLiteState; type Props<TState> = FloatingPortalLiteProps<TState>; }