* feat: replace ng2-select2 => ngx-select-ex * feat: style the ngrx-select * feat: replace secondary role select2 * feat: replace Select2OptionData => SelectOptionData * feat: replace select2 => ngx-select in macro-tab component * feat: replace select2 => ngx-select in keymap-tab component * feat: fix styles * chore: remove select2 from dependencies * fix: macro editor overflow * fix: set the same font size for the toggle button * fix: overflow * chore: use @ert78gb/ngx-select-ex version of ngx-select-ex
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
export interface SelectOptionData {
|
|
id: string;
|
|
text: string;
|
|
disabled?: boolean;
|
|
children?: Array<SelectOptionData>;
|
|
additional?: any;
|
|
}
|