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

    Interface MarkdownDialogProperties

    MarkdownDialog properties.

    interface MarkdownDialogProperties {
        closeText?: string;
        container?: string | HTMLElement | nullish;
        cssClass?: string;
        heading: string;
        icon?: string | nullish;
        id?: string;
        label?: string | nullish;
        url: string;
        visible?: boolean;
        width?: "s" | "m" | "l";
    }

    Hierarchy

    • WidgetProperties
      • MarkdownDialogProperties
    Index

    Properties

    closeText?: string
    container?: string | HTMLElement | nullish

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

    Read more...

    cssClass?: string
    heading: string
    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...

    url: string
    visible?: boolean

    Indicates whether the widget is visible.

    Read more...

    width?: "s" | "m" | "l"