Interface IDialogOptions

interface IDialogOptions {
    autoClose?: boolean;
    cancelSubDialogs?: boolean;
    eventsEnabled?: boolean;
    livePreview: boolean | (keyof ILivePreviewOptions);
    placement?: Placement;
    popup: boolean;
    title: string;
    toggleDialog: boolean;
}

Properties

autoClose?: boolean
cancelSubDialogs?: boolean
eventsEnabled?: boolean
livePreview: boolean | (keyof ILivePreviewOptions)
placement?: Placement
popup: boolean
title: string
toggleDialog: boolean