SheetXL - v0.3.20
    Preparing search index...

    Configuration for panels that appear during loading or error states.

    interface PanelConfig {
        className?: string;
        cssVars?: { background?: string; color?: string; iconColor?: string };
        customElement?: HTMLElement;
        hide?: boolean;
        icon?: string | HTMLElement;
        message?: string;
    }
    Index

    Properties

    className?: string

    Additional CSS class to apply to panel

    cssVars?: { background?: string; color?: string; iconColor?: string }

    CSS custom properties for styling the panel

    Type declaration

    • Optionalbackground?: string

      Background color (--sheetxl-panel-background)

    • Optionalcolor?: string

      Text color (--sheetxl-panel-color)

    • OptionaliconColor?: string

      Icon color (--sheetxl-panel-icon-color)

    customElement?: HTMLElement

    Custom HTML element to replace the entire panel

    hide?: boolean

    Whether to hide the panel. Defaults to false.

    This maybe set to true if a custom loading or error panel is provided.`

    icon?: string | HTMLElement

    Custom icon (HTML string or element)

    message?: string

    Custom message to display