@angular/animations 19.0.5 → 19.0.7
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/browser/testing.mjs +1 -1
- package/fesm2022/browser.mjs +27 -18
- package/fesm2022/browser.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -2
package/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License
|
2
2
|
|
3
|
-
Copyright (c) 2010-
|
3
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/browser/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v19.0.
|
2
|
+
* @license Angular v19.0.7
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
@@ -184,6 +184,11 @@ export declare class ɵAnimationRendererFactory implements RendererFactory2 {
|
|
184
184
|
private _scheduleCountTask;
|
185
185
|
end(): void;
|
186
186
|
whenRenderingDone(): Promise<any>;
|
187
|
+
/**
|
188
|
+
* Used during HMR to clear any cached data about a component.
|
189
|
+
* @param componentId ID of the component that is being replaced.
|
190
|
+
*/
|
191
|
+
protected componentReplaced(componentId: string): void;
|
187
192
|
}
|
188
193
|
|
189
194
|
|
package/fesm2022/animations.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v19.0.
|
2
|
+
* @license Angular v19.0.7
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
@@ -982,10 +982,10 @@ function stagger(timings, animation) {
|
|
982
982
|
* @publicApi
|
983
983
|
*/
|
984
984
|
class AnimationBuilder {
|
985
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.
|
986
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.
|
985
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: AnimationBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
986
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: AnimationBuilder, providedIn: 'root', useFactory: () => inject(BrowserAnimationBuilder) });
|
987
987
|
}
|
988
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.
|
988
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: AnimationBuilder, decorators: [{
|
989
989
|
type: Injectable,
|
990
990
|
args: [{ providedIn: 'root', useFactory: () => inject(BrowserAnimationBuilder) }]
|
991
991
|
}] });
|
@@ -1025,10 +1025,10 @@ class BrowserAnimationBuilder extends AnimationBuilder {
|
|
1025
1025
|
issueAnimationCommand(this._renderer, null, id, 'register', [entry]);
|
1026
1026
|
return new BrowserAnimationFactory(id, this._renderer);
|
1027
1027
|
}
|
1028
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.
|
1029
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.
|
1028
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: BrowserAnimationBuilder, deps: [{ token: i0.RendererFactory2 }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
1029
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: BrowserAnimationBuilder, providedIn: 'root' });
|
1030
1030
|
}
|
1031
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.
|
1031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: BrowserAnimationBuilder, decorators: [{
|
1032
1032
|
type: Injectable,
|
1033
1033
|
args: [{ providedIn: 'root' }]
|
1034
1034
|
}], ctorParameters: () => [{ type: i0.RendererFactory2 }, { type: Document, decorators: [{
|
package/fesm2022/browser.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v19.0.
|
2
|
+
* @license Angular v19.0.7
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
@@ -548,10 +548,10 @@ class NoopAnimationDriver {
|
|
548
548
|
animate(element, keyframes, duration, delay, easing, previousPlayers = [], scrubberAccessRequested) {
|
549
549
|
return new NoopAnimationPlayer(duration, delay);
|
550
550
|
}
|
551
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.
|
552
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.
|
551
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: NoopAnimationDriver, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
552
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: NoopAnimationDriver });
|
553
553
|
}
|
554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.
|
554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.7", ngImport: i0, type: NoopAnimationDriver, decorators: [{
|
555
555
|
type: Injectable
|
556
556
|
}] });
|
557
557
|
/**
|
@@ -844,20 +844,16 @@ function createListOfWarnings(warnings) {
|
|
844
844
|
.join(LINE_START)}`;
|
845
845
|
}
|
846
846
|
function warnValidation(warnings) {
|
847
|
-
(
|
848
|
-
console.warn(`animation validation warnings:${createListOfWarnings(warnings)}`);
|
847
|
+
console.warn(`animation validation warnings:${createListOfWarnings(warnings)}`);
|
849
848
|
}
|
850
849
|
function warnTriggerBuild(name, warnings) {
|
851
|
-
(
|
852
|
-
console.warn(`The animation trigger "${name}" has built with the following warnings:${createListOfWarnings(warnings)}`);
|
850
|
+
console.warn(`The animation trigger "${name}" has built with the following warnings:${createListOfWarnings(warnings)}`);
|
853
851
|
}
|
854
852
|
function warnRegister(warnings) {
|
855
|
-
(
|
856
|
-
console.warn(`Animation built with the following warnings:${createListOfWarnings(warnings)}`);
|
853
|
+
console.warn(`Animation built with the following warnings:${createListOfWarnings(warnings)}`);
|
857
854
|
}
|
858
855
|
function triggerParsingWarnings(name, warnings) {
|
859
|
-
(
|
860
|
-
console.warn(`Animation parsing for the ${name} trigger presents the following warnings:${createListOfWarnings(warnings)}`);
|
856
|
+
console.warn(`Animation parsing for the ${name} trigger presents the following warnings:${createListOfWarnings(warnings)}`);
|
861
857
|
}
|
862
858
|
function pushUnrecognizedPropertiesWarning(warnings, props) {
|
863
859
|
if (props.length) {
|
@@ -2517,8 +2513,10 @@ class TimelineAnimationEngine {
|
|
2517
2513
|
throw registerFailed(errors);
|
2518
2514
|
}
|
2519
2515
|
else {
|
2520
|
-
if (
|
2521
|
-
|
2516
|
+
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
2517
|
+
if (warnings.length) {
|
2518
|
+
warnRegister(warnings);
|
2519
|
+
}
|
2522
2520
|
}
|
2523
2521
|
this._animations.set(id, ast);
|
2524
2522
|
}
|
@@ -4166,8 +4164,10 @@ class AnimationEngine {
|
|
4166
4164
|
if (errors.length) {
|
4167
4165
|
throw triggerBuildFailed(name, errors);
|
4168
4166
|
}
|
4169
|
-
if (
|
4170
|
-
|
4167
|
+
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
4168
|
+
if (warnings.length) {
|
4169
|
+
warnTriggerBuild(name, warnings);
|
4170
|
+
}
|
4171
4171
|
}
|
4172
4172
|
trigger = buildTrigger(name, ast, this._normalizer);
|
4173
4173
|
this._triggerCache[cacheKey] = trigger;
|
@@ -4575,8 +4575,10 @@ class Animation {
|
|
4575
4575
|
if (errors.length) {
|
4576
4576
|
throw validationFailed(errors);
|
4577
4577
|
}
|
4578
|
-
if (
|
4579
|
-
|
4578
|
+
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
4579
|
+
if (warnings.length) {
|
4580
|
+
warnValidation(warnings);
|
4581
|
+
}
|
4580
4582
|
}
|
4581
4583
|
this._animationAst = ast;
|
4582
4584
|
}
|
@@ -4859,6 +4861,13 @@ class AnimationRendererFactory {
|
|
4859
4861
|
whenRenderingDone() {
|
4860
4862
|
return this.engine.whenRenderingDone();
|
4861
4863
|
}
|
4864
|
+
/**
|
4865
|
+
* Used during HMR to clear any cached data about a component.
|
4866
|
+
* @param componentId ID of the component that is being replaced.
|
4867
|
+
*/
|
4868
|
+
componentReplaced(componentId) {
|
4869
|
+
this.delegate.componentReplaced?.(componentId);
|
4870
|
+
}
|
4862
4871
|
}
|
4863
4872
|
|
4864
4873
|
/**
|