@devmn/multi-select
Version:
Angular multi select component that provides two lists controls side-by-side that allows items in one list to be selected and moved* to the other list via drag-and-drop and/or a button-based interface.
16 lines (15 loc) • 349 B
TypeScript
export declare class BasicSelectData {
/** Name of the list */
private _name;
/** Last element touched */
last: any;
/** text filter */
picker: string;
dragStart: boolean;
dragOver: boolean;
pick: Array<any>;
list: Array<any>;
sift: Array<any>;
constructor(name: string);
readonly name: string;
}