* The user selected an item with Enter or Space * @private
(index = this._selectedIndex)
| 839 | * @private |
| 840 | */ |
| 841 | _handleSelectionChange(index = this._selectedIndex) { |
| 842 | this._typedChars = ""; |
| 843 | |
| 844 | this._select(index); |
| 845 | |
| 846 | this._toggleRespPopover(); |
| 847 | } |
| 848 | |
| 849 | _scrollSelectedItem() { |
| 850 | if (this._isPickerOpen) { |
no test coverage detected