@angular/core 14.2.1 → 14.2.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/esm2020/src/render3/component_ref.mjs +15 -17
- package/esm2020/src/render3/di.mjs +3 -3
- package/esm2020/src/render3/i18n/i18n_parse.mjs +3 -6
- package/esm2020/src/render3/instructions/element_validation.mjs +2 -2
- package/esm2020/src/render3/instructions/shared.mjs +16 -69
- package/esm2020/src/render3/interfaces/injector.mjs +1 -1
- package/esm2020/src/render3/interfaces/view.mjs +1 -1
- package/esm2020/src/render3/util/discovery_utils.mjs +2 -2
- package/esm2020/src/render3/util/view_traversal_utils.mjs +5 -5
- package/esm2020/src/render3/view_ref.mjs +10 -4
- package/esm2020/src/sanitization/html_sanitizer.mjs +4 -8
- package/esm2020/src/sanitization/url_sanitizer.mjs +1 -5
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/fesm2015/core.mjs +43 -103
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +43 -103
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +43 -103
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +43 -103
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +1 -1
- package/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.2.
|
|
2
|
+
* @license Angular v14.2.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -4741,8 +4741,8 @@ declare interface LView<T = unknown> extends Array<any> {
|
|
|
4741
4741
|
/**
|
|
4742
4742
|
* - For dynamic views, this is the context with which to render the template (e.g.
|
|
4743
4743
|
* `NgForContext`), or `{}` if not defined explicitly.
|
|
4744
|
-
* - For root view of the root component
|
|
4745
|
-
* - For
|
|
4744
|
+
* - For root view of the root component it's a reference to the component instance itself.
|
|
4745
|
+
* - For components, the context is a reference to the component instance itself.
|
|
4746
4746
|
* - For inline views, the context is null.
|
|
4747
4747
|
*/
|
|
4748
4748
|
[CONTEXT]: T;
|
|
@@ -10752,7 +10752,7 @@ export declare class ɵReflectionCapabilities implements PlatformReflectionCapab
|
|
|
10752
10752
|
export declare function ɵregisterLocaleData(data: any, localeId?: string | any, extraData?: any): void;
|
|
10753
10753
|
|
|
10754
10754
|
/**
|
|
10755
|
-
*
|
|
10755
|
+
* ComponentFactory interface implementation.
|
|
10756
10756
|
*/
|
|
10757
10757
|
export declare class ɵRender3ComponentFactory<T> extends ComponentFactory<T> {
|
|
10758
10758
|
private componentDef;
|
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED