UNPKG

cubex-multiselect-dropdown

Version:
28 lines (27 loc) 914 B
import { OnInit, EventEmitter, OnChanges, SimpleChanges, ElementRef } from '@angular/core'; export declare class SingleselectDropdownComponent implements OnInit, OnChanges { private eRef; filterText: any; selectionLabel: string; optionList: Array<Object>; open: boolean; selectedOptions: any; displayNameKey: string; toggleSelectionKey: string; selectionPlaceholder: string; selectionTextWidth: number; componentWidth: number; componentHeight: number; selectionChange: EventEmitter<any>; onSearchChange: EventEmitter<any>; currentStyles: {}; noOption: {}; isoptionListArayString: boolean; constructor(eRef: ElementRef); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; selectOption(option: any): void; closeDropdown(): void; toggleDropdown(): void; clickout(event: any): void; }