ngx-selectbox-may
Version:
Angular selectbox with autocomplete
30 lines (29 loc) • 873 B
TypeScript
export declare class NGXSelectMayRow {
isSelected: boolean;
data: any;
value: any;
label: string;
constructor(isSelected: boolean, data: any);
setKey(value: any): void;
setLabel(label: string): void;
}
export declare class NGXSelectMayConfigs {
static readonly ROW_ACTIVE_CLASS = "active";
static readonly EMPTY_TEXT = "No results found";
static readonly MULTI_SELECTED_LABEL = "#COUNT #ITEMS Selected";
static readonly LOADING_TEXT = "Please wait...";
private _labelField;
labelField: string;
private _valueField;
valueField: any;
private _placeholderText;
placeholderText: string;
private _emptyText;
emptyText: string;
private _showEmptyResultsLabel;
showEmptyResultsLabel: boolean;
private _cssClass;
cssClass: string;
private _isMultiSelect;
isMultiSelect: boolean;
}