We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34fc1c4 commit a1fce15Copy full SHA for a1fce15
components/transition/transition.ts
@@ -69,6 +69,7 @@ export class SuiTransition {
69
}
70
71
public animate(animation:ISuiAnimation) {
72
+ animation = Object.assign({}, animation);
73
animation.classes = animation.name.split(" ");
74
if (!animation.duration) {
75
animation.duration = 250;
@@ -101,6 +102,7 @@ export class SuiTransition {
101
102
103
104
this.isAnimating = true;
105
+ this.isVisible = true;
106
this.isHidden = false;
107
108
animation.classes.forEach(c => this.renderer.setElementClass(this.el.nativeElement, c, true));
0 commit comments