ngx-select2-ex
Version:
Angular(2+) version of the popular alternative to select inputs, Select2. Select2 classes are used in the template, so you can use any pre-existing styles for Select2 and it will look the same as the original.
8 lines (7 loc) • 482 B
TypeScript
import { NgxSelect2ExOption } from './ngx-select2-ex-option';
export declare class NgxSelect2ExOptionHandler extends NgxSelect2ExOption {
highlighted?: boolean;
constructor(id: number | string, value: string, disabled?: boolean, selected?: boolean, highlighted?: boolean);
static copy(optionHandler: NgxSelect2ExOptionHandler): NgxSelect2ExOptionHandler;
static copyArray(arrayOfOptionHandlers: Array<NgxSelect2ExOptionHandler>): Array<NgxSelect2ExOptionHandler>;
}