Circle V2 API Docs
    Preparing search index...

    Interface PortalProps

    Renders children into a different part of the DOM tree (defaults to document.body).

    Use Portal to escape ancestor stacking contexts or overflow: hidden — essential for popovers/menus rendered inside clipped containers like tab strips or scrollable panels.

    <Portal>
    <Menu.Positioner>...</Menu.Positioner>
    </Portal>
    interface PortalProps {
        container?: RefObject<HTMLElement | null>;
        disabled?: boolean;
    }
    Index

    Properties

    container?: RefObject<HTMLElement | null>
    disabled?: boolean