@angular/core 14.0.1 → 14.0.4
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/application_ref.mjs +31 -35
- package/esm2020/src/change_detection/differs/default_iterable_differ.mjs +3 -5
- package/esm2020/src/change_detection/differs/default_keyvalue_differ.mjs +3 -5
- package/esm2020/src/change_detection/differs/iterable_differs.mjs +3 -5
- package/esm2020/src/change_detection/differs/keyvalue_differs.mjs +2 -5
- package/esm2020/src/di/injector_compatibility.mjs +6 -16
- package/esm2020/src/di/jit/util.mjs +3 -2
- package/esm2020/src/di/reflective_key.mjs +3 -2
- package/esm2020/src/errors.mjs +1 -1
- package/esm2020/src/i18n/locale_data_api.mjs +3 -2
- package/esm2020/src/render3/component.mjs +3 -2
- package/esm2020/src/render3/features/inherit_definition_feature.mjs +3 -5
- package/esm2020/src/render3/interfaces/renderer.mjs +10 -1
- package/esm2020/src/render3/jit/directive.mjs +20 -3
- package/esm2020/src/render3/jit/module.mjs +2 -1
- package/esm2020/src/render3/view_ref.mjs +3 -5
- package/esm2020/src/sanitization/sanitization.mjs +4 -9
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/src/zone/ng_zone.mjs +5 -4
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/esm2020/testing/src/r3_test_bed_compiler.mjs +30 -25
- package/fesm2015/core.mjs +87 -90
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +122 -125
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +87 -90
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +122 -125
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +6 -6
- package/package.json +1 -1
- package/testing/index.d.ts +1 -1
- package/schematics/utils/schematics_prompt.d.ts +0 -17
- package/schematics/utils/schematics_prompt.js +0 -45
package/fesm2015/testing.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.
|
|
2
|
+
* @license Angular v14.0.4
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -863,6 +863,68 @@ const NG_INJ_DEF = getClosureSafeProperty({ ɵinj: getClosureSafeProperty });
|
|
|
863
863
|
const NG_INJECTABLE_DEF = getClosureSafeProperty({ ngInjectableDef: getClosureSafeProperty });
|
|
864
864
|
const NG_INJECTOR_DEF = getClosureSafeProperty({ ngInjectorDef: getClosureSafeProperty });
|
|
865
865
|
|
|
866
|
+
/**
|
|
867
|
+
* @license
|
|
868
|
+
* Copyright Google LLC All Rights Reserved.
|
|
869
|
+
*
|
|
870
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
871
|
+
* found in the LICENSE file at https://angular.io/license
|
|
872
|
+
*/
|
|
873
|
+
/**
|
|
874
|
+
* Base URL for the error details page.
|
|
875
|
+
*
|
|
876
|
+
* Keep the files below in full sync:
|
|
877
|
+
* - packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.ts
|
|
878
|
+
* - packages/core/src/error_details_base_url.ts
|
|
879
|
+
*/
|
|
880
|
+
const ERROR_DETAILS_PAGE_BASE_URL = 'https://angular.io/errors';
|
|
881
|
+
|
|
882
|
+
/**
|
|
883
|
+
* @license
|
|
884
|
+
* Copyright Google LLC All Rights Reserved.
|
|
885
|
+
*
|
|
886
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
887
|
+
* found in the LICENSE file at https://angular.io/license
|
|
888
|
+
*/
|
|
889
|
+
/**
|
|
890
|
+
* Class that represents a runtime error.
|
|
891
|
+
* Formats and outputs the error message in a consistent way.
|
|
892
|
+
*
|
|
893
|
+
* Example:
|
|
894
|
+
* ```
|
|
895
|
+
* throw new RuntimeError(
|
|
896
|
+
* RuntimeErrorCode.INJECTOR_ALREADY_DESTROYED,
|
|
897
|
+
* ngDevMode && 'Injector has already been destroyed.');
|
|
898
|
+
* ```
|
|
899
|
+
*
|
|
900
|
+
* Note: the `message` argument contains a descriptive error message as a string in development
|
|
901
|
+
* mode (when the `ngDevMode` is defined). In production mode (after tree-shaking pass), the
|
|
902
|
+
* `message` argument becomes `false`, thus we account for it in the typings and the runtime logic.
|
|
903
|
+
*/
|
|
904
|
+
class RuntimeError extends Error {
|
|
905
|
+
constructor(code, message) {
|
|
906
|
+
super(formatRuntimeError(code, message));
|
|
907
|
+
this.code = code;
|
|
908
|
+
}
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
* Called to format a runtime error.
|
|
912
|
+
* See additional info on the `message` argument type in the `RuntimeError` class description.
|
|
913
|
+
*/
|
|
914
|
+
function formatRuntimeError(code, message) {
|
|
915
|
+
// Error code might be a negative number, which is a special marker that instructs the logic to
|
|
916
|
+
// generate a link to the error details page on angular.io.
|
|
917
|
+
const fullCode = `NG0${Math.abs(code)}`;
|
|
918
|
+
let errorMessage = `${fullCode}${message ? ': ' + message.trim() : ''}`;
|
|
919
|
+
if (ngDevMode && code < 0) {
|
|
920
|
+
const addPeriodSeparator = !errorMessage.match(/[.,;!?]$/);
|
|
921
|
+
const separator = addPeriodSeparator ? '.' : '';
|
|
922
|
+
errorMessage =
|
|
923
|
+
`${errorMessage}${separator} Find more at ${ERROR_DETAILS_PAGE_BASE_URL}/${fullCode}`;
|
|
924
|
+
}
|
|
925
|
+
return errorMessage;
|
|
926
|
+
}
|
|
927
|
+
|
|
866
928
|
/**
|
|
867
929
|
* @license
|
|
868
930
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -1791,68 +1853,6 @@ function initNgDevMode() {
|
|
|
1791
1853
|
return false;
|
|
1792
1854
|
}
|
|
1793
1855
|
|
|
1794
|
-
/**
|
|
1795
|
-
* @license
|
|
1796
|
-
* Copyright Google LLC All Rights Reserved.
|
|
1797
|
-
*
|
|
1798
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
1799
|
-
* found in the LICENSE file at https://angular.io/license
|
|
1800
|
-
*/
|
|
1801
|
-
/**
|
|
1802
|
-
* Base URL for the error details page.
|
|
1803
|
-
*
|
|
1804
|
-
* Keep the files below in full sync:
|
|
1805
|
-
* - packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.ts
|
|
1806
|
-
* - packages/core/src/error_details_base_url.ts
|
|
1807
|
-
*/
|
|
1808
|
-
const ERROR_DETAILS_PAGE_BASE_URL = 'https://angular.io/errors';
|
|
1809
|
-
|
|
1810
|
-
/**
|
|
1811
|
-
* @license
|
|
1812
|
-
* Copyright Google LLC All Rights Reserved.
|
|
1813
|
-
*
|
|
1814
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
1815
|
-
* found in the LICENSE file at https://angular.io/license
|
|
1816
|
-
*/
|
|
1817
|
-
/**
|
|
1818
|
-
* Class that represents a runtime error.
|
|
1819
|
-
* Formats and outputs the error message in a consistent way.
|
|
1820
|
-
*
|
|
1821
|
-
* Example:
|
|
1822
|
-
* ```
|
|
1823
|
-
* throw new RuntimeError(
|
|
1824
|
-
* RuntimeErrorCode.INJECTOR_ALREADY_DESTROYED,
|
|
1825
|
-
* ngDevMode && 'Injector has already been destroyed.');
|
|
1826
|
-
* ```
|
|
1827
|
-
*
|
|
1828
|
-
* Note: the `message` argument contains a descriptive error message as a string in development
|
|
1829
|
-
* mode (when the `ngDevMode` is defined). In production mode (after tree-shaking pass), the
|
|
1830
|
-
* `message` argument becomes `false`, thus we account for it in the typings and the runtime logic.
|
|
1831
|
-
*/
|
|
1832
|
-
class RuntimeError extends Error {
|
|
1833
|
-
constructor(code, message) {
|
|
1834
|
-
super(formatRuntimeError(code, message));
|
|
1835
|
-
this.code = code;
|
|
1836
|
-
}
|
|
1837
|
-
}
|
|
1838
|
-
/**
|
|
1839
|
-
* Called to format a runtime error.
|
|
1840
|
-
* See additional info on the `message` argument type in the `RuntimeError` class description.
|
|
1841
|
-
*/
|
|
1842
|
-
function formatRuntimeError(code, message) {
|
|
1843
|
-
// Error code might be a negative number, which is a special marker that instructs the logic to
|
|
1844
|
-
// generate a link to the error details page on angular.io.
|
|
1845
|
-
const fullCode = `NG0${Math.abs(code)}`;
|
|
1846
|
-
let errorMessage = `${fullCode}${message ? ': ' + message.trim() : ''}`;
|
|
1847
|
-
if (ngDevMode && code < 0) {
|
|
1848
|
-
const addPeriodSeparator = !errorMessage.match(/[.,;!?]$/);
|
|
1849
|
-
const separator = addPeriodSeparator ? '.' : '';
|
|
1850
|
-
errorMessage =
|
|
1851
|
-
`${errorMessage}${separator} Find more at ${ERROR_DETAILS_PAGE_BASE_URL}/${fullCode}`;
|
|
1852
|
-
}
|
|
1853
|
-
return errorMessage;
|
|
1854
|
-
}
|
|
1855
|
-
|
|
1856
1856
|
/**
|
|
1857
1857
|
* @license
|
|
1858
1858
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -2046,10 +2046,8 @@ function setCurrentInjector(injector) {
|
|
|
2046
2046
|
}
|
|
2047
2047
|
function injectInjectorOnly(token, flags = InjectFlags.Default) {
|
|
2048
2048
|
if (_currentInjector === undefined) {
|
|
2049
|
-
|
|
2050
|
-
`inject() must be called from an injection context (a constructor, a factory function or a field initializer)`
|
|
2051
|
-
'';
|
|
2052
|
-
throw new RuntimeError(-203 /* RuntimeErrorCode.MISSING_INJECTION_CONTEXT */, errorMessage);
|
|
2049
|
+
throw new RuntimeError(-203 /* RuntimeErrorCode.MISSING_INJECTION_CONTEXT */, ngDevMode &&
|
|
2050
|
+
`inject() must be called from an injection context (a constructor, a factory function or a field initializer)`);
|
|
2053
2051
|
}
|
|
2054
2052
|
else if (_currentInjector === null) {
|
|
2055
2053
|
return injectRootLimpMode(token, undefined, flags);
|
|
@@ -2065,22 +2063,17 @@ function ɵɵinject(token, flags = InjectFlags.Default) {
|
|
|
2065
2063
|
* Throws an error indicating that a factory function could not be generated by the compiler for a
|
|
2066
2064
|
* particular class.
|
|
2067
2065
|
*
|
|
2068
|
-
* This instruction allows the actual error message to be optimized away when ngDevMode is turned
|
|
2069
|
-
* off, saving bytes of generated code while still providing a good experience in dev mode.
|
|
2070
|
-
*
|
|
2071
2066
|
* The name of the class is not mentioned here, but will be in the generated factory function name
|
|
2072
2067
|
* and thus in the stack trace.
|
|
2073
2068
|
*
|
|
2074
2069
|
* @codeGenApi
|
|
2075
2070
|
*/
|
|
2076
2071
|
function ɵɵinvalidFactoryDep(index) {
|
|
2077
|
-
|
|
2072
|
+
throw new RuntimeError(202 /* RuntimeErrorCode.INVALID_FACTORY_DEPENDENCY */, ngDevMode &&
|
|
2078
2073
|
`This constructor is not compatible with Angular Dependency Injection because its dependency at index ${index} of the parameter list is invalid.
|
|
2079
2074
|
This can happen if the dependency type is a primitive like a string or if an ancestor of this class is missing an Angular decorator.
|
|
2080
2075
|
|
|
2081
|
-
Please check that 1) the type for the parameter at index ${index} is correct and 2) the correct Angular decorators are defined for this class and its ancestors.`
|
|
2082
|
-
'invalid';
|
|
2083
|
-
throw new Error(msg);
|
|
2076
|
+
Please check that 1) the type for the parameter at index ${index} is correct and 2) the correct Angular decorators are defined for this class and its ancestors.`);
|
|
2084
2077
|
}
|
|
2085
2078
|
/**
|
|
2086
2079
|
* Injects a token from the currently active injector.
|
|
@@ -2155,10 +2148,7 @@ function injectArgs(types) {
|
|
|
2155
2148
|
const arg = resolveForwardRef(types[i]);
|
|
2156
2149
|
if (Array.isArray(arg)) {
|
|
2157
2150
|
if (arg.length === 0) {
|
|
2158
|
-
|
|
2159
|
-
'Arguments array must have arguments.' :
|
|
2160
|
-
'';
|
|
2161
|
-
throw new RuntimeError(900 /* RuntimeErrorCode.INVALID_DIFFER_INPUT */, errorMessage);
|
|
2151
|
+
throw new RuntimeError(900 /* RuntimeErrorCode.INVALID_DIFFER_INPUT */, ngDevMode && 'Arguments array must have arguments.');
|
|
2162
2152
|
}
|
|
2163
2153
|
let type = undefined;
|
|
2164
2154
|
let flags = InjectFlags.Default;
|
|
@@ -3265,8 +3255,17 @@ var RendererStyleFlags3;
|
|
|
3265
3255
|
function isProceduralRenderer(renderer) {
|
|
3266
3256
|
return !!(renderer.listen);
|
|
3267
3257
|
}
|
|
3258
|
+
let renderer3Enabled = false;
|
|
3259
|
+
function enableRenderer3() {
|
|
3260
|
+
renderer3Enabled = true;
|
|
3261
|
+
}
|
|
3268
3262
|
const domRendererFactory3 = {
|
|
3269
3263
|
createRenderer: (hostElement, rendererType) => {
|
|
3264
|
+
if (!renderer3Enabled) {
|
|
3265
|
+
throw new Error(ngDevMode ?
|
|
3266
|
+
`Renderer3 is not supported. This problem is likely caused by some component in the hierarchy was constructed without a correct parent injector.` :
|
|
3267
|
+
'Renderer3 disabled');
|
|
3268
|
+
}
|
|
3270
3269
|
return getDocument();
|
|
3271
3270
|
}
|
|
3272
3271
|
};
|
|
@@ -5481,7 +5480,7 @@ function reflectDependency(dep) {
|
|
|
5481
5480
|
}
|
|
5482
5481
|
else if (param instanceof Attribute) {
|
|
5483
5482
|
if (param.attributeName === undefined) {
|
|
5484
|
-
throw new
|
|
5483
|
+
throw new RuntimeError(204 /* RuntimeErrorCode.INVALID_INJECTION_TOKEN */, ngDevMode && `Attribute name must be defined.`);
|
|
5485
5484
|
}
|
|
5486
5485
|
meta.attribute = param.attributeName;
|
|
5487
5486
|
}
|
|
@@ -6489,10 +6488,8 @@ function ɵɵsanitizeResourceUrl(unsafeResourceUrl) {
|
|
|
6489
6488
|
if (allowSanitizationBypassAndThrow(unsafeResourceUrl, "ResourceURL" /* BypassType.ResourceUrl */)) {
|
|
6490
6489
|
return trustedScriptURLFromStringBypass(unwrapSafeValue(unsafeResourceUrl));
|
|
6491
6490
|
}
|
|
6492
|
-
|
|
6493
|
-
'unsafe value used in a resource URL context (see https://g.co/ng/security#xss)'
|
|
6494
|
-
'';
|
|
6495
|
-
throw new RuntimeError(904 /* RuntimeErrorCode.UNSAFE_VALUE_IN_RESOURCE_URL */, errorMessage);
|
|
6491
|
+
throw new RuntimeError(904 /* RuntimeErrorCode.UNSAFE_VALUE_IN_RESOURCE_URL */, ngDevMode &&
|
|
6492
|
+
'unsafe value used in a resource URL context (see https://g.co/ng/security#xss)');
|
|
6496
6493
|
}
|
|
6497
6494
|
/**
|
|
6498
6495
|
* A `script` sanitizer which only lets trusted javascript through.
|
|
@@ -6514,10 +6511,7 @@ function ɵɵsanitizeScript(unsafeScript) {
|
|
|
6514
6511
|
if (allowSanitizationBypassAndThrow(unsafeScript, "Script" /* BypassType.Script */)) {
|
|
6515
6512
|
return trustedScriptFromStringBypass(unwrapSafeValue(unsafeScript));
|
|
6516
6513
|
}
|
|
6517
|
-
|
|
6518
|
-
'unsafe value used in a script context' :
|
|
6519
|
-
'';
|
|
6520
|
-
throw new RuntimeError(905 /* RuntimeErrorCode.UNSAFE_VALUE_IN_SCRIPT */, errorMessage);
|
|
6514
|
+
throw new RuntimeError(905 /* RuntimeErrorCode.UNSAFE_VALUE_IN_SCRIPT */, ngDevMode && 'unsafe value used in a script context');
|
|
6521
6515
|
}
|
|
6522
6516
|
/**
|
|
6523
6517
|
* A template tag function for promoting the associated constant literal to a
|
|
@@ -10129,7 +10123,7 @@ class ReflectiveKey {
|
|
|
10129
10123
|
this.token = token;
|
|
10130
10124
|
this.id = id;
|
|
10131
10125
|
if (!token) {
|
|
10132
|
-
throw new
|
|
10126
|
+
throw new RuntimeError(208 /* RuntimeErrorCode.MISSING_INJECTION_TOKEN */, ngDevMode && 'Token must be defined!');
|
|
10133
10127
|
}
|
|
10134
10128
|
this.displayName = stringify(this.token);
|
|
10135
10129
|
}
|
|
@@ -14200,6 +14194,7 @@ const NULL_INJECTOR = {
|
|
|
14200
14194
|
function renderComponent(componentType /* Type as workaround for: Microsoft/TypeScript/issues/4881 */, opts = {}) {
|
|
14201
14195
|
ngDevMode && publishDefaultGlobalUtils();
|
|
14202
14196
|
ngDevMode && assertComponentType(componentType);
|
|
14197
|
+
enableRenderer3();
|
|
14203
14198
|
const rendererFactory = opts.rendererFactory || domRendererFactory3;
|
|
14204
14199
|
const sanitizer = opts.sanitizer || null;
|
|
14205
14200
|
const componentDef = getComponentDef$1(componentType);
|
|
@@ -14387,10 +14382,8 @@ function ɵɵInheritDefinitionFeature(definition) {
|
|
|
14387
14382
|
}
|
|
14388
14383
|
else {
|
|
14389
14384
|
if (superType.ɵcmp) {
|
|
14390
|
-
|
|
14391
|
-
`Directives cannot inherit Components. Directive ${stringifyForError(definition.type)} is attempting to extend component ${stringifyForError(superType)}`
|
|
14392
|
-
'';
|
|
14393
|
-
throw new RuntimeError(903 /* RuntimeErrorCode.INVALID_INHERITANCE */, errorMessage);
|
|
14385
|
+
throw new RuntimeError(903 /* RuntimeErrorCode.INVALID_INHERITANCE */, ngDevMode &&
|
|
14386
|
+
`Directives cannot inherit Components. Directive ${stringifyForError(definition.type)} is attempting to extend component ${stringifyForError(superType)}`);
|
|
14394
14387
|
}
|
|
14395
14388
|
// Don't use getComponentDef/getDirectiveDef. This logic relies on inheritance.
|
|
14396
14389
|
superDef = superType.ɵdir;
|
|
@@ -19511,7 +19504,7 @@ function findLocaleData(locale) {
|
|
|
19511
19504
|
if (parentLocale === 'en') {
|
|
19512
19505
|
return localeEn;
|
|
19513
19506
|
}
|
|
19514
|
-
throw new
|
|
19507
|
+
throw new RuntimeError(701 /* RuntimeErrorCode.MISSING_LOCALE_DATA */, ngDevMode && `Missing locale data for the locale "${locale}".`);
|
|
19515
19508
|
}
|
|
19516
19509
|
/**
|
|
19517
19510
|
* Retrieves the default currency code for the given locale.
|
|
@@ -22087,7 +22080,7 @@ class Version {
|
|
|
22087
22080
|
/**
|
|
22088
22081
|
* @publicApi
|
|
22089
22082
|
*/
|
|
22090
|
-
const VERSION = new Version('14.0.
|
|
22083
|
+
const VERSION = new Version('14.0.4');
|
|
22091
22084
|
|
|
22092
22085
|
/**
|
|
22093
22086
|
* @license
|
|
@@ -22425,8 +22418,7 @@ class ViewRef {
|
|
|
22425
22418
|
}
|
|
22426
22419
|
attachToViewContainerRef() {
|
|
22427
22420
|
if (this._appRef) {
|
|
22428
|
-
|
|
22429
|
-
throw new RuntimeError(902 /* RuntimeErrorCode.VIEW_ALREADY_ATTACHED */, errorMessage);
|
|
22421
|
+
throw new RuntimeError(902 /* RuntimeErrorCode.VIEW_ALREADY_ATTACHED */, ngDevMode && 'This view is already attached directly to the ApplicationRef!');
|
|
22430
22422
|
}
|
|
22431
22423
|
this._attachedToViewContainer = true;
|
|
22432
22424
|
}
|
|
@@ -22436,8 +22428,7 @@ class ViewRef {
|
|
|
22436
22428
|
}
|
|
22437
22429
|
attachToAppRef(appRef) {
|
|
22438
22430
|
if (this._attachedToViewContainer) {
|
|
22439
|
-
|
|
22440
|
-
throw new RuntimeError(902 /* RuntimeErrorCode.VIEW_ALREADY_ATTACHED */, errorMessage);
|
|
22431
|
+
throw new RuntimeError(902 /* RuntimeErrorCode.VIEW_ALREADY_ATTACHED */, ngDevMode && 'This view is already attached to a ViewContainer!');
|
|
22441
22432
|
}
|
|
22442
22433
|
this._appRef = appRef;
|
|
22443
22434
|
}
|
|
@@ -24716,7 +24707,7 @@ function patchModuleCompilation() {
|
|
|
24716
24707
|
function isModuleWithProviders$1(value) {
|
|
24717
24708
|
return value.ngModule !== undefined;
|
|
24718
24709
|
}
|
|
24719
|
-
function isNgModule(value) {
|
|
24710
|
+
function isNgModule$1(value) {
|
|
24720
24711
|
return !!getNgModuleDef(value);
|
|
24721
24712
|
}
|
|
24722
24713
|
|
|
@@ -25105,6 +25096,7 @@ function setScopeOnDeclaredComponents(moduleType, ngModule) {
|
|
|
25105
25096
|
const declarations = flatten$1(ngModule.declarations || EMPTY_ARRAY);
|
|
25106
25097
|
const transitiveScopes = transitiveScopesFor(moduleType);
|
|
25107
25098
|
declarations.forEach(declaration => {
|
|
25099
|
+
declaration = resolveForwardRef(declaration);
|
|
25108
25100
|
if (declaration.hasOwnProperty(NG_COMP_DEF)) {
|
|
25109
25101
|
// A `ɵcmp` field exists - go ahead and patch the component directly.
|
|
25110
25102
|
const component = declaration;
|
|
@@ -25138,7 +25130,7 @@ function patchComponentDefWithScope(componentDef, transitiveScopes) {
|
|
|
25138
25130
|
* (either a NgModule or a standalone component / directive / pipe).
|
|
25139
25131
|
*/
|
|
25140
25132
|
function transitiveScopesFor(type) {
|
|
25141
|
-
if (isNgModule(type)) {
|
|
25133
|
+
if (isNgModule$1(type)) {
|
|
25142
25134
|
return transitiveScopesForNgModule(type);
|
|
25143
25135
|
}
|
|
25144
25136
|
else if (isStandalone(type)) {
|
|
@@ -25222,7 +25214,7 @@ function transitiveScopesForNgModule(moduleType) {
|
|
|
25222
25214
|
const exportedType = exported;
|
|
25223
25215
|
// Either the type is a module, a pipe, or a component/directive (which may not have a
|
|
25224
25216
|
// ɵcmp as it might be compiled asynchronously).
|
|
25225
|
-
if (isNgModule(exportedType)) {
|
|
25217
|
+
if (isNgModule$1(exportedType)) {
|
|
25226
25218
|
// When this module exports another, the exported module's exported directives and pipes are
|
|
25227
25219
|
// added to both the compilation and exported scopes of this module.
|
|
25228
25220
|
const exportedScope = transitiveScopesFor(exportedType);
|
|
@@ -25522,7 +25514,7 @@ class R3TestBedCompiler {
|
|
|
25522
25514
|
// module's provider list.
|
|
25523
25515
|
this.providerOverridesByModule = new Map();
|
|
25524
25516
|
this.providerOverridesByToken = new Map();
|
|
25525
|
-
this.
|
|
25517
|
+
this.scopesWithOverriddenProviders = new Set();
|
|
25526
25518
|
this.testModuleRef = null;
|
|
25527
25519
|
class DynamicTestModule {
|
|
25528
25520
|
}
|
|
@@ -25693,7 +25685,7 @@ class R3TestBedCompiler {
|
|
|
25693
25685
|
this.queueTypesFromModulesArray([moduleType]);
|
|
25694
25686
|
this.compileTypesSync();
|
|
25695
25687
|
this.applyProviderOverrides();
|
|
25696
|
-
this.
|
|
25688
|
+
this.applyProviderOverridesInScope(moduleType);
|
|
25697
25689
|
this.applyTransitiveScopes();
|
|
25698
25690
|
}
|
|
25699
25691
|
/**
|
|
@@ -25704,7 +25696,7 @@ class R3TestBedCompiler {
|
|
|
25704
25696
|
this.queueTypesFromModulesArray([moduleType]);
|
|
25705
25697
|
yield this.compileComponents();
|
|
25706
25698
|
this.applyProviderOverrides();
|
|
25707
|
-
this.
|
|
25699
|
+
this.applyProviderOverridesInScope(moduleType);
|
|
25708
25700
|
this.applyTransitiveScopes();
|
|
25709
25701
|
});
|
|
25710
25702
|
}
|
|
@@ -25806,51 +25798,53 @@ class R3TestBedCompiler {
|
|
|
25806
25798
|
this.seenComponents.clear();
|
|
25807
25799
|
this.seenDirectives.clear();
|
|
25808
25800
|
}
|
|
25809
|
-
|
|
25801
|
+
/**
|
|
25802
|
+
* Applies provider overrides to a given type (either an NgModule or a standalone component)
|
|
25803
|
+
* and all imported NgModules and standalone components recursively.
|
|
25804
|
+
*/
|
|
25805
|
+
applyProviderOverridesInScope(type) {
|
|
25810
25806
|
var _a;
|
|
25811
|
-
|
|
25807
|
+
const hasScope = isStandaloneComponent(type) || isNgModule(type);
|
|
25808
|
+
// The function can be re-entered recursively while inspecting dependencies
|
|
25809
|
+
// of an NgModule or a standalone component. Exit early if we come across a
|
|
25810
|
+
// type that can not have a scope (directive or pipe) or the type is already
|
|
25811
|
+
// processed earlier.
|
|
25812
|
+
if (!hasScope || this.scopesWithOverriddenProviders.has(type)) {
|
|
25812
25813
|
return;
|
|
25813
25814
|
}
|
|
25814
|
-
this.
|
|
25815
|
+
this.scopesWithOverriddenProviders.add(type);
|
|
25815
25816
|
// NOTE: the line below triggers JIT compilation of the module injector,
|
|
25816
25817
|
// which also invokes verification of the NgModule semantics, which produces
|
|
25817
25818
|
// detailed error messages. The fact that the code relies on this line being
|
|
25818
25819
|
// present here is suspicious and should be refactored in a way that the line
|
|
25819
25820
|
// below can be moved (for ex. after an early exit check below).
|
|
25820
|
-
const injectorDef =
|
|
25821
|
+
const injectorDef = type[ɵNG_INJ_DEF];
|
|
25821
25822
|
// No provider overrides, exit early.
|
|
25822
25823
|
if (this.providerOverridesByToken.size === 0)
|
|
25823
25824
|
return;
|
|
25824
|
-
if (isStandaloneComponent(
|
|
25825
|
+
if (isStandaloneComponent(type)) {
|
|
25825
25826
|
// Visit all component dependencies and override providers there.
|
|
25826
|
-
const def = getComponentDef(
|
|
25827
|
+
const def = getComponentDef(type);
|
|
25827
25828
|
const dependencies = maybeUnwrapFn((_a = def.dependencies) !== null && _a !== void 0 ? _a : []);
|
|
25828
25829
|
for (const dependency of dependencies) {
|
|
25829
|
-
|
|
25830
|
-
// when a dependency is a standalone component or an NgModule.
|
|
25831
|
-
// In AOT, the `dependencies` might also contain regular (NgModule-based)
|
|
25832
|
-
// Component, Directive and Pipes. Skip them here, they are handled in a
|
|
25833
|
-
// different location (in the `configureTestingModule` function).
|
|
25834
|
-
if (isStandaloneComponent(dependency) || hasNgModuleDef(dependency)) {
|
|
25835
|
-
this.applyProviderOverridesToModule(dependency);
|
|
25836
|
-
}
|
|
25830
|
+
this.applyProviderOverridesInScope(dependency);
|
|
25837
25831
|
}
|
|
25838
25832
|
}
|
|
25839
25833
|
else {
|
|
25840
25834
|
const providers = [
|
|
25841
25835
|
...injectorDef.providers,
|
|
25842
|
-
...(this.providerOverridesByModule.get(
|
|
25836
|
+
...(this.providerOverridesByModule.get(type) || [])
|
|
25843
25837
|
];
|
|
25844
25838
|
if (this.hasProviderOverrides(providers)) {
|
|
25845
|
-
this.maybeStoreNgDef(ɵNG_INJ_DEF,
|
|
25846
|
-
this.storeFieldOfDefOnType(
|
|
25839
|
+
this.maybeStoreNgDef(ɵNG_INJ_DEF, type);
|
|
25840
|
+
this.storeFieldOfDefOnType(type, ɵNG_INJ_DEF, 'providers');
|
|
25847
25841
|
injectorDef.providers = this.getOverriddenProviders(providers);
|
|
25848
25842
|
}
|
|
25849
25843
|
// Apply provider overrides to imported modules recursively
|
|
25850
|
-
const moduleDef =
|
|
25844
|
+
const moduleDef = type[ɵNG_MOD_DEF];
|
|
25851
25845
|
const imports = maybeUnwrapFn(moduleDef.imports);
|
|
25852
25846
|
for (const importedModule of imports) {
|
|
25853
|
-
this.
|
|
25847
|
+
this.applyProviderOverridesInScope(importedModule);
|
|
25854
25848
|
}
|
|
25855
25849
|
// Also override the providers on any ModuleWithProviders imports since those don't appear in
|
|
25856
25850
|
// the moduleDef.
|
|
@@ -26088,7 +26082,7 @@ class R3TestBedCompiler {
|
|
|
26088
26082
|
});
|
|
26089
26083
|
});
|
|
26090
26084
|
this.initialNgDefs.clear();
|
|
26091
|
-
this.
|
|
26085
|
+
this.scopesWithOverriddenProviders.clear();
|
|
26092
26086
|
this.restoreComponentResolutionQueue();
|
|
26093
26087
|
// Restore the locale ID to the default value, this shouldn't be necessary but we never know
|
|
26094
26088
|
ɵsetLocaleId(ɵDEFAULT_LOCALE_ID);
|
|
@@ -26115,7 +26109,7 @@ class R3TestBedCompiler {
|
|
|
26115
26109
|
providers,
|
|
26116
26110
|
}, /* allowDuplicateDeclarationsInRoot */ true);
|
|
26117
26111
|
// clang-format on
|
|
26118
|
-
this.
|
|
26112
|
+
this.applyProviderOverridesInScope(this.testModuleType);
|
|
26119
26113
|
}
|
|
26120
26114
|
get injector() {
|
|
26121
26115
|
if (this._injector !== null) {
|
|
@@ -26216,6 +26210,9 @@ function getComponentDef(value) {
|
|
|
26216
26210
|
function hasNgModuleDef(value) {
|
|
26217
26211
|
return value.hasOwnProperty('ɵmod');
|
|
26218
26212
|
}
|
|
26213
|
+
function isNgModule(value) {
|
|
26214
|
+
return hasNgModuleDef(value);
|
|
26215
|
+
}
|
|
26219
26216
|
function maybeUnwrapFn(maybeFn) {
|
|
26220
26217
|
return maybeFn instanceof Function ? maybeFn() : maybeFn;
|
|
26221
26218
|
}
|