Axinom Mosaic Libraries
    Preparing search index...

    Interface InfoPanelProps

    interface InfoPanelProps {
        className?: string;
        collapsible?: boolean;
        defaultCollapsed?: boolean;
        minWidthThreshold?: number;
        onCollapseChange?: (collapsed: boolean) => void;
        siblingMinWidth?: number;
        width?: string;
    }
    Index

    Properties

    className?: string

    Optional class

    collapsible?: boolean

    Enable collapsible functionality (default: true)

    defaultCollapsed?: boolean

    Initial collapsed state (default: false)

    minWidthThreshold?: number

    Minimum width threshold in pixels for auto-collapse If not provided, will be parsed from width prop (only works if width is in px format) Required for auto-collapse when width is percentage, rem, or CSS variable

    onCollapseChange?: (collapsed: boolean) => void

    Callback when collapse state changes

    siblingMinWidth?: number

    Minimum width of the sibling content (default: 740px)

    width?: string

    Width of the container (any CSS value: px, %, rem, etc.) Note: For auto-collapse to work, width must be in px format (e.g., "480px") or minWidthThreshold must be explicitly provided