ngx-smart-modal
Version:
Smart modal handler to manage modals and data everywhere in Angular apps.
20 lines (19 loc) • 465 B
TypeScript
export declare const NgxSmartModalConfig: {
bodyClassOpen: string;
prefixEvent: string;
};
export interface INgxSmartModalOptions {
closable?: boolean;
escapable?: boolean;
dismissable?: boolean;
customClass?: string;
backdrop?: boolean;
force?: boolean;
hideDelay?: number;
autostart?: boolean;
target?: string;
ariaLabel?: string;
ariaLabelledBy?: string;
ariaDescribedBy?: string;
refocus?: boolean;
}