@angular/animations 19.0.4 → 19.0.6
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/LICENSE +1 -1
- package/browser/index.d.ts +6 -1
- package/browser/testing/index.d.ts +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.mjs +11 -4
- package/fesm2022/browser.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +2 -2
package/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v19.0.
|
2
|
+
* @license Angular v19.0.6
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
@@ -593,12 +593,12 @@ export declare interface AnimationPlayer {
|
|
593
593
|
reset(): void;
|
594
594
|
/**
|
595
595
|
* Sets the position of the animation.
|
596
|
-
* @param position A
|
596
|
+
* @param position A fractional value, representing the progress through the animation.
|
597
597
|
*/
|
598
598
|
setPosition(position: number): void;
|
599
599
|
/**
|
600
600
|
* Reports the current position of the animation.
|
601
|
-
* @returns A
|
601
|
+
* @returns A fractional value, representing the progress through the animation.
|
602
602
|
*/
|
603
603
|
getPosition(): number;
|
604
604
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@angular/animations",
|
3
|
-
"version": "19.0.
|
3
|
+
"version": "19.0.6",
|
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": "19.0.
|
14
|
+
"@angular/core": "19.0.6"
|
15
15
|
},
|
16
16
|
"repository": {
|
17
17
|
"type": "git",
|