ngx-select-dropdown
Version:
A angular(4+) select dropdown for single select or multiselct module.
18 lines (17 loc) • 458 B
TypeScript
export interface NgxDropdownConfig {
displayFn?: any;
displayKey?: string;
search?: boolean;
height?: string;
placeholder?: string;
customComparator?: (a: any, b: any) => number;
limitTo?: number;
moreText?: string;
noResultsFound?: string;
searchPlaceholder?: string;
searchOnKey?: string;
clearOnSelection?: boolean;
inputDirection?: string;
selectAllLabel?: string;
enableSelectAll?: boolean;
}