@angular/platform-browser 22.0.0-next.10 → 22.0.0-next.12
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/fesm2022/_browser-chunk.mjs +8 -8
- package/fesm2022/_browser-chunk.mjs.map +1 -1
- package/fesm2022/_dom_renderer-chunk.mjs +13 -13
- package/fesm2022/_dom_renderer-chunk.mjs.map +1 -1
- package/fesm2022/animations-async.mjs +4 -4
- package/fesm2022/animations-async.mjs.map +1 -1
- package/fesm2022/animations.mjs +12 -12
- package/fesm2022/animations.mjs.map +1 -1
- package/fesm2022/platform-browser.mjs +40 -40
- package/fesm2022/platform-browser.mjs.map +1 -1
- package/fesm2022/testing.mjs +8 -8
- package/fesm2022/testing.mjs.map +1 -1
- package/package.json +5 -5
- package/types/_browser-chunk.d.ts +1 -1
- package/types/animations-async.d.ts +1 -1
- package/types/animations.d.ts +1 -1
- package/types/platform-browser.d.ts +1 -2
- package/types/testing.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/platform-browser",
|
|
3
|
-
"version": "22.0.0-next.
|
|
3
|
+
"version": "22.0.0-next.12",
|
|
4
4
|
"description": "Angular - library for using Angular in a web browser",
|
|
5
5
|
"author": "angular",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": "^22.22.0 ||
|
|
8
|
+
"node": "^22.22.0 || ^24.13.1 || >=26.0.0"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"tslib": "^2.3.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@angular/animations": "22.0.0-next.
|
|
15
|
-
"@angular/core": "22.0.0-next.
|
|
16
|
-
"@angular/common": "22.0.0-next.
|
|
14
|
+
"@angular/animations": "22.0.0-next.12",
|
|
15
|
+
"@angular/core": "22.0.0-next.12",
|
|
16
|
+
"@angular/common": "22.0.0-next.12"
|
|
17
17
|
},
|
|
18
18
|
"peerDependenciesMeta": {
|
|
19
19
|
"@angular/animations": {
|
package/types/animations.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v22.0.0-next.
|
|
2
|
+
* @license Angular v22.0.0-next.12
|
|
3
3
|
* (c) 2010-2026 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -620,7 +620,6 @@ declare abstract class DomSanitizer implements Sanitizer {
|
|
|
620
620
|
}
|
|
621
621
|
declare class DomSanitizerImpl extends DomSanitizer {
|
|
622
622
|
private _doc;
|
|
623
|
-
constructor(_doc: any);
|
|
624
623
|
sanitize(ctx: SecurityContext, value: SafeValue | string | null): string | null;
|
|
625
624
|
bypassSecurityTrustHtml(value: string): SafeHtml;
|
|
626
625
|
bypassSecurityTrustStyle(value: string): SafeStyle;
|
package/types/testing.d.ts
CHANGED