()
| 847 | } |
| 848 | |
| 849 | _scrollSelectedItem() { |
| 850 | if (this._isPickerOpen) { |
| 851 | const itemRef = this._currentlySelectedOption?.getDomRef(); |
| 852 | if (itemRef) { |
| 853 | itemRef.scrollIntoView({ |
| 854 | behavior: "auto", |
| 855 | block: "nearest", |
| 856 | inline: "nearest", |
| 857 | }); |
| 858 | } |
| 859 | } |
| 860 | } |
| 861 | |
| 862 | _handleArrowNavigation(e: KeyboardEvent) { |
| 863 | e.preventDefault(); |
no outgoing calls
no test coverage detected