g3-toolkit API Reference
    Preparing search index...

    Interface FloatingPanelProps

    interface FloatingPanelProps {
        bottomOffset?: number;
        children: ReactNode;
        className?: string;
        closeTestId?: string;
        corner?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
        dragHandleTestId?: string;
        header: ReactNode;
        onClose?: () => void;
        positioning?: "fixed" | "absolute";
        testId?: string;
        width?: number;
    }
    Index

    Properties

    bottomOffset?: number

    Lift above bottom chrome (e.g. a timeline strip).

    children: ReactNode
    className?: string
    closeTestId?: string
    corner?: "top-left" | "top-right" | "bottom-left" | "bottom-right"
    dragHandleTestId?: string
    header: ReactNode
    onClose?: () => void
    positioning?: "fixed" | "absolute"

    "absolute" anchors inside a positioned ancestor (the graph view); "fixed" (default) anchors to the viewport.

    testId?: string
    width?: number