aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/form-elements/dropdown/dropdown-models.ts
blob: fa8dc23373b9c617de38bc3d0a4325ca19715534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export enum DropDownTypes {
    Regular,
    Headless,
    Auto
}

export enum DropDownOptionType {
    Simple, // default
    Header,
    Disable,
    HorizontalLine
}

export interface IDropDownOption {
    value: any;
    label: string;
    type?: DropDownOptionType;
}