()
| 617 | } |
| 618 | |
| 619 | _onfocusout() { |
| 620 | if (this.nonInteractive) { |
| 621 | return; |
| 622 | } |
| 623 | |
| 624 | this._isSpacePressed = false; |
| 625 | this._cancelAction = false; |
| 626 | |
| 627 | if (this.active) { |
| 628 | this._setActiveState(false); |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | _setActiveState(active: boolean) { |
| 633 | const eventPrevented = !this.fireDecoratorEvent("active-state-change"); |
nothing calls this directly
no test coverage detected