POLAR reference
    Preparing search index...

    Generic options for all plugins

    interface LoadingIndicatorOptions {
        displayComponent?: boolean;
        layoutTag?:
            | "TOP_LEFT"
            | "TOP_MIDDLE"
            | "TOP_RIGHT"
            | "MIDDLE_LEFT"
            | "MIDDLE_MIDDLE"
            | "MIDDLE_RIGHT"
            | "BOTTOM_LEFT"
            | "BOTTOM_MIDDLE"
            | "BOTTOM_RIGHT";
        loaderStyle?: | "KernLoader"
        | "BasicLoader"
        | "RingLoader"
        | "RollerLoader"
        | "CircleLoader"
        | "SpinnerLoader"
        | null;
        renderType?: "iconMenu"
        | "independent";
    }

    Hierarchy (View Summary)

    Index

    Properties

    displayComponent?: boolean

    Should the component be visible at all.

    false

    layoutTag?:
        | "TOP_LEFT"
        | "TOP_MIDDLE"
        | "TOP_RIGHT"
        | "MIDDLE_LEFT"
        | "MIDDLE_MIDDLE"
        | "MIDDLE_RIGHT"
        | "BOTTOM_LEFT"
        | "BOTTOM_MIDDLE"
        | "BOTTOM_RIGHT"

    The region where the plugin should be rendered. Required for nine-regions layout, ignored otherwise.

    loaderStyle?:
        | "KernLoader"
        | "BasicLoader"
        | "RingLoader"
        | "RollerLoader"
        | "CircleLoader"
        | "SpinnerLoader"
        | null

    Choose between different loader styles.

    Supported options:

    KernLoader
    KernLoader
    BasicLoader
    BasicLoader
    RingLoader
    RingLoader
    RollerLoader
    RollerLoader
    CircleLoader
    CircleLoader
    SpinnerLoader
    SpinnerLoader

    It is also possible to choose null as a loaderStyle to hide the loader.

    'KernLoader'

    renderType?: "iconMenu" | "independent"

    Defines if the plugin is rendered independent or as part of the icon menu. This is automatically set by the icon menu; you should not need to touch this.

    'independent'