@angular/platform-browser 21.0.0-next.3 → 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/animations/async/index.d.ts +1 -1
- package/animations/index.d.ts +1 -1
- package/browser.d.d.ts +1 -1
- package/fesm2022/animations/async.mjs +7 -8
- package/fesm2022/animations/async.mjs.map +1 -1
- package/fesm2022/animations.mjs +15 -16
- package/fesm2022/animations.mjs.map +1 -1
- package/fesm2022/browser.mjs +16 -19
- package/fesm2022/browser.mjs.map +1 -1
- package/fesm2022/dom_renderer.mjs +28 -70
- package/fesm2022/dom_renderer.mjs.map +1 -1
- package/fesm2022/platform-browser.mjs +25 -52
- package/fesm2022/platform-browser.mjs.map +1 -1
- package/fesm2022/testing.mjs +9 -13
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +3 -6
- package/package.json +4 -4
- package/testing/index.d.ts +1 -1
package/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
|
*/
|
@@ -335,14 +335,11 @@ declare class DomRendererFactory2 implements RendererFactory2, OnDestroy {
|
|
335
335
|
readonly platformId: Object;
|
336
336
|
readonly ngZone: NgZone;
|
337
337
|
private readonly nonce;
|
338
|
-
private readonly animationDisabled;
|
339
|
-
private readonly maxAnimationTimeout;
|
340
338
|
private readonly tracingService;
|
341
339
|
private readonly rendererByCompId;
|
342
340
|
private readonly defaultRenderer;
|
343
341
|
private readonly platformIsServer;
|
344
|
-
|
345
|
-
constructor(eventManager: EventManager, sharedStylesHost: SharedStylesHost, appId: string, removeStylesOnCompDestroy: boolean, doc: Document, platformId: Object, ngZone: NgZone, nonce: string | null | undefined, animationDisabled: boolean, maxAnimationTimeout: number, tracingService?: _TracingService<_TracingSnapshot> | null);
|
342
|
+
constructor(eventManager: EventManager, sharedStylesHost: SharedStylesHost, appId: string, removeStylesOnCompDestroy: boolean, doc: Document, platformId: Object, ngZone: NgZone, nonce?: string | null, tracingService?: _TracingService<_TracingSnapshot> | null);
|
346
343
|
createRenderer(element: any, type: RendererType2 | null): Renderer2;
|
347
344
|
private getOrCreateRenderer;
|
348
345
|
ngOnDestroy(): void;
|
@@ -351,7 +348,7 @@ declare class DomRendererFactory2 implements RendererFactory2, OnDestroy {
|
|
351
348
|
* @param componentId ID of the component that is being replaced.
|
352
349
|
*/
|
353
350
|
protected componentReplaced(componentId: string): void;
|
354
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DomRendererFactory2, [null, null, null, null, null, null, null, null,
|
351
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DomRendererFactory2, [null, null, null, null, null, null, null, null, { optional: true; }]>;
|
355
352
|
static ɵprov: i0.ɵɵInjectableDeclaration<DomRendererFactory2>;
|
356
353
|
}
|
357
354
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@angular/platform-browser",
|
3
|
-
"version": "21.0.0-next.
|
3
|
+
"version": "21.0.0-next.5",
|
4
4
|
"description": "Angular - library for using Angular in a web browser",
|
5
5
|
"author": "angular",
|
6
6
|
"license": "MIT",
|
@@ -11,9 +11,9 @@
|
|
11
11
|
"tslib": "^2.3.0"
|
12
12
|
},
|
13
13
|
"peerDependencies": {
|
14
|
-
"@angular/animations": "21.0.0-next.
|
15
|
-
"@angular/core": "21.0.0-next.
|
16
|
-
"@angular/common": "21.0.0-next.
|
14
|
+
"@angular/animations": "21.0.0-next.5",
|
15
|
+
"@angular/core": "21.0.0-next.5",
|
16
|
+
"@angular/common": "21.0.0-next.5"
|
17
17
|
},
|
18
18
|
"peerDependenciesMeta": {
|
19
19
|
"@angular/animations": {
|
package/testing/index.d.ts
CHANGED