@angular/platform-browser 20.0.0-next.1 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/platform-browser",
3
- "version": "20.0.0-next.1",
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.1",
15
- "@angular/core": "20.0.0-next.1",
16
- "@angular/common": "20.0.0-next.1"
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": {
@@ -1,31 +1,28 @@
1
1
  /**
2
- * @license Angular v20.0.0-next.1
2
+ * @license Angular v20.0.0-next.2
3
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
- export declare class BrowserTestingModule {
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 };