(innerButtonPressed?: boolean)
| 377 | } |
| 378 | |
| 379 | _setTabIndexValue(innerButtonPressed?: boolean) { |
| 380 | this._tabIndex = this.disabled ? -1 : 0; |
| 381 | |
| 382 | if (this._tabIndex === -1 && innerButtonPressed) { |
| 383 | this._tabIndex = 0; |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | _onArrowButtonActiveStateChange(e: CustomEvent) { |
| 388 | if (this.activeArrowButton) { |
no outgoing calls
no test coverage detected