Handles all keydown events on the select.
(event: KeyboardEvent)
| 893 | |
| 894 | /** Handles all keydown events on the select. */ |
| 895 | _handleKeydown(event: KeyboardEvent): void { |
| 896 | if (!this.disabled) { |
| 897 | this.panelOpen ? this._handleOpenKeydown(event) : this._handleClosedKeydown(event); |
| 898 | } |
| 899 | } |
| 900 | |
| 901 | /** Handles keyboard events while the select is closed. */ |
| 902 | private _handleClosedKeydown(event: KeyboardEvent): void { |
nothing calls this directly
no test coverage detected