(e: FocusEvent)
| 281 | } |
| 282 | |
| 283 | _onInnerButtonFocusIn(e: FocusEvent) { |
| 284 | e.stopPropagation(); |
| 285 | this._setTabIndexValue(true); |
| 286 | const target = e.target as Button; |
| 287 | target.focus(); |
| 288 | } |
| 289 | |
| 290 | _onKeyDown(e: KeyboardEvent) { |
| 291 | if (this._isArrowKeyAction(e)) { |
nothing calls this directly
no test coverage detected