@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.
@@ -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
  */
@@ -22075,7 +22075,7 @@ class Version {
22075
22075
  /**
22076
22076
  * @publicApi
22077
22077
  */
22078
- const VERSION = new Version('14.0.3');
22078
+ const VERSION = new Version('14.1.0-next.2');
22079
22079
 
22080
22080
  /**
22081
22081
  * @license
@@ -22744,10 +22744,18 @@ class EnvironmentNgModuleRefAdapter extends NgModuleRef$1 {
22744
22744
  /**
22745
22745
  * Create a new environment injector.
22746
22746
  *
22747
+ * Learn more about environment injectors in
22748
+ * [this guide](guide/standalone-components#environment-injectors).
22749
+ *
22750
+ * @param providers An array of providers.
22751
+ * @param parent A parent environment injector.
22752
+ * @param debugName An optional name for this injector instance, which will be used in error
22753
+ * messages.
22754
+ *
22747
22755
  * @publicApi
22748
22756
  * @developerPreview
22749
22757
  */
22750
- function createEnvironmentInjector(providers, parent = null, debugName = null) {
22758
+ function createEnvironmentInjector(providers, parent, debugName = null) {
22751
22759
  const adapter = new EnvironmentNgModuleRefAdapter(providers, parent, debugName);
22752
22760
  return adapter.injector;
22753
22761
  }