()
| 102 | protected readonly destroyed = new Subject<void>(); |
| 103 | |
| 104 | constructor() { |
| 105 | this._setupMouseEnter(); |
| 106 | this._setType(); |
| 107 | |
| 108 | if (this._isStandaloneItem()) { |
| 109 | this._tabindex = 0; |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | ngOnDestroy() { |
| 114 | this._cleanupMouseEnter?.(); |
nothing calls this directly
no test coverage detected