@angular/core 15.0.0-next.1 → 15.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/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 v15.0.0-next.
|
|
2
|
+
* @license Angular v15.0.0-next.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -4748,8 +4748,8 @@ declare interface LView<T = unknown> extends Array<any> {
|
|
|
4748
4748
|
/**
|
|
4749
4749
|
* - For dynamic views, this is the context with which to render the template (e.g.
|
|
4750
4750
|
* `NgForContext`), or `{}` if not defined explicitly.
|
|
4751
|
-
* - For root view of the root component
|
|
4752
|
-
* - For
|
|
4751
|
+
* - For root view of the root component it's a reference to the component instance itself.
|
|
4752
|
+
* - For components, the context is a reference to the component instance itself.
|
|
4753
4753
|
* - For inline views, the context is null.
|
|
4754
4754
|
*/
|
|
4755
4755
|
[CONTEXT]: T;
|
|
@@ -10771,7 +10771,7 @@ export declare class ɵReflectionCapabilities implements PlatformReflectionCapab
|
|
|
10771
10771
|
export declare function ɵregisterLocaleData(data: any, localeId?: string | any, extraData?: any): void;
|
|
10772
10772
|
|
|
10773
10773
|
/**
|
|
10774
|
-
*
|
|
10774
|
+
* ComponentFactory interface implementation.
|
|
10775
10775
|
*/
|
|
10776
10776
|
export declare class ɵRender3ComponentFactory<T> extends ComponentFactory<T> {
|
|
10777
10777
|
private componentDef;
|
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED