@vernonia/core - v5.1.12
    Preparing search index...

    ApplicationLoadError constructor properties.

    interface ApplicationLoadErrorProperties {
        container?: string | HTMLElement | nullish;
        icon?: string | nullish;
        id?: string;
        label?: string | nullish;
        link?: { href: string; text: string };
        message?: string;
        title?: string;
        visible?: boolean;
    }

    Hierarchy

    • WidgetProperties
      • ApplicationLoadErrorProperties
    Index

    Properties

    container?: string | HTMLElement | nullish

    The ID or node representing the DOM element containing the widget.

    Read more...

    icon?: string | nullish

    Icon which represents the widget.

    Read more...

    id?: string

    The unique ID assigned to the widget when the widget is created.

    Read more...

    label?: string | nullish

    The widget's label.

    Read more...

    link?: { href: string; text: string }

    Error notice link.

    Type Declaration

    • href: string

      Link URL.

    • text: string

      Link text.

    message?: string

    Error notice message.

    'Application was unable to load. Try refreshing the page.'
    
    title?: string

    Error notice title.

    'Oh snap!'
    
    visible?: boolean

    Indicates whether the widget is visible.

    Read more...