@breadstone/mosaik-elements-angular 0.0.58 → 0.0.59
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.
|
@@ -55694,6 +55694,10 @@ class AnimateDirective {
|
|
|
55694
55694
|
easing: 'ease',
|
|
55695
55695
|
...options.options ?? {}
|
|
55696
55696
|
}).then(() => {
|
|
55697
|
+
// commit the final 'to' styles here.
|
|
55698
|
+
for (const [k, v] of Object.entries(options.to)) {
|
|
55699
|
+
this._renderer.setStyle(this._element.nativeElement, k, v);
|
|
55700
|
+
}
|
|
55697
55701
|
options.onFinished?.();
|
|
55698
55702
|
});
|
|
55699
55703
|
}
|
|
@@ -55710,7 +55714,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.4", ngImpor
|
|
|
55710
55714
|
type: Input,
|
|
55711
55715
|
args: [{
|
|
55712
55716
|
alias: 'mosaikAnimate',
|
|
55713
|
-
required: true
|
|
55717
|
+
required: true
|
|
55714
55718
|
}]
|
|
55715
55719
|
}] } });
|
|
55716
55720
|
|