@angular/animations 14.0.2 → 14.0.5
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/browser/index.d.ts +3 -1
- package/browser/testing/index.d.ts +1 -1
- package/esm2020/browser/src/error_helpers.mjs +37 -39
- package/esm2020/browser/src/render/animation_driver.mjs +3 -3
- package/esm2020/browser/src/render/transition_animation_engine.mjs +8 -3
- package/esm2020/browser/src/render/web_animations/web_animations_player.mjs +10 -1
- package/esm2020/src/players/animation_player.mjs +8 -1
- package/esm2020/src/version.mjs +1 -1
- package/fesm2015/animations.mjs +8 -1
- package/fesm2015/animations.mjs.map +1 -1
- package/fesm2015/browser/testing.mjs +37 -39
- package/fesm2015/browser/testing.mjs.map +1 -1
- package/fesm2015/browser.mjs +56 -44
- package/fesm2015/browser.mjs.map +1 -1
- package/fesm2020/animations.mjs +8 -1
- package/fesm2020/animations.mjs.map +1 -1
- package/fesm2020/browser/testing.mjs +37 -39
- package/fesm2020/browser/testing.mjs.map +1 -1
- package/fesm2020/browser.mjs +56 -44
- package/fesm2020/browser.mjs.map +1 -1
- package/index.d.ts +3 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.
|
|
2
|
+
* @license Angular v14.0.5
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -912,6 +912,8 @@ export declare class NoopAnimationPlayer implements AnimationPlayer {
|
|
|
912
912
|
private _onDoneFns;
|
|
913
913
|
private _onStartFns;
|
|
914
914
|
private _onDestroyFns;
|
|
915
|
+
private _originalOnDoneFns;
|
|
916
|
+
private _originalOnStartFns;
|
|
915
917
|
private _started;
|
|
916
918
|
private _destroyed;
|
|
917
919
|
private _finished;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/animations",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.5",
|
|
4
4
|
"description": "Angular - animations integration with web-animations",
|
|
5
5
|
"author": "angular",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"tslib": "^2.3.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@angular/core": "14.0.
|
|
14
|
+
"@angular/core": "14.0.5"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|