multiselect WORKING! And added new interface in create-element

This commit is contained in:
MaxOvs
2023-01-09 16:10:43 +03:00
parent 8eeabf44b2
commit 482bd59756
5 changed files with 140 additions and 34 deletions

View File

@ -0,0 +1,8 @@
import { ICgSelect } from '../../interfaces/cg-select.interface';
export interface IcreateBreadCrumb {
element: Element | null;
option: ICgSelect;
indexes: number[];
selectedItems: string[];
}