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