@angular/core 14.0.1 → 14.1.0-next.1
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/jit/module.mjs +2 -1
- 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 +3 -2
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +3 -2
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +3 -2
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +3 -2
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/testing/index.d.ts +1 -1
package/fesm2020/testing.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.1
|
|
2
|
+
* @license Angular v14.1.0-next.1
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -22085,7 +22085,7 @@ class Version {
|
|
|
22085
22085
|
/**
|
|
22086
22086
|
* @publicApi
|
|
22087
22087
|
*/
|
|
22088
|
-
const VERSION = new Version('14.0.1');
|
|
22088
|
+
const VERSION = new Version('14.1.0-next.1');
|
|
22089
22089
|
|
|
22090
22090
|
/**
|
|
22091
22091
|
* @license
|
|
@@ -25102,6 +25102,7 @@ function setScopeOnDeclaredComponents(moduleType, ngModule) {
|
|
|
25102
25102
|
const declarations = flatten$1(ngModule.declarations || EMPTY_ARRAY);
|
|
25103
25103
|
const transitiveScopes = transitiveScopesFor(moduleType);
|
|
25104
25104
|
declarations.forEach(declaration => {
|
|
25105
|
+
declaration = resolveForwardRef(declaration);
|
|
25105
25106
|
if (declaration.hasOwnProperty(NG_COMP_DEF)) {
|
|
25106
25107
|
// A `ɵcmp` field exists - go ahead and patch the component directly.
|
|
25107
25108
|
const component = declaration;
|