@angular/platform-browser 19.2.1 → 19.2.3

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": "19.2.1",
3
+ "version": "19.2.3",
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": "19.2.1",
15
- "@angular/core": "19.2.1",
16
- "@angular/common": "19.2.1"
14
+ "@angular/animations": "19.2.3",
15
+ "@angular/core": "19.2.3",
16
+ "@angular/common": "19.2.3"
17
17
  },
18
18
  "peerDependenciesMeta": {
19
19
  "@angular/animations": {
@@ -1,31 +1,42 @@
1
1
  /**
2
- * @license Angular v19.2.1
2
+ * @license Angular v19.2.3
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';
10
+ import { TestComponentRenderer } from '@angular/core/testing';
12
11
 
12
+ /**
13
+ * Platform for testing
14
+ *
15
+ * @publicApi
16
+ */
17
+ declare const platformBrowserTesting: (extraProviders?: StaticProvider[]) => i0.PlatformRef;
13
18
  /**
14
19
  * NgModule for testing.
15
20
  *
16
21
  * @publicApi
17
22
  */
18
- export declare class BrowserTestingModule {
23
+ declare class BrowserTestingModule {
19
24
  static ɵfac: i0.ɵɵFactoryDeclaration<BrowserTestingModule, never>;
20
25
  static ɵmod: i0.ɵɵNgModuleDeclaration<BrowserTestingModule, never, never, [typeof i1.BrowserModule]>;
21
26
  static ɵinj: i0.ɵɵInjectorDeclaration<BrowserTestingModule>;
22
27
  }
23
28
 
24
29
  /**
25
- * Platform for testing
26
- *
27
- * @publicApi
30
+ * A DOM based implementation of the TestComponentRenderer.
28
31
  */
29
- export declare const platformBrowserTesting: (extraProviders?: StaticProvider[]) => PlatformRef;
32
+ declare class DOMTestComponentRenderer extends TestComponentRenderer {
33
+ private _doc;
34
+ constructor(_doc: any);
35
+ insertRootElement(rootElId: string): void;
36
+ removeAllRootElements(): void;
37
+ private removeAllRootElementsImpl;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<DOMTestComponentRenderer, never>;
39
+ static ɵprov: i0.ɵɵInjectableDeclaration<DOMTestComponentRenderer>;
40
+ }
30
41
 
31
- export { }
42
+ export { BrowserTestingModule, platformBrowserTesting, DOMTestComponentRenderer as ɵDOMTestComponentRenderer };