@angular/animations 19.2.0 → 19.2.1
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 +2 -2
- package/browser/testing/index.d.ts +2 -2
- package/fesm2022/animations.mjs +12 -12
- package/fesm2022/animations.mjs.map +1 -1
- package/fesm2022/browser/testing.mjs +2 -2
- package/fesm2022/browser.mjs +9 -9
- package/fesm2022/browser.mjs.map +1 -1
- package/index.d.ts +8 -8
- package/package.json +2 -2
package/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v19.2.
|
3
|
-
* (c) 2010-
|
2
|
+
* @license Angular v19.2.1
|
3
|
+
* (c) 2010-2025 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
6
6
|
|
@@ -33,7 +33,7 @@ import { RendererFactory2 } from '@angular/core';
|
|
33
33
|
* @returns An object that encapsulates the animation step.
|
34
34
|
*
|
35
35
|
* @usageNotes
|
36
|
-
* Call within an animation `sequence()`,
|
36
|
+
* Call within an animation `sequence()`, {@link /api/animations/group group()}, or
|
37
37
|
* `transition()` call to specify an animation step
|
38
38
|
* that applies given style data to the parent animation for a given amount of time.
|
39
39
|
*
|
@@ -372,7 +372,7 @@ export declare abstract class AnimationFactory {
|
|
372
372
|
|
373
373
|
/**
|
374
374
|
* Encapsulates an animation group.
|
375
|
-
* Instantiated and returned by the `
|
375
|
+
* Instantiated and returned by the `group()` function.
|
376
376
|
*
|
377
377
|
* @publicApi
|
378
378
|
*/
|
@@ -437,7 +437,7 @@ export declare enum AnimationMetadataType {
|
|
437
437
|
Sequence = 2,
|
438
438
|
/**
|
439
439
|
* Contains a set of animation steps.
|
440
|
-
* See `{@link animations/group group()}`
|
440
|
+
* See `{@link /api/animations/group group()}`
|
441
441
|
*/
|
442
442
|
Group = 3,
|
443
443
|
/**
|
@@ -494,7 +494,7 @@ export declare enum AnimationMetadataType {
|
|
494
494
|
*
|
495
495
|
* - `transition()`
|
496
496
|
* - `sequence()`
|
497
|
-
* - `{@link animations/group group()}`
|
497
|
+
* - `{@link /api/animations/group group()}`
|
498
498
|
* - `query()`
|
499
499
|
* - `animation()`
|
500
500
|
* - `useAnimation()`
|
@@ -1089,10 +1089,10 @@ export declare function query(selector: string, animation: AnimationMetadata | A
|
|
1089
1089
|
* @usageNotes
|
1090
1090
|
* When you pass an array of steps to a
|
1091
1091
|
* `transition()` call, the steps run sequentially by default.
|
1092
|
-
* Compare this to the
|
1092
|
+
* Compare this to the {@link /api/animations/group group()} call, which runs animation steps in
|
1093
1093
|
*parallel.
|
1094
1094
|
*
|
1095
|
-
* When a sequence is used within a
|
1095
|
+
* When a sequence is used within a {@link /api/animations/group group()} or a `transition()` call,
|
1096
1096
|
* execution continues to the next instruction only after each of the inner animation
|
1097
1097
|
* steps have completed.
|
1098
1098
|
*
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@angular/animations",
|
3
|
-
"version": "19.2.
|
3
|
+
"version": "19.2.1",
|
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.2.
|
14
|
+
"@angular/core": "19.2.1"
|
15
15
|
},
|
16
16
|
"repository": {
|
17
17
|
"type": "git",
|