* Handles the click event and the focus on the arrow button. * @param e - keyboard event * @private
(e: UI5CustomEvent<Button, "click"> | KeyboardEvent)
| 414 | * @private |
| 415 | */ |
| 416 | _handleArrowButtonAction(e: UI5CustomEvent<Button, "click"> | KeyboardEvent) { |
| 417 | e.preventDefault(); |
| 418 | |
| 419 | this._fireArrowClick(e); |
| 420 | } |
| 421 | |
| 422 | /** |
| 423 | * Handles the default action and the active state of the respective button. |
no test coverage detected