@angular/core 14.0.0-next.5 → 14.0.0-next.8
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/core.d.ts +32 -33
- package/esm2020/src/core_private_export.mjs +1 -1
- package/esm2020/src/core_render3_private_export.mjs +3 -3
- package/esm2020/src/debug/debug_node.mjs +1 -1
- package/esm2020/src/di/injector_compatibility.mjs +2 -2
- package/esm2020/src/di/reflective_provider.mjs +4 -4
- package/esm2020/src/i18n/tokens.mjs +5 -5
- package/esm2020/src/linker/ng_module_factory_loader.mjs +2 -2
- package/esm2020/src/linker/ng_module_registration.mjs +55 -0
- package/esm2020/src/reflection/platform_reflection_capabilities.mjs +1 -1
- package/esm2020/src/reflection/reflection_capabilities.mjs +1 -37
- package/esm2020/src/render3/i18n/i18n_parse.mjs +3 -3
- package/esm2020/src/render3/index.mjs +2 -2
- package/esm2020/src/render3/instructions/lview_debug.mjs +2 -2
- package/esm2020/src/render3/interfaces/renderer_dom.mjs +1 -1
- package/esm2020/src/render3/jit/environment.mjs +4 -1
- package/esm2020/src/render3/jit/module.mjs +7 -1
- package/esm2020/src/render3/jit/module_patch.mjs +11 -0
- package/esm2020/src/render3/ng_module_ref.mjs +1 -29
- package/esm2020/src/render3/node_manipulation.mjs +9 -3
- package/esm2020/src/render3/state.mjs +14 -2
- package/esm2020/src/render3/styling/styling_parser.mjs +2 -2
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/fake_async.mjs +3 -2
- 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.mjs +8 -2
- package/fesm2015/core.mjs +106 -204
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +10 -3
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +106 -204
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +10 -3
- package/fesm2020/testing.mjs.map +1 -1
- package/package.json +2 -2
- package/schematics/migrations/typed-forms/index.d.ts +1 -5
- package/schematics/migrations/typed-forms/index.js +12 -34
- package/schematics/migrations/typed-forms/util.d.ts +8 -10
- package/schematics/migrations/typed-forms/util.js +99 -47
- package/schematics/utils/import_manager.js +3 -15
- package/schematics/utils/typescript/imports.js +2 -7
- package/schematics/utils/typescript/parse_tsconfig.js +6 -2
- package/schematics/utils/typescript/symbol.js +4 -3
- package/testing/testing.d.ts +3 -2
- package/esm2020/src/di/util.mjs +0 -51
- package/esm2020/src/linker/ng_module_factory_registration.mjs +0 -59
- package/esm2020/src/reflection/reflection.mjs +0 -16
- package/esm2020/src/reflection/reflector.mjs +0 -56
- package/esm2020/src/reflection/types.mjs +0 -9
package/fesm2015/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.0-next.
|
|
2
|
+
* @license Angular v14.0.0-next.8
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1939,6 +1939,16 @@ function ɵɵrestoreView(viewToRestore) {
|
|
|
1939
1939
|
instructionState.lFrame.contextLView = viewToRestore;
|
|
1940
1940
|
return viewToRestore[CONTEXT];
|
|
1941
1941
|
}
|
|
1942
|
+
/**
|
|
1943
|
+
* Clears the view set in `ɵɵrestoreView` from memory. Returns the passed in
|
|
1944
|
+
* value so that it can be used as a return value of an instruction.
|
|
1945
|
+
*
|
|
1946
|
+
* @codeGenApi
|
|
1947
|
+
*/
|
|
1948
|
+
function ɵɵresetView(value) {
|
|
1949
|
+
instructionState.lFrame.contextLView = null;
|
|
1950
|
+
return value;
|
|
1951
|
+
}
|
|
1942
1952
|
function getCurrentTNode() {
|
|
1943
1953
|
let currentTNode = getCurrentTNodePlaceholderOk();
|
|
1944
1954
|
while (currentTNode !== null && currentTNode.type === 64 /* Placeholder */) {
|
|
@@ -1970,7 +1980,9 @@ function setCurrentTNodeAsParent() {
|
|
|
1970
1980
|
instructionState.lFrame.isParent = true;
|
|
1971
1981
|
}
|
|
1972
1982
|
function getContextLView() {
|
|
1973
|
-
|
|
1983
|
+
const contextLView = instructionState.lFrame.contextLView;
|
|
1984
|
+
ngDevMode && assertDefined(contextLView, 'contextLView must be defined.');
|
|
1985
|
+
return contextLView;
|
|
1974
1986
|
}
|
|
1975
1987
|
function isInCheckNoChangesMode() {
|
|
1976
1988
|
// TODO(misko): remove this from the LView since it is ngDevMode=true mode only.
|
|
@@ -4574,9 +4586,6 @@ class ReflectionCapabilities {
|
|
|
4574
4586
|
constructor(reflect) {
|
|
4575
4587
|
this._reflect = reflect || _global['Reflect'];
|
|
4576
4588
|
}
|
|
4577
|
-
isReflectionEnabled() {
|
|
4578
|
-
return true;
|
|
4579
|
-
}
|
|
4580
4589
|
factory(t) {
|
|
4581
4590
|
return (...args) => new t(...args);
|
|
4582
4591
|
}
|
|
@@ -4748,38 +4757,6 @@ class ReflectionCapabilities {
|
|
|
4748
4757
|
hasLifecycleHook(type, lcProperty) {
|
|
4749
4758
|
return type instanceof Type && lcProperty in type.prototype;
|
|
4750
4759
|
}
|
|
4751
|
-
guards(type) {
|
|
4752
|
-
return {};
|
|
4753
|
-
}
|
|
4754
|
-
getter(name) {
|
|
4755
|
-
return new Function('o', 'return o.' + name + ';');
|
|
4756
|
-
}
|
|
4757
|
-
setter(name) {
|
|
4758
|
-
return new Function('o', 'v', 'return o.' + name + ' = v;');
|
|
4759
|
-
}
|
|
4760
|
-
method(name) {
|
|
4761
|
-
const functionBody = `if (!o.${name}) throw new Error('"${name}" is undefined');
|
|
4762
|
-
return o.${name}.apply(o, args);`;
|
|
4763
|
-
return new Function('o', 'args', functionBody);
|
|
4764
|
-
}
|
|
4765
|
-
// There is not a concept of import uri in Js, but this is useful in developing Dart applications.
|
|
4766
|
-
importUri(type) {
|
|
4767
|
-
// StaticSymbol
|
|
4768
|
-
if (typeof type === 'object' && type['filePath']) {
|
|
4769
|
-
return type['filePath'];
|
|
4770
|
-
}
|
|
4771
|
-
// Runtime type
|
|
4772
|
-
return `./${stringify(type)}`;
|
|
4773
|
-
}
|
|
4774
|
-
resourceUri(type) {
|
|
4775
|
-
return `./${stringify(type)}`;
|
|
4776
|
-
}
|
|
4777
|
-
resolveIdentifier(name, moduleUrl, members, runtime) {
|
|
4778
|
-
return runtime;
|
|
4779
|
-
}
|
|
4780
|
-
resolveEnum(enumIdentifier, name) {
|
|
4781
|
-
return enumIdentifier[name];
|
|
4782
|
-
}
|
|
4783
4760
|
}
|
|
4784
4761
|
function convertTsickleDecoratorIntoMetadata(decoratorInvocations) {
|
|
4785
4762
|
if (!decoratorInvocations) {
|
|
@@ -4967,7 +4944,7 @@ function catchInjectorError(e, token, injectorErrorName, source) {
|
|
|
4967
4944
|
throw e;
|
|
4968
4945
|
}
|
|
4969
4946
|
function formatError(text, obj, injectorErrorName, source = null) {
|
|
4970
|
-
text = text && text.charAt(0) === '\n' && text.charAt(1) == NO_NEW_LINE ? text.
|
|
4947
|
+
text = text && text.charAt(0) === '\n' && text.charAt(1) == NO_NEW_LINE ? text.slice(2) : text;
|
|
4971
4948
|
let context = stringify(obj);
|
|
4972
4949
|
if (Array.isArray(obj)) {
|
|
4973
4950
|
context = obj.map(stringify).join(' -> ');
|
|
@@ -5226,6 +5203,60 @@ function componentDefResolved(type) {
|
|
|
5226
5203
|
componentDefPendingResolution.delete(type);
|
|
5227
5204
|
}
|
|
5228
5205
|
|
|
5206
|
+
/**
|
|
5207
|
+
* @license
|
|
5208
|
+
* Copyright Google LLC All Rights Reserved.
|
|
5209
|
+
*
|
|
5210
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
5211
|
+
* found in the LICENSE file at https://angular.io/license
|
|
5212
|
+
*/
|
|
5213
|
+
/**
|
|
5214
|
+
* Map of module-id to the corresponding NgModule.
|
|
5215
|
+
*/
|
|
5216
|
+
const modules = new Map();
|
|
5217
|
+
/**
|
|
5218
|
+
* Whether to check for duplicate NgModule registrations.
|
|
5219
|
+
*
|
|
5220
|
+
* This can be disabled for testing.
|
|
5221
|
+
*/
|
|
5222
|
+
let checkForDuplicateNgModules = true;
|
|
5223
|
+
function assertSameOrNotExisting(id, type, incoming) {
|
|
5224
|
+
if (type && type !== incoming && checkForDuplicateNgModules) {
|
|
5225
|
+
throw new Error(`Duplicate module registered for ${id} - ${stringify(type)} vs ${stringify(type.name)}`);
|
|
5226
|
+
}
|
|
5227
|
+
}
|
|
5228
|
+
/**
|
|
5229
|
+
* Adds the given NgModule type to Angular's NgModule registry.
|
|
5230
|
+
*
|
|
5231
|
+
* This is generated as a side-effect of NgModule compilation. Note that the `id` is passed in
|
|
5232
|
+
* explicitly and not read from the NgModule definition. This is for two reasons: it avoids a
|
|
5233
|
+
* megamorphic read, and in JIT there's a chicken-and-egg problem where the NgModule may not be
|
|
5234
|
+
* fully resolved when it's registered.
|
|
5235
|
+
*
|
|
5236
|
+
* @codeGenApi
|
|
5237
|
+
*/
|
|
5238
|
+
function registerNgModuleType(ngModuleType, id) {
|
|
5239
|
+
const existing = modules.get(id) || null;
|
|
5240
|
+
assertSameOrNotExisting(id, existing, ngModuleType);
|
|
5241
|
+
modules.set(id, ngModuleType);
|
|
5242
|
+
}
|
|
5243
|
+
function clearModulesForTest() {
|
|
5244
|
+
modules.clear();
|
|
5245
|
+
}
|
|
5246
|
+
function getRegisteredNgModuleType(id) {
|
|
5247
|
+
return modules.get(id);
|
|
5248
|
+
}
|
|
5249
|
+
/**
|
|
5250
|
+
* Control whether the NgModule registration system enforces that each NgModule type registered has
|
|
5251
|
+
* a unique id.
|
|
5252
|
+
*
|
|
5253
|
+
* This is useful for testing as the NgModule registry cannot be properly reset between tests with
|
|
5254
|
+
* Angular's current API.
|
|
5255
|
+
*/
|
|
5256
|
+
function setAllowDuplicateNgModuleIdsForTest(allowDuplicates) {
|
|
5257
|
+
checkForDuplicateNgModules = !allowDuplicates;
|
|
5258
|
+
}
|
|
5259
|
+
|
|
5229
5260
|
/**
|
|
5230
5261
|
* @license
|
|
5231
5262
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -7600,7 +7631,8 @@ function nativeInsertBefore(renderer, parent, child, beforeNode, isMove) {
|
|
|
7600
7631
|
renderer.insertBefore(parent, child, beforeNode, isMove);
|
|
7601
7632
|
}
|
|
7602
7633
|
else {
|
|
7603
|
-
parent.
|
|
7634
|
+
const targetParent = isTemplateNode(parent) ? parent.content : parent;
|
|
7635
|
+
targetParent.insertBefore(child, beforeNode, isMove);
|
|
7604
7636
|
}
|
|
7605
7637
|
}
|
|
7606
7638
|
function nativeAppendChild(renderer, parent, child) {
|
|
@@ -7610,7 +7642,8 @@ function nativeAppendChild(renderer, parent, child) {
|
|
|
7610
7642
|
renderer.appendChild(parent, child);
|
|
7611
7643
|
}
|
|
7612
7644
|
else {
|
|
7613
|
-
parent.
|
|
7645
|
+
const targetParent = isTemplateNode(parent) ? parent.content : parent;
|
|
7646
|
+
targetParent.appendChild(child);
|
|
7614
7647
|
}
|
|
7615
7648
|
}
|
|
7616
7649
|
function nativeAppendOrInsertBefore(renderer, parent, child, beforeNode, isMove) {
|
|
@@ -7630,6 +7663,10 @@ function nativeRemoveChild(renderer, parent, child, isHostElement) {
|
|
|
7630
7663
|
parent.removeChild(child);
|
|
7631
7664
|
}
|
|
7632
7665
|
}
|
|
7666
|
+
/** Checks if an element is a `<template>` node. */
|
|
7667
|
+
function isTemplateNode(node) {
|
|
7668
|
+
return node.tagName === 'TEMPLATE' && node.content !== undefined;
|
|
7669
|
+
}
|
|
7633
7670
|
/**
|
|
7634
7671
|
* Returns a native parent of a given native node.
|
|
7635
7672
|
*/
|
|
@@ -8799,7 +8836,7 @@ function nameSuffix(text) {
|
|
|
8799
8836
|
if (text == null)
|
|
8800
8837
|
return '';
|
|
8801
8838
|
const index = text.lastIndexOf('_Template');
|
|
8802
|
-
return '_' + (index === -1 ? text : text.
|
|
8839
|
+
return '_' + (index === -1 ? text : text.slice(0, index));
|
|
8803
8840
|
}
|
|
8804
8841
|
/**
|
|
8805
8842
|
* This class is a debug version of Object literal so that we can have constructor name show up
|
|
@@ -13963,75 +14000,6 @@ class KeyRegistry {
|
|
|
13963
14000
|
}
|
|
13964
14001
|
const _globalKeyRegistry = new KeyRegistry();
|
|
13965
14002
|
|
|
13966
|
-
/**
|
|
13967
|
-
* @license
|
|
13968
|
-
* Copyright Google LLC All Rights Reserved.
|
|
13969
|
-
*
|
|
13970
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
13971
|
-
* found in the LICENSE file at https://angular.io/license
|
|
13972
|
-
*/
|
|
13973
|
-
/**
|
|
13974
|
-
* Provides access to reflection data about symbols. Used internally by Angular
|
|
13975
|
-
* to power dependency injection and compilation.
|
|
13976
|
-
*/
|
|
13977
|
-
class Reflector {
|
|
13978
|
-
constructor(reflectionCapabilities) {
|
|
13979
|
-
this.reflectionCapabilities = reflectionCapabilities;
|
|
13980
|
-
}
|
|
13981
|
-
updateCapabilities(caps) {
|
|
13982
|
-
this.reflectionCapabilities = caps;
|
|
13983
|
-
}
|
|
13984
|
-
factory(type) {
|
|
13985
|
-
return this.reflectionCapabilities.factory(type);
|
|
13986
|
-
}
|
|
13987
|
-
parameters(typeOrFunc) {
|
|
13988
|
-
return this.reflectionCapabilities.parameters(typeOrFunc);
|
|
13989
|
-
}
|
|
13990
|
-
annotations(typeOrFunc) {
|
|
13991
|
-
return this.reflectionCapabilities.annotations(typeOrFunc);
|
|
13992
|
-
}
|
|
13993
|
-
propMetadata(typeOrFunc) {
|
|
13994
|
-
return this.reflectionCapabilities.propMetadata(typeOrFunc);
|
|
13995
|
-
}
|
|
13996
|
-
hasLifecycleHook(type, lcProperty) {
|
|
13997
|
-
return this.reflectionCapabilities.hasLifecycleHook(type, lcProperty);
|
|
13998
|
-
}
|
|
13999
|
-
getter(name) {
|
|
14000
|
-
return this.reflectionCapabilities.getter(name);
|
|
14001
|
-
}
|
|
14002
|
-
setter(name) {
|
|
14003
|
-
return this.reflectionCapabilities.setter(name);
|
|
14004
|
-
}
|
|
14005
|
-
method(name) {
|
|
14006
|
-
return this.reflectionCapabilities.method(name);
|
|
14007
|
-
}
|
|
14008
|
-
importUri(type) {
|
|
14009
|
-
return this.reflectionCapabilities.importUri(type);
|
|
14010
|
-
}
|
|
14011
|
-
resourceUri(type) {
|
|
14012
|
-
return this.reflectionCapabilities.resourceUri(type);
|
|
14013
|
-
}
|
|
14014
|
-
resolveIdentifier(name, moduleUrl, members, runtime) {
|
|
14015
|
-
return this.reflectionCapabilities.resolveIdentifier(name, moduleUrl, members, runtime);
|
|
14016
|
-
}
|
|
14017
|
-
resolveEnum(identifier, name) {
|
|
14018
|
-
return this.reflectionCapabilities.resolveEnum(identifier, name);
|
|
14019
|
-
}
|
|
14020
|
-
}
|
|
14021
|
-
|
|
14022
|
-
/**
|
|
14023
|
-
* @license
|
|
14024
|
-
* Copyright Google LLC All Rights Reserved.
|
|
14025
|
-
*
|
|
14026
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
14027
|
-
* found in the LICENSE file at https://angular.io/license
|
|
14028
|
-
*/
|
|
14029
|
-
/**
|
|
14030
|
-
* The {@link Reflector} used internally in Angular to access metadata
|
|
14031
|
-
* about symbols.
|
|
14032
|
-
*/
|
|
14033
|
-
const reflector = new Reflector(new ReflectionCapabilities());
|
|
14034
|
-
|
|
14035
14003
|
/**
|
|
14036
14004
|
* @license
|
|
14037
14005
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -14088,7 +14056,7 @@ function resolveReflectiveFactory(provider) {
|
|
|
14088
14056
|
let resolvedDeps;
|
|
14089
14057
|
if (provider.useClass) {
|
|
14090
14058
|
const useClass = resolveForwardRef(provider.useClass);
|
|
14091
|
-
factoryFn =
|
|
14059
|
+
factoryFn = getReflect().factory(useClass);
|
|
14092
14060
|
resolvedDeps = _dependenciesFor(useClass);
|
|
14093
14061
|
}
|
|
14094
14062
|
else if (provider.useExisting) {
|
|
@@ -14184,7 +14152,7 @@ function constructDependencies(typeOrFunc, dependencies) {
|
|
|
14184
14152
|
}
|
|
14185
14153
|
}
|
|
14186
14154
|
function _dependenciesFor(typeOrFunc) {
|
|
14187
|
-
const params =
|
|
14155
|
+
const params = getReflect().parameters(typeOrFunc);
|
|
14188
14156
|
if (!params)
|
|
14189
14157
|
return [];
|
|
14190
14158
|
if (params.some(p => p == null)) {
|
|
@@ -16484,7 +16452,7 @@ function consumeQuotedText(text, quoteCharCode, startIndex, endIndex) {
|
|
|
16484
16452
|
function malformedStyleError(text, expecting, index) {
|
|
16485
16453
|
ngDevMode && assertEqual(typeof text === 'string', true, 'String expected here');
|
|
16486
16454
|
throw throwError(`Malformed style at location ${index} in string '` + text.substring(0, index) + '[>>' +
|
|
16487
|
-
text.substring(index, index + 1) + '<<]' + text.
|
|
16455
|
+
text.substring(index, index + 1) + '<<]' + text.slice(index + 1) +
|
|
16488
16456
|
`'. Expecting '${expecting}'.`);
|
|
16489
16457
|
}
|
|
16490
16458
|
|
|
@@ -20169,7 +20137,7 @@ function removeInnerTemplateTranslation(message) {
|
|
|
20169
20137
|
}
|
|
20170
20138
|
ngDevMode &&
|
|
20171
20139
|
assertEqual(inTemplate, false, `Tag mismatch: unable to find the end of the sub-template in the translation "${message}"`);
|
|
20172
|
-
res += message.
|
|
20140
|
+
res += message.slice(index);
|
|
20173
20141
|
return res;
|
|
20174
20142
|
}
|
|
20175
20143
|
/**
|
|
@@ -20261,7 +20229,7 @@ function parseICUBlock(pattern) {
|
|
|
20261
20229
|
else {
|
|
20262
20230
|
icuType = 1 /* plural */;
|
|
20263
20231
|
}
|
|
20264
|
-
mainBinding = parseInt(binding.
|
|
20232
|
+
mainBinding = parseInt(binding.slice(1), 10);
|
|
20265
20233
|
return '';
|
|
20266
20234
|
});
|
|
20267
20235
|
const parts = i18nParseTextIntoPartsAndICU(pattern);
|
|
@@ -21266,7 +21234,7 @@ class Version {
|
|
|
21266
21234
|
/**
|
|
21267
21235
|
* @publicApi
|
|
21268
21236
|
*/
|
|
21269
|
-
const VERSION = new Version('14.0.0-next.
|
|
21237
|
+
const VERSION = new Version('14.0.0-next.8');
|
|
21270
21238
|
|
|
21271
21239
|
/**
|
|
21272
21240
|
* @license
|
|
@@ -21905,62 +21873,6 @@ class NgModuleRef$1 {
|
|
|
21905
21873
|
class NgModuleFactory$1 {
|
|
21906
21874
|
}
|
|
21907
21875
|
|
|
21908
|
-
/**
|
|
21909
|
-
* @license
|
|
21910
|
-
* Copyright Google LLC All Rights Reserved.
|
|
21911
|
-
*
|
|
21912
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
21913
|
-
* found in the LICENSE file at https://angular.io/license
|
|
21914
|
-
*/
|
|
21915
|
-
/**
|
|
21916
|
-
* Map of module-id to the corresponding NgModule.
|
|
21917
|
-
* - In pre Ivy we track NgModuleFactory,
|
|
21918
|
-
* - In post Ivy we track the NgModuleType
|
|
21919
|
-
*/
|
|
21920
|
-
const modules = new Map();
|
|
21921
|
-
/**
|
|
21922
|
-
* Registers a loaded module. Should only be called from generated NgModuleFactory code.
|
|
21923
|
-
* @publicApi
|
|
21924
|
-
*/
|
|
21925
|
-
function registerModuleFactory(id, factory) {
|
|
21926
|
-
const existing = modules.get(id);
|
|
21927
|
-
assertSameOrNotExisting(id, existing && existing.moduleType, factory.moduleType);
|
|
21928
|
-
modules.set(id, factory);
|
|
21929
|
-
}
|
|
21930
|
-
function assertSameOrNotExisting(id, type, incoming) {
|
|
21931
|
-
if (type && type !== incoming) {
|
|
21932
|
-
throw new Error(`Duplicate module registered for ${id} - ${stringify(type)} vs ${stringify(type.name)}`);
|
|
21933
|
-
}
|
|
21934
|
-
}
|
|
21935
|
-
function registerNgModuleType(ngModuleType) {
|
|
21936
|
-
const visited = new Set();
|
|
21937
|
-
recurse(ngModuleType);
|
|
21938
|
-
function recurse(ngModuleType) {
|
|
21939
|
-
// The imports array of an NgModule must refer to other NgModules,
|
|
21940
|
-
// so an error is thrown if no module definition is available.
|
|
21941
|
-
const def = getNgModuleDef(ngModuleType, /* throwNotFound */ true);
|
|
21942
|
-
const id = def.id;
|
|
21943
|
-
if (id !== null) {
|
|
21944
|
-
const existing = modules.get(id);
|
|
21945
|
-
assertSameOrNotExisting(id, existing, ngModuleType);
|
|
21946
|
-
modules.set(id, ngModuleType);
|
|
21947
|
-
}
|
|
21948
|
-
const imports = maybeUnwrapFn(def.imports);
|
|
21949
|
-
for (const i of imports) {
|
|
21950
|
-
if (!visited.has(i)) {
|
|
21951
|
-
visited.add(i);
|
|
21952
|
-
recurse(i);
|
|
21953
|
-
}
|
|
21954
|
-
}
|
|
21955
|
-
}
|
|
21956
|
-
}
|
|
21957
|
-
function clearModulesForTest() {
|
|
21958
|
-
modules.clear();
|
|
21959
|
-
}
|
|
21960
|
-
function getRegisteredNgModuleType(id) {
|
|
21961
|
-
return (modules.get(id) || autoRegisterModuleById[id]);
|
|
21962
|
-
}
|
|
21963
|
-
|
|
21964
21876
|
/**
|
|
21965
21877
|
* @license
|
|
21966
21878
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -22031,33 +21943,6 @@ class NgModuleFactory extends NgModuleFactory$1 {
|
|
|
22031
21943
|
constructor(moduleType) {
|
|
22032
21944
|
super();
|
|
22033
21945
|
this.moduleType = moduleType;
|
|
22034
|
-
const ngModuleDef = getNgModuleDef(moduleType);
|
|
22035
|
-
if (ngModuleDef !== null) {
|
|
22036
|
-
// Register the NgModule with Angular's module registry. The location (and hence timing) of
|
|
22037
|
-
// this call is critical to ensure this works correctly (modules get registered when expected)
|
|
22038
|
-
// without bloating bundles (modules are registered when otherwise not referenced).
|
|
22039
|
-
//
|
|
22040
|
-
// In View Engine, registration occurs in the .ngfactory.js file as a side effect. This has
|
|
22041
|
-
// several practical consequences:
|
|
22042
|
-
//
|
|
22043
|
-
// - If an .ngfactory file is not imported from, the module won't be registered (and can be
|
|
22044
|
-
// tree shaken).
|
|
22045
|
-
// - If an .ngfactory file is imported from, the module will be registered even if an instance
|
|
22046
|
-
// is not actually created (via `create` below).
|
|
22047
|
-
// - Since an .ngfactory file in View Engine references the .ngfactory files of the NgModule's
|
|
22048
|
-
// imports,
|
|
22049
|
-
//
|
|
22050
|
-
// In Ivy, things are a bit different. .ngfactory files still exist for compatibility, but are
|
|
22051
|
-
// not a required API to use - there are other ways to obtain an NgModuleFactory for a given
|
|
22052
|
-
// NgModule. Thus, relying on a side effect in the .ngfactory file is not sufficient. Instead,
|
|
22053
|
-
// the side effect of registration is added here, in the constructor of NgModuleFactory,
|
|
22054
|
-
// ensuring no matter how a factory is created, the module is registered correctly.
|
|
22055
|
-
//
|
|
22056
|
-
// An alternative would be to include the registration side effect inline following the actual
|
|
22057
|
-
// NgModule definition. This also has the correct timing, but breaks tree-shaking - modules
|
|
22058
|
-
// will be registered and retained even if they're otherwise never referenced.
|
|
22059
|
-
registerNgModuleType(moduleType);
|
|
22060
|
-
}
|
|
22061
21946
|
}
|
|
22062
21947
|
create(parentInjector) {
|
|
22063
21948
|
return new NgModuleRef(this.moduleType, parentInjector);
|
|
@@ -23737,6 +23622,7 @@ const angularCoreEnv = (() => ({
|
|
|
23737
23622
|
'ɵɵinvalidFactory': ɵɵinvalidFactory,
|
|
23738
23623
|
'ɵɵinvalidFactoryDep': ɵɵinvalidFactoryDep,
|
|
23739
23624
|
'ɵɵtemplateRefExtractor': ɵɵtemplateRefExtractor,
|
|
23625
|
+
'ɵɵresetView': ɵɵresetView,
|
|
23740
23626
|
'ɵɵNgOnChangesFeature': ɵɵNgOnChangesFeature,
|
|
23741
23627
|
'ɵɵProvidersFeature': ɵɵProvidersFeature,
|
|
23742
23628
|
'ɵɵCopyDefinitionFeature': ɵɵCopyDefinitionFeature,
|
|
@@ -23849,6 +23735,7 @@ const angularCoreEnv = (() => ({
|
|
|
23849
23735
|
'ɵɵresolveBody': ɵɵresolveBody,
|
|
23850
23736
|
'ɵɵsetComponentScope': ɵɵsetComponentScope,
|
|
23851
23737
|
'ɵɵsetNgModuleScope': ɵɵsetNgModuleScope,
|
|
23738
|
+
'ɵɵregisterNgModuleType': registerNgModuleType,
|
|
23852
23739
|
'ɵɵsanitizeHtml': ɵɵsanitizeHtml,
|
|
23853
23740
|
'ɵɵsanitizeStyle': ɵɵsanitizeStyle,
|
|
23854
23741
|
'ɵɵsanitizeResourceUrl': ɵɵsanitizeResourceUrl,
|
|
@@ -23884,6 +23771,17 @@ function resetJitOptions() {
|
|
|
23884
23771
|
jitOptions = null;
|
|
23885
23772
|
}
|
|
23886
23773
|
|
|
23774
|
+
/**
|
|
23775
|
+
* @license
|
|
23776
|
+
* Copyright Google LLC All Rights Reserved.
|
|
23777
|
+
*
|
|
23778
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
23779
|
+
* found in the LICENSE file at https://angular.io/license
|
|
23780
|
+
*/
|
|
23781
|
+
function patchModuleCompilation() {
|
|
23782
|
+
// Does nothing, but exists as a target for patching.
|
|
23783
|
+
}
|
|
23784
|
+
|
|
23887
23785
|
/**
|
|
23888
23786
|
* @license
|
|
23889
23787
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -23940,7 +23838,11 @@ function isResolvedDeclaration(declaration) {
|
|
|
23940
23838
|
* This function automatically gets called when a class has a `@NgModule` decorator.
|
|
23941
23839
|
*/
|
|
23942
23840
|
function compileNgModule(moduleType, ngModule = {}) {
|
|
23841
|
+
patchModuleCompilation();
|
|
23943
23842
|
compileNgModuleDefs(moduleType, ngModule);
|
|
23843
|
+
if (ngModule.id !== undefined) {
|
|
23844
|
+
registerNgModuleType(moduleType, ngModule.id);
|
|
23845
|
+
}
|
|
23944
23846
|
// Because we don't know if all declarations have resolved yet at the moment the
|
|
23945
23847
|
// NgModule decorator is executing, we're enqueueing the setting of module scope
|
|
23946
23848
|
// on its declarations to be run at a later time when all declarations for the module,
|
|
@@ -25120,16 +25022,16 @@ Console.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: Console, factory: C
|
|
|
25120
25022
|
/**
|
|
25121
25023
|
* Work out the locale from the potential global properties.
|
|
25122
25024
|
*
|
|
25123
|
-
* * Closure Compiler: use `goog.
|
|
25025
|
+
* * Closure Compiler: use `goog.LOCALE`.
|
|
25124
25026
|
* * Ivy enabled: use `$localize.locale`
|
|
25125
25027
|
*/
|
|
25126
25028
|
function getGlobalLocale() {
|
|
25127
25029
|
if (typeof ngI18nClosureMode !== 'undefined' && ngI18nClosureMode &&
|
|
25128
|
-
typeof goog !== 'undefined' && goog.
|
|
25129
|
-
// * The default `goog.
|
|
25030
|
+
typeof goog !== 'undefined' && goog.LOCALE !== 'en') {
|
|
25031
|
+
// * The default `goog.LOCALE` value is `en`, while Angular used `en-US`.
|
|
25130
25032
|
// * In order to preserve backwards compatibility, we use Angular default value over
|
|
25131
25033
|
// Closure Compiler's one.
|
|
25132
|
-
return goog.
|
|
25034
|
+
return goog.LOCALE;
|
|
25133
25035
|
}
|
|
25134
25036
|
else {
|
|
25135
25037
|
// KEEP `typeof $localize !== 'undefined' && $localize.locale` IN SYNC WITH THE LOCALIZE
|
|
@@ -28943,5 +28845,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
28943
28845
|
* Generated bundle index. Do not edit.
|
|
28944
28846
|
*/
|
|
28945
28847
|
|
|
28946
|
-
export { ANALYZE_FOR_ENTRY_COMPONENTS, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ElementRef, EmbeddedViewRef, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgProbeToken, NgZone, Optional, Output, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, Pipe, PlatformRef, Query, QueryList, ReflectiveInjector, ReflectiveKey, Renderer2, RendererFactory2, RendererStyleFlags2, ResolvedReflectiveFactory, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, asNativeElements, assertPlatform, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, inject, isDevMode, platformCore, resolveForwardRef, setTestabilityGetter, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, ViewRef$1 as ɵViewRef, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, coerceToBoolean as ɵcoerceToBoolean, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getDebugNode as ɵgetDebugNode, getDebugNodeR2 as ɵgetDebugNodeR2, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData,
|
|
28848
|
+
export { ANALYZE_FOR_ENTRY_COMPONENTS, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ElementRef, EmbeddedViewRef, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgProbeToken, NgZone, Optional, Output, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, Pipe, PlatformRef, Query, QueryList, ReflectiveInjector, ReflectiveKey, Renderer2, RendererFactory2, RendererStyleFlags2, ResolvedReflectiveFactory, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, asNativeElements, assertPlatform, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, inject, isDevMode, platformCore, resolveForwardRef, setTestabilityGetter, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, ViewRef$1 as ɵViewRef, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, coerceToBoolean as ɵcoerceToBoolean, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getDebugNode as ɵgetDebugNode, getDebugNodeR2 as ɵgetDebugNodeR2, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, renderComponent as ɵrenderComponent, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, whenRendered as ɵwhenRendered, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcontentQuery, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵngDeclareFactory, ɵɵngDeclareInjectable, ɵɵngDeclareInjector, ɵɵngDeclareNgModule, ɵɵngDeclarePipe, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryRefresh, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵresetView, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstyleMap, ɵɵstyleMapInterpolate1, ɵɵstyleMapInterpolate2, ɵɵstyleMapInterpolate3, ɵɵstyleMapInterpolate4, ɵɵstyleMapInterpolate5, ɵɵstyleMapInterpolate6, ɵɵstyleMapInterpolate7, ɵɵstyleMapInterpolate8, ɵɵstyleMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵviewQuery };
|
|
28947
28849
|
//# sourceMappingURL=core.mjs.map
|