(item: IInputSuggestionItem | null, isValueFromSuggestions: boolean)
| 1749 | } |
| 1750 | |
| 1751 | fireSelectionChange(item: IInputSuggestionItem | null, isValueFromSuggestions: boolean) { |
| 1752 | if (this.Suggestions) { |
| 1753 | this.fireDecoratorEvent(INPUT_EVENTS.SELECTION_CHANGE, { item }); |
| 1754 | this._isLatestValueFromSuggestions = isValueFromSuggestions; |
| 1755 | } |
| 1756 | } |
| 1757 | |
| 1758 | fireResetSelectionChange() { |
| 1759 | if (this._isLatestValueFromSuggestions) { |
no outgoing calls
no test coverage detected