Circle V2 API Docs
    Preparing search index...
    interface RootProviderProps {
        immediate?: boolean;
        lazyMount?: boolean;
        onExitComplete?: VoidFunction;
        placement?: ConditionalValue<
            "bottom"
            | "bottom-end"
            | "bottom-start"
            | undefined,
        >;
        present?: boolean;
        recipe?: SlotRecipeDefinition<string, SlotRecipeVariantRecord<string>>;
        skipAnimationOnMount?: boolean;
        unmountOnExit?: boolean;
        unstyled?: boolean;
        value: UsePopoverReturn;
    }

    Hierarchy

    • ActionBarRootProviderBaseProps
      • RootProviderProps
    Index

    Properties

    immediate?: boolean

    Whether to synchronize the present change immediately or defer it to the next frame

    lazyMount?: boolean

    Whether to enable lazy mounting

    false
    
    onExitComplete?: VoidFunction

    Function called when the animation ends in the closed state

    placement?: ConditionalValue<
        "bottom"
        | "bottom-end"
        | "bottom-start"
        | undefined,
    >
    "bottom"
    
    present?: boolean

    Whether the node is present (controlled by the user)

    recipe?: SlotRecipeDefinition<string, SlotRecipeVariantRecord<string>>
    skipAnimationOnMount?: boolean

    Whether to allow the initial presence animation.

    false
    
    unmountOnExit?: boolean

    Whether to unmount on exit.

    false
    
    unstyled?: boolean

    If true, the element will opt out of the theme styles.

    value: UsePopoverReturn