You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No.
It worked differently in versions < 5.0.0, but there were other problems with this case.
Description
A parent component has a ng-content which is located inside element with ngIf and animation.
parent: <div *ngIf="parentVisible" @animation><ng-content></ng-content></div>
Nested child component has additional ngIf with animation.
child: <div *ngIf="childVisible" @animation>Child content</div>
Usage: <parent><child></child></parent>
When parent component hides and shows back ng-content, the child's content inside ngIf element stays hidden.
This problem does not exist when animation is not used in parent or child component.