@angular/core 14.0.0-next.6 → 14.0.0-next.9

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 (43) hide show
  1. package/core.d.ts +31 -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/jit/environment.mjs +4 -1
  16. package/esm2020/src/render3/jit/module.mjs +7 -1
  17. package/esm2020/src/render3/jit/module_patch.mjs +11 -0
  18. package/esm2020/src/render3/ng_module_ref.mjs +1 -29
  19. package/esm2020/src/render3/state.mjs +14 -2
  20. package/esm2020/src/render3/styling/styling_parser.mjs +2 -2
  21. package/esm2020/src/version.mjs +1 -1
  22. package/esm2020/testing/src/logger.mjs +3 -3
  23. package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
  24. package/esm2020/testing/src/r3_test_bed.mjs +8 -2
  25. package/fesm2015/core.mjs +98 -202
  26. package/fesm2015/core.mjs.map +1 -1
  27. package/fesm2015/testing.mjs +8 -2
  28. package/fesm2015/testing.mjs.map +1 -1
  29. package/fesm2020/core.mjs +98 -202
  30. package/fesm2020/core.mjs.map +1 -1
  31. package/fesm2020/testing.mjs +8 -2
  32. package/fesm2020/testing.mjs.map +1 -1
  33. package/package.json +1 -1
  34. package/schematics/migrations/typed-forms/util.d.ts +2 -1
  35. package/schematics/migrations/typed-forms/util.js +42 -13
  36. package/schematics/utils/import_manager.js +3 -15
  37. package/schematics/utils/typescript/imports.js +2 -7
  38. package/testing/testing.d.ts +1 -1
  39. package/esm2020/src/di/util.mjs +0 -51
  40. package/esm2020/src/linker/ng_module_factory_registration.mjs +0 -59
  41. package/esm2020/src/reflection/reflection.mjs +0 -16
  42. package/esm2020/src/reflection/reflector.mjs +0 -56
  43. 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.6
2
+ * @license Angular v14.0.0-next.9
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
- return instructionState.lFrame.contextLView;
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.substr(2) : 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.
@@ -8805,7 +8836,7 @@ function nameSuffix(text) {
8805
8836
  if (text == null)
8806
8837
  return '';
8807
8838
  const index = text.lastIndexOf('_Template');
8808
- return '_' + (index === -1 ? text : text.substr(0, index));
8839
+ return '_' + (index === -1 ? text : text.slice(0, index));
8809
8840
  }
8810
8841
  /**
8811
8842
  * This class is a debug version of Object literal so that we can have constructor name show up
@@ -13969,75 +14000,6 @@ class KeyRegistry {
13969
14000
  }
13970
14001
  const _globalKeyRegistry = new KeyRegistry();
13971
14002
 
13972
- /**
13973
- * @license
13974
- * Copyright Google LLC All Rights Reserved.
13975
- *
13976
- * Use of this source code is governed by an MIT-style license that can be
13977
- * found in the LICENSE file at https://angular.io/license
13978
- */
13979
- /**
13980
- * Provides access to reflection data about symbols. Used internally by Angular
13981
- * to power dependency injection and compilation.
13982
- */
13983
- class Reflector {
13984
- constructor(reflectionCapabilities) {
13985
- this.reflectionCapabilities = reflectionCapabilities;
13986
- }
13987
- updateCapabilities(caps) {
13988
- this.reflectionCapabilities = caps;
13989
- }
13990
- factory(type) {
13991
- return this.reflectionCapabilities.factory(type);
13992
- }
13993
- parameters(typeOrFunc) {
13994
- return this.reflectionCapabilities.parameters(typeOrFunc);
13995
- }
13996
- annotations(typeOrFunc) {
13997
- return this.reflectionCapabilities.annotations(typeOrFunc);
13998
- }
13999
- propMetadata(typeOrFunc) {
14000
- return this.reflectionCapabilities.propMetadata(typeOrFunc);
14001
- }
14002
- hasLifecycleHook(type, lcProperty) {
14003
- return this.reflectionCapabilities.hasLifecycleHook(type, lcProperty);
14004
- }
14005
- getter(name) {
14006
- return this.reflectionCapabilities.getter(name);
14007
- }
14008
- setter(name) {
14009
- return this.reflectionCapabilities.setter(name);
14010
- }
14011
- method(name) {
14012
- return this.reflectionCapabilities.method(name);
14013
- }
14014
- importUri(type) {
14015
- return this.reflectionCapabilities.importUri(type);
14016
- }
14017
- resourceUri(type) {
14018
- return this.reflectionCapabilities.resourceUri(type);
14019
- }
14020
- resolveIdentifier(name, moduleUrl, members, runtime) {
14021
- return this.reflectionCapabilities.resolveIdentifier(name, moduleUrl, members, runtime);
14022
- }
14023
- resolveEnum(identifier, name) {
14024
- return this.reflectionCapabilities.resolveEnum(identifier, name);
14025
- }
14026
- }
14027
-
14028
- /**
14029
- * @license
14030
- * Copyright Google LLC All Rights Reserved.
14031
- *
14032
- * Use of this source code is governed by an MIT-style license that can be
14033
- * found in the LICENSE file at https://angular.io/license
14034
- */
14035
- /**
14036
- * The {@link Reflector} used internally in Angular to access metadata
14037
- * about symbols.
14038
- */
14039
- const reflector = new Reflector(new ReflectionCapabilities());
14040
-
14041
14003
  /**
14042
14004
  * @license
14043
14005
  * Copyright Google LLC All Rights Reserved.
@@ -14094,7 +14056,7 @@ function resolveReflectiveFactory(provider) {
14094
14056
  let resolvedDeps;
14095
14057
  if (provider.useClass) {
14096
14058
  const useClass = resolveForwardRef(provider.useClass);
14097
- factoryFn = reflector.factory(useClass);
14059
+ factoryFn = getReflect().factory(useClass);
14098
14060
  resolvedDeps = _dependenciesFor(useClass);
14099
14061
  }
14100
14062
  else if (provider.useExisting) {
@@ -14190,7 +14152,7 @@ function constructDependencies(typeOrFunc, dependencies) {
14190
14152
  }
14191
14153
  }
14192
14154
  function _dependenciesFor(typeOrFunc) {
14193
- const params = reflector.parameters(typeOrFunc);
14155
+ const params = getReflect().parameters(typeOrFunc);
14194
14156
  if (!params)
14195
14157
  return [];
14196
14158
  if (params.some(p => p == null)) {
@@ -16490,7 +16452,7 @@ function consumeQuotedText(text, quoteCharCode, startIndex, endIndex) {
16490
16452
  function malformedStyleError(text, expecting, index) {
16491
16453
  ngDevMode && assertEqual(typeof text === 'string', true, 'String expected here');
16492
16454
  throw throwError(`Malformed style at location ${index} in string '` + text.substring(0, index) + '[>>' +
16493
- text.substring(index, index + 1) + '<<]' + text.substr(index + 1) +
16455
+ text.substring(index, index + 1) + '<<]' + text.slice(index + 1) +
16494
16456
  `'. Expecting '${expecting}'.`);
16495
16457
  }
16496
16458
 
@@ -20175,7 +20137,7 @@ function removeInnerTemplateTranslation(message) {
20175
20137
  }
20176
20138
  ngDevMode &&
20177
20139
  assertEqual(inTemplate, false, `Tag mismatch: unable to find the end of the sub-template in the translation "${message}"`);
20178
- res += message.substr(index);
20140
+ res += message.slice(index);
20179
20141
  return res;
20180
20142
  }
20181
20143
  /**
@@ -20267,7 +20229,7 @@ function parseICUBlock(pattern) {
20267
20229
  else {
20268
20230
  icuType = 1 /* plural */;
20269
20231
  }
20270
- mainBinding = parseInt(binding.substr(1), 10);
20232
+ mainBinding = parseInt(binding.slice(1), 10);
20271
20233
  return '';
20272
20234
  });
20273
20235
  const parts = i18nParseTextIntoPartsAndICU(pattern);
@@ -21272,7 +21234,7 @@ class Version {
21272
21234
  /**
21273
21235
  * @publicApi
21274
21236
  */
21275
- const VERSION = new Version('14.0.0-next.6');
21237
+ const VERSION = new Version('14.0.0-next.9');
21276
21238
 
21277
21239
  /**
21278
21240
  * @license
@@ -21911,62 +21873,6 @@ class NgModuleRef$1 {
21911
21873
  class NgModuleFactory$1 {
21912
21874
  }
21913
21875
 
21914
- /**
21915
- * @license
21916
- * Copyright Google LLC All Rights Reserved.
21917
- *
21918
- * Use of this source code is governed by an MIT-style license that can be
21919
- * found in the LICENSE file at https://angular.io/license
21920
- */
21921
- /**
21922
- * Map of module-id to the corresponding NgModule.
21923
- * - In pre Ivy we track NgModuleFactory,
21924
- * - In post Ivy we track the NgModuleType
21925
- */
21926
- const modules = new Map();
21927
- /**
21928
- * Registers a loaded module. Should only be called from generated NgModuleFactory code.
21929
- * @publicApi
21930
- */
21931
- function registerModuleFactory(id, factory) {
21932
- const existing = modules.get(id);
21933
- assertSameOrNotExisting(id, existing && existing.moduleType, factory.moduleType);
21934
- modules.set(id, factory);
21935
- }
21936
- function assertSameOrNotExisting(id, type, incoming) {
21937
- if (type && type !== incoming) {
21938
- throw new Error(`Duplicate module registered for ${id} - ${stringify(type)} vs ${stringify(type.name)}`);
21939
- }
21940
- }
21941
- function registerNgModuleType(ngModuleType) {
21942
- const visited = new Set();
21943
- recurse(ngModuleType);
21944
- function recurse(ngModuleType) {
21945
- // The imports array of an NgModule must refer to other NgModules,
21946
- // so an error is thrown if no module definition is available.
21947
- const def = getNgModuleDef(ngModuleType, /* throwNotFound */ true);
21948
- const id = def.id;
21949
- if (id !== null) {
21950
- const existing = modules.get(id);
21951
- assertSameOrNotExisting(id, existing, ngModuleType);
21952
- modules.set(id, ngModuleType);
21953
- }
21954
- const imports = maybeUnwrapFn(def.imports);
21955
- for (const i of imports) {
21956
- if (!visited.has(i)) {
21957
- visited.add(i);
21958
- recurse(i);
21959
- }
21960
- }
21961
- }
21962
- }
21963
- function clearModulesForTest() {
21964
- modules.clear();
21965
- }
21966
- function getRegisteredNgModuleType(id) {
21967
- return (modules.get(id) || autoRegisterModuleById[id]);
21968
- }
21969
-
21970
21876
  /**
21971
21877
  * @license
21972
21878
  * Copyright Google LLC All Rights Reserved.
@@ -22037,33 +21943,6 @@ class NgModuleFactory extends NgModuleFactory$1 {
22037
21943
  constructor(moduleType) {
22038
21944
  super();
22039
21945
  this.moduleType = moduleType;
22040
- const ngModuleDef = getNgModuleDef(moduleType);
22041
- if (ngModuleDef !== null) {
22042
- // Register the NgModule with Angular's module registry. The location (and hence timing) of
22043
- // this call is critical to ensure this works correctly (modules get registered when expected)
22044
- // without bloating bundles (modules are registered when otherwise not referenced).
22045
- //
22046
- // In View Engine, registration occurs in the .ngfactory.js file as a side effect. This has
22047
- // several practical consequences:
22048
- //
22049
- // - If an .ngfactory file is not imported from, the module won't be registered (and can be
22050
- // tree shaken).
22051
- // - If an .ngfactory file is imported from, the module will be registered even if an instance
22052
- // is not actually created (via `create` below).
22053
- // - Since an .ngfactory file in View Engine references the .ngfactory files of the NgModule's
22054
- // imports,
22055
- //
22056
- // In Ivy, things are a bit different. .ngfactory files still exist for compatibility, but are
22057
- // not a required API to use - there are other ways to obtain an NgModuleFactory for a given
22058
- // NgModule. Thus, relying on a side effect in the .ngfactory file is not sufficient. Instead,
22059
- // the side effect of registration is added here, in the constructor of NgModuleFactory,
22060
- // ensuring no matter how a factory is created, the module is registered correctly.
22061
- //
22062
- // An alternative would be to include the registration side effect inline following the actual
22063
- // NgModule definition. This also has the correct timing, but breaks tree-shaking - modules
22064
- // will be registered and retained even if they're otherwise never referenced.
22065
- registerNgModuleType(moduleType);
22066
- }
22067
21946
  }
22068
21947
  create(parentInjector) {
22069
21948
  return new NgModuleRef(this.moduleType, parentInjector);
@@ -23743,6 +23622,7 @@ const angularCoreEnv = (() => ({
23743
23622
  'ɵɵinvalidFactory': ɵɵinvalidFactory,
23744
23623
  'ɵɵinvalidFactoryDep': ɵɵinvalidFactoryDep,
23745
23624
  'ɵɵtemplateRefExtractor': ɵɵtemplateRefExtractor,
23625
+ 'ɵɵresetView': ɵɵresetView,
23746
23626
  'ɵɵNgOnChangesFeature': ɵɵNgOnChangesFeature,
23747
23627
  'ɵɵProvidersFeature': ɵɵProvidersFeature,
23748
23628
  'ɵɵCopyDefinitionFeature': ɵɵCopyDefinitionFeature,
@@ -23855,6 +23735,7 @@ const angularCoreEnv = (() => ({
23855
23735
  'ɵɵresolveBody': ɵɵresolveBody,
23856
23736
  'ɵɵsetComponentScope': ɵɵsetComponentScope,
23857
23737
  'ɵɵsetNgModuleScope': ɵɵsetNgModuleScope,
23738
+ 'ɵɵregisterNgModuleType': registerNgModuleType,
23858
23739
  'ɵɵsanitizeHtml': ɵɵsanitizeHtml,
23859
23740
  'ɵɵsanitizeStyle': ɵɵsanitizeStyle,
23860
23741
  'ɵɵsanitizeResourceUrl': ɵɵsanitizeResourceUrl,
@@ -23890,6 +23771,17 @@ function resetJitOptions() {
23890
23771
  jitOptions = null;
23891
23772
  }
23892
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
+
23893
23785
  /**
23894
23786
  * @license
23895
23787
  * Copyright Google LLC All Rights Reserved.
@@ -23946,7 +23838,11 @@ function isResolvedDeclaration(declaration) {
23946
23838
  * This function automatically gets called when a class has a `@NgModule` decorator.
23947
23839
  */
23948
23840
  function compileNgModule(moduleType, ngModule = {}) {
23841
+ patchModuleCompilation();
23949
23842
  compileNgModuleDefs(moduleType, ngModule);
23843
+ if (ngModule.id !== undefined) {
23844
+ registerNgModuleType(moduleType, ngModule.id);
23845
+ }
23950
23846
  // Because we don't know if all declarations have resolved yet at the moment the
23951
23847
  // NgModule decorator is executing, we're enqueueing the setting of module scope
23952
23848
  // on its declarations to be run at a later time when all declarations for the module,
@@ -25126,16 +25022,16 @@ Console.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: Console, factory: C
25126
25022
  /**
25127
25023
  * Work out the locale from the potential global properties.
25128
25024
  *
25129
- * * Closure Compiler: use `goog.getLocale()`.
25025
+ * * Closure Compiler: use `goog.LOCALE`.
25130
25026
  * * Ivy enabled: use `$localize.locale`
25131
25027
  */
25132
25028
  function getGlobalLocale() {
25133
25029
  if (typeof ngI18nClosureMode !== 'undefined' && ngI18nClosureMode &&
25134
- typeof goog !== 'undefined' && goog.getLocale() !== 'en') {
25135
- // * The default `goog.getLocale()` value is `en`, while Angular used `en-US`.
25030
+ typeof goog !== 'undefined' && goog.LOCALE !== 'en') {
25031
+ // * The default `goog.LOCALE` value is `en`, while Angular used `en-US`.
25136
25032
  // * In order to preserve backwards compatibility, we use Angular default value over
25137
25033
  // Closure Compiler's one.
25138
- return goog.getLocale();
25034
+ return goog.LOCALE;
25139
25035
  }
25140
25036
  else {
25141
25037
  // KEEP `typeof $localize !== 'undefined' && $localize.locale` IN SYNC WITH THE LOCALIZE
@@ -28949,5 +28845,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
28949
28845
  * Generated bundle index. Do not edit.
28950
28846
  */
28951
28847
 
28952
- 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 };
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 };
28953
28849
  //# sourceMappingURL=core.mjs.map