@angular/platform-browser 20.0.0-next.0 → 20.0.0-next.2
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 +17 -26
- package/animations/index.d.ts +33 -44
- package/fesm2022/animations/async.mjs +11 -29
- package/fesm2022/animations/async.mjs.map +1 -1
- package/fesm2022/animations.mjs +24 -42
- package/fesm2022/animations.mjs.map +1 -1
- package/fesm2022/platform-browser.mjs +128 -132
- package/fesm2022/platform-browser.mjs.map +1 -1
- package/fesm2022/testing.mjs +13 -27
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +556 -602
- package/package.json +4 -4
- package/testing/index.d.ts +11 -14
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@angular/platform-browser",
|
3
|
-
"version": "20.0.0-next.
|
3
|
+
"version": "20.0.0-next.2",
|
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": "20.0.0-next.
|
15
|
-
"@angular/core": "20.0.0-next.
|
16
|
-
"@angular/common": "20.0.0-next.
|
14
|
+
"@angular/animations": "20.0.0-next.2",
|
15
|
+
"@angular/core": "20.0.0-next.2",
|
16
|
+
"@angular/common": "20.0.0-next.2"
|
17
17
|
},
|
18
18
|
"peerDependenciesMeta": {
|
19
19
|
"@angular/animations": {
|
package/testing/index.d.ts
CHANGED
@@ -1,31 +1,28 @@
|
|
1
1
|
/**
|
2
|
-
* @license Angular v20.0.0-next.
|
3
|
-
* (c) 2010-
|
2
|
+
* @license Angular v20.0.0-next.2
|
3
|
+
* (c) 2010-2025 Google LLC. https://angular.io/
|
4
4
|
* License: MIT
|
5
5
|
*/
|
6
6
|
|
7
|
-
|
8
7
|
import * as i0 from '@angular/core';
|
9
|
-
import * as i1 from '@angular/platform-browser';
|
10
|
-
import { PlatformRef } from '@angular/core';
|
11
8
|
import { StaticProvider } from '@angular/core';
|
9
|
+
import * as i1 from '@angular/platform-browser';
|
12
10
|
|
11
|
+
/**
|
12
|
+
* Platform for testing
|
13
|
+
*
|
14
|
+
* @publicApi
|
15
|
+
*/
|
16
|
+
declare const platformBrowserTesting: (extraProviders?: StaticProvider[]) => i0.PlatformRef;
|
13
17
|
/**
|
14
18
|
* NgModule for testing.
|
15
19
|
*
|
16
20
|
* @publicApi
|
17
21
|
*/
|
18
|
-
|
22
|
+
declare class BrowserTestingModule {
|
19
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<BrowserTestingModule, never>;
|
20
24
|
static ɵmod: i0.ɵɵNgModuleDeclaration<BrowserTestingModule, never, never, [typeof i1.BrowserModule]>;
|
21
25
|
static ɵinj: i0.ɵɵInjectorDeclaration<BrowserTestingModule>;
|
22
26
|
}
|
23
27
|
|
24
|
-
|
25
|
-
* Platform for testing
|
26
|
-
*
|
27
|
-
* @publicApi
|
28
|
-
*/
|
29
|
-
export declare const platformBrowserTesting: (extraProviders?: StaticProvider[]) => PlatformRef;
|
30
|
-
|
31
|
-
export { }
|
28
|
+
export { BrowserTestingModule, platformBrowserTesting };
|