* Checks if the pressed key is a default action key (Space or Enter). * @param e - keyboard event * @private
(e: KeyboardEvent)
| 405 | * @private |
| 406 | */ |
| 407 | _isDefaultAction(e: KeyboardEvent): boolean { |
| 408 | return isSpace(e) || isEnter(e); |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * Handles the click event and the focus on the arrow button. |
no test coverage detected