@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.
- package/bundles/core-testing.umd.js +23 -16
- package/bundles/core-testing.umd.js.map +1 -1
- package/bundles/core-testing.umd.min.js +6 -6
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +166 -139
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +81 -81
- package/bundles/core.umd.min.js.map +1 -1
- package/core.metadata.json +1 -1
- package/esm2015/index.js +2 -2
- package/esm2015/public_api.js +2 -2
- package/esm2015/src/application_module.js +11 -4
- package/esm2015/src/change_detection/change_detector_ref.js +2 -2
- package/esm2015/src/core.js +2 -2
- package/esm2015/src/di/injection_token.js +3 -3
- package/esm2015/src/di/reflective_injector.js +1 -10
- package/esm2015/src/linker/component_factory.js +19 -16
- package/esm2015/src/linker/template_ref.js +20 -14
- package/esm2015/src/linker/view_container_ref.js +61 -68
- package/esm2015/src/linker/view_ref.js +29 -21
- package/esm2015/src/metadata/view.js +1 -4
- package/esm2015/src/render3/instructions.js +2 -2
- package/esm2015/src/render3/ng_dev_mode.js +52 -31
- package/esm2015/src/version.js +1 -1
- package/esm2015/src/zone.js +2 -2
- package/esm5/src/application_init.js +7 -8
- package/esm5/src/application_module.js +16 -10
- package/esm5/src/application_ref.js +15 -21
- package/esm5/src/change_detection/change_detector_ref.js +2 -2
- package/esm5/src/console.js +5 -4
- package/esm5/src/di/injection_token.js +3 -3
- package/esm5/src/di/reflective_injector.js +1 -1
- package/esm5/src/linker/compiler.js +5 -4
- package/esm5/src/linker/component_factory.js +4 -6
- package/esm5/src/linker/system_js_ng_module_factory_loader.js +6 -9
- package/esm5/src/linker/template_ref.js +13 -8
- package/esm5/src/linker/view_container_ref.js +9 -13
- package/esm5/src/linker/view_ref.js +22 -18
- package/esm5/src/metadata/view.js +4 -4
- package/esm5/src/render3/instructions.js +2 -2
- package/esm5/src/render3/ng_dev_mode.js +48 -27
- package/esm5/src/testability/testability.js +10 -13
- package/esm5/src/version.js +1 -1
- package/esm5/src/zone.js +2 -2
- package/esm5/testing/src/logger.js +6 -6
- package/esm5/testing/src/ng_zone_mock.js +5 -6
- package/esm5/testing/src/test_bed.js +13 -13
- package/esm5/testing/src/test_compiler.js +4 -4
- package/fesm2015/core.js +110 -84
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm5/core.js +155 -141
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +17 -17
- package/fesm5/testing.js.map +1 -1
- package/package.json +1 -1
- package/src/application_module.d.ts +10 -2
- package/src/change_detection/change_detector_ref.d.ts +1 -1
- package/src/di/injection_token.d.ts +2 -2
- package/src/di/reflective_injector.d.ts +0 -9
- package/src/linker/component_factory.d.ts +22 -14
- package/src/linker/template_ref.d.ts +21 -11
- package/src/linker/view_container_ref.d.ts +61 -44
- package/src/linker/view_ref.d.ts +38 -18
- package/src/metadata/view.d.ts +3 -3
- package/src/render3/ng_dev_mode.d.ts +1 -1
- package/src/zone.d.ts +1 -1
package/fesm2015/testing.js
CHANGED
package/fesm5/core.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v6.1.
|
|
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,
|
|
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
|
-
*
|
|
101
|
+
* ### Plain InjectionToken
|
|
102
102
|
*
|
|
103
103
|
* {@example core/di/ts/injector_spec.ts region='InjectionToken'}
|
|
104
104
|
*
|
|
105
|
-
*
|
|
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.
|
|
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
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
ApplicationInitStatus
|
|
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
|
|
3131
|
-
|
|
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
|
|
3205
|
-
|
|
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
|
|
3235
|
-
*
|
|
3236
|
-
*
|
|
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
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
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
|
|
4111
|
-
|
|
4112
|
-
|
|
4113
|
-
|
|
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
|
|
4399
|
-
|
|
4400
|
-
|
|
4401
|
-
|
|
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 =
|
|
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
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
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
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
SystemJsNgModuleLoader
|
|
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
|
|
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
|
-
*
|
|
5040
|
-
* (or directive prefixed with `*`)
|
|
5041
|
-
* the constructor of the directive
|
|
5042
|
-
* the `TemplateRef`
|
|
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
|
-
*
|
|
5045
|
-
*
|
|
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
|
|
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
|
-
*
|
|
5069
|
-
*
|
|
5070
|
-
*
|
|
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
|
-
*
|
|
5073
|
-
*
|
|
5056
|
+
* A view container instance can contain other view containers,
|
|
5057
|
+
* creating a [view hierarchy](guide/glossary#view-tree).
|
|
5074
5058
|
*
|
|
5075
|
-
*
|
|
5076
|
-
*
|
|
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="
|
|
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
|
|
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
|
-
*
|
|
5157
|
-
*
|
|
5158
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
5178
|
+
* This is the inner `TemplateRef`:
|
|
5189
5179
|
*
|
|
5190
5180
|
* ```
|
|
5191
5181
|
* <li>{{item}}</li>
|
|
5192
5182
|
* ```
|
|
5193
5183
|
*
|
|
5194
|
-
*
|
|
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
|
-
*
|
|
6789
|
-
*
|
|
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
|
|
6798
|
-
|
|
6799
|
-
|
|
6800
|
-
|
|
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
|
-
|
|
11801
|
-
|
|
11802
|
-
|
|
11803
|
-
|
|
11804
|
-
|
|
11805
|
-
|
|
11806
|
-
|
|
11807
|
-
|
|
11808
|
-
|
|
11809
|
-
|
|
11810
|
-
|
|
11811
|
-
|
|
11812
|
-
|
|
11813
|
-
|
|
11814
|
-
|
|
11815
|
-
|
|
11816
|
-
|
|
11817
|
-
|
|
11818
|
-
|
|
11819
|
-
|
|
11820
|
-
|
|
11821
|
-
|
|
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
|
-
|
|
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:
|
|
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
|