@rishavtandon93/ng-select-aria
Version:
Angular ng-select - All in One UI Select, Multiselect and Autocomplete
19 lines (17 loc) • 495 B
text/typescript
import { Injectable } from '@angular/core';
({ providedIn: 'root' })
export class NgSelectConfig {
placeholder: string;
notFoundText = 'No items found';
typeToSearchText = 'Type to search';
addTagText = 'Add item';
loadingText = 'Loading...';
clearAllText = 'Clear all';
disableVirtualScroll = true;
openOnEnter = true;
appendTo: string;
bindValue: string;
bindLabel: string;
appearance = 'underline';
clearSearchOnAdd: boolean;
}