@angular-wave/angular.ts 0.0.55 → 0.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -30,6 +30,18 @@
|
|
|
30
30
|
opacity: 1;
|
|
31
31
|
background-color: red;
|
|
32
32
|
}
|
|
33
|
+
|
|
34
|
+
/* The starting CSS styles for the leave animation */
|
|
35
|
+
.fade.ng-leave {
|
|
36
|
+
transition: 0.5s linear all;
|
|
37
|
+
background-color: blue;
|
|
38
|
+
opacity: 1;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* The finishing CSS styles for the leave animation */
|
|
42
|
+
.fade.ng-leave.ng-leave-active {
|
|
43
|
+
opacity: 0;
|
|
44
|
+
}
|
|
33
45
|
</style>
|
|
34
46
|
</head>
|
|
35
47
|
<body ng-app="test">
|
|
@@ -778,7 +778,6 @@ export function $AnimateCssProvider() {
|
|
|
778
778
|
|
|
779
779
|
element[0].classList.add(activeClasses);
|
|
780
780
|
if (flags.recalculateTimingStyles) {
|
|
781
|
-
fullClassName = `${node.getAttribute("class")} ${preparationClasses}`;
|
|
782
781
|
cacheKey = $$animateCache.cacheKey(
|
|
783
782
|
node,
|
|
784
783
|
method,
|