@angular/core 6.1.6 → 6.1.10

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 (67) hide show
  1. package/bundles/core-testing.umd.js +23 -16
  2. package/bundles/core-testing.umd.js.map +1 -1
  3. package/bundles/core-testing.umd.min.js +6 -6
  4. package/bundles/core-testing.umd.min.js.map +1 -1
  5. package/bundles/core.umd.js +166 -139
  6. package/bundles/core.umd.js.map +1 -1
  7. package/bundles/core.umd.min.js +81 -81
  8. package/bundles/core.umd.min.js.map +1 -1
  9. package/core.metadata.json +1 -1
  10. package/esm2015/index.js +2 -2
  11. package/esm2015/public_api.js +2 -2
  12. package/esm2015/src/application_module.js +11 -4
  13. package/esm2015/src/change_detection/change_detector_ref.js +2 -2
  14. package/esm2015/src/core.js +2 -2
  15. package/esm2015/src/di/injection_token.js +3 -3
  16. package/esm2015/src/di/reflective_injector.js +1 -10
  17. package/esm2015/src/linker/component_factory.js +19 -16
  18. package/esm2015/src/linker/template_ref.js +20 -14
  19. package/esm2015/src/linker/view_container_ref.js +61 -68
  20. package/esm2015/src/linker/view_ref.js +29 -21
  21. package/esm2015/src/metadata/view.js +1 -4
  22. package/esm2015/src/render3/instructions.js +2 -2
  23. package/esm2015/src/render3/ng_dev_mode.js +52 -31
  24. package/esm2015/src/version.js +1 -1
  25. package/esm2015/src/zone.js +2 -2
  26. package/esm5/src/application_init.js +7 -8
  27. package/esm5/src/application_module.js +16 -10
  28. package/esm5/src/application_ref.js +15 -21
  29. package/esm5/src/change_detection/change_detector_ref.js +2 -2
  30. package/esm5/src/console.js +5 -4
  31. package/esm5/src/di/injection_token.js +3 -3
  32. package/esm5/src/di/reflective_injector.js +1 -1
  33. package/esm5/src/linker/compiler.js +5 -4
  34. package/esm5/src/linker/component_factory.js +4 -6
  35. package/esm5/src/linker/system_js_ng_module_factory_loader.js +6 -9
  36. package/esm5/src/linker/template_ref.js +13 -8
  37. package/esm5/src/linker/view_container_ref.js +9 -13
  38. package/esm5/src/linker/view_ref.js +22 -18
  39. package/esm5/src/metadata/view.js +4 -4
  40. package/esm5/src/render3/instructions.js +2 -2
  41. package/esm5/src/render3/ng_dev_mode.js +48 -27
  42. package/esm5/src/testability/testability.js +10 -13
  43. package/esm5/src/version.js +1 -1
  44. package/esm5/src/zone.js +2 -2
  45. package/esm5/testing/src/logger.js +6 -6
  46. package/esm5/testing/src/ng_zone_mock.js +5 -6
  47. package/esm5/testing/src/test_bed.js +13 -13
  48. package/esm5/testing/src/test_compiler.js +4 -4
  49. package/fesm2015/core.js +110 -84
  50. package/fesm2015/core.js.map +1 -1
  51. package/fesm2015/testing.js +1 -1
  52. package/fesm5/core.js +155 -141
  53. package/fesm5/core.js.map +1 -1
  54. package/fesm5/testing.js +17 -17
  55. package/fesm5/testing.js.map +1 -1
  56. package/package.json +1 -1
  57. package/src/application_module.d.ts +10 -2
  58. package/src/change_detection/change_detector_ref.d.ts +1 -1
  59. package/src/di/injection_token.d.ts +2 -2
  60. package/src/di/reflective_injector.d.ts +0 -9
  61. package/src/linker/component_factory.d.ts +22 -14
  62. package/src/linker/template_ref.d.ts +21 -11
  63. package/src/linker/view_container_ref.d.ts +61 -44
  64. package/src/linker/view_ref.d.ts +38 -18
  65. package/src/metadata/view.d.ts +3 -3
  66. package/src/render3/ng_dev_mode.d.ts +1 -1
  67. package/src/zone.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v6.1.6
2
+ * @license Angular v6.1.10
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/fesm5/core.js CHANGED
@@ -1,10 +1,10 @@
1
1
  /**
2
- * @license Angular v6.1.6
2
+ * @license Angular v6.1.10
3
3
  * (c) 2010-2018 Google, Inc. https://angular.io/
4
4
  * License: MIT
5
5
  */
6
6
 
7
- import { __spread, __read, __assign, __extends, __values } from 'tslib';
7
+ import { __decorate, __metadata, __spread, __param, __read, __extends, __assign, __values } from 'tslib';
8
8
  import { Subject, Subscription, Observable, merge } from 'rxjs';
9
9
  import { share } from 'rxjs/operators';
10
10
 
@@ -98,11 +98,11 @@ function defineInjector(options) {
98
98
  * @usageNotes
99
99
  * ### Basic Example
100
100
  *
101
- * #### Plain InjectionToken
101
+ * ### Plain InjectionToken
102
102
  *
103
103
  * {@example core/di/ts/injector_spec.ts region='InjectionToken'}
104
104
  *
105
- * #### Tree-shakable InjectionToken
105
+ * ### Tree-shakable InjectionToken
106
106
  *
107
107
  * {@example core/di/ts/injector_spec.ts region='ShakableInjectionToken'}
108
108
  *
@@ -1577,6 +1577,9 @@ function (type, meta) { return (preR3NgModuleCompile)(type, meta); });
1577
1577
  *
1578
1578
  * See {@link Component#encapsulation encapsulation}.
1579
1579
  *
1580
+ * @usageNotes
1581
+ * ### Example
1582
+ * {@example core/ts/metadata/encapsulation.ts region='longform'}
1580
1583
  */
1581
1584
  var ViewEncapsulation;
1582
1585
  (function (ViewEncapsulation) {
@@ -1608,9 +1611,6 @@ var ViewEncapsulation;
1608
1611
  * For the DOM this means using modern [Shadow
1609
1612
  * DOM](https://w3c.github.io/webcomponents/spec/shadow/) and
1610
1613
  * creating a ShadowRoot for Component's Host Element.
1611
- *
1612
- * ### Example
1613
- * {@example core/ts/metadata/encapsulation.ts region='longform'}
1614
1614
  */
1615
1615
  ViewEncapsulation[ViewEncapsulation["ShadowDom"] = 3] = "ShadowDom";
1616
1616
  })(ViewEncapsulation || (ViewEncapsulation = {}));
@@ -1644,7 +1644,7 @@ var Version = /** @class */ (function () {
1644
1644
  }
1645
1645
  return Version;
1646
1646
  }());
1647
- var VERSION = new Version('6.1.6');
1647
+ var VERSION = new Version('6.1.10');
1648
1648
 
1649
1649
  /**
1650
1650
  * @license
@@ -3040,13 +3040,11 @@ var ApplicationInitStatus = /** @class */ (function () {
3040
3040
  }
3041
3041
  this.initialized = true;
3042
3042
  };
3043
- ApplicationInitStatus.decorators = [
3044
- { type: Injectable }
3045
- ];
3046
- /** @nocollapse */
3047
- ApplicationInitStatus.ctorParameters = function () { return [
3048
- { type: Array, decorators: [{ type: Inject, args: [APP_INITIALIZER,] }, { type: Optional }] }
3049
- ]; };
3043
+ ApplicationInitStatus = __decorate([
3044
+ Injectable(),
3045
+ __param(0, Inject(APP_INITIALIZER)), __param(0, Optional()),
3046
+ __metadata("design:paramtypes", [Array])
3047
+ ], ApplicationInitStatus);
3050
3048
  return ApplicationInitStatus;
3051
3049
  }());
3052
3050
 
@@ -3127,9 +3125,9 @@ var Console = /** @class */ (function () {
3127
3125
  // tslint:disable-next-line:no-console
3128
3126
  console.warn(message);
3129
3127
  };
3130
- Console.decorators = [
3131
- { type: Injectable }
3132
- ];
3128
+ Console = __decorate([
3129
+ Injectable()
3130
+ ], Console);
3133
3131
  return Console;
3134
3132
  }());
3135
3133
 
@@ -3201,9 +3199,9 @@ var Compiler = /** @class */ (function () {
3201
3199
  * Returns the id for a given NgModule, if one is defined and known to the compiler.
3202
3200
  */
3203
3201
  Compiler.prototype.getModuleId = function (moduleType) { return undefined; };
3204
- Compiler.decorators = [
3205
- { type: Injectable }
3206
- ];
3202
+ Compiler = __decorate([
3203
+ Injectable()
3204
+ ], Compiler);
3207
3205
  return Compiler;
3208
3206
  }());
3209
3207
  /**
@@ -3231,11 +3229,9 @@ var CompilerFactory = /** @class */ (function () {
3231
3229
  * found in the LICENSE file at https://angular.io/license
3232
3230
  */
3233
3231
  /**
3234
- * Represents an instance of a Component created via a {@link ComponentFactory}.
3235
- *
3236
- * `ComponentRef` provides access to the Component Instance as well other objects related to this
3237
- * Component Instance and allows you to destroy the Component Instance via the {@link #destroy}
3238
- * method.
3232
+ * Represents a component created by a `ComponentFactory`.
3233
+ * Provides access to the component instance and related objects,
3234
+ * and provides the means of destroying the instance.
3239
3235
  *
3240
3236
  */
3241
3237
  var ComponentRef = /** @class */ (function () {
@@ -4048,13 +4044,10 @@ var Testability = /** @class */ (function () {
4048
4044
  // TODO(juliemr): implement.
4049
4045
  return [];
4050
4046
  };
4051
- Testability.decorators = [
4052
- { type: Injectable }
4053
- ];
4054
- /** @nocollapse */
4055
- Testability.ctorParameters = function () { return [
4056
- { type: NgZone }
4057
- ]; };
4047
+ Testability = __decorate([
4048
+ Injectable(),
4049
+ __metadata("design:paramtypes", [NgZone])
4050
+ ], Testability);
4058
4051
  return Testability;
4059
4052
  }());
4060
4053
  /**
@@ -4107,11 +4100,10 @@ var TestabilityRegistry = /** @class */ (function () {
4107
4100
  if (findInAncestors === void 0) { findInAncestors = true; }
4108
4101
  return _testabilityGetter.findTestabilityInTree(this, elem, findInAncestors);
4109
4102
  };
4110
- TestabilityRegistry.decorators = [
4111
- { type: Injectable }
4112
- ];
4113
- /** @nocollapse */
4114
- TestabilityRegistry.ctorParameters = function () { return []; };
4103
+ TestabilityRegistry = __decorate([
4104
+ Injectable(),
4105
+ __metadata("design:paramtypes", [])
4106
+ ], TestabilityRegistry);
4115
4107
  return TestabilityRegistry;
4116
4108
  }());
4117
4109
  var _NoopGetTestability = /** @class */ (function () {
@@ -4395,13 +4387,10 @@ var PlatformRef = /** @class */ (function () {
4395
4387
  enumerable: true,
4396
4388
  configurable: true
4397
4389
  });
4398
- PlatformRef.decorators = [
4399
- { type: Injectable }
4400
- ];
4401
- /** @nocollapse */
4402
- PlatformRef.ctorParameters = function () { return [
4403
- { type: Injector }
4404
- ]; };
4390
+ PlatformRef = __decorate([
4391
+ Injectable(),
4392
+ __metadata("design:paramtypes", [Injector])
4393
+ ], PlatformRef);
4405
4394
  return PlatformRef;
4406
4395
  }());
4407
4396
  function getNgZone(ngZoneOption) {
@@ -4512,6 +4501,7 @@ var ApplicationRef = /** @class */ (function () {
4512
4501
  this.isStable =
4513
4502
  merge(isCurrentlyStable, isStable.pipe(share()));
4514
4503
  }
4504
+ ApplicationRef_1 = ApplicationRef;
4515
4505
  /**
4516
4506
  * Bootstrap a new component at the root level of the application.
4517
4507
  *
@@ -4575,7 +4565,7 @@ var ApplicationRef = /** @class */ (function () {
4575
4565
  if (this._runningTick) {
4576
4566
  throw new Error('ApplicationRef.tick is called recursively');
4577
4567
  }
4578
- var scope = ApplicationRef._tickScope();
4568
+ var scope = ApplicationRef_1._tickScope();
4579
4569
  try {
4580
4570
  this._runningTick = true;
4581
4571
  this._views.forEach(function (view) { return view.detectChanges(); });
@@ -4635,20 +4625,16 @@ var ApplicationRef = /** @class */ (function () {
4635
4625
  enumerable: true,
4636
4626
  configurable: true
4637
4627
  });
4628
+ var ApplicationRef_1;
4638
4629
  /** @internal */
4639
4630
  ApplicationRef._tickScope = wtfCreateScope('ApplicationRef#tick()');
4640
- ApplicationRef.decorators = [
4641
- { type: Injectable }
4642
- ];
4643
- /** @nocollapse */
4644
- ApplicationRef.ctorParameters = function () { return [
4645
- { type: NgZone },
4646
- { type: Console },
4647
- { type: Injector },
4648
- { type: ErrorHandler },
4649
- { type: ComponentFactoryResolver },
4650
- { type: ApplicationInitStatus }
4651
- ]; };
4631
+ ApplicationRef = ApplicationRef_1 = __decorate([
4632
+ Injectable(),
4633
+ __metadata("design:paramtypes", [NgZone, Console, Injector,
4634
+ ErrorHandler,
4635
+ ComponentFactoryResolver,
4636
+ ApplicationInitStatus])
4637
+ ], ApplicationRef);
4652
4638
  return ApplicationRef;
4653
4639
  }());
4654
4640
  function remove(list, el) {
@@ -5009,14 +4995,11 @@ var SystemJsNgModuleLoader = /** @class */ (function () {
5009
4995
  .then(function (module) { return module[exportName + factoryClassSuffix]; })
5010
4996
  .then(function (factory) { return checkNotEmpty(factory, module, exportName); });
5011
4997
  };
5012
- SystemJsNgModuleLoader.decorators = [
5013
- { type: Injectable }
5014
- ];
5015
- /** @nocollapse */
5016
- SystemJsNgModuleLoader.ctorParameters = function () { return [
5017
- { type: Compiler },
5018
- { type: SystemJsNgModuleLoaderConfig, decorators: [{ type: Optional }] }
5019
- ]; };
4998
+ SystemJsNgModuleLoader = __decorate([
4999
+ Injectable(),
5000
+ __param(1, Optional()),
5001
+ __metadata("design:paramtypes", [Compiler, SystemJsNgModuleLoaderConfig])
5002
+ ], SystemJsNgModuleLoader);
5020
5003
  return SystemJsNgModuleLoader;
5021
5004
  }());
5022
5005
  function checkNotEmpty(value, modulePath, exportName) {
@@ -5034,15 +5017,20 @@ function checkNotEmpty(value, modulePath, exportName) {
5034
5017
  * found in the LICENSE file at https://angular.io/license
5035
5018
  */
5036
5019
  /**
5037
- * Represents an Embedded Template that can be used to instantiate Embedded Views.
5020
+ * Represents an embedded template that can be used to instantiate embedded views.
5021
+ * To instantiate embedded views based on a template, use the `ViewContainerRef`
5022
+ * method `createEmbeddedView()`.
5038
5023
  *
5039
- * You can access a `TemplateRef`, in two ways. Via a directive placed on a `<ng-template>` element
5040
- * (or directive prefixed with `*`) and have the `TemplateRef` for this Embedded View injected into
5041
- * the constructor of the directive using the `TemplateRef` Token. Alternatively you can query for
5042
- * the `TemplateRef` from a Component or a Directive via {@link Query}.
5024
+ * Access a `TemplateRef` instance by placing a directive on an `<ng-template>`
5025
+ * element (or directive prefixed with `*`). The `TemplateRef` for the embedded view
5026
+ * is injected into the constructor of the directive,
5027
+ * using the `TemplateRef` token.
5043
5028
  *
5044
- * To instantiate Embedded Views based on a Template, use {@link ViewContainerRef#
5045
- * createEmbeddedView}, which will create the View and attach it to the View Container.
5029
+ * You can also use a `Query` to find a `TemplateRef` associated with
5030
+ * a component or a directive.
5031
+ *
5032
+ * @see `ViewContainerRef`
5033
+ * @see [Navigate the Component Tree with DI](guide/dependency-injection-navtree)
5046
5034
  *
5047
5035
  */
5048
5036
  var TemplateRef = /** @class */ (function () {
@@ -5059,21 +5047,17 @@ var TemplateRef = /** @class */ (function () {
5059
5047
  * found in the LICENSE file at https://angular.io/license
5060
5048
  */
5061
5049
  /**
5062
- * Represents a container where one or more Views can be attached.
5063
- *
5064
- * The container can contain two kinds of Views. Host Views, created by instantiating a
5065
- * {@link Component} via {@link #createComponent}, and Embedded Views, created by instantiating an
5066
- * {@link TemplateRef Embedded Template} via {@link #createEmbeddedView}.
5050
+ * Represents a container where one or more views can be attached to a component.
5067
5051
  *
5068
- * The location of the View Container within the containing View is specified by the Anchor
5069
- * `element`. Each View Container can have only one Anchor Element and each Anchor Element can only
5070
- * have a single View Container.
5052
+ * Can contain *host views* (created by instantiating a
5053
+ * component with the `createComponent()` method), and *embedded views*
5054
+ * (created by instantiating a `TemplateRef` with the `createEmbeddedView()` method).
5071
5055
  *
5072
- * Root elements of Views attached to this container become siblings of the Anchor Element in
5073
- * the Rendered View.
5056
+ * A view container instance can contain other view containers,
5057
+ * creating a [view hierarchy](guide/glossary#view-tree).
5074
5058
  *
5075
- * To access a `ViewContainerRef` of an Element, you can either place a {@link Directive} injected
5076
- * with `ViewContainerRef` on the Element, or you obtain it via a {@link ViewChild} query.
5059
+ * @see `ComponentRef`
5060
+ * @see `EmbeddedViewRef`
5077
5061
  *
5078
5062
  */
5079
5063
  var ViewContainerRef = /** @class */ (function () {
@@ -5127,7 +5111,7 @@ var ViewContainerRef = /** @class */ (function () {
5127
5111
  * when the `live` property is set to false, and reattaches it when the property
5128
5112
  * becomes true.
5129
5113
  *
5130
- * <code-example path="core/ts/change_detect/change-detection.ts" region="detach"></code-example>
5114
+ * <code-example path="core/ts/change_detect/change-detection.ts" region="reattach"></code-example>
5131
5115
  *
5132
5116
  */
5133
5117
  var ChangeDetectorRef = /** @class */ (function () {
@@ -5143,6 +5127,14 @@ var ChangeDetectorRef = /** @class */ (function () {
5143
5127
  * Use of this source code is governed by an MIT-style license that can be
5144
5128
  * found in the LICENSE file at https://angular.io/license
5145
5129
  */
5130
+ /**
5131
+ * Represents an Angular [view](guide/glossary#view),
5132
+ * specifically the [host view](guide/glossary#view-tree) that is defined by a component.
5133
+ * Also serves as the base class
5134
+ * that adds destroy methods for [embedded views](guide/glossary#view-tree).
5135
+ *
5136
+ * @see `EmbeddedViewRef`
5137
+ */
5146
5138
  var ViewRef = /** @class */ (function (_super) {
5147
5139
  __extends(ViewRef, _super);
5148
5140
  function ViewRef() {
@@ -5151,21 +5143,21 @@ var ViewRef = /** @class */ (function (_super) {
5151
5143
  return ViewRef;
5152
5144
  }(ChangeDetectorRef));
5153
5145
  /**
5154
- * Represents an Angular View.
5146
+ * Represents an Angular [view](guide/glossary#view) in a view container.
5147
+ * An [embedded view](guide/glossary#view-tree) can be referenced from a component
5148
+ * other than the hosting component whose template defines it, or it can be defined
5149
+ * independently by a `TemplateRef`.
5155
5150
  *
5156
- * <!-- TODO: move the next two paragraphs to the dev guide -->
5157
- * A View is a fundamental building block of the application UI. It is the smallest grouping of
5158
- * Elements which are created and destroyed together.
5151
+ * Properties of elements in a view can change, but the structure (number and order) of elements in
5152
+ * a view cannot. Change the structure of elements by inserting, moving, or
5153
+ * removing nested views in a view container.
5159
5154
  *
5160
- * Properties of elements in a View can change, but the structure (number and order) of elements in
5161
- * a View cannot. Changing the structure of Elements can only be done by inserting, moving or
5162
- * removing nested Views via a `ViewContainerRef`. Each View can contain many View Containers.
5163
- * <!-- /TODO -->
5155
+ * @see `ViewContainerRef`
5164
5156
  *
5165
5157
  * @usageNotes
5166
- * ### Example
5167
5158
  *
5168
- * Given this template...
5159
+ * The following template breaks down into two separate `TemplateRef` instances,
5160
+ * an outer one and an inner one.
5169
5161
  *
5170
5162
  * ```
5171
5163
  * Count: {{items.length}}
@@ -5174,9 +5166,7 @@ var ViewRef = /** @class */ (function (_super) {
5174
5166
  * </ul>
5175
5167
  * ```
5176
5168
  *
5177
- * We have two `TemplateRef`s:
5178
- *
5179
- * Outer `TemplateRef`:
5169
+ * This is the outer `TemplateRef`:
5180
5170
  *
5181
5171
  * ```
5182
5172
  * Count: {{items.length}}
@@ -5185,15 +5175,13 @@ var ViewRef = /** @class */ (function (_super) {
5185
5175
  * </ul>
5186
5176
  * ```
5187
5177
  *
5188
- * Inner `TemplateRef`:
5178
+ * This is the inner `TemplateRef`:
5189
5179
  *
5190
5180
  * ```
5191
5181
  * <li>{{item}}</li>
5192
5182
  * ```
5193
5183
  *
5194
- * Notice that the original template is broken down into two separate `TemplateRef`s.
5195
- *
5196
- * The outer/inner `TemplateRef`s are then assembled into views like so:
5184
+ * The outer and inner `TemplateRef` instances are assembled into views as follows:
5197
5185
  *
5198
5186
  * ```
5199
5187
  * <!-- ViewRef: outer-0 -->
@@ -6763,6 +6751,10 @@ function _keyValueDiffersFactory() {
6763
6751
  function _localeFactory(locale) {
6764
6752
  return locale || 'en-US';
6765
6753
  }
6754
+ /**
6755
+ * A built-in [dependency injection token](guide/glossary#di-token)
6756
+ * that is used to configure the root injector for bootstrapping.
6757
+ */
6766
6758
  var APPLICATION_MODULE_PROVIDERS = [
6767
6759
  {
6768
6760
  provide: ApplicationRef,
@@ -6785,8 +6777,12 @@ var APPLICATION_MODULE_PROVIDERS = [
6785
6777
  },
6786
6778
  ];
6787
6779
  /**
6788
- * This module includes the providers of @angular/core that are needed
6789
- * to bootstrap components via `ApplicationRef`.
6780
+ * Configures the root injector for an app with
6781
+ * providers of `@angular/core` dependencies that `ApplicationRef` needs
6782
+ * to bootstrap components.
6783
+ *
6784
+ * Re-exported by `BrowserModule`, which is included automatically in the root
6785
+ * `AppModule` when you create a new app with the CLI `new` command.
6790
6786
  *
6791
6787
  * @experimental
6792
6788
  */
@@ -6794,13 +6790,10 @@ var ApplicationModule = /** @class */ (function () {
6794
6790
  // Inject ApplicationRef to make it eager...
6795
6791
  function ApplicationModule(appRef) {
6796
6792
  }
6797
- ApplicationModule.decorators = [
6798
- { type: NgModule, args: [{ providers: APPLICATION_MODULE_PROVIDERS },] }
6799
- ];
6800
- /** @nocollapse */
6801
- ApplicationModule.ctorParameters = function () { return [
6802
- { type: ApplicationRef }
6803
- ]; };
6793
+ ApplicationModule = __decorate([
6794
+ NgModule({ providers: APPLICATION_MODULE_PROVIDERS }),
6795
+ __metadata("design:paramtypes", [ApplicationRef])
6796
+ ], ApplicationModule);
6804
6797
  return ApplicationModule;
6805
6798
  }());
6806
6799
 
@@ -11797,34 +11790,55 @@ function callHooks(data, arr) {
11797
11790
  * Use of this source code is governed by an MIT-style license that can be
11798
11791
  * found in the LICENSE file at https://angular.io/license
11799
11792
  */
11800
- var ngDevModeResetPerfCounters = (typeof ngDevMode == 'undefined' && (function (global) {
11801
- function ngDevModeResetPerfCounters() {
11802
- global['ngDevMode'] = {
11803
- firstTemplatePass: 0,
11804
- tNode: 0,
11805
- tView: 0,
11806
- rendererCreateTextNode: 0,
11807
- rendererSetText: 0,
11808
- rendererCreateElement: 0,
11809
- rendererAddEventListener: 0,
11810
- rendererSetAttribute: 0,
11811
- rendererRemoveAttribute: 0,
11812
- rendererSetProperty: 0,
11813
- rendererSetClassName: 0,
11814
- rendererAddClass: 0,
11815
- rendererRemoveClass: 0,
11816
- rendererSetStyle: 0,
11817
- rendererRemoveStyle: 0,
11818
- rendererDestroy: 0,
11819
- rendererDestroyNode: 0,
11820
- rendererMoveNode: 0,
11821
- rendererRemoveNode: 0,
11822
- };
11823
- }
11793
+ function ngDevModeResetPerfCounters() {
11794
+ var newCounters = {
11795
+ firstTemplatePass: 0,
11796
+ tNode: 0,
11797
+ tView: 0,
11798
+ rendererCreateTextNode: 0,
11799
+ rendererSetText: 0,
11800
+ rendererCreateElement: 0,
11801
+ rendererAddEventListener: 0,
11802
+ rendererSetAttribute: 0,
11803
+ rendererRemoveAttribute: 0,
11804
+ rendererSetProperty: 0,
11805
+ rendererSetClassName: 0,
11806
+ rendererAddClass: 0,
11807
+ rendererRemoveClass: 0,
11808
+ rendererSetStyle: 0,
11809
+ rendererRemoveStyle: 0,
11810
+ rendererDestroy: 0,
11811
+ rendererDestroyNode: 0,
11812
+ rendererMoveNode: 0,
11813
+ rendererRemoveNode: 0,
11814
+ };
11815
+ // NOTE: Under Ivy we may have both window & global defined in the Node
11816
+ // environment since ensureDocument() in render3.ts sets global.window.
11817
+ if (typeof window != 'undefined') {
11818
+ // Make sure to refer to ngDevMode as ['ngDevMode'] for closure.
11819
+ window['ngDevMode'] = newCounters;
11820
+ }
11821
+ if (typeof global != 'undefined') {
11822
+ // Make sure to refer to ngDevMode as ['ngDevMode'] for closure.
11823
+ global['ngDevMode'] = newCounters;
11824
+ }
11825
+ if (typeof self != 'undefined') {
11826
+ // Make sure to refer to ngDevMode as ['ngDevMode'] for closure.
11827
+ self['ngDevMode'] = newCounters;
11828
+ }
11829
+ return newCounters;
11830
+ }
11831
+ /**
11832
+ * This checks to see if the `ngDevMode` has been set. If yes,
11833
+ * than we honor it, otherwise we default to dev mode with additional checks.
11834
+ *
11835
+ * The idea is that unless we are doing production build where we explicitly
11836
+ * set `ngDevMode == false` we should be helping the developer by providing
11837
+ * as much early warning and errors as possible.
11838
+ */
11839
+ if (typeof ngDevMode === 'undefined' || ngDevMode) {
11824
11840
  ngDevModeResetPerfCounters();
11825
- return ngDevModeResetPerfCounters;
11826
- })(typeof window != 'undefined' && window || typeof self != 'undefined' && self ||
11827
- typeof global != 'undefined' && global));
11841
+ }
11828
11842
 
11829
11843
  /** Called when directives inject each other (creating a circular dependency) */
11830
11844
  function throwCyclicDependencyError(token) {
@@ -14431,7 +14445,7 @@ function elementStyling(classDeclarations, styleDeclarations, styleSanitizer) {
14431
14445
  *
14432
14446
  * This method lazily creates the `StylingContext`. This is because in most cases
14433
14447
  * we have styling without any bindings. Creating `StylingContext` eagerly would mean that
14434
- * every style declaration such as `<div style="color: 'red' ">` would result `StyleContext`
14448
+ * every style declaration such as `<div style="color: red">` would result `StyleContext`
14435
14449
  * which would create unnecessary memory pressure.
14436
14450
  *
14437
14451
  * @param index Index of the style allocation. See: `elementStyling`.
@@ -18718,5 +18732,5 @@ function sanitizeResourceUrl(unsafeResourceUrl) {
18718
18732
  * Generated bundle index. Do not edit.
18719
18733
  */
18720
18734
 
18721
- export { APPLICATION_MODULE_PROVIDERS as ɵangular_packages_core_core_l, _iterableDiffersFactory as ɵangular_packages_core_core_i, _keyValueDiffersFactory as ɵangular_packages_core_core_j, _localeFactory as ɵangular_packages_core_core_k, _appIdRandomProviderFactory as ɵangular_packages_core_core_f, DefaultIterableDifferFactory as ɵangular_packages_core_core_g, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_h, ReflectiveInjector_ as ɵangular_packages_core_core_c, ReflectiveDependency as ɵangular_packages_core_core_d, resolveReflectiveProviders as ɵangular_packages_core_core_e, wtfEnabled as ɵangular_packages_core_core_m, createScope as ɵangular_packages_core_core_o, detectWTF as ɵangular_packages_core_core_n, endTimeRange as ɵangular_packages_core_core_r, leave as ɵangular_packages_core_core_p, startTimeRange as ɵangular_packages_core_core_q, getOrCreateChangeDetectorRef as ɵangular_packages_core_core_v, getOrCreateContainerRef as ɵangular_packages_core_core_y, getOrCreateElementRef as ɵangular_packages_core_core_x, getOrCreateInjectable as ɵangular_packages_core_core_w, getOrCreateNodeInjector as ɵangular_packages_core_core_u, getOrCreateTemplateRef as ɵangular_packages_core_core_z, bindingUpdated as ɵangular_packages_core_core_ba, loadInternal as ɵangular_packages_core_core_bb, makeParamDecorator as ɵangular_packages_core_core_a, makePropDecorator as ɵangular_packages_core_core_b, _def as ɵangular_packages_core_core_s, DebugContext as ɵangular_packages_core_core_t, createPlatform, assertPlatform, destroyPlatform, getPlatform, PlatformRef, ApplicationRef, enableProdMode, isDevMode, createPlatformFactory, NgProbeToken, APP_ID, PACKAGE_ROOT_URL, PLATFORM_INITIALIZER, PLATFORM_ID, APP_BOOTSTRAP_LISTENER, APP_INITIALIZER, ApplicationInitStatus, DebugElement, DebugNode, asNativeElements, getDebugNode, Testability, TestabilityRegistry, setTestabilityGetter, TRANSLATIONS, TRANSLATIONS_FORMAT, LOCALE_ID, MissingTranslationStrategy, ApplicationModule, wtfCreateScope, wtfLeave, wtfStartTimeRange, wtfEndTimeRange, Type, EventEmitter, ErrorHandler, Sanitizer, SecurityContext, ANALYZE_FOR_ENTRY_COMPONENTS, Attribute, ContentChild, ContentChildren, Query, ViewChild, ViewChildren, Component, Directive, HostBinding, HostListener, Input, Output, Pipe, CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA, NgModule, ViewEncapsulation, Version, VERSION, defineInjectable, defineInjector, forwardRef, resolveForwardRef, Injectable, inject, INJECTOR, Injector, ReflectiveInjector, createInjector, ResolvedReflectiveFactory, ReflectiveKey, InjectionToken, Inject, Optional, Self, SkipSelf, Host, NgZone, RenderComponentType, Renderer, Renderer2, RendererFactory2, RendererStyleFlags2, RootRenderer, COMPILER_OPTIONS, Compiler, CompilerFactory, ModuleWithComponentFactories, ComponentFactory, ComponentRef, ComponentFactoryResolver, ElementRef, NgModuleFactory, NgModuleRef, NgModuleFactoryLoader, getModuleFactory, QueryList, SystemJsNgModuleLoader, SystemJsNgModuleLoaderConfig, TemplateRef, ViewContainerRef, EmbeddedViewRef, ViewRef, ChangeDetectionStrategy, ChangeDetectorRef, DefaultIterableDiffer, IterableDiffers, KeyValueDiffers, SimpleChange, WrappedValue, platformCore, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, devModeEqual as ɵdevModeEqual, isListLikeIterable as ɵisListLikeIterable, ChangeDetectorStatus as ɵChangeDetectorStatus, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, Console as ɵConsole, inject as ɵinject, setCurrentInjector as ɵsetCurrentInjector, APP_ROOT as ɵAPP_ROOT, ivyEnabled as ɵivyEnabled, ComponentFactory as ɵComponentFactory, CodegenComponentFactoryResolver as ɵCodegenComponentFactoryResolver, resolveComponentResources as ɵresolveComponentResources, ReflectionCapabilities as ɵReflectionCapabilities, RenderDebugInfo as ɵRenderDebugInfo, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeStyle as ɵ_sanitizeStyle, _sanitizeUrl as ɵ_sanitizeUrl, _global as ɵglobal, looseIdentical as ɵlooseIdentical, stringify as ɵstringify, makeDecorator as ɵmakeDecorator, isObservable as ɵisObservable, isPromise as ɵisPromise, clearOverrides as ɵclearOverrides, initServicesIfNeeded as ɵinitServicesIfNeeded, overrideComponentView as ɵoverrideComponentView, overrideProvider as ɵoverrideProvider, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, defineComponent as ɵdefineComponent, defineDirective as ɵdefineDirective, definePipe as ɵdefinePipe, defineNgModule as ɵdefineNgModule, detectChanges as ɵdetectChanges, renderComponent as ɵrenderComponent, directiveInject as ɵdirectiveInject, injectElementRef as ɵinjectElementRef, injectTemplateRef as ɵinjectTemplateRef, injectViewContainerRef as ɵinjectViewContainerRef, injectChangeDetectorRef as ɵinjectChangeDetectorRef, injectAttribute as ɵinjectAttribute, PublicFeature as ɵPublicFeature, InheritDefinitionFeature as ɵInheritDefinitionFeature, NgOnChangesFeature as ɵNgOnChangesFeature, markDirty as ɵmarkDirty, NgModuleFactory$1 as ɵNgModuleFactory, NO_CHANGE as ɵNC, container as ɵC, elementStart as ɵE, namespaceHTML as ɵNH, namespaceMathML as ɵNM, namespaceSVG as ɵNS, element as ɵEe, listener as ɵL, text as ɵT, embeddedViewStart as ɵV, query as ɵQ, registerContentQuery as ɵQr, loadDirective as ɵd, projection as ɵP, bind as ɵb, interpolation1 as ɵi1, interpolation2 as ɵi2, interpolation3 as ɵi3, interpolation4 as ɵi4, interpolation5 as ɵi5, interpolation6 as ɵi6, interpolation7 as ɵi7, interpolation8 as ɵi8, interpolationV as ɵiV, pipeBind1 as ɵpb1, pipeBind2 as ɵpb2, pipeBind3 as ɵpb3, pipeBind4 as ɵpb4, pipeBindV as ɵpbV, pureFunction0 as ɵf0, pureFunction1 as ɵf1, pureFunction2 as ɵf2, pureFunction3 as ɵf3, pureFunction4 as ɵf4, pureFunction5 as ɵf5, pureFunction6 as ɵf6, pureFunction7 as ɵf7, pureFunction8 as ɵf8, pureFunctionV as ɵfV, containerRefreshStart as ɵcR, containerRefreshEnd as ɵcr, queryRefresh as ɵqR, loadQueryList as ɵql, elementEnd as ɵe, elementProperty as ɵp, projectionDef as ɵpD, reserveSlots as ɵrS, elementAttribute as ɵa, elementStyling as ɵs, elementStylingMap as ɵsm, elementStyleProp as ɵsp, elementStylingApply as ɵsa, elementClassProp as ɵcp, textBinding as ɵt, embeddedViewEnd as ɵv, store as ɵst, load as ɵld, pipe as ɵPp, whenRendered as ɵwhenRendered, i18nApply as ɵiA, i18nExpMapping as ɵiEM, i18nInterpolation1 as ɵiI1, i18nInterpolation2 as ɵiI2, i18nInterpolation3 as ɵiI3, i18nInterpolation4 as ɵiI4, i18nInterpolation5 as ɵiI5, i18nInterpolation6 as ɵiI6, i18nInterpolation7 as ɵiI7, i18nInterpolation8 as ɵiI8, i18nInterpolationV as ɵIV, i18nMapping as ɵiM, sanitizeHtml as ɵsanitizeHtml, sanitizeStyle as ɵsanitizeStyle, sanitizeUrl as ɵsanitizeUrl, sanitizeResourceUrl as ɵsanitizeResourceUrl, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, registerModuleFactory as ɵregisterModuleFactory, EMPTY_ARRAY$2 as ɵEMPTY_ARRAY, EMPTY_MAP as ɵEMPTY_MAP, anchorDef as ɵand, createComponentFactory as ɵccf, createNgModuleFactory as ɵcmf, createRendererType2 as ɵcrt, directiveDef as ɵdid, elementDef as ɵeld, elementEventFullName as ɵelementEventFullName, getComponentViewDefinitionFactory as ɵgetComponentViewDefinitionFactory, inlineInterpolate as ɵinlineInterpolate, interpolate as ɵinterpolate, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, nodeValue as ɵnov, pipeDef as ɵpid, providerDef as ɵprd, pureArrayDef as ɵpad, pureObjectDef as ɵpod, purePipeDef as ɵppd, queryDef as ɵqud, textDef as ɵted, unwrapValue as ɵunv, viewDef as ɵvid };
18735
+ export { APPLICATION_MODULE_PROVIDERS as ɵangular_packages_core_core_l, _iterableDiffersFactory as ɵangular_packages_core_core_i, _keyValueDiffersFactory as ɵangular_packages_core_core_j, _localeFactory as ɵangular_packages_core_core_k, _appIdRandomProviderFactory as ɵangular_packages_core_core_f, DefaultIterableDifferFactory as ɵangular_packages_core_core_g, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_h, ReflectiveInjector_ as ɵangular_packages_core_core_c, ReflectiveDependency as ɵangular_packages_core_core_d, resolveReflectiveProviders as ɵangular_packages_core_core_e, wtfEnabled as ɵangular_packages_core_core_m, createScope as ɵangular_packages_core_core_o, detectWTF as ɵangular_packages_core_core_n, endTimeRange as ɵangular_packages_core_core_r, leave as ɵangular_packages_core_core_p, startTimeRange as ɵangular_packages_core_core_q, getOrCreateChangeDetectorRef as ɵangular_packages_core_core_v, getOrCreateContainerRef as ɵangular_packages_core_core_y, getOrCreateElementRef as ɵangular_packages_core_core_x, getOrCreateInjectable as ɵangular_packages_core_core_w, getOrCreateNodeInjector as ɵangular_packages_core_core_u, getOrCreateTemplateRef as ɵangular_packages_core_core_z, bindingUpdated as ɵangular_packages_core_core_ba, loadInternal as ɵangular_packages_core_core_bb, makeParamDecorator as ɵangular_packages_core_core_a, makePropDecorator as ɵangular_packages_core_core_b, _def as ɵangular_packages_core_core_s, DebugContext as ɵangular_packages_core_core_t, createPlatform, assertPlatform, destroyPlatform, getPlatform, PlatformRef, ApplicationRef, enableProdMode, isDevMode, createPlatformFactory, NgProbeToken, APP_ID, PACKAGE_ROOT_URL, PLATFORM_INITIALIZER, PLATFORM_ID, APP_BOOTSTRAP_LISTENER, APP_INITIALIZER, ApplicationInitStatus, DebugElement, DebugNode, asNativeElements, getDebugNode, Testability, TestabilityRegistry, setTestabilityGetter, TRANSLATIONS, TRANSLATIONS_FORMAT, LOCALE_ID, MissingTranslationStrategy, ApplicationModule, wtfCreateScope, wtfLeave, wtfStartTimeRange, wtfEndTimeRange, Type, EventEmitter, ErrorHandler, Sanitizer, SecurityContext, ANALYZE_FOR_ENTRY_COMPONENTS, Attribute, ContentChild, ContentChildren, Query, ViewChild, ViewChildren, Component, Directive, HostBinding, HostListener, Input, Output, Pipe, CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA, NgModule, ViewEncapsulation, Version, VERSION, defineInjectable, defineInjector, forwardRef, resolveForwardRef, Injectable, inject, INJECTOR, Injector, ReflectiveInjector, createInjector, ResolvedReflectiveFactory, ReflectiveKey, InjectionToken, Inject, Optional, Self, SkipSelf, Host, NgZone, NoopNgZone as ɵNoopNgZone, RenderComponentType, Renderer, Renderer2, RendererFactory2, RendererStyleFlags2, RootRenderer, COMPILER_OPTIONS, Compiler, CompilerFactory, ModuleWithComponentFactories, ComponentFactory, ComponentRef, ComponentFactoryResolver, ElementRef, NgModuleFactory, NgModuleRef, NgModuleFactoryLoader, getModuleFactory, QueryList, SystemJsNgModuleLoader, SystemJsNgModuleLoaderConfig, TemplateRef, ViewContainerRef, EmbeddedViewRef, ViewRef, ChangeDetectionStrategy, ChangeDetectorRef, DefaultIterableDiffer, IterableDiffers, KeyValueDiffers, SimpleChange, WrappedValue, platformCore, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, devModeEqual as ɵdevModeEqual, isListLikeIterable as ɵisListLikeIterable, ChangeDetectorStatus as ɵChangeDetectorStatus, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, Console as ɵConsole, inject as ɵinject, setCurrentInjector as ɵsetCurrentInjector, APP_ROOT as ɵAPP_ROOT, ivyEnabled as ɵivyEnabled, ComponentFactory as ɵComponentFactory, CodegenComponentFactoryResolver as ɵCodegenComponentFactoryResolver, resolveComponentResources as ɵresolveComponentResources, ReflectionCapabilities as ɵReflectionCapabilities, RenderDebugInfo as ɵRenderDebugInfo, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeStyle as ɵ_sanitizeStyle, _sanitizeUrl as ɵ_sanitizeUrl, _global as ɵglobal, looseIdentical as ɵlooseIdentical, stringify as ɵstringify, makeDecorator as ɵmakeDecorator, isObservable as ɵisObservable, isPromise as ɵisPromise, clearOverrides as ɵclearOverrides, initServicesIfNeeded as ɵinitServicesIfNeeded, overrideComponentView as ɵoverrideComponentView, overrideProvider as ɵoverrideProvider, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, defineComponent as ɵdefineComponent, defineDirective as ɵdefineDirective, definePipe as ɵdefinePipe, defineNgModule as ɵdefineNgModule, detectChanges as ɵdetectChanges, renderComponent as ɵrenderComponent, directiveInject as ɵdirectiveInject, injectElementRef as ɵinjectElementRef, injectTemplateRef as ɵinjectTemplateRef, injectViewContainerRef as ɵinjectViewContainerRef, injectChangeDetectorRef as ɵinjectChangeDetectorRef, injectAttribute as ɵinjectAttribute, PublicFeature as ɵPublicFeature, InheritDefinitionFeature as ɵInheritDefinitionFeature, NgOnChangesFeature as ɵNgOnChangesFeature, markDirty as ɵmarkDirty, NgModuleFactory$1 as ɵNgModuleFactory, NO_CHANGE as ɵNC, container as ɵC, elementStart as ɵE, namespaceHTML as ɵNH, namespaceMathML as ɵNM, namespaceSVG as ɵNS, element as ɵEe, listener as ɵL, text as ɵT, embeddedViewStart as ɵV, query as ɵQ, registerContentQuery as ɵQr, loadDirective as ɵd, projection as ɵP, bind as ɵb, interpolation1 as ɵi1, interpolation2 as ɵi2, interpolation3 as ɵi3, interpolation4 as ɵi4, interpolation5 as ɵi5, interpolation6 as ɵi6, interpolation7 as ɵi7, interpolation8 as ɵi8, interpolationV as ɵiV, pipeBind1 as ɵpb1, pipeBind2 as ɵpb2, pipeBind3 as ɵpb3, pipeBind4 as ɵpb4, pipeBindV as ɵpbV, pureFunction0 as ɵf0, pureFunction1 as ɵf1, pureFunction2 as ɵf2, pureFunction3 as ɵf3, pureFunction4 as ɵf4, pureFunction5 as ɵf5, pureFunction6 as ɵf6, pureFunction7 as ɵf7, pureFunction8 as ɵf8, pureFunctionV as ɵfV, containerRefreshStart as ɵcR, containerRefreshEnd as ɵcr, queryRefresh as ɵqR, loadQueryList as ɵql, elementEnd as ɵe, elementProperty as ɵp, projectionDef as ɵpD, reserveSlots as ɵrS, elementAttribute as ɵa, elementStyling as ɵs, elementStylingMap as ɵsm, elementStyleProp as ɵsp, elementStylingApply as ɵsa, elementClassProp as ɵcp, textBinding as ɵt, embeddedViewEnd as ɵv, store as ɵst, load as ɵld, pipe as ɵPp, whenRendered as ɵwhenRendered, i18nApply as ɵiA, i18nExpMapping as ɵiEM, i18nInterpolation1 as ɵiI1, i18nInterpolation2 as ɵiI2, i18nInterpolation3 as ɵiI3, i18nInterpolation4 as ɵiI4, i18nInterpolation5 as ɵiI5, i18nInterpolation6 as ɵiI6, i18nInterpolation7 as ɵiI7, i18nInterpolation8 as ɵiI8, i18nInterpolationV as ɵIV, i18nMapping as ɵiM, sanitizeHtml as ɵsanitizeHtml, sanitizeStyle as ɵsanitizeStyle, sanitizeUrl as ɵsanitizeUrl, sanitizeResourceUrl as ɵsanitizeResourceUrl, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, registerModuleFactory as ɵregisterModuleFactory, EMPTY_ARRAY$2 as ɵEMPTY_ARRAY, EMPTY_MAP as ɵEMPTY_MAP, anchorDef as ɵand, createComponentFactory as ɵccf, createNgModuleFactory as ɵcmf, createRendererType2 as ɵcrt, directiveDef as ɵdid, elementDef as ɵeld, elementEventFullName as ɵelementEventFullName, getComponentViewDefinitionFactory as ɵgetComponentViewDefinitionFactory, inlineInterpolate as ɵinlineInterpolate, interpolate as ɵinterpolate, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, nodeValue as ɵnov, pipeDef as ɵpid, providerDef as ɵprd, pureArrayDef as ɵpad, pureObjectDef as ɵpod, purePipeDef as ɵppd, queryDef as ɵqud, textDef as ɵted, unwrapValue as ɵunv, viewDef as ɵvid };
18722
18736
  //# sourceMappingURL=core.js.map