@angular/animations 21.0.0-next.7 → 21.0.0-next.9
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/fesm2022/_private_export-chunk.mjs +1 -1
- package/fesm2022/_private_export-chunk.mjs.map +1 -1
- package/fesm2022/_util-chunk.mjs +1 -1
- package/fesm2022/_util-chunk.mjs.map +1 -1
- package/fesm2022/animations.mjs +7 -7
- package/fesm2022/animations.mjs.map +1 -1
- package/fesm2022/browser-testing.mjs +1 -1
- package/fesm2022/browser-testing.mjs.map +1 -1
- package/fesm2022/browser.mjs +45 -23
- package/fesm2022/browser.mjs.map +1 -1
- package/package.json +2 -2
- package/types/_animation_driver-chunk.d.ts +1 -1
- package/types/_animation_player-chunk.d.ts +1 -1
- package/types/animations.d.ts +1 -1
- package/types/browser-testing.d.ts +1 -1
- package/types/browser.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/animations",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.9",
|
|
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": "21.0.0-next.
|
|
14
|
+
"@angular/core": "21.0.0-next.9"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
package/types/animations.d.ts
CHANGED
package/types/browser.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v21.0.0-next.
|
|
2
|
+
* @license Angular v21.0.0-next.9
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -203,7 +203,7 @@ declare class WebAnimationsPlayer implements AnimationPlayer {
|
|
|
203
203
|
private _finalKeyframe?;
|
|
204
204
|
private _originalOnDoneFns;
|
|
205
205
|
private _originalOnStartFns;
|
|
206
|
-
|
|
206
|
+
domPlayer: Animation | null;
|
|
207
207
|
time: number;
|
|
208
208
|
parentPlayer: AnimationPlayer | null;
|
|
209
209
|
currentSnapshot: _StyleDataMap;
|