UNPKG

multiple-options-select-dropdown

Version:

A simple component which allows to select mutliple options from dropdown

15 lines (14 loc) 326 B
export interface IMultiSelectConfig { keyField: string; valueField: string; data: any[]; selectedItems?: any[]; selectionLimit?: number; showFilter?: boolean; filterPlaceholder?: string; disabled?: boolean; } export interface IDataModel { data: any[]; checked: boolean; }