aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/modals/models/modal-config.ts
blob: 8cf955e6ed1eb0dbdd3d86c553ba59b8a5ad5dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { IButtonComponent } from "../../buttons/ibutton.interface";

export interface IModalConfig {
    size?: string; // xl|l|md|sm|xsm
    title?: string;
    message?: string;
    buttons?: IModalButtonComponent[];
    testId?: string;
    type?: ModalType;
}

export interface IModalButtonComponent extends IButtonComponent {
    id?: string;
    callback?: () => void;
    closeModal?: boolean;
}

export enum ModalType {
    info = 'info',
    warning = 'warning',
    error = 'error',
    success = 'success',
    action = 'action',
    custom = 'custom'
}

export enum ModalSize {
    xlarge = "xl",
    large = "l",
    medium = "md",
    small = "sm",
    xsmall = "xsm"
}