@angular/core 11.2.1 → 11.2.5

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 (39) hide show
  1. package/bundles/core-testing.umd.js +2 -2
  2. package/bundles/core-testing.umd.min.js +2 -2
  3. package/bundles/core-testing.umd.min.js.map +1 -1
  4. package/bundles/core.umd.js +457 -479
  5. package/bundles/core.umd.js.map +1 -1
  6. package/bundles/core.umd.min.js +118 -118
  7. package/bundles/core.umd.min.js.map +1 -1
  8. package/core.d.ts +36 -47
  9. package/core.metadata.json +1 -1
  10. package/esm2015/src/application_module.js +2 -3
  11. package/esm2015/src/application_ref.js +7 -6
  12. package/esm2015/src/change_detection/pipe_transform.js +1 -1
  13. package/esm2015/src/compiler/compiler_facade_interface.js +1 -1
  14. package/esm2015/src/core_render3_private_export.js +2 -2
  15. package/esm2015/src/di/inject_switch.js +3 -2
  16. package/esm2015/src/di/injection_token.js +1 -1
  17. package/esm2015/src/di/interface/defs.js +2 -9
  18. package/esm2015/src/di/jit/environment.js +2 -18
  19. package/esm2015/src/di/r3_injector.js +3 -8
  20. package/esm2015/src/metadata/ng_module.js +5 -6
  21. package/esm2015/src/render3/definition.js +1 -2
  22. package/esm2015/src/render3/definition_factory.js +1 -1
  23. package/esm2015/src/render3/di.js +12 -22
  24. package/esm2015/src/render3/errors.js +1 -1
  25. package/esm2015/src/render3/index.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/environment.js +1 -2
  29. package/esm2015/src/render3/jit/module.js +22 -4
  30. package/esm2015/src/render3/util/discovery_utils.js +1 -1
  31. package/esm2015/src/version.js +1 -1
  32. package/fesm2015/core.js +154 -175
  33. package/fesm2015/core.js.map +1 -1
  34. package/fesm2015/testing.js +2 -2
  35. package/package.json +1 -1
  36. package/schematics/migrations/renderer-to-renderer2/helpers.js +1 -2
  37. package/src/r3_symbols.d.ts +12 -16
  38. package/testing/testing.d.ts +2 -2
  39. package/testing.d.ts +2 -2
package/fesm2015/core.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
- * @license Angular v11.2.1
3
- * (c) 2010-2020 Google LLC. https://angular.io/
2
+ * @license Angular v11.2.5
3
+ * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
6
6
 
@@ -129,6 +129,110 @@ function isForwardRef(fn) {
129
129
  fn.__forward_ref__ === forwardRef;
130
130
  }
131
131
 
132
+ /**
133
+ * @license
134
+ * Copyright Google LLC All Rights Reserved.
135
+ *
136
+ * Use of this source code is governed by an MIT-style license that can be
137
+ * found in the LICENSE file at https://angular.io/license
138
+ */
139
+ // Base URL for the error details page.
140
+ // Keep this value in sync with a similar const in
141
+ // `packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.ts`.
142
+ const ERROR_DETAILS_PAGE_BASE_URL = 'https://angular.io/errors';
143
+ class RuntimeError extends Error {
144
+ constructor(code, message) {
145
+ super(formatRuntimeError(code, message));
146
+ this.code = code;
147
+ }
148
+ }
149
+ // Contains a set of error messages that have details guides at angular.io.
150
+ // Full list of available error guides can be found at https://angular.io/errors
151
+ /* tslint:disable:no-toplevel-property-access */
152
+ const RUNTIME_ERRORS_WITH_GUIDES = new Set([
153
+ "100" /* EXPRESSION_CHANGED_AFTER_CHECKED */,
154
+ "200" /* CYCLIC_DI_DEPENDENCY */,
155
+ "201" /* PROVIDER_NOT_FOUND */,
156
+ "300" /* MULTIPLE_COMPONENTS_MATCH */,
157
+ "301" /* EXPORT_NOT_FOUND */,
158
+ "302" /* PIPE_NOT_FOUND */,
159
+ ]);
160
+ /* tslint:enable:no-toplevel-property-access */
161
+ /** Called to format a runtime error */
162
+ function formatRuntimeError(code, message) {
163
+ const fullCode = code ? `NG0${code}: ` : '';
164
+ let errorMessage = `${fullCode}${message}`;
165
+ // Some runtime errors are still thrown without `ngDevMode` (for example
166
+ // `throwProviderNotFoundError`), so we add `ngDevMode` check here to avoid pulling
167
+ // `RUNTIME_ERRORS_WITH_GUIDES` symbol into prod bundles.
168
+ // TODO: revisit all instances where `RuntimeError` is thrown and see if `ngDevMode` can be added
169
+ // there instead to tree-shake more devmode-only code (and eventually remove `ngDevMode` check
170
+ // from this code).
171
+ if (ngDevMode && RUNTIME_ERRORS_WITH_GUIDES.has(code)) {
172
+ errorMessage = `${errorMessage}. Find more at ${ERROR_DETAILS_PAGE_BASE_URL}/NG0${code}`;
173
+ }
174
+ return errorMessage;
175
+ }
176
+
177
+ /**
178
+ * @license
179
+ * Copyright Google LLC All Rights Reserved.
180
+ *
181
+ * Use of this source code is governed by an MIT-style license that can be
182
+ * found in the LICENSE file at https://angular.io/license
183
+ */
184
+ /**
185
+ * Used for stringify render output in Ivy.
186
+ * Important! This function is very performance-sensitive and we should
187
+ * be extra careful not to introduce megamorphic reads in it.
188
+ * Check `core/test/render3/perf/render_stringify` for benchmarks and alternate implementations.
189
+ */
190
+ function renderStringify(value) {
191
+ if (typeof value === 'string')
192
+ return value;
193
+ if (value == null)
194
+ return '';
195
+ // Use `String` so that it invokes the `toString` method of the value. Note that this
196
+ // appears to be faster than calling `value.toString` (see `render_stringify` benchmark).
197
+ return String(value);
198
+ }
199
+ /**
200
+ * Used to stringify a value so that it can be displayed in an error message.
201
+ * Important! This function contains a megamorphic read and should only be
202
+ * used for error messages.
203
+ */
204
+ function stringifyForError(value) {
205
+ if (typeof value === 'function')
206
+ return value.name || value.toString();
207
+ if (typeof value === 'object' && value != null && typeof value.type === 'function') {
208
+ return value.type.name || value.type.toString();
209
+ }
210
+ return renderStringify(value);
211
+ }
212
+
213
+ /** Called when directives inject each other (creating a circular dependency) */
214
+ function throwCyclicDependencyError(token, path) {
215
+ const depPath = path ? `. Dependency path: ${path.join(' > ')} > ${token}` : '';
216
+ throw new RuntimeError("200" /* CYCLIC_DI_DEPENDENCY */, `Circular dependency in DI detected for ${token}${depPath}`);
217
+ }
218
+ function throwMixedMultiProviderError() {
219
+ throw new Error(`Cannot mix multi providers and regular providers`);
220
+ }
221
+ function throwInvalidProviderError(ngModuleType, providers, provider) {
222
+ let ngModuleDetail = '';
223
+ if (ngModuleType && providers) {
224
+ const providerDetail = providers.map(v => v == provider ? '?' + provider + '?' : '...');
225
+ ngModuleDetail =
226
+ ` - only instances of Provider and Type are allowed, got: [${providerDetail.join(', ')}]`;
227
+ }
228
+ throw new Error(`Invalid provider for the NgModule '${stringify(ngModuleType)}'` + ngModuleDetail);
229
+ }
230
+ /** Throws an error when a token is not found in DI. */
231
+ function throwProviderNotFoundError(token, injectorName) {
232
+ const injectorDetails = injectorName ? ` in ${injectorName}` : '';
233
+ throw new RuntimeError("201" /* PROVIDER_NOT_FOUND */, `No provider for ${stringifyForError(token)} found${injectorDetails}`);
234
+ }
235
+
132
236
  /**
133
237
  * @license
134
238
  * Copyright Google LLC All Rights Reserved.
@@ -277,9 +381,6 @@ const defineInjectable = ɵɵdefineInjectable;
277
381
  *
278
382
  * Options:
279
383
  *
280
- * * `factory`: an `InjectorType` is an instantiable type, so a zero argument `factory` function to
281
- * create the type must be provided. If that factory function needs to inject arguments, it can
282
- * use the `inject` function.
283
384
  * * `providers`: an optional array of providers to add to the injector. Each provider must
284
385
  * either have a factory or point to a type which has a `ɵprov` static property (the
285
386
  * type must be an `InjectableType`).
@@ -290,11 +391,7 @@ const defineInjectable = ɵɵdefineInjectable;
290
391
  * @codeGenApi
291
392
  */
292
393
  function ɵɵdefineInjector(options) {
293
- return {
294
- factory: options.factory,
295
- providers: options.providers || [],
296
- imports: options.imports || [],
297
- };
394
+ return { providers: options.providers || [], imports: options.imports || [] };
298
395
  }
299
396
  /**
300
397
  * Read the injectable def (`ɵprov`) for `type` in a way which is immune to accidentally reading
@@ -440,7 +537,7 @@ function injectRootLimpMode(token, notFoundValue, flags) {
440
537
  return null;
441
538
  if (notFoundValue !== undefined)
442
539
  return notFoundValue;
443
- throw new Error(`Injector: NOT_FOUND [${stringify(token)}]`);
540
+ throwProviderNotFoundError(stringify(token), 'Injector');
444
541
  }
445
542
  /**
446
543
  * Assert that `_injectImplementation` is not `fn`.
@@ -765,7 +862,6 @@ function ɵɵdefineComponent(componentDefinition) {
765
862
  // See the `initNgDevMode` docstring for more information.
766
863
  (typeof ngDevMode === 'undefined' || ngDevMode) && initNgDevMode();
767
864
  const type = componentDefinition.type;
768
- const typePrototype = type.prototype;
769
865
  const declaredInputs = {};
770
866
  const def = {
771
867
  type: type,
@@ -1300,110 +1396,6 @@ function getFactoryDef(type, throwNotFound) {
1300
1396
  return hasFactoryDef ? type[NG_FACTORY_DEF] : null;
1301
1397
  }
1302
1398
 
1303
- /**
1304
- * @license
1305
- * Copyright Google LLC All Rights Reserved.
1306
- *
1307
- * Use of this source code is governed by an MIT-style license that can be
1308
- * found in the LICENSE file at https://angular.io/license
1309
- */
1310
- // Base URL for the error details page.
1311
- // Keep this value in sync with a similar const in
1312
- // `packages/compiler-cli/src/ngtsc/diagnostics/src/error_code.ts`.
1313
- const ERROR_DETAILS_PAGE_BASE_URL = 'https://angular.io/errors';
1314
- class RuntimeError extends Error {
1315
- constructor(code, message) {
1316
- super(formatRuntimeError(code, message));
1317
- this.code = code;
1318
- }
1319
- }
1320
- // Contains a set of error messages that have details guides at angular.io.
1321
- // Full list of available error guides can be found at https://angular.io/errors
1322
- /* tslint:disable:no-toplevel-property-access */
1323
- const RUNTIME_ERRORS_WITH_GUIDES = new Set([
1324
- "100" /* EXPRESSION_CHANGED_AFTER_CHECKED */,
1325
- "200" /* CYCLIC_DI_DEPENDENCY */,
1326
- "201" /* PROVIDER_NOT_FOUND */,
1327
- "300" /* MULTIPLE_COMPONENTS_MATCH */,
1328
- "301" /* EXPORT_NOT_FOUND */,
1329
- "302" /* PIPE_NOT_FOUND */,
1330
- ]);
1331
- /* tslint:enable:no-toplevel-property-access */
1332
- /** Called to format a runtime error */
1333
- function formatRuntimeError(code, message) {
1334
- const fullCode = code ? `NG0${code}: ` : '';
1335
- let errorMessage = `${fullCode}${message}`;
1336
- // Some runtime errors are still thrown without `ngDevMode` (for example
1337
- // `throwProviderNotFoundError`), so we add `ngDevMode` check here to avoid pulling
1338
- // `RUNTIME_ERRORS_WITH_GUIDES` symbol into prod bundles.
1339
- // TODO: revisit all instances where `RuntimeError` is thrown and see if `ngDevMode` can be added
1340
- // there instead to tree-shake more devmode-only code (and eventually remove `ngDevMode` check
1341
- // from this code).
1342
- if (ngDevMode && RUNTIME_ERRORS_WITH_GUIDES.has(code)) {
1343
- errorMessage = `${errorMessage}. Find more at ${ERROR_DETAILS_PAGE_BASE_URL}/NG0${code}`;
1344
- }
1345
- return errorMessage;
1346
- }
1347
-
1348
- /**
1349
- * @license
1350
- * Copyright Google LLC All Rights Reserved.
1351
- *
1352
- * Use of this source code is governed by an MIT-style license that can be
1353
- * found in the LICENSE file at https://angular.io/license
1354
- */
1355
- /**
1356
- * Used for stringify render output in Ivy.
1357
- * Important! This function is very performance-sensitive and we should
1358
- * be extra careful not to introduce megamorphic reads in it.
1359
- * Check `core/test/render3/perf/render_stringify` for benchmarks and alternate implementations.
1360
- */
1361
- function renderStringify(value) {
1362
- if (typeof value === 'string')
1363
- return value;
1364
- if (value == null)
1365
- return '';
1366
- // Use `String` so that it invokes the `toString` method of the value. Note that this
1367
- // appears to be faster than calling `value.toString` (see `render_stringify` benchmark).
1368
- return String(value);
1369
- }
1370
- /**
1371
- * Used to stringify a value so that it can be displayed in an error message.
1372
- * Important! This function contains a megamorphic read and should only be
1373
- * used for error messages.
1374
- */
1375
- function stringifyForError(value) {
1376
- if (typeof value === 'function')
1377
- return value.name || value.toString();
1378
- if (typeof value === 'object' && value != null && typeof value.type === 'function') {
1379
- return value.type.name || value.type.toString();
1380
- }
1381
- return renderStringify(value);
1382
- }
1383
-
1384
- /** Called when directives inject each other (creating a circular dependency) */
1385
- function throwCyclicDependencyError(token, path) {
1386
- const depPath = path ? `. Dependency path: ${path.join(' > ')} > ${token}` : '';
1387
- throw new RuntimeError("200" /* CYCLIC_DI_DEPENDENCY */, `Circular dependency in DI detected for ${token}${depPath}`);
1388
- }
1389
- function throwMixedMultiProviderError() {
1390
- throw new Error(`Cannot mix multi providers and regular providers`);
1391
- }
1392
- function throwInvalidProviderError(ngModuleType, providers, provider) {
1393
- let ngModuleDetail = '';
1394
- if (ngModuleType && providers) {
1395
- const providerDetail = providers.map(v => v == provider ? '?' + provider + '?' : '...');
1396
- ngModuleDetail =
1397
- ` - only instances of Provider and Type are allowed, got: [${providerDetail.join(', ')}]`;
1398
- }
1399
- throw new Error(`Invalid provider for the NgModule '${stringify(ngModuleType)}'` + ngModuleDetail);
1400
- }
1401
- /** Throws an error when a token is not found in DI. */
1402
- function throwProviderNotFoundError(token, injectorName) {
1403
- const injectorDetails = injectorName ? ` in ${injectorName}` : '';
1404
- throw new RuntimeError("201" /* PROVIDER_NOT_FOUND */, `No provider for ${stringifyForError(token)} found${injectorDetails}`);
1405
- }
1406
-
1407
1399
  /**
1408
1400
  * @license
1409
1401
  * Copyright Google LLC All Rights Reserved.
@@ -3614,36 +3606,18 @@ class NodeInjector {
3614
3606
  return getOrCreateInjectable(this._tNode, this._lView, token, undefined, notFoundValue);
3615
3607
  }
3616
3608
  }
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
3609
  /**
3636
3610
  * @codeGenApi
3637
3611
  */
3638
3612
  function ɵɵgetInheritedFactory(type) {
3639
3613
  return noSideEffects(() => {
3640
3614
  const ownConstructor = type.prototype.constructor;
3641
- const ownFactory = ownConstructor[NG_FACTORY_DEF] || ɵɵgetFactoryOf(ownConstructor);
3615
+ const ownFactory = ownConstructor[NG_FACTORY_DEF] || getFactoryOf(ownConstructor);
3642
3616
  const objectPrototype = Object.prototype;
3643
3617
  let parent = Object.getPrototypeOf(type.prototype).constructor;
3644
3618
  // Go up the prototype until we hit `Object`.
3645
3619
  while (parent && parent !== objectPrototype) {
3646
- const factory = parent[NG_FACTORY_DEF] || ɵɵgetFactoryOf(parent);
3620
+ const factory = parent[NG_FACTORY_DEF] || getFactoryOf(parent);
3647
3621
  // If we hit something that has a factory and the factory isn't the same as the type,
3648
3622
  // we've found the inherited factory. Note the check that the factory isn't the type's
3649
3623
  // own factory is redundant in most cases, but if the user has custom decorators on the
@@ -3661,6 +3635,15 @@ function ɵɵgetInheritedFactory(type) {
3661
3635
  return t => new t();
3662
3636
  });
3663
3637
  }
3638
+ function getFactoryOf(type) {
3639
+ if (isForwardRef(type)) {
3640
+ return () => {
3641
+ const factory = getFactoryOf(resolveForwardRef(type));
3642
+ return factory && factory();
3643
+ };
3644
+ }
3645
+ return getFactoryDef(type);
3646
+ }
3664
3647
 
3665
3648
  /**
3666
3649
  * @license
@@ -8574,7 +8557,6 @@ function getLViewToClone(type, name) {
8574
8557
  }
8575
8558
  return embeddedArray;
8576
8559
  }
8577
- throw new Error('unreachable code');
8578
8560
  }
8579
8561
  function nameSuffix(text) {
8580
8562
  if (text == null)
@@ -11325,7 +11307,8 @@ class R3Injector {
11325
11307
  // Track the InjectorType and add a provider for it. It's important that this is done after the
11326
11308
  // def's imports.
11327
11309
  this.injectorDefTypes.add(defType);
11328
- this.records.set(defType, makeRecord(def.factory, NOT_YET));
11310
+ const factory = getFactoryDef(defType) || (() => new defType());
11311
+ this.records.set(defType, makeRecord(factory, NOT_YET));
11329
11312
  // Next, include providers listed on the definition itself.
11330
11313
  const defProviders = def.providers;
11331
11314
  if (defProviders != null && !isDuplicate) {
@@ -11403,12 +11386,6 @@ function injectableDefOrInjectorDefFactory(token) {
11403
11386
  if (factory !== null) {
11404
11387
  return factory;
11405
11388
  }
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
11389
  // InjectionTokens should have an injectable def (ɵprov) and thus should be handled above.
11413
11390
  // If it's missing that, it's an error.
11414
11391
  if (token instanceof InjectionToken) {
@@ -13565,23 +13542,8 @@ const angularCoreDiEnv = {
13565
13542
  'ɵɵdefineInjectable': ɵɵdefineInjectable,
13566
13543
  'ɵɵdefineInjector': ɵɵdefineInjector,
13567
13544
  'ɵɵinject': ɵɵinject,
13568
- 'ɵɵgetFactoryOf': getFactoryOf,
13569
13545
  'ɵɵinvalidFactoryDep': ɵɵinvalidFactoryDep,
13570
13546
  };
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
13547
 
13586
13548
  /**
13587
13549
  * @license
@@ -21396,7 +21358,7 @@ class Version {
21396
21358
  /**
21397
21359
  * @publicApi
21398
21360
  */
21399
- const VERSION = new Version('11.2.1');
21361
+ const VERSION = new Version('11.2.5');
21400
21362
 
21401
21363
  /**
21402
21364
  * @license
@@ -26654,7 +26616,6 @@ const ɵ0$c = () => ({
26654
26616
  'ɵɵdefineNgModule': ɵɵdefineNgModule,
26655
26617
  'ɵɵdefinePipe': ɵɵdefinePipe,
26656
26618
  'ɵɵdirectiveInject': ɵɵdirectiveInject,
26657
- 'ɵɵgetFactoryOf': ɵɵgetFactoryOf,
26658
26619
  'ɵɵgetInheritedFactory': ɵɵgetInheritedFactory,
26659
26620
  'ɵɵinject': ɵɵinject,
26660
26621
  'ɵɵinjectAttribute': ɵɵinjectAttribute,
@@ -26880,7 +26841,7 @@ function compileNgModule(moduleType, ngModule = {}) {
26880
26841
  enqueueModuleForDelayedScoping(moduleType, ngModule);
26881
26842
  }
26882
26843
  /**
26883
- * Compiles and adds the `ɵmod` and `ɵinj` properties to the module class.
26844
+ * Compiles and adds the `ɵmod`, `ɵfac` and `ɵinj` properties to the module class.
26884
26845
  *
26885
26846
  * It's possible to compile a module via this API which will allow duplicate declarations in its
26886
26847
  * root.
@@ -26923,6 +26884,25 @@ function compileNgModuleDefs(moduleType, ngModule, allowDuplicateDeclarationsInR
26923
26884
  return ngModuleDef;
26924
26885
  }
26925
26886
  });
26887
+ let ngFactoryDef = null;
26888
+ Object.defineProperty(moduleType, NG_FACTORY_DEF, {
26889
+ get: () => {
26890
+ if (ngFactoryDef === null) {
26891
+ const compiler = getCompilerFacade();
26892
+ ngFactoryDef = compiler.compileFactory(angularCoreEnv, `ng:///${moduleType.name}/ɵfac.js`, {
26893
+ name: moduleType.name,
26894
+ type: moduleType,
26895
+ deps: reflectDependencies(moduleType),
26896
+ injectFn: 'inject',
26897
+ target: compiler.R3FactoryTarget.NgModule,
26898
+ typeArgumentCount: 0,
26899
+ });
26900
+ }
26901
+ return ngFactoryDef;
26902
+ },
26903
+ // Make the property configurable in dev mode to allow overriding in tests
26904
+ configurable: !!ngDevMode,
26905
+ });
26926
26906
  let ngInjectorDef = null;
26927
26907
  Object.defineProperty(moduleType, NG_INJ_DEF, {
26928
26908
  get: () => {
@@ -26932,7 +26912,6 @@ function compileNgModuleDefs(moduleType, ngModule, allowDuplicateDeclarationsInR
26932
26912
  const meta = {
26933
26913
  name: moduleType.name,
26934
26914
  type: moduleType,
26935
- deps: reflectDependencies(moduleType),
26936
26915
  providers: ngModule.providers || EMPTY_ARRAY$5,
26937
26916
  imports: [
26938
26917
  (ngModule.imports || EMPTY_ARRAY$5).map(resolveForwardRef),
@@ -27744,11 +27723,10 @@ function preR3NgModuleCompile(moduleType, metadata) {
27744
27723
  if (metadata && metadata.exports) {
27745
27724
  imports = [...imports, metadata.exports];
27746
27725
  }
27747
- moduleType.ɵinj = ɵɵdefineInjector({
27748
- factory: convertInjectableProviderToFactory(moduleType, { useClass: moduleType }),
27749
- providers: metadata && metadata.providers,
27750
- imports: imports,
27751
- });
27726
+ const moduleInjectorType = moduleType;
27727
+ moduleInjectorType.ɵfac = convertInjectableProviderToFactory(moduleType, { useClass: moduleType });
27728
+ moduleInjectorType.ɵinj =
27729
+ ɵɵdefineInjector({ providers: metadata && metadata.providers, imports: imports });
27752
27730
  }
27753
27731
  const SWITCH_COMPILE_NGMODULE__POST_R3__ = compileNgModule;
27754
27732
  const SWITCH_COMPILE_NGMODULE__PRE_R3__ = preR3NgModuleCompile;
@@ -29354,9 +29332,8 @@ function optionsReducer(dst, objs) {
29354
29332
  */
29355
29333
  class ApplicationRef {
29356
29334
  /** @internal */
29357
- constructor(_zone, _console, _injector, _exceptionHandler, _componentFactoryResolver, _initStatus) {
29335
+ constructor(_zone, _injector, _exceptionHandler, _componentFactoryResolver, _initStatus) {
29358
29336
  this._zone = _zone;
29359
- this._console = _console;
29360
29337
  this._injector = _injector;
29361
29338
  this._exceptionHandler = _exceptionHandler;
29362
29339
  this._componentFactoryResolver = _componentFactoryResolver;
@@ -29472,8 +29449,11 @@ class ApplicationRef {
29472
29449
  }
29473
29450
  });
29474
29451
  this._loadComponent(compRef);
29475
- if (isDevMode()) {
29476
- this._console.log(`Angular is running in development mode. Call enableProdMode() to enable production mode.`);
29452
+ // Note that we have still left the `isDevMode()` condition in order to avoid
29453
+ // creating a breaking change for projects that still use the View Engine.
29454
+ if ((typeof ngDevMode === 'undefined' || ngDevMode) && isDevMode()) {
29455
+ const _console = this._injector.get(Console);
29456
+ _console.log(`Angular is running in development mode. Call enableProdMode() to enable production mode.`);
29477
29457
  }
29478
29458
  return compRef;
29479
29459
  }
@@ -29555,7 +29535,6 @@ ApplicationRef.decorators = [
29555
29535
  ];
29556
29536
  ApplicationRef.ctorParameters = () => [
29557
29537
  { type: NgZone },
29558
- { type: Console },
29559
29538
  { type: Injector },
29560
29539
  { type: ErrorHandler },
29561
29540
  { type: ComponentFactoryResolver },
@@ -30498,7 +30477,7 @@ const APPLICATION_MODULE_PROVIDERS = [
30498
30477
  {
30499
30478
  provide: ApplicationRef,
30500
30479
  useClass: ApplicationRef,
30501
- deps: [NgZone, Console, Injector, ErrorHandler, ComponentFactoryResolver, ApplicationInitStatus]
30480
+ deps: [NgZone, Injector, ErrorHandler, ComponentFactoryResolver, ApplicationInitStatus]
30502
30481
  },
30503
30482
  { provide: SCHEDULER, deps: [NgZone], useFactory: zoneSchedulerFactory },
30504
30483
  {
@@ -32941,5 +32920,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
32941
32920
  * Generated bundle index. Do not edit.
32942
32921
  */
32943
32922
 
32944
- 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 };
32923
+ 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 };
32945
32924
  //# sourceMappingURL=core.js.map