@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/esm2020/src/di/r3_injector.mjs +7 -1
- package/esm2020/src/errors.mjs +1 -1
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/esm2020/testing/src/test_bed_common.mjs +1 -1
- package/fesm2015/core.mjs +8 -2
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +8 -2
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +8 -2
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +8 -2
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
- package/testing/index.d.ts +2 -2
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.
|
|
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
package/testing/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.
|
|
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;
|