(e: KeyboardEvent)
| 776 | } |
| 777 | |
| 778 | _handleMobileKeydown(e: KeyboardEvent) { |
| 779 | if (isEscape(e)) { |
| 780 | this.value = this._lastValue || ""; |
| 781 | this.filterValue = this._lastValue || ""; |
| 782 | this._closeRespPopover(); |
| 783 | } |
| 784 | } |
| 785 | |
| 786 | _handleMobileInput(e: CustomEvent<InputEventDetail>) { |
| 787 | const { target } = e; |
nothing calls this directly
no test coverage detected