@angular/platform-browser 22.0.5 → 22.0.7
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 +14 -14
- package/fesm2022/_dom_renderer-chunk.mjs.map +1 -1
- package/fesm2022/animations-async.mjs +4 -4
- package/fesm2022/animations.mjs +12 -12
- package/fesm2022/platform-browser.mjs +59 -76
- package/fesm2022/platform-browser.mjs.map +1 -1
- package/fesm2022/testing.mjs +8 -8
- package/package.json +4 -4
- package/types/_browser-chunk.d.ts +2 -2
- package/types/animations-async.d.ts +1 -1
- package/types/animations.d.ts +1 -1
- package/types/platform-browser.d.ts +5 -10
- package/types/testing.d.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v22.0.
|
|
2
|
+
* @license Angular v22.0.7
|
|
3
3
|
* (c) 2010-2026 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -23,7 +23,7 @@ interface BootstrapContext {
|
|
|
23
23
|
/**
|
|
24
24
|
* Bootstraps an instance of an Angular application and renders a standalone component as the
|
|
25
25
|
* application's root component. More information about standalone components can be found in [this
|
|
26
|
-
* guide](guide/components
|
|
26
|
+
* guide](guide/components).
|
|
27
27
|
*
|
|
28
28
|
* @usageNotes
|
|
29
29
|
* The root component passed into this function **must** be a standalone one
|
package/types/animations.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v22.0.
|
|
2
|
+
* @license Angular v22.0.7
|
|
3
3
|
* (c) 2010-2026 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -56,9 +56,9 @@ type MetaDefinition = {
|
|
|
56
56
|
* @publicApi
|
|
57
57
|
*/
|
|
58
58
|
declare class Meta {
|
|
59
|
-
private _doc;
|
|
60
|
-
private _dom;
|
|
61
|
-
|
|
59
|
+
private readonly _doc;
|
|
60
|
+
private readonly _dom;
|
|
61
|
+
private _cachedHead;
|
|
62
62
|
/**
|
|
63
63
|
* Retrieves or creates a specific `<meta>` tag element in the current HTML document.
|
|
64
64
|
* In searching for an existing tag, Angular attempts to match the `name` or `property` attribute
|
|
@@ -115,11 +115,6 @@ declare class Meta {
|
|
|
115
115
|
*/
|
|
116
116
|
removeTagElement(meta: HTMLMetaElement): void;
|
|
117
117
|
private _getOrCreateElement;
|
|
118
|
-
private _setMetaElementAttributes;
|
|
119
|
-
private _parseSelector;
|
|
120
|
-
private _escapeSelectorValue;
|
|
121
|
-
private _containsAttributes;
|
|
122
|
-
private _getMetaKeyMap;
|
|
123
118
|
static ɵfac: i0.ɵɵFactoryDeclaration<Meta, never>;
|
|
124
119
|
static ɵprov: i0.ɵɵInjectableDeclaration<Meta>;
|
|
125
120
|
}
|
|
@@ -744,7 +739,7 @@ declare const enum RuntimeErrorCode {
|
|
|
744
739
|
ROOT_NODE_NOT_FOUND = -5104,
|
|
745
740
|
UNEXPECTED_SYNTHETIC_PROPERTY = 5105,
|
|
746
741
|
SANITIZATION_UNSAFE_SCRIPT = 5200,
|
|
747
|
-
SANITIZATION_UNSAFE_RESOURCE_URL = 5201,
|
|
742
|
+
SANITIZATION_UNSAFE_RESOURCE_URL = -5201,
|
|
748
743
|
SANITIZATION_UNEXPECTED_CTX = 5202,
|
|
749
744
|
ANIMATION_RENDERER_ASYNC_LOADING_FAILURE = 5300
|
|
750
745
|
}
|
package/types/testing.d.ts
CHANGED