@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/fesm2020/core.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
  */
@@ -21785,7 +21785,7 @@ class Version {
21785
21785
  /**
21786
21786
  * @publicApi
21787
21787
  */
21788
- const VERSION = new Version('14.0.1');
21788
+ const VERSION = new Version('14.1.0-next.1');
21789
21789
 
21790
21790
  /**
21791
21791
  * @license
@@ -24825,6 +24825,7 @@ function setScopeOnDeclaredComponents(moduleType, ngModule) {
24825
24825
  const declarations = flatten(ngModule.declarations || EMPTY_ARRAY);
24826
24826
  const transitiveScopes = transitiveScopesFor(moduleType);
24827
24827
  declarations.forEach(declaration => {
24828
+ declaration = resolveForwardRef(declaration);
24828
24829
  if (declaration.hasOwnProperty(NG_COMP_DEF)) {
24829
24830
  // A `ɵcmp` field exists - go ahead and patch the component directly.
24830
24831
  const component = declaration;