@angular/core 14.0.6 → 14.0.7

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v14.0.6
2
+ * @license Angular v14.0.7
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -6979,6 +6979,7 @@ declare const enum RuntimeErrorCode {
6979
6979
  INJECTOR_ALREADY_DESTROYED = 205,
6980
6980
  PROVIDER_IN_WRONG_CONTEXT = 207,
6981
6981
  MISSING_INJECTION_TOKEN = 208,
6982
+ INVALID_MULTI_PROVIDER = 209,
6982
6983
  MULTIPLE_COMPONENTS_MATCH = -300,
6983
6984
  EXPORT_NOT_FOUND = -301,
6984
6985
  PIPE_NOT_FOUND = -302,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/core",
3
- "version": "14.0.6",
3
+ "version": "14.0.7",
4
4
  "description": "Angular - the core framework",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v14.0.6
2
+ * @license Angular v14.0.7
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -237,7 +237,7 @@ export declare type MetadataOverride<T> = {
237
237
  * @publicApi
238
238
  */
239
239
  export declare interface ModuleTeardownOptions {
240
- /** Whether the test module should be destroyed after every test. */
240
+ /** Whether the test module should be destroyed after every test. Defaults to `true`. */
241
241
  destroyAfterEach: boolean;
242
242
  /** Whether errors during test module destruction should be re-thrown. Defaults to `true`. */
243
243
  rethrowErrors?: boolean;