@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.
Files changed (50) hide show
  1. package/core.d.ts +32 -33
  2. package/esm2020/src/core_private_export.mjs +1 -1
  3. package/esm2020/src/core_render3_private_export.mjs +3 -3
  4. package/esm2020/src/debug/debug_node.mjs +1 -1
  5. package/esm2020/src/di/injector_compatibility.mjs +2 -2
  6. package/esm2020/src/di/reflective_provider.mjs +4 -4
  7. package/esm2020/src/i18n/tokens.mjs +5 -5
  8. package/esm2020/src/linker/ng_module_factory_loader.mjs +2 -2
  9. package/esm2020/src/linker/ng_module_registration.mjs +55 -0
  10. package/esm2020/src/reflection/platform_reflection_capabilities.mjs +1 -1
  11. package/esm2020/src/reflection/reflection_capabilities.mjs +1 -37
  12. package/esm2020/src/render3/i18n/i18n_parse.mjs +3 -3
  13. package/esm2020/src/render3/index.mjs +2 -2
  14. package/esm2020/src/render3/instructions/lview_debug.mjs +2 -2
  15. package/esm2020/src/render3/interfaces/renderer_dom.mjs +1 -1
  16. package/esm2020/src/render3/jit/environment.mjs +4 -1
  17. package/esm2020/src/render3/jit/module.mjs +7 -1
  18. package/esm2020/src/render3/jit/module_patch.mjs +11 -0
  19. package/esm2020/src/render3/ng_module_ref.mjs +1 -29
  20. package/esm2020/src/render3/node_manipulation.mjs +9 -3
  21. package/esm2020/src/render3/state.mjs +14 -2
  22. package/esm2020/src/render3/styling/styling_parser.mjs +2 -2
  23. package/esm2020/src/version.mjs +1 -1
  24. package/esm2020/testing/src/fake_async.mjs +3 -2
  25. package/esm2020/testing/src/logger.mjs +3 -3
  26. package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
  27. package/esm2020/testing/src/r3_test_bed.mjs +8 -2
  28. package/fesm2015/core.mjs +106 -204
  29. package/fesm2015/core.mjs.map +1 -1
  30. package/fesm2015/testing.mjs +10 -3
  31. package/fesm2015/testing.mjs.map +1 -1
  32. package/fesm2020/core.mjs +106 -204
  33. package/fesm2020/core.mjs.map +1 -1
  34. package/fesm2020/testing.mjs +10 -3
  35. package/fesm2020/testing.mjs.map +1 -1
  36. package/package.json +2 -2
  37. package/schematics/migrations/typed-forms/index.d.ts +1 -5
  38. package/schematics/migrations/typed-forms/index.js +12 -34
  39. package/schematics/migrations/typed-forms/util.d.ts +8 -10
  40. package/schematics/migrations/typed-forms/util.js +99 -47
  41. package/schematics/utils/import_manager.js +3 -15
  42. package/schematics/utils/typescript/imports.js +2 -7
  43. package/schematics/utils/typescript/parse_tsconfig.js +6 -2
  44. package/schematics/utils/typescript/symbol.js +4 -3
  45. package/testing/testing.d.ts +3 -2
  46. package/esm2020/src/di/util.mjs +0 -51
  47. package/esm2020/src/linker/ng_module_factory_registration.mjs +0 -59
  48. package/esm2020/src/reflection/reflection.mjs +0 -16
  49. package/esm2020/src/reflection/reflector.mjs +0 -56
  50. package/esm2020/src/reflection/types.mjs +0 -9
package/fesm2020/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v14.0.0-next.5
2
+ * @license Angular v14.0.0-next.8
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1946,6 +1946,16 @@ function ɵɵrestoreView(viewToRestore) {
1946
1946
  instructionState.lFrame.contextLView = viewToRestore;
1947
1947
  return viewToRestore[CONTEXT];
1948
1948
  }
1949
+ /**
1950
+ * Clears the view set in `ɵɵrestoreView` from memory. Returns the passed in
1951
+ * value so that it can be used as a return value of an instruction.
1952
+ *
1953
+ * @codeGenApi
1954
+ */
1955
+ function ɵɵresetView(value) {
1956
+ instructionState.lFrame.contextLView = null;
1957
+ return value;
1958
+ }
1949
1959
  function getCurrentTNode() {
1950
1960
  let currentTNode = getCurrentTNodePlaceholderOk();
1951
1961
  while (currentTNode !== null && currentTNode.type === 64 /* Placeholder */) {
@@ -1977,7 +1987,9 @@ function setCurrentTNodeAsParent() {
1977
1987
  instructionState.lFrame.isParent = true;
1978
1988
  }
1979
1989
  function getContextLView() {
1980
- return instructionState.lFrame.contextLView;
1990
+ const contextLView = instructionState.lFrame.contextLView;
1991
+ ngDevMode && assertDefined(contextLView, 'contextLView must be defined.');
1992
+ return contextLView;
1981
1993
  }
1982
1994
  function isInCheckNoChangesMode() {
1983
1995
  // TODO(misko): remove this from the LView since it is ngDevMode=true mode only.
@@ -4595,9 +4607,6 @@ class ReflectionCapabilities {
4595
4607
  constructor(reflect) {
4596
4608
  this._reflect = reflect || _global['Reflect'];
4597
4609
  }
4598
- isReflectionEnabled() {
4599
- return true;
4600
- }
4601
4610
  factory(t) {
4602
4611
  return (...args) => new t(...args);
4603
4612
  }
@@ -4769,38 +4778,6 @@ class ReflectionCapabilities {
4769
4778
  hasLifecycleHook(type, lcProperty) {
4770
4779
  return type instanceof Type && lcProperty in type.prototype;
4771
4780
  }
4772
- guards(type) {
4773
- return {};
4774
- }
4775
- getter(name) {
4776
- return new Function('o', 'return o.' + name + ';');
4777
- }
4778
- setter(name) {
4779
- return new Function('o', 'v', 'return o.' + name + ' = v;');
4780
- }
4781
- method(name) {
4782
- const functionBody = `if (!o.${name}) throw new Error('"${name}" is undefined');
4783
- return o.${name}.apply(o, args);`;
4784
- return new Function('o', 'args', functionBody);
4785
- }
4786
- // There is not a concept of import uri in Js, but this is useful in developing Dart applications.
4787
- importUri(type) {
4788
- // StaticSymbol
4789
- if (typeof type === 'object' && type['filePath']) {
4790
- return type['filePath'];
4791
- }
4792
- // Runtime type
4793
- return `./${stringify(type)}`;
4794
- }
4795
- resourceUri(type) {
4796
- return `./${stringify(type)}`;
4797
- }
4798
- resolveIdentifier(name, moduleUrl, members, runtime) {
4799
- return runtime;
4800
- }
4801
- resolveEnum(enumIdentifier, name) {
4802
- return enumIdentifier[name];
4803
- }
4804
4781
  }
4805
4782
  function convertTsickleDecoratorIntoMetadata(decoratorInvocations) {
4806
4783
  if (!decoratorInvocations) {
@@ -4988,7 +4965,7 @@ function catchInjectorError(e, token, injectorErrorName, source) {
4988
4965
  throw e;
4989
4966
  }
4990
4967
  function formatError(text, obj, injectorErrorName, source = null) {
4991
- text = text && text.charAt(0) === '\n' && text.charAt(1) == NO_NEW_LINE ? text.substr(2) : text;
4968
+ text = text && text.charAt(0) === '\n' && text.charAt(1) == NO_NEW_LINE ? text.slice(2) : text;
4992
4969
  let context = stringify(obj);
4993
4970
  if (Array.isArray(obj)) {
4994
4971
  context = obj.map(stringify).join(' -> ');
@@ -5247,6 +5224,60 @@ function componentDefResolved(type) {
5247
5224
  componentDefPendingResolution.delete(type);
5248
5225
  }
5249
5226
 
5227
+ /**
5228
+ * @license
5229
+ * Copyright Google LLC All Rights Reserved.
5230
+ *
5231
+ * Use of this source code is governed by an MIT-style license that can be
5232
+ * found in the LICENSE file at https://angular.io/license
5233
+ */
5234
+ /**
5235
+ * Map of module-id to the corresponding NgModule.
5236
+ */
5237
+ const modules = new Map();
5238
+ /**
5239
+ * Whether to check for duplicate NgModule registrations.
5240
+ *
5241
+ * This can be disabled for testing.
5242
+ */
5243
+ let checkForDuplicateNgModules = true;
5244
+ function assertSameOrNotExisting(id, type, incoming) {
5245
+ if (type && type !== incoming && checkForDuplicateNgModules) {
5246
+ throw new Error(`Duplicate module registered for ${id} - ${stringify(type)} vs ${stringify(type.name)}`);
5247
+ }
5248
+ }
5249
+ /**
5250
+ * Adds the given NgModule type to Angular's NgModule registry.
5251
+ *
5252
+ * This is generated as a side-effect of NgModule compilation. Note that the `id` is passed in
5253
+ * explicitly and not read from the NgModule definition. This is for two reasons: it avoids a
5254
+ * megamorphic read, and in JIT there's a chicken-and-egg problem where the NgModule may not be
5255
+ * fully resolved when it's registered.
5256
+ *
5257
+ * @codeGenApi
5258
+ */
5259
+ function registerNgModuleType(ngModuleType, id) {
5260
+ const existing = modules.get(id) || null;
5261
+ assertSameOrNotExisting(id, existing, ngModuleType);
5262
+ modules.set(id, ngModuleType);
5263
+ }
5264
+ function clearModulesForTest() {
5265
+ modules.clear();
5266
+ }
5267
+ function getRegisteredNgModuleType(id) {
5268
+ return modules.get(id);
5269
+ }
5270
+ /**
5271
+ * Control whether the NgModule registration system enforces that each NgModule type registered has
5272
+ * a unique id.
5273
+ *
5274
+ * This is useful for testing as the NgModule registry cannot be properly reset between tests with
5275
+ * Angular's current API.
5276
+ */
5277
+ function setAllowDuplicateNgModuleIdsForTest(allowDuplicates) {
5278
+ checkForDuplicateNgModules = !allowDuplicates;
5279
+ }
5280
+
5250
5281
  /**
5251
5282
  * @license
5252
5283
  * Copyright Google LLC All Rights Reserved.
@@ -7615,7 +7646,8 @@ function nativeInsertBefore(renderer, parent, child, beforeNode, isMove) {
7615
7646
  renderer.insertBefore(parent, child, beforeNode, isMove);
7616
7647
  }
7617
7648
  else {
7618
- parent.insertBefore(child, beforeNode, isMove);
7649
+ const targetParent = isTemplateNode(parent) ? parent.content : parent;
7650
+ targetParent.insertBefore(child, beforeNode, isMove);
7619
7651
  }
7620
7652
  }
7621
7653
  function nativeAppendChild(renderer, parent, child) {
@@ -7625,7 +7657,8 @@ function nativeAppendChild(renderer, parent, child) {
7625
7657
  renderer.appendChild(parent, child);
7626
7658
  }
7627
7659
  else {
7628
- parent.appendChild(child);
7660
+ const targetParent = isTemplateNode(parent) ? parent.content : parent;
7661
+ targetParent.appendChild(child);
7629
7662
  }
7630
7663
  }
7631
7664
  function nativeAppendOrInsertBefore(renderer, parent, child, beforeNode, isMove) {
@@ -7645,6 +7678,10 @@ function nativeRemoveChild(renderer, parent, child, isHostElement) {
7645
7678
  parent.removeChild(child);
7646
7679
  }
7647
7680
  }
7681
+ /** Checks if an element is a `<template>` node. */
7682
+ function isTemplateNode(node) {
7683
+ return node.tagName === 'TEMPLATE' && node.content !== undefined;
7684
+ }
7648
7685
  /**
7649
7686
  * Returns a native parent of a given native node.
7650
7687
  */
@@ -8814,7 +8851,7 @@ function nameSuffix(text) {
8814
8851
  if (text == null)
8815
8852
  return '';
8816
8853
  const index = text.lastIndexOf('_Template');
8817
- return '_' + (index === -1 ? text : text.substr(0, index));
8854
+ return '_' + (index === -1 ? text : text.slice(0, index));
8818
8855
  }
8819
8856
  /**
8820
8857
  * This class is a debug version of Object literal so that we can have constructor name show up
@@ -13977,75 +14014,6 @@ class KeyRegistry {
13977
14014
  }
13978
14015
  const _globalKeyRegistry = new KeyRegistry();
13979
14016
 
13980
- /**
13981
- * @license
13982
- * Copyright Google LLC All Rights Reserved.
13983
- *
13984
- * Use of this source code is governed by an MIT-style license that can be
13985
- * found in the LICENSE file at https://angular.io/license
13986
- */
13987
- /**
13988
- * Provides access to reflection data about symbols. Used internally by Angular
13989
- * to power dependency injection and compilation.
13990
- */
13991
- class Reflector {
13992
- constructor(reflectionCapabilities) {
13993
- this.reflectionCapabilities = reflectionCapabilities;
13994
- }
13995
- updateCapabilities(caps) {
13996
- this.reflectionCapabilities = caps;
13997
- }
13998
- factory(type) {
13999
- return this.reflectionCapabilities.factory(type);
14000
- }
14001
- parameters(typeOrFunc) {
14002
- return this.reflectionCapabilities.parameters(typeOrFunc);
14003
- }
14004
- annotations(typeOrFunc) {
14005
- return this.reflectionCapabilities.annotations(typeOrFunc);
14006
- }
14007
- propMetadata(typeOrFunc) {
14008
- return this.reflectionCapabilities.propMetadata(typeOrFunc);
14009
- }
14010
- hasLifecycleHook(type, lcProperty) {
14011
- return this.reflectionCapabilities.hasLifecycleHook(type, lcProperty);
14012
- }
14013
- getter(name) {
14014
- return this.reflectionCapabilities.getter(name);
14015
- }
14016
- setter(name) {
14017
- return this.reflectionCapabilities.setter(name);
14018
- }
14019
- method(name) {
14020
- return this.reflectionCapabilities.method(name);
14021
- }
14022
- importUri(type) {
14023
- return this.reflectionCapabilities.importUri(type);
14024
- }
14025
- resourceUri(type) {
14026
- return this.reflectionCapabilities.resourceUri(type);
14027
- }
14028
- resolveIdentifier(name, moduleUrl, members, runtime) {
14029
- return this.reflectionCapabilities.resolveIdentifier(name, moduleUrl, members, runtime);
14030
- }
14031
- resolveEnum(identifier, name) {
14032
- return this.reflectionCapabilities.resolveEnum(identifier, name);
14033
- }
14034
- }
14035
-
14036
- /**
14037
- * @license
14038
- * Copyright Google LLC All Rights Reserved.
14039
- *
14040
- * Use of this source code is governed by an MIT-style license that can be
14041
- * found in the LICENSE file at https://angular.io/license
14042
- */
14043
- /**
14044
- * The {@link Reflector} used internally in Angular to access metadata
14045
- * about symbols.
14046
- */
14047
- const reflector = new Reflector(new ReflectionCapabilities());
14048
-
14049
14017
  /**
14050
14018
  * @license
14051
14019
  * Copyright Google LLC All Rights Reserved.
@@ -14102,7 +14070,7 @@ function resolveReflectiveFactory(provider) {
14102
14070
  let resolvedDeps;
14103
14071
  if (provider.useClass) {
14104
14072
  const useClass = resolveForwardRef(provider.useClass);
14105
- factoryFn = reflector.factory(useClass);
14073
+ factoryFn = getReflect().factory(useClass);
14106
14074
  resolvedDeps = _dependenciesFor(useClass);
14107
14075
  }
14108
14076
  else if (provider.useExisting) {
@@ -14198,7 +14166,7 @@ function constructDependencies(typeOrFunc, dependencies) {
14198
14166
  }
14199
14167
  }
14200
14168
  function _dependenciesFor(typeOrFunc) {
14201
- const params = reflector.parameters(typeOrFunc);
14169
+ const params = getReflect().parameters(typeOrFunc);
14202
14170
  if (!params)
14203
14171
  return [];
14204
14172
  if (params.some(p => p == null)) {
@@ -16498,7 +16466,7 @@ function consumeQuotedText(text, quoteCharCode, startIndex, endIndex) {
16498
16466
  function malformedStyleError(text, expecting, index) {
16499
16467
  ngDevMode && assertEqual(typeof text === 'string', true, 'String expected here');
16500
16468
  throw throwError(`Malformed style at location ${index} in string '` + text.substring(0, index) + '[>>' +
16501
- text.substring(index, index + 1) + '<<]' + text.substr(index + 1) +
16469
+ text.substring(index, index + 1) + '<<]' + text.slice(index + 1) +
16502
16470
  `'. Expecting '${expecting}'.`);
16503
16471
  }
16504
16472
 
@@ -20183,7 +20151,7 @@ function removeInnerTemplateTranslation(message) {
20183
20151
  }
20184
20152
  ngDevMode &&
20185
20153
  assertEqual(inTemplate, false, `Tag mismatch: unable to find the end of the sub-template in the translation "${message}"`);
20186
- res += message.substr(index);
20154
+ res += message.slice(index);
20187
20155
  return res;
20188
20156
  }
20189
20157
  /**
@@ -20275,7 +20243,7 @@ function parseICUBlock(pattern) {
20275
20243
  else {
20276
20244
  icuType = 1 /* plural */;
20277
20245
  }
20278
- mainBinding = parseInt(binding.substr(1), 10);
20246
+ mainBinding = parseInt(binding.slice(1), 10);
20279
20247
  return '';
20280
20248
  });
20281
20249
  const parts = i18nParseTextIntoPartsAndICU(pattern);
@@ -21280,7 +21248,7 @@ class Version {
21280
21248
  /**
21281
21249
  * @publicApi
21282
21250
  */
21283
- const VERSION = new Version('14.0.0-next.5');
21251
+ const VERSION = new Version('14.0.0-next.8');
21284
21252
 
21285
21253
  /**
21286
21254
  * @license
@@ -21919,62 +21887,6 @@ class NgModuleRef$1 {
21919
21887
  class NgModuleFactory$1 {
21920
21888
  }
21921
21889
 
21922
- /**
21923
- * @license
21924
- * Copyright Google LLC All Rights Reserved.
21925
- *
21926
- * Use of this source code is governed by an MIT-style license that can be
21927
- * found in the LICENSE file at https://angular.io/license
21928
- */
21929
- /**
21930
- * Map of module-id to the corresponding NgModule.
21931
- * - In pre Ivy we track NgModuleFactory,
21932
- * - In post Ivy we track the NgModuleType
21933
- */
21934
- const modules = new Map();
21935
- /**
21936
- * Registers a loaded module. Should only be called from generated NgModuleFactory code.
21937
- * @publicApi
21938
- */
21939
- function registerModuleFactory(id, factory) {
21940
- const existing = modules.get(id);
21941
- assertSameOrNotExisting(id, existing && existing.moduleType, factory.moduleType);
21942
- modules.set(id, factory);
21943
- }
21944
- function assertSameOrNotExisting(id, type, incoming) {
21945
- if (type && type !== incoming) {
21946
- throw new Error(`Duplicate module registered for ${id} - ${stringify(type)} vs ${stringify(type.name)}`);
21947
- }
21948
- }
21949
- function registerNgModuleType(ngModuleType) {
21950
- const visited = new Set();
21951
- recurse(ngModuleType);
21952
- function recurse(ngModuleType) {
21953
- // The imports array of an NgModule must refer to other NgModules,
21954
- // so an error is thrown if no module definition is available.
21955
- const def = getNgModuleDef(ngModuleType, /* throwNotFound */ true);
21956
- const id = def.id;
21957
- if (id !== null) {
21958
- const existing = modules.get(id);
21959
- assertSameOrNotExisting(id, existing, ngModuleType);
21960
- modules.set(id, ngModuleType);
21961
- }
21962
- const imports = maybeUnwrapFn(def.imports);
21963
- for (const i of imports) {
21964
- if (!visited.has(i)) {
21965
- visited.add(i);
21966
- recurse(i);
21967
- }
21968
- }
21969
- }
21970
- }
21971
- function clearModulesForTest() {
21972
- modules.clear();
21973
- }
21974
- function getRegisteredNgModuleType(id) {
21975
- return (modules.get(id) || autoRegisterModuleById[id]);
21976
- }
21977
-
21978
21890
  /**
21979
21891
  * @license
21980
21892
  * Copyright Google LLC All Rights Reserved.
@@ -22045,33 +21957,6 @@ class NgModuleFactory extends NgModuleFactory$1 {
22045
21957
  constructor(moduleType) {
22046
21958
  super();
22047
21959
  this.moduleType = moduleType;
22048
- const ngModuleDef = getNgModuleDef(moduleType);
22049
- if (ngModuleDef !== null) {
22050
- // Register the NgModule with Angular's module registry. The location (and hence timing) of
22051
- // this call is critical to ensure this works correctly (modules get registered when expected)
22052
- // without bloating bundles (modules are registered when otherwise not referenced).
22053
- //
22054
- // In View Engine, registration occurs in the .ngfactory.js file as a side effect. This has
22055
- // several practical consequences:
22056
- //
22057
- // - If an .ngfactory file is not imported from, the module won't be registered (and can be
22058
- // tree shaken).
22059
- // - If an .ngfactory file is imported from, the module will be registered even if an instance
22060
- // is not actually created (via `create` below).
22061
- // - Since an .ngfactory file in View Engine references the .ngfactory files of the NgModule's
22062
- // imports,
22063
- //
22064
- // In Ivy, things are a bit different. .ngfactory files still exist for compatibility, but are
22065
- // not a required API to use - there are other ways to obtain an NgModuleFactory for a given
22066
- // NgModule. Thus, relying on a side effect in the .ngfactory file is not sufficient. Instead,
22067
- // the side effect of registration is added here, in the constructor of NgModuleFactory,
22068
- // ensuring no matter how a factory is created, the module is registered correctly.
22069
- //
22070
- // An alternative would be to include the registration side effect inline following the actual
22071
- // NgModule definition. This also has the correct timing, but breaks tree-shaking - modules
22072
- // will be registered and retained even if they're otherwise never referenced.
22073
- registerNgModuleType(moduleType);
22074
- }
22075
21960
  }
22076
21961
  create(parentInjector) {
22077
21962
  return new NgModuleRef(this.moduleType, parentInjector);
@@ -23750,6 +23635,7 @@ const angularCoreEnv = (() => ({
23750
23635
  'ɵɵinvalidFactory': ɵɵinvalidFactory,
23751
23636
  'ɵɵinvalidFactoryDep': ɵɵinvalidFactoryDep,
23752
23637
  'ɵɵtemplateRefExtractor': ɵɵtemplateRefExtractor,
23638
+ 'ɵɵresetView': ɵɵresetView,
23753
23639
  'ɵɵNgOnChangesFeature': ɵɵNgOnChangesFeature,
23754
23640
  'ɵɵProvidersFeature': ɵɵProvidersFeature,
23755
23641
  'ɵɵCopyDefinitionFeature': ɵɵCopyDefinitionFeature,
@@ -23862,6 +23748,7 @@ const angularCoreEnv = (() => ({
23862
23748
  'ɵɵresolveBody': ɵɵresolveBody,
23863
23749
  'ɵɵsetComponentScope': ɵɵsetComponentScope,
23864
23750
  'ɵɵsetNgModuleScope': ɵɵsetNgModuleScope,
23751
+ 'ɵɵregisterNgModuleType': registerNgModuleType,
23865
23752
  'ɵɵsanitizeHtml': ɵɵsanitizeHtml,
23866
23753
  'ɵɵsanitizeStyle': ɵɵsanitizeStyle,
23867
23754
  'ɵɵsanitizeResourceUrl': ɵɵsanitizeResourceUrl,
@@ -23897,6 +23784,17 @@ function resetJitOptions() {
23897
23784
  jitOptions = null;
23898
23785
  }
23899
23786
 
23787
+ /**
23788
+ * @license
23789
+ * Copyright Google LLC All Rights Reserved.
23790
+ *
23791
+ * Use of this source code is governed by an MIT-style license that can be
23792
+ * found in the LICENSE file at https://angular.io/license
23793
+ */
23794
+ function patchModuleCompilation() {
23795
+ // Does nothing, but exists as a target for patching.
23796
+ }
23797
+
23900
23798
  /**
23901
23799
  * @license
23902
23800
  * Copyright Google LLC All Rights Reserved.
@@ -23953,7 +23851,11 @@ function isResolvedDeclaration(declaration) {
23953
23851
  * This function automatically gets called when a class has a `@NgModule` decorator.
23954
23852
  */
23955
23853
  function compileNgModule(moduleType, ngModule = {}) {
23854
+ patchModuleCompilation();
23956
23855
  compileNgModuleDefs(moduleType, ngModule);
23856
+ if (ngModule.id !== undefined) {
23857
+ registerNgModuleType(moduleType, ngModule.id);
23858
+ }
23957
23859
  // Because we don't know if all declarations have resolved yet at the moment the
23958
23860
  // NgModule decorator is executing, we're enqueueing the setting of module scope
23959
23861
  // on its declarations to be run at a later time when all declarations for the module,
@@ -25148,16 +25050,16 @@ Console.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: Console, factory: C
25148
25050
  /**
25149
25051
  * Work out the locale from the potential global properties.
25150
25052
  *
25151
- * * Closure Compiler: use `goog.getLocale()`.
25053
+ * * Closure Compiler: use `goog.LOCALE`.
25152
25054
  * * Ivy enabled: use `$localize.locale`
25153
25055
  */
25154
25056
  function getGlobalLocale() {
25155
25057
  if (typeof ngI18nClosureMode !== 'undefined' && ngI18nClosureMode &&
25156
- typeof goog !== 'undefined' && goog.getLocale() !== 'en') {
25157
- // * The default `goog.getLocale()` value is `en`, while Angular used `en-US`.
25058
+ typeof goog !== 'undefined' && goog.LOCALE !== 'en') {
25059
+ // * The default `goog.LOCALE` value is `en`, while Angular used `en-US`.
25158
25060
  // * In order to preserve backwards compatibility, we use Angular default value over
25159
25061
  // Closure Compiler's one.
25160
- return goog.getLocale();
25062
+ return goog.LOCALE;
25161
25063
  }
25162
25064
  else {
25163
25065
  // KEEP `typeof $localize !== 'undefined' && $localize.locale` IN SYNC WITH THE LOCALIZE
@@ -28965,5 +28867,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
28965
28867
  * Generated bundle index. Do not edit.
28966
28868
  */
28967
28869
 
28968
- 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, registerNgModuleType as ɵregisterNgModuleType, renderComponent as ɵrenderComponent, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, 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, ɵɵ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 };
28870
+ 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 };
28969
28871
  //# sourceMappingURL=core.mjs.map