Type Alias TJSDialogModalOptions
TJSDialogModalOptions : {
background?: string;
closeOnInput?: boolean;
slotSeparate?: boolean;
styles?: {
[key: string]: string | null;
};
transition?: TJSDialogTransitionOptions;
}
background?: string;
closeOnInput?: boolean;
slotSeparate?: boolean;
styles?: {
[key: string]: string | null;
};
transition?: TJSDialogTransitionOptions;
}
Type declaration
Optional
background?: stringCSS background style for glasspane.
Optional
closeOn ?: booleanInput When true modal dialog is closed on any click / pointer down event on the glasspane.
Optional
slotSeparate ?: booleanCreates a separate DIV element container for slot content.
Optional
styles?: {
[key: string]: string | null;
}Custom styles applied to glasspane. Provide an object with CSS style properties with keys in kebab case.
[key: string]: string | null
Optional
transition?: TJSDialogTransitionOptionsCustom transition options for modal background / glasspane.
Defines additional modal options to control the display of the modal dialog and glasspane.