@angular/core 11.2.3 → 11.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/bundles/core-testing.umd.js +1 -1
  2. package/bundles/core-testing.umd.min.js +1 -1
  3. package/bundles/core-testing.umd.min.js.map +1 -1
  4. package/bundles/core.umd.js +84 -110
  5. package/bundles/core.umd.js.map +1 -1
  6. package/bundles/core.umd.min.js +125 -125
  7. package/bundles/core.umd.min.js.map +1 -1
  8. package/core.d.ts +25 -34
  9. package/core.metadata.json +1 -1
  10. package/esm2015/src/compiler/compiler_facade_interface.js +1 -1
  11. package/esm2015/src/core_render3_private_export.js +2 -2
  12. package/esm2015/src/di/injection_token.js +1 -1
  13. package/esm2015/src/di/interface/defs.js +2 -9
  14. package/esm2015/src/di/jit/environment.js +2 -18
  15. package/esm2015/src/di/r3_injector.js +3 -8
  16. package/esm2015/src/metadata/ng_module.js +5 -6
  17. package/esm2015/src/render3/definition.js +3 -3
  18. package/esm2015/src/render3/definition_factory.js +1 -1
  19. package/esm2015/src/render3/di.js +12 -22
  20. package/esm2015/src/render3/empty.js +1 -4
  21. package/esm2015/src/render3/errors.js +1 -1
  22. package/esm2015/src/render3/features/inherit_definition_feature.js +3 -2
  23. package/esm2015/src/render3/features/ng_onchanges_feature.js +2 -2
  24. package/esm2015/src/render3/index.js +2 -2
  25. package/esm2015/src/render3/instructions/listener.js +2 -2
  26. package/esm2015/src/render3/instructions/lview_debug.js +1 -2
  27. package/esm2015/src/render3/interfaces/definition.js +1 -1
  28. package/esm2015/src/render3/jit/directive.js +3 -2
  29. package/esm2015/src/render3/jit/environment.js +1 -2
  30. package/esm2015/src/render3/jit/module.js +22 -4
  31. package/esm2015/src/render3/util/discovery_utils.js +1 -1
  32. package/esm2015/src/version.js +1 -1
  33. package/fesm2015/core.js +85 -110
  34. package/fesm2015/core.js.map +1 -1
  35. package/fesm2015/testing.js +1 -1
  36. package/package.json +1 -1
  37. package/schematics/migrations/renderer-to-renderer2/helpers.js +1 -2
  38. package/src/r3_symbols.d.ts +11 -15
  39. package/testing/testing.d.ts +1 -1
  40. package/testing.d.ts +1 -1
package/fesm2015/core.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v11.2.3
2
+ * @license Angular v11.2.7
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -381,9 +381,6 @@ const defineInjectable = ɵɵdefineInjectable;
381
381
  *
382
382
  * Options:
383
383
  *
384
- * * `factory`: an `InjectorType` is an instantiable type, so a zero argument `factory` function to
385
- * create the type must be provided. If that factory function needs to inject arguments, it can
386
- * use the `inject` function.
387
384
  * * `providers`: an optional array of providers to add to the injector. Each provider must
388
385
  * either have a factory or point to a type which has a `ɵprov` static property (the
389
386
  * type must be an `InjectableType`).
@@ -394,11 +391,7 @@ const defineInjectable = ɵɵdefineInjectable;
394
391
  * @codeGenApi
395
392
  */
396
393
  function ɵɵdefineInjector(options) {
397
- return {
398
- factory: options.factory,
399
- providers: options.providers || [],
400
- imports: options.imports || [],
401
- };
394
+ return { providers: options.providers || [], imports: options.imports || [] };
402
395
  }
403
396
  /**
404
397
  * Read the injectable def (`ɵprov`) for `type` in a way which is immune to accidentally reading
@@ -818,6 +811,28 @@ if ((typeof ngDevMode === 'undefined' || ngDevMode) && initNgDevMode()) {
818
811
  Object.freeze(EMPTY_ARRAY);
819
812
  }
820
813
 
814
+ /**
815
+ * @license
816
+ * Copyright Google LLC All Rights Reserved.
817
+ *
818
+ * Use of this source code is governed by an MIT-style license that can be
819
+ * found in the LICENSE file at https://angular.io/license
820
+ */
821
+ /**
822
+ * This file contains reuseable "empty" symbols that can be used as default return values
823
+ * in different parts of the rendering code. Because the same symbols are returned, this
824
+ * allows for identity checks against these values to be consistently used by the framework
825
+ * code.
826
+ */
827
+ const EMPTY_ARRAY$1 = [];
828
+ // freezing the values prevents any code from accidentally inserting new values in
829
+ if ((typeof ngDevMode === 'undefined' || ngDevMode) && initNgDevMode()) {
830
+ // These property accesses can be ignored because ngDevMode will be set to false
831
+ // when optimizing code and the whole if statement will be dropped.
832
+ // tslint:disable-next-line:no-toplevel-property-access
833
+ Object.freeze(EMPTY_ARRAY$1);
834
+ }
835
+
821
836
  /**
822
837
  * @license
823
838
  * Copyright Google LLC All Rights Reserved.
@@ -869,7 +884,6 @@ function ɵɵdefineComponent(componentDefinition) {
869
884
  // See the `initNgDevMode` docstring for more information.
870
885
  (typeof ngDevMode === 'undefined' || ngDevMode) && initNgDevMode();
871
886
  const type = componentDefinition.type;
872
- const typePrototype = type.prototype;
873
887
  const declaredInputs = {};
874
888
  const def = {
875
889
  type: type,
@@ -891,7 +905,7 @@ function ɵɵdefineComponent(componentDefinition) {
891
905
  onPush: componentDefinition.changeDetection === ChangeDetectionStrategy.OnPush,
892
906
  directiveDefs: null,
893
907
  pipeDefs: null,
894
- selectors: componentDefinition.selectors || EMPTY_ARRAY,
908
+ selectors: componentDefinition.selectors || EMPTY_ARRAY$1,
895
909
  viewQuery: componentDefinition.viewQuery || null,
896
910
  features: componentDefinition.features || null,
897
911
  data: componentDefinition.data || {},
@@ -899,7 +913,7 @@ function ɵɵdefineComponent(componentDefinition) {
899
913
  // directly in the next line. Also `None` should be 0 not 2.
900
914
  encapsulation: componentDefinition.encapsulation || ViewEncapsulation.Emulated,
901
915
  id: 'c',
902
- styles: componentDefinition.styles || EMPTY_ARRAY,
916
+ styles: componentDefinition.styles || EMPTY_ARRAY$1,
903
917
  _: null,
904
918
  setInput: null,
905
919
  schemas: componentDefinition.schemas || null,
@@ -957,10 +971,10 @@ const autoRegisterModuleById = {};
957
971
  function ɵɵdefineNgModule(def) {
958
972
  const res = {
959
973
  type: def.type,
960
- bootstrap: def.bootstrap || EMPTY_ARRAY,
961
- declarations: def.declarations || EMPTY_ARRAY,
962
- imports: def.imports || EMPTY_ARRAY,
963
- exports: def.exports || EMPTY_ARRAY,
974
+ bootstrap: def.bootstrap || EMPTY_ARRAY$1,
975
+ declarations: def.declarations || EMPTY_ARRAY$1,
976
+ imports: def.imports || EMPTY_ARRAY$1,
977
+ exports: def.exports || EMPTY_ARRAY$1,
964
978
  transitiveCompileScopes: null,
965
979
  schemas: def.schemas || null,
966
980
  id: def.id || null,
@@ -985,9 +999,9 @@ function ɵɵdefineNgModule(def) {
985
999
  function ɵɵsetNgModuleScope(type, scope) {
986
1000
  return noSideEffects(() => {
987
1001
  const ngModuleDef = getNgModuleDef(type, true);
988
- ngModuleDef.declarations = scope.declarations || EMPTY_ARRAY;
989
- ngModuleDef.imports = scope.imports || EMPTY_ARRAY;
990
- ngModuleDef.exports = scope.exports || EMPTY_ARRAY;
1002
+ ngModuleDef.declarations = scope.declarations || EMPTY_ARRAY$1;
1003
+ ngModuleDef.imports = scope.imports || EMPTY_ARRAY$1;
1004
+ ngModuleDef.exports = scope.exports || EMPTY_ARRAY$1;
991
1005
  });
992
1006
  }
993
1007
  /**
@@ -3614,36 +3628,18 @@ class NodeInjector {
3614
3628
  return getOrCreateInjectable(this._tNode, this._lView, token, undefined, notFoundValue);
3615
3629
  }
3616
3630
  }
3617
- /**
3618
- * @codeGenApi
3619
- */
3620
- function ɵɵgetFactoryOf(type) {
3621
- const typeAny = type;
3622
- if (isForwardRef(type)) {
3623
- return (() => {
3624
- const factory = ɵɵgetFactoryOf(resolveForwardRef(typeAny));
3625
- return factory ? factory() : null;
3626
- });
3627
- }
3628
- let factory = getFactoryDef(typeAny);
3629
- if (factory === null) {
3630
- const injectorDef = getInjectorDef(typeAny);
3631
- factory = injectorDef && injectorDef.factory;
3632
- }
3633
- return factory || null;
3634
- }
3635
3631
  /**
3636
3632
  * @codeGenApi
3637
3633
  */
3638
3634
  function ɵɵgetInheritedFactory(type) {
3639
3635
  return noSideEffects(() => {
3640
3636
  const ownConstructor = type.prototype.constructor;
3641
- const ownFactory = ownConstructor[NG_FACTORY_DEF] || ɵɵgetFactoryOf(ownConstructor);
3637
+ const ownFactory = ownConstructor[NG_FACTORY_DEF] || getFactoryOf(ownConstructor);
3642
3638
  const objectPrototype = Object.prototype;
3643
3639
  let parent = Object.getPrototypeOf(type.prototype).constructor;
3644
3640
  // Go up the prototype until we hit `Object`.
3645
3641
  while (parent && parent !== objectPrototype) {
3646
- const factory = parent[NG_FACTORY_DEF] || ɵɵgetFactoryOf(parent);
3642
+ const factory = parent[NG_FACTORY_DEF] || getFactoryOf(parent);
3647
3643
  // If we hit something that has a factory and the factory isn't the same as the type,
3648
3644
  // we've found the inherited factory. Note the check that the factory isn't the type's
3649
3645
  // own factory is redundant in most cases, but if the user has custom decorators on the
@@ -3661,6 +3657,15 @@ function ɵɵgetInheritedFactory(type) {
3661
3657
  return t => new t();
3662
3658
  });
3663
3659
  }
3660
+ function getFactoryOf(type) {
3661
+ if (isForwardRef(type)) {
3662
+ return () => {
3663
+ const factory = getFactoryOf(resolveForwardRef(type));
3664
+ return factory && factory();
3665
+ };
3666
+ }
3667
+ return getFactoryDef(type);
3668
+ }
3664
3669
 
3665
3670
  /**
3666
3671
  * @license
@@ -6624,7 +6629,7 @@ function getDirectivesAtNodeIndex(nodeIndex, lView, includeComponents) {
6624
6629
  const tNode = lView[TVIEW].data[nodeIndex];
6625
6630
  let directiveStartIndex = tNode.directiveStart;
6626
6631
  if (directiveStartIndex == 0)
6627
- return EMPTY_ARRAY;
6632
+ return EMPTY_ARRAY$1;
6628
6633
  const directiveEndIndex = tNode.directiveEnd;
6629
6634
  if (!includeComponents && tNode.flags & 2 /* isComponentHost */)
6630
6635
  directiveStartIndex++;
@@ -8574,7 +8579,6 @@ function getLViewToClone(type, name) {
8574
8579
  }
8575
8580
  return embeddedArray;
8576
8581
  }
8577
- throw new Error('unreachable code');
8578
8582
  }
8579
8583
  function nameSuffix(text) {
8580
8584
  if (text == null)
@@ -11083,7 +11087,7 @@ const NOT_YET = {};
11083
11087
  * a circular dependency among the providers.
11084
11088
  */
11085
11089
  const CIRCULAR = {};
11086
- const EMPTY_ARRAY$1 = [];
11090
+ const EMPTY_ARRAY$2 = [];
11087
11091
  /**
11088
11092
  * A lazily initialized NullInjector.
11089
11093
  */
@@ -11318,14 +11322,15 @@ class R3Injector {
11318
11322
  if (importTypesWithProviders !== undefined) {
11319
11323
  for (let i = 0; i < importTypesWithProviders.length; i++) {
11320
11324
  const { ngModule, providers } = importTypesWithProviders[i];
11321
- deepForEach(providers, provider => this.processProvider(provider, ngModule, providers || EMPTY_ARRAY$1));
11325
+ deepForEach(providers, provider => this.processProvider(provider, ngModule, providers || EMPTY_ARRAY$2));
11322
11326
  }
11323
11327
  }
11324
11328
  }
11325
11329
  // Track the InjectorType and add a provider for it. It's important that this is done after the
11326
11330
  // def's imports.
11327
11331
  this.injectorDefTypes.add(defType);
11328
- this.records.set(defType, makeRecord(def.factory, NOT_YET));
11332
+ const factory = getFactoryDef(defType) || (() => new defType());
11333
+ this.records.set(defType, makeRecord(factory, NOT_YET));
11329
11334
  // Next, include providers listed on the definition itself.
11330
11335
  const defProviders = def.providers;
11331
11336
  if (defProviders != null && !isDuplicate) {
@@ -11403,12 +11408,6 @@ function injectableDefOrInjectorDefFactory(token) {
11403
11408
  if (factory !== null) {
11404
11409
  return factory;
11405
11410
  }
11406
- // If the token is an NgModule, it's also injectable but the factory is on its injector def
11407
- // (`ɵinj`)
11408
- const injectorDef = getInjectorDef(token);
11409
- if (injectorDef !== null) {
11410
- return injectorDef.factory;
11411
- }
11412
11411
  // InjectionTokens should have an injectable def (ɵprov) and thus should be handled above.
11413
11412
  // If it's missing that, it's an error.
11414
11413
  if (token instanceof InjectionToken) {
@@ -12577,7 +12576,7 @@ function maybeUnwrapEmpty(value) {
12577
12576
  if (value === EMPTY_OBJ) {
12578
12577
  return {};
12579
12578
  }
12580
- else if (value === EMPTY_ARRAY) {
12579
+ else if (value === EMPTY_ARRAY$1) {
12581
12580
  return [];
12582
12581
  }
12583
12582
  else {
@@ -13565,23 +13564,8 @@ const angularCoreDiEnv = {
13565
13564
  'ɵɵdefineInjectable': ɵɵdefineInjectable,
13566
13565
  'ɵɵdefineInjector': ɵɵdefineInjector,
13567
13566
  'ɵɵinject': ɵɵinject,
13568
- 'ɵɵgetFactoryOf': getFactoryOf,
13569
13567
  'ɵɵinvalidFactoryDep': ɵɵinvalidFactoryDep,
13570
13568
  };
13571
- function getFactoryOf(type) {
13572
- const typeAny = type;
13573
- if (isForwardRef(type)) {
13574
- return (() => {
13575
- const factory = getFactoryOf(resolveForwardRef(typeAny));
13576
- return factory ? factory() : null;
13577
- });
13578
- }
13579
- const def = getInjectableDef(typeAny) || getInjectorDef(typeAny);
13580
- if (!def || def.factory === undefined) {
13581
- return null;
13582
- }
13583
- return def.factory;
13584
- }
13585
13569
 
13586
13570
  /**
13587
13571
  * @license
@@ -13686,7 +13670,7 @@ function getInjectableMetadata(type, srcMeta) {
13686
13670
  */
13687
13671
  const ɵ0$9 = getClosureSafeProperty;
13688
13672
  const USE_VALUE$2 = getClosureSafeProperty({ provide: String, useValue: ɵ0$9 });
13689
- const EMPTY_ARRAY$2 = [];
13673
+ const EMPTY_ARRAY$3 = [];
13690
13674
  function convertInjectableProviderToFactory(type, provider) {
13691
13675
  if (!provider) {
13692
13676
  const reflectionCapabilities = new ReflectionCapabilities();
@@ -13704,7 +13688,7 @@ function convertInjectableProviderToFactory(type, provider) {
13704
13688
  }
13705
13689
  else if (provider.useFactory) {
13706
13690
  const factoryProvider = provider;
13707
- return () => factoryProvider.useFactory(...injectArgs(factoryProvider.deps || EMPTY_ARRAY$2));
13691
+ return () => factoryProvider.useFactory(...injectArgs(factoryProvider.deps || EMPTY_ARRAY$3));
13708
13692
  }
13709
13693
  else if (provider.useClass) {
13710
13694
  const classProvider = provider;
@@ -15876,31 +15860,6 @@ function ɵɵpropertyInterpolateV(propName, values, sanitizer) {
15876
15860
  return ɵɵpropertyInterpolateV;
15877
15861
  }
15878
15862
 
15879
- /**
15880
- * @license
15881
- * Copyright Google LLC All Rights Reserved.
15882
- *
15883
- * Use of this source code is governed by an MIT-style license that can be
15884
- * found in the LICENSE file at https://angular.io/license
15885
- */
15886
- /**
15887
- * This file contains reuseable "empty" symbols that can be used as default return values
15888
- * in different parts of the rendering code. Because the same symbols are returned, this
15889
- * allows for identity checks against these values to be consistently used by the framework
15890
- * code.
15891
- */
15892
- const EMPTY_OBJ$1 = {};
15893
- const EMPTY_ARRAY$3 = [];
15894
- // freezing the values prevents any code from accidentally inserting new values in
15895
- if ((typeof ngDevMode === 'undefined' || ngDevMode) && initNgDevMode()) {
15896
- // These property accesses can be ignored because ngDevMode will be set to false
15897
- // when optimizing code and the whole if statement will be dropped.
15898
- // tslint:disable-next-line:no-toplevel-property-access
15899
- Object.freeze(EMPTY_OBJ$1);
15900
- // tslint:disable-next-line:no-toplevel-property-access
15901
- Object.freeze(EMPTY_ARRAY$3);
15902
- }
15903
-
15904
15863
  /**
15905
15864
  * @license
15906
15865
  * Copyright Google LLC All Rights Reserved.
@@ -17083,7 +17042,7 @@ function collectStylingFromTAttrs(stylingKey, attrs, isClassBased) {
17083
17042
  */
17084
17043
  function toStylingKeyValueArray(keyValueArraySet, stringParser, value) {
17085
17044
  if (value == null /*|| value === undefined */ || value === '')
17086
- return EMPTY_ARRAY$3;
17045
+ return EMPTY_ARRAY;
17087
17046
  const styleKeyValueArray = [];
17088
17047
  const unwrappedValue = unwrapSafeValue(value);
17089
17048
  if (Array.isArray(unwrappedValue)) {
@@ -17140,7 +17099,7 @@ function styleKeyValueArraySet(keyValueArray, key, value) {
17140
17099
  function updateStylingMap(tView, tNode, lView, renderer, oldKeyValueArray, newKeyValueArray, isClassBased, bindingIndex) {
17141
17100
  if (oldKeyValueArray === NO_CHANGE) {
17142
17101
  // On first execution the oldKeyValueArray is NO_CHANGE => treat it as empty KeyValueArray.
17143
- oldKeyValueArray = EMPTY_ARRAY$3;
17102
+ oldKeyValueArray = EMPTY_ARRAY;
17144
17103
  }
17145
17104
  let oldIndex = 0;
17146
17105
  let newIndex = 0;
@@ -17278,7 +17237,7 @@ function findStylingValue(tData, tNode, lView, prop, index, isClassBased) {
17278
17237
  // we have `undefined` (or empty array in case of styling-map instruction) instead. This
17279
17238
  // allows the resolution to apply the value (which may later be overwritten when the
17280
17239
  // binding actually executes.)
17281
- valueAtLViewIndex = isStylingMap ? EMPTY_ARRAY$3 : undefined;
17240
+ valueAtLViewIndex = isStylingMap ? EMPTY_ARRAY : undefined;
17282
17241
  }
17283
17242
  let currentValue = isStylingMap ? keyValueArrayGet(valueAtLViewIndex, prop) :
17284
17243
  key === prop ? valueAtLViewIndex : undefined;
@@ -19717,7 +19676,7 @@ function loadIcuContainerVisitor() {
19717
19676
  _removes = tIcu.remove[currentCase];
19718
19677
  }
19719
19678
  else {
19720
- _removes = EMPTY_ARRAY;
19679
+ _removes = EMPTY_ARRAY$1;
19721
19680
  }
19722
19681
  }
19723
19682
  function icuContainerIteratorNext() {
@@ -21396,7 +21355,7 @@ class Version {
21396
21355
  /**
21397
21356
  * @publicApi
21398
21357
  */
21399
- const VERSION = new Version('11.2.3');
21358
+ const VERSION = new Version('11.2.7');
21400
21359
 
21401
21360
  /**
21402
21361
  * @license
@@ -26654,7 +26613,6 @@ const ɵ0$c = () => ({
26654
26613
  'ɵɵdefineNgModule': ɵɵdefineNgModule,
26655
26614
  'ɵɵdefinePipe': ɵɵdefinePipe,
26656
26615
  'ɵɵdirectiveInject': ɵɵdirectiveInject,
26657
- 'ɵɵgetFactoryOf': ɵɵgetFactoryOf,
26658
26616
  'ɵɵgetInheritedFactory': ɵɵgetInheritedFactory,
26659
26617
  'ɵɵinject': ɵɵinject,
26660
26618
  'ɵɵinjectAttribute': ɵɵinjectAttribute,
@@ -26880,7 +26838,7 @@ function compileNgModule(moduleType, ngModule = {}) {
26880
26838
  enqueueModuleForDelayedScoping(moduleType, ngModule);
26881
26839
  }
26882
26840
  /**
26883
- * Compiles and adds the `ɵmod` and `ɵinj` properties to the module class.
26841
+ * Compiles and adds the `ɵmod`, `ɵfac` and `ɵinj` properties to the module class.
26884
26842
  *
26885
26843
  * It's possible to compile a module via this API which will allow duplicate declarations in its
26886
26844
  * root.
@@ -26923,6 +26881,25 @@ function compileNgModuleDefs(moduleType, ngModule, allowDuplicateDeclarationsInR
26923
26881
  return ngModuleDef;
26924
26882
  }
26925
26883
  });
26884
+ let ngFactoryDef = null;
26885
+ Object.defineProperty(moduleType, NG_FACTORY_DEF, {
26886
+ get: () => {
26887
+ if (ngFactoryDef === null) {
26888
+ const compiler = getCompilerFacade();
26889
+ ngFactoryDef = compiler.compileFactory(angularCoreEnv, `ng:///${moduleType.name}/ɵfac.js`, {
26890
+ name: moduleType.name,
26891
+ type: moduleType,
26892
+ deps: reflectDependencies(moduleType),
26893
+ injectFn: 'inject',
26894
+ target: compiler.R3FactoryTarget.NgModule,
26895
+ typeArgumentCount: 0,
26896
+ });
26897
+ }
26898
+ return ngFactoryDef;
26899
+ },
26900
+ // Make the property configurable in dev mode to allow overriding in tests
26901
+ configurable: !!ngDevMode,
26902
+ });
26926
26903
  let ngInjectorDef = null;
26927
26904
  Object.defineProperty(moduleType, NG_INJ_DEF, {
26928
26905
  get: () => {
@@ -26932,7 +26909,6 @@ function compileNgModuleDefs(moduleType, ngModule, allowDuplicateDeclarationsInR
26932
26909
  const meta = {
26933
26910
  name: moduleType.name,
26934
26911
  type: moduleType,
26935
- deps: reflectDependencies(moduleType),
26936
26912
  providers: ngModule.providers || EMPTY_ARRAY$5,
26937
26913
  imports: [
26938
26914
  (ngModule.imports || EMPTY_ARRAY$5).map(resolveForwardRef),
@@ -27341,7 +27317,7 @@ function compileComponent(type, metadata) {
27341
27317
  }
27342
27318
  }
27343
27319
  const templateUrl = metadata.templateUrl || `ng:///${type.name}/template.html`;
27344
- const meta = Object.assign(Object.assign({}, directiveMetadata(type, metadata)), { typeSourceSpan: compiler.createParseSourceSpan('Component', type.name, templateUrl), template: metadata.template || '', preserveWhitespaces, styles: metadata.styles || EMPTY_ARRAY, animations: metadata.animations, directives: [], changeDetection: metadata.changeDetection, pipes: new Map(), encapsulation, interpolation: metadata.interpolation, viewProviders: metadata.viewProviders || null });
27320
+ const meta = Object.assign(Object.assign({}, directiveMetadata(type, metadata)), { typeSourceSpan: compiler.createParseSourceSpan('Component', type.name, templateUrl), template: metadata.template || '', preserveWhitespaces, styles: metadata.styles || EMPTY_ARRAY$1, animations: metadata.animations, directives: [], changeDetection: metadata.changeDetection, pipes: new Map(), encapsulation, interpolation: metadata.interpolation, viewProviders: metadata.viewProviders || null });
27345
27321
  compilationDepth++;
27346
27322
  try {
27347
27323
  if (meta.usesInheritance) {
@@ -27450,8 +27426,8 @@ function directiveMetadata(type, metadata) {
27450
27426
  deps: reflectDependencies(type),
27451
27427
  host: metadata.host || EMPTY_OBJ,
27452
27428
  propMetadata: propMetadata,
27453
- inputs: metadata.inputs || EMPTY_ARRAY,
27454
- outputs: metadata.outputs || EMPTY_ARRAY,
27429
+ inputs: metadata.inputs || EMPTY_ARRAY$1,
27430
+ outputs: metadata.outputs || EMPTY_ARRAY$1,
27455
27431
  queries: extractQueriesMetadata(type, propMetadata, isContentQuery),
27456
27432
  lifecycle: { usesOnChanges: reflect.hasLifecycleHook(type, 'ngOnChanges') },
27457
27433
  typeSourceSpan: null,
@@ -27744,11 +27720,10 @@ function preR3NgModuleCompile(moduleType, metadata) {
27744
27720
  if (metadata && metadata.exports) {
27745
27721
  imports = [...imports, metadata.exports];
27746
27722
  }
27747
- moduleType.ɵinj = ɵɵdefineInjector({
27748
- factory: convertInjectableProviderToFactory(moduleType, { useClass: moduleType }),
27749
- providers: metadata && metadata.providers,
27750
- imports: imports,
27751
- });
27723
+ const moduleInjectorType = moduleType;
27724
+ moduleInjectorType.ɵfac = convertInjectableProviderToFactory(moduleType, { useClass: moduleType });
27725
+ moduleInjectorType.ɵinj =
27726
+ ɵɵdefineInjector({ providers: metadata && metadata.providers, imports: imports });
27752
27727
  }
27753
27728
  const SWITCH_COMPILE_NGMODULE__POST_R3__ = compileNgModule;
27754
27729
  const SWITCH_COMPILE_NGMODULE__PRE_R3__ = preR3NgModuleCompile;
@@ -32942,5 +32917,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
32942
32917
  * Generated bundle index. Do not edit.
32943
32918
  */
32944
32919
 
32945
- export { ANALYZE_FOR_ENTRY_COMPONENTS, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory, ComponentFactoryResolver, ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ElementRef, EmbeddedViewRef, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR$1 as INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID$1 as LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory, NgModuleFactoryLoader, 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, SystemJsNgModuleLoader, SystemJsNgModuleLoaderConfig, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation, ViewRef$1 as ViewRef, WrappedValue, asNativeElements, assertPlatform, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode$1 as getDebugNode, getModuleFactory, getPlatform, inject, isDevMode, platformCore, resolveForwardRef, setTestabilityGetter, ɵ0$3 as ɵ0, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, CREATE_ATTRIBUTE_DECORATOR__POST_R3__ as ɵCREATE_ATTRIBUTE_DECORATOR__POST_R3__, ChangeDetectorStatus as ɵChangeDetectorStatus, CodegenComponentFactoryResolver as ɵCodegenComponentFactoryResolver, Compiler_compileModuleAndAllComponentsAsync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsAsync__POST_R3__, Compiler_compileModuleAndAllComponentsSync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsSync__POST_R3__, Compiler_compileModuleAsync__POST_R3__ as ɵCompiler_compileModuleAsync__POST_R3__, Compiler_compileModuleSync__POST_R3__ as ɵCompiler_compileModuleSync__POST_R3__, ComponentFactory as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, EMPTY_ARRAY$4 as ɵEMPTY_ARRAY, EMPTY_MAP as ɵEMPTY_MAP, INJECTOR_IMPL__POST_R3__ as ɵINJECTOR_IMPL__POST_R3__, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, 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$1 as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory$1 as ɵRender3ComponentFactory, ComponentRef$1 as ɵRender3ComponentRef, NgModuleRef$1 as ɵRender3NgModuleRef, SWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__ as ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__, SWITCH_COMPILE_COMPONENT__POST_R3__ as ɵSWITCH_COMPILE_COMPONENT__POST_R3__, SWITCH_COMPILE_DIRECTIVE__POST_R3__ as ɵSWITCH_COMPILE_DIRECTIVE__POST_R3__, SWITCH_COMPILE_INJECTABLE__POST_R3__ as ɵSWITCH_COMPILE_INJECTABLE__POST_R3__, SWITCH_COMPILE_NGMODULE__POST_R3__ as ɵSWITCH_COMPILE_NGMODULE__POST_R3__, SWITCH_COMPILE_PIPE__POST_R3__ as ɵSWITCH_COMPILE_PIPE__POST_R3__, SWITCH_ELEMENT_REF_FACTORY__POST_R3__ as ɵSWITCH_ELEMENT_REF_FACTORY__POST_R3__, SWITCH_IVY_ENABLED__POST_R3__ as ɵSWITCH_IVY_ENABLED__POST_R3__, SWITCH_RENDERER2_FACTORY__POST_R3__ as ɵSWITCH_RENDERER2_FACTORY__POST_R3__, SWITCH_TEMPLATE_REF_FACTORY__POST_R3__ as ɵSWITCH_TEMPLATE_REF_FACTORY__POST_R3__, SWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__ as ɵSWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, anchorDef as ɵand, isForwardRef as ɵangular_packages_core_core_a, injectInjectorOnly as ɵangular_packages_core_core_b, zoneSchedulerFactory as ɵangular_packages_core_core_ba, USD_CURRENCY_CODE as ɵangular_packages_core_core_bb, _def as ɵangular_packages_core_core_bc, DebugContext as ɵangular_packages_core_core_bd, NgOnChangesFeatureImpl as ɵangular_packages_core_core_be, SCHEDULER as ɵangular_packages_core_core_bf, injectAttributeImpl as ɵangular_packages_core_core_bg, getLView as ɵangular_packages_core_core_bh, getBindingRoot as ɵangular_packages_core_core_bi, nextContextImpl as ɵangular_packages_core_core_bj, pureFunction1Internal as ɵangular_packages_core_core_bl, pureFunction2Internal as ɵangular_packages_core_core_bm, pureFunction3Internal as ɵangular_packages_core_core_bn, pureFunction4Internal as ɵangular_packages_core_core_bo, pureFunctionVInternal as ɵangular_packages_core_core_bp, getUrlSanitizer as ɵangular_packages_core_core_bq, makePropDecorator as ɵangular_packages_core_core_br, makeParamDecorator as ɵangular_packages_core_core_bs, getClosureSafeProperty as ɵangular_packages_core_core_bv, NullInjector as ɵangular_packages_core_core_bw, getInjectImplementation as ɵangular_packages_core_core_bx, getNativeByTNode as ɵangular_packages_core_core_bz, attachInjectFlag as ɵangular_packages_core_core_c, getRootContext as ɵangular_packages_core_core_cb, i18nPostprocess as ɵangular_packages_core_core_cc, ReflectiveInjector_ as ɵangular_packages_core_core_d, ReflectiveDependency as ɵangular_packages_core_core_e, resolveReflectiveProviders as ɵangular_packages_core_core_f, _appIdRandomProviderFactory as ɵangular_packages_core_core_g, injectRenderer2 as ɵangular_packages_core_core_h, injectElementRef as ɵangular_packages_core_core_i, createElementRef as ɵangular_packages_core_core_j, getModuleFactory__PRE_R3__ as ɵangular_packages_core_core_k, injectTemplateRef as ɵangular_packages_core_core_l, createTemplateRef as ɵangular_packages_core_core_m, injectViewContainerRef as ɵangular_packages_core_core_n, DebugNode__PRE_R3__ as ɵangular_packages_core_core_o, DebugElement__PRE_R3__ as ɵangular_packages_core_core_p, getDebugNodeR2__PRE_R3__ as ɵangular_packages_core_core_q, injectChangeDetectorRef as ɵangular_packages_core_core_r, DefaultIterableDifferFactory as ɵangular_packages_core_core_s, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_t, defaultIterableDiffersFactory as ɵangular_packages_core_core_u, defaultKeyValueDiffersFactory as ɵangular_packages_core_core_v, _iterableDiffersFactory as ɵangular_packages_core_core_w, _keyValueDiffersFactory as ɵangular_packages_core_core_x, _localeFactory as ɵangular_packages_core_core_y, APPLICATION_MODULE_PROVIDERS as ɵangular_packages_core_core_z, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, createComponentFactory as ɵccf, clearOverrides as ɵclearOverrides, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, createNgModuleFactory as ɵcmf, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory__POST_R3__ as ɵcompileNgModuleFactory__POST_R3__, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, createRendererType2 as ɵcrt, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, directiveDef as ɵdid, elementDef as ɵeld, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getComponentViewDefinitionFactory as ɵgetComponentViewDefinitionFactory, getDebugNodeR2 as ɵgetDebugNodeR2, getDebugNode__POST_R3__ as ɵgetDebugNode__POST_R3__, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getModuleFactory__POST_R3__ as ɵgetModuleFactory__POST_R3__, getSanitizationBypassType as ɵgetSanitizationBypassType, _global as ɵglobal, initServicesIfNeeded as ɵinitServicesIfNeeded, inlineInterpolate as ɵinlineInterpolate, interpolate as ɵinterpolate, isBoundToModule__POST_R3__ as ɵisBoundToModule__POST_R3__, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, ivyEnabled as ɵivyEnabled, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, noSideEffects as ɵnoSideEffects, nodeValue as ɵnov, overrideComponentView as ɵoverrideComponentView, overrideProvider as ɵoverrideProvider, pureArrayDef as ɵpad, patchComponentDefWithScope as ɵpatchComponentDefWithScope, pipeDef as ɵpid, pureObjectDef as ɵpod, purePipeDef as ɵppd, providerDef as ɵprd, publishDefaultGlobalUtils as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, queryDef as ɵqud, registerLocaleData as ɵregisterLocaleData, registerModuleFactory as ɵregisterModuleFactory, registerNgModuleType as ɵregisterNgModuleType, renderComponent$1 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, textDef as ɵted, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapValue as ɵunv, unwrapSafeValue as ɵunwrapSafeValue, viewDef as ɵvid, whenRendered as ɵwhenRendered, ɵɵCopyDefinitionFeature, ɵɵ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, ɵɵgetFactoryOf, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinjectPipeChangeDetectorRef, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵ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 };
32920
+ export { ANALYZE_FOR_ENTRY_COMPONENTS, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory, ComponentFactoryResolver, ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ElementRef, EmbeddedViewRef, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR$1 as INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID$1 as LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory, NgModuleFactoryLoader, 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, SystemJsNgModuleLoader, SystemJsNgModuleLoaderConfig, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation, ViewRef$1 as ViewRef, WrappedValue, asNativeElements, assertPlatform, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode$1 as getDebugNode, getModuleFactory, getPlatform, inject, isDevMode, platformCore, resolveForwardRef, setTestabilityGetter, ɵ0$3 as ɵ0, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, CREATE_ATTRIBUTE_DECORATOR__POST_R3__ as ɵCREATE_ATTRIBUTE_DECORATOR__POST_R3__, ChangeDetectorStatus as ɵChangeDetectorStatus, CodegenComponentFactoryResolver as ɵCodegenComponentFactoryResolver, Compiler_compileModuleAndAllComponentsAsync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsAsync__POST_R3__, Compiler_compileModuleAndAllComponentsSync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsSync__POST_R3__, Compiler_compileModuleAsync__POST_R3__ as ɵCompiler_compileModuleAsync__POST_R3__, Compiler_compileModuleSync__POST_R3__ as ɵCompiler_compileModuleSync__POST_R3__, ComponentFactory as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, EMPTY_ARRAY$4 as ɵEMPTY_ARRAY, EMPTY_MAP as ɵEMPTY_MAP, INJECTOR_IMPL__POST_R3__ as ɵINJECTOR_IMPL__POST_R3__, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, 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$1 as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory$1 as ɵRender3ComponentFactory, ComponentRef$1 as ɵRender3ComponentRef, NgModuleRef$1 as ɵRender3NgModuleRef, SWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__ as ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__, SWITCH_COMPILE_COMPONENT__POST_R3__ as ɵSWITCH_COMPILE_COMPONENT__POST_R3__, SWITCH_COMPILE_DIRECTIVE__POST_R3__ as ɵSWITCH_COMPILE_DIRECTIVE__POST_R3__, SWITCH_COMPILE_INJECTABLE__POST_R3__ as ɵSWITCH_COMPILE_INJECTABLE__POST_R3__, SWITCH_COMPILE_NGMODULE__POST_R3__ as ɵSWITCH_COMPILE_NGMODULE__POST_R3__, SWITCH_COMPILE_PIPE__POST_R3__ as ɵSWITCH_COMPILE_PIPE__POST_R3__, SWITCH_ELEMENT_REF_FACTORY__POST_R3__ as ɵSWITCH_ELEMENT_REF_FACTORY__POST_R3__, SWITCH_IVY_ENABLED__POST_R3__ as ɵSWITCH_IVY_ENABLED__POST_R3__, SWITCH_RENDERER2_FACTORY__POST_R3__ as ɵSWITCH_RENDERER2_FACTORY__POST_R3__, SWITCH_TEMPLATE_REF_FACTORY__POST_R3__ as ɵSWITCH_TEMPLATE_REF_FACTORY__POST_R3__, SWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__ as ɵSWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, anchorDef as ɵand, isForwardRef as ɵangular_packages_core_core_a, injectInjectorOnly as ɵangular_packages_core_core_b, zoneSchedulerFactory as ɵangular_packages_core_core_ba, USD_CURRENCY_CODE as ɵangular_packages_core_core_bb, _def as ɵangular_packages_core_core_bc, DebugContext as ɵangular_packages_core_core_bd, NgOnChangesFeatureImpl as ɵangular_packages_core_core_be, SCHEDULER as ɵangular_packages_core_core_bf, injectAttributeImpl as ɵangular_packages_core_core_bg, getLView as ɵangular_packages_core_core_bh, getBindingRoot as ɵangular_packages_core_core_bi, nextContextImpl as ɵangular_packages_core_core_bj, pureFunction1Internal as ɵangular_packages_core_core_bl, pureFunction2Internal as ɵangular_packages_core_core_bm, pureFunction3Internal as ɵangular_packages_core_core_bn, pureFunction4Internal as ɵangular_packages_core_core_bo, pureFunctionVInternal as ɵangular_packages_core_core_bp, getUrlSanitizer as ɵangular_packages_core_core_bq, makePropDecorator as ɵangular_packages_core_core_br, makeParamDecorator as ɵangular_packages_core_core_bs, getClosureSafeProperty as ɵangular_packages_core_core_bv, NullInjector as ɵangular_packages_core_core_bw, getInjectImplementation as ɵangular_packages_core_core_bx, getNativeByTNode as ɵangular_packages_core_core_bz, attachInjectFlag as ɵangular_packages_core_core_c, getRootContext as ɵangular_packages_core_core_cb, i18nPostprocess as ɵangular_packages_core_core_cc, ReflectiveInjector_ as ɵangular_packages_core_core_d, ReflectiveDependency as ɵangular_packages_core_core_e, resolveReflectiveProviders as ɵangular_packages_core_core_f, _appIdRandomProviderFactory as ɵangular_packages_core_core_g, injectRenderer2 as ɵangular_packages_core_core_h, injectElementRef as ɵangular_packages_core_core_i, createElementRef as ɵangular_packages_core_core_j, getModuleFactory__PRE_R3__ as ɵangular_packages_core_core_k, injectTemplateRef as ɵangular_packages_core_core_l, createTemplateRef as ɵangular_packages_core_core_m, injectViewContainerRef as ɵangular_packages_core_core_n, DebugNode__PRE_R3__ as ɵangular_packages_core_core_o, DebugElement__PRE_R3__ as ɵangular_packages_core_core_p, getDebugNodeR2__PRE_R3__ as ɵangular_packages_core_core_q, injectChangeDetectorRef as ɵangular_packages_core_core_r, DefaultIterableDifferFactory as ɵangular_packages_core_core_s, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_t, defaultIterableDiffersFactory as ɵangular_packages_core_core_u, defaultKeyValueDiffersFactory as ɵangular_packages_core_core_v, _iterableDiffersFactory as ɵangular_packages_core_core_w, _keyValueDiffersFactory as ɵangular_packages_core_core_x, _localeFactory as ɵangular_packages_core_core_y, APPLICATION_MODULE_PROVIDERS as ɵangular_packages_core_core_z, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, createComponentFactory as ɵccf, clearOverrides as ɵclearOverrides, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, createNgModuleFactory as ɵcmf, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory__POST_R3__ as ɵcompileNgModuleFactory__POST_R3__, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, createRendererType2 as ɵcrt, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, directiveDef as ɵdid, elementDef as ɵeld, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getComponentViewDefinitionFactory as ɵgetComponentViewDefinitionFactory, getDebugNodeR2 as ɵgetDebugNodeR2, getDebugNode__POST_R3__ as ɵgetDebugNode__POST_R3__, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getModuleFactory__POST_R3__ as ɵgetModuleFactory__POST_R3__, getSanitizationBypassType as ɵgetSanitizationBypassType, _global as ɵglobal, initServicesIfNeeded as ɵinitServicesIfNeeded, inlineInterpolate as ɵinlineInterpolate, interpolate as ɵinterpolate, isBoundToModule__POST_R3__ as ɵisBoundToModule__POST_R3__, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, ivyEnabled as ɵivyEnabled, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, noSideEffects as ɵnoSideEffects, nodeValue as ɵnov, overrideComponentView as ɵoverrideComponentView, overrideProvider as ɵoverrideProvider, pureArrayDef as ɵpad, patchComponentDefWithScope as ɵpatchComponentDefWithScope, pipeDef as ɵpid, pureObjectDef as ɵpod, purePipeDef as ɵppd, providerDef as ɵprd, publishDefaultGlobalUtils as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, queryDef as ɵqud, registerLocaleData as ɵregisterLocaleData, registerModuleFactory as ɵregisterModuleFactory, registerNgModuleType as ɵregisterNgModuleType, renderComponent$1 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, textDef as ɵted, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapValue as ɵunv, unwrapSafeValue as ɵunwrapSafeValue, viewDef as ɵvid, whenRendered as ɵwhenRendered, ɵɵCopyDefinitionFeature, ɵɵ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, ɵɵinjectPipeChangeDetectorRef, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵ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 };
32946
32921
  //# sourceMappingURL=core.js.map