()
| 187 | } |
| 188 | |
| 189 | constructor() { |
| 190 | if (this._dir) { |
| 191 | const changeDetectorRef = inject(ChangeDetectorRef); |
| 192 | this._dirChangeSubscription = this._dir.change.subscribe((dir: Direction) => { |
| 193 | this._computePositionAnimationState(dir); |
| 194 | changeDetectorRef.markForCheck(); |
| 195 | }); |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | ngOnInit() { |
| 200 | this._bindTransitionEvents(); |
nothing calls this directly
no test coverage detected