@angular/core 14.0.3 → 14.1.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/fesm2020/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v14.0.3
2
+ * @license Angular v14.1.0-next.2
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -21773,7 +21773,7 @@ class Version {
21773
21773
  /**
21774
21774
  * @publicApi
21775
21775
  */
21776
- const VERSION = new Version('14.0.3');
21776
+ const VERSION = new Version('14.1.0-next.2');
21777
21777
 
21778
21778
  /**
21779
21779
  * @license
@@ -22442,10 +22442,18 @@ class EnvironmentNgModuleRefAdapter extends NgModuleRef$1 {
22442
22442
  /**
22443
22443
  * Create a new environment injector.
22444
22444
  *
22445
+ * Learn more about environment injectors in
22446
+ * [this guide](guide/standalone-components#environment-injectors).
22447
+ *
22448
+ * @param providers An array of providers.
22449
+ * @param parent A parent environment injector.
22450
+ * @param debugName An optional name for this injector instance, which will be used in error
22451
+ * messages.
22452
+ *
22445
22453
  * @publicApi
22446
22454
  * @developerPreview
22447
22455
  */
22448
- function createEnvironmentInjector(providers, parent = null, debugName = null) {
22456
+ function createEnvironmentInjector(providers, parent, debugName = null) {
22449
22457
  const adapter = new EnvironmentNgModuleRefAdapter(providers, parent, debugName);
22450
22458
  return adapter.injector;
22451
22459
  }