UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

28 lines (27 loc) 1.01 kB
export interface ISuggestionModel<T> { item: T; selected: boolean; } export declare class SuggestionsController<T> { currentIndex: number; currentSuggestion: ISuggestionModel<T>; private suggestions; constructor(); updateSuggestions(newSuggestions: T[], selectedIndex?: number): void; /** * Increments the suggestion index and gets the next suggestion in the list. */ nextSuggestion(): boolean; /** * Decrements the suggestion index and gets the previous suggestion in the list. */ previousSuggestion(): boolean; getSuggestions(): ISuggestionModel<T>[]; getCurrentItem(): ISuggestionModel<T>; getSuggestionAtIndex(index: number): ISuggestionModel<T>; hasSelectedSuggestion(): boolean; removeSuggestion(index: number): void; createGenericSuggestion(itemToConvert: ISuggestionModel<T>): void; _convertSuggestionsToSuggestionItems(suggestions: any[]): ISuggestionModel<T>[]; private _setSelectedSuggestion(index); }