@angular/animations 21.0.0-next.4 → 21.0.0-next.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/animation_driver.d.d.ts +1 -1
- package/animation_player.d.d.ts +1 -1
- package/browser/index.d.ts +2 -2
- 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 +13 -5
- package/fesm2022/browser.mjs.map +1 -1
- package/fesm2022/private_export.mjs +1 -1
- package/fesm2022/util.mjs +1 -1
- package/index.d.ts +1 -1
- package/package.json +2 -2
package/animation_driver.d.d.ts
CHANGED
package/animation_player.d.d.ts
CHANGED
package/browser/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v21.0.0-next.
|
2
|
+
* @license Angular v21.0.0-next.5
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
@@ -103,7 +103,7 @@ declare class BaseAnimationRenderer implements Renderer2 {
|
|
103
103
|
createText(value: string): any;
|
104
104
|
appendChild(parent: any, newChild: any): void;
|
105
105
|
insertBefore(parent: any, newChild: any, refChild: any, isMove?: boolean): void;
|
106
|
-
removeChild(parent: any, oldChild: any, isHostElement?: boolean): void;
|
106
|
+
removeChild(parent: any, oldChild: any, isHostElement?: boolean, requireSynchronousElementRemoval?: boolean): void;
|
107
107
|
selectRootElement(selectorOrNode: any, preserveContent?: boolean): any;
|
108
108
|
parentNode(node: any): any;
|
109
109
|
nextSibling(node: any): any;
|
package/fesm2022/animations.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v21.0.0-next.
|
2
|
+
* @license Angular v21.0.0-next.5
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
@@ -58,10 +58,10 @@ export { AUTO_STYLE, AnimationMetadataType, NoopAnimationPlayer, animate, animat
|
|
58
58
|
* @deprecated 20.2 Use `animate.enter` or `animate.leave` instead. Intent to remove in v23
|
59
59
|
*/
|
60
60
|
class AnimationBuilder {
|
61
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0-next.
|
62
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.0-next.
|
61
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0-next.5", ngImport: i0, type: AnimationBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
62
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.0-next.5", ngImport: i0, type: AnimationBuilder, providedIn: 'root', useFactory: () => inject(BrowserAnimationBuilder) });
|
63
63
|
}
|
64
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.
|
64
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.5", ngImport: i0, type: AnimationBuilder, decorators: [{
|
65
65
|
type: Injectable,
|
66
66
|
args: [{ providedIn: 'root', useFactory: () => inject(BrowserAnimationBuilder) }]
|
67
67
|
}] });
|
@@ -103,10 +103,10 @@ class BrowserAnimationBuilder extends AnimationBuilder {
|
|
103
103
|
issueAnimationCommand(this._renderer, null, id, 'register', [entry]);
|
104
104
|
return new BrowserAnimationFactory(id, this._renderer);
|
105
105
|
}
|
106
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0-next.
|
107
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.0-next.
|
106
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0-next.5", ngImport: i0, type: BrowserAnimationBuilder, deps: [{ token: i0.RendererFactory2 }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
107
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.0-next.5", ngImport: i0, type: BrowserAnimationBuilder, providedIn: 'root' });
|
108
108
|
}
|
109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.
|
109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.5", ngImport: i0, type: BrowserAnimationBuilder, decorators: [{
|
110
110
|
type: Injectable,
|
111
111
|
args: [{ providedIn: 'root' }]
|
112
112
|
}], ctorParameters: () => [{ type: i0.RendererFactory2 }, { type: Document, decorators: [{
|
package/fesm2022/browser.mjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v21.0.0-next.
|
2
|
+
* @license Angular v21.0.0-next.5
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
@@ -55,10 +55,10 @@ class NoopAnimationDriver {
|
|
55
55
|
animate(element, keyframes, duration, delay, easing, previousPlayers = [], scrubberAccessRequested) {
|
56
56
|
return new NoopAnimationPlayer(duration, delay);
|
57
57
|
}
|
58
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0-next.
|
59
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.0-next.
|
58
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0-next.5", ngImport: i0, type: NoopAnimationDriver, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
59
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.0-next.5", ngImport: i0, type: NoopAnimationDriver });
|
60
60
|
}
|
61
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.
|
61
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.5", ngImport: i0, type: NoopAnimationDriver, decorators: [{
|
62
62
|
type: Injectable
|
63
63
|
}] });
|
64
64
|
/**
|
@@ -3948,7 +3948,15 @@ class BaseAnimationRenderer {
|
|
3948
3948
|
// If `isMove` true than we should animate this insert.
|
3949
3949
|
this.engine.onInsert(this.namespaceId, newChild, parent, isMove);
|
3950
3950
|
}
|
3951
|
-
|
3951
|
+
// TODO(thePunderWoman): remove the requireSynchronousElementRemoval flag after the
|
3952
|
+
// animations package has been fully deleted post v23.
|
3953
|
+
removeChild(parent, oldChild, isHostElement, requireSynchronousElementRemoval) {
|
3954
|
+
// Elements using the new `animate.leave` API require synchronous removal and should
|
3955
|
+
// skip the rest of the legacy animation behaviors.
|
3956
|
+
if (requireSynchronousElementRemoval) {
|
3957
|
+
this.delegate.removeChild(parent, oldChild, isHostElement);
|
3958
|
+
return;
|
3959
|
+
}
|
3952
3960
|
// Prior to the changes in #57203, this method wasn't being called at all by `core` if the child
|
3953
3961
|
// doesn't have a parent. There appears to be some animation-specific downstream logic that
|
3954
3962
|
// depends on the null check happening before the animation engine. This check keeps the old
|