(value: string, filterValue: string)
| 952 | } |
| 953 | |
| 954 | _handleTypeAhead(value: string, filterValue: string) { |
| 955 | const item = this._getFirstMatchingItem(value); |
| 956 | |
| 957 | if (!item) { |
| 958 | return; |
| 959 | } |
| 960 | |
| 961 | this._applyAtomicValueAndSelection(item, filterValue); |
| 962 | } |
| 963 | |
| 964 | _handleArrowDown(e: KeyboardEvent, indexOfItem: number) { |
| 965 | const isOpen = this.open; |
no test coverage detected