@yoursabhishekabhi7/modal-popup-ng-all
Version:
Reusable Angular modal popup components supporting Angular 14 to 18
31 lines (30 loc) • 651 B
TypeScript
export interface Options {
animations?: {
modal?: {
enter?: string;
leave?: string;
};
overlay?: {
enter?: string;
leave?: string;
};
};
size?: {
minWidth?: string;
width?: string;
maxWidth?: string;
minHeight?: string;
height?: string;
maxHeight?: string;
};
bodyStyle?: object;
title?: string;
body?: string;
data?: object;
headerhide?: boolean;
bghide?: boolean;
HeaderTitleStyle?: any;
HeaderCloseButtonStyle?: any;
HeaderButtonControllerStyle?: any;
id?: any;
}