@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/core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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
|
*/
|
|
@@ -96,11 +96,11 @@ function defineInjector(options) {
|
|
|
96
96
|
* \@usageNotes
|
|
97
97
|
* ### Basic Example
|
|
98
98
|
*
|
|
99
|
-
*
|
|
99
|
+
* ### Plain InjectionToken
|
|
100
100
|
*
|
|
101
101
|
* {\@example core/di/ts/injector_spec.ts region='InjectionToken'}
|
|
102
102
|
*
|
|
103
|
-
*
|
|
103
|
+
* ### Tree-shakable InjectionToken
|
|
104
104
|
*
|
|
105
105
|
* {\@example core/di/ts/injector_spec.ts region='ShakableInjectionToken'}
|
|
106
106
|
*
|
|
@@ -1909,9 +1909,6 @@ const ViewEncapsulation = {
|
|
|
1909
1909
|
* For the DOM this means using modern [Shadow
|
|
1910
1910
|
* DOM](https://w3c.github.io/webcomponents/spec/shadow/) and
|
|
1911
1911
|
* creating a ShadowRoot for Component's Host Element.
|
|
1912
|
-
*
|
|
1913
|
-
* ### Example
|
|
1914
|
-
* {@example core/ts/metadata/encapsulation.ts region='longform'}
|
|
1915
1912
|
*/
|
|
1916
1913
|
ShadowDom: 3,
|
|
1917
1914
|
};
|
|
@@ -1953,7 +1950,7 @@ class Version {
|
|
|
1953
1950
|
}
|
|
1954
1951
|
}
|
|
1955
1952
|
/** @type {?} */
|
|
1956
|
-
const VERSION = new Version('6.1.
|
|
1953
|
+
const VERSION = new Version('6.1.10');
|
|
1957
1954
|
|
|
1958
1955
|
/**
|
|
1959
1956
|
* @fileoverview added by tsickle
|
|
@@ -3931,11 +3928,9 @@ class CompilerFactory {
|
|
|
3931
3928
|
* found in the LICENSE file at https://angular.io/license
|
|
3932
3929
|
*/
|
|
3933
3930
|
/**
|
|
3934
|
-
* Represents
|
|
3935
|
-
*
|
|
3936
|
-
*
|
|
3937
|
-
* Component Instance and allows you to destroy the Component Instance via the {\@link #destroy}
|
|
3938
|
-
* method.
|
|
3931
|
+
* Represents a component created by a `ComponentFactory`.
|
|
3932
|
+
* Provides access to the component instance and related objects,
|
|
3933
|
+
* and provides the means of destroying the instance.
|
|
3939
3934
|
*
|
|
3940
3935
|
* @abstract
|
|
3941
3936
|
* @template C
|
|
@@ -6044,15 +6039,20 @@ function checkNotEmpty(value, modulePath, exportName) {
|
|
|
6044
6039
|
* found in the LICENSE file at https://angular.io/license
|
|
6045
6040
|
*/
|
|
6046
6041
|
/**
|
|
6047
|
-
* Represents an
|
|
6042
|
+
* Represents an embedded template that can be used to instantiate embedded views.
|
|
6043
|
+
* To instantiate embedded views based on a template, use the `ViewContainerRef`
|
|
6044
|
+
* method `createEmbeddedView()`.
|
|
6048
6045
|
*
|
|
6049
|
-
*
|
|
6050
|
-
* (or directive prefixed with `*`)
|
|
6051
|
-
* the constructor of the directive
|
|
6052
|
-
* the `TemplateRef`
|
|
6046
|
+
* Access a `TemplateRef` instance by placing a directive on an `<ng-template>`
|
|
6047
|
+
* element (or directive prefixed with `*`). The `TemplateRef` for the embedded view
|
|
6048
|
+
* is injected into the constructor of the directive,
|
|
6049
|
+
* using the `TemplateRef` token.
|
|
6053
6050
|
*
|
|
6054
|
-
*
|
|
6055
|
-
*
|
|
6051
|
+
* You can also use a `Query` to find a `TemplateRef` associated with
|
|
6052
|
+
* a component or a directive.
|
|
6053
|
+
*
|
|
6054
|
+
* @see `ViewContainerRef`
|
|
6055
|
+
* @see [Navigate the Component Tree with DI](guide/dependency-injection-navtree)
|
|
6056
6056
|
*
|
|
6057
6057
|
* @abstract
|
|
6058
6058
|
* @template C
|
|
@@ -6072,21 +6072,17 @@ class TemplateRef {
|
|
|
6072
6072
|
* found in the LICENSE file at https://angular.io/license
|
|
6073
6073
|
*/
|
|
6074
6074
|
/**
|
|
6075
|
-
* Represents a container where one or more
|
|
6076
|
-
*
|
|
6077
|
-
* The container can contain two kinds of Views. Host Views, created by instantiating a
|
|
6078
|
-
* {\@link Component} via {\@link #createComponent}, and Embedded Views, created by instantiating an
|
|
6079
|
-
* {\@link TemplateRef Embedded Template} via {\@link #createEmbeddedView}.
|
|
6075
|
+
* Represents a container where one or more views can be attached to a component.
|
|
6080
6076
|
*
|
|
6081
|
-
*
|
|
6082
|
-
*
|
|
6083
|
-
*
|
|
6077
|
+
* Can contain *host views* (created by instantiating a
|
|
6078
|
+
* component with the `createComponent()` method), and *embedded views*
|
|
6079
|
+
* (created by instantiating a `TemplateRef` with the `createEmbeddedView()` method).
|
|
6084
6080
|
*
|
|
6085
|
-
*
|
|
6086
|
-
*
|
|
6081
|
+
* A view container instance can contain other view containers,
|
|
6082
|
+
* creating a [view hierarchy](guide/glossary#view-tree).
|
|
6087
6083
|
*
|
|
6088
|
-
*
|
|
6089
|
-
*
|
|
6084
|
+
* @see `ComponentRef`
|
|
6085
|
+
* @see `EmbeddedViewRef`
|
|
6090
6086
|
*
|
|
6091
6087
|
* @abstract
|
|
6092
6088
|
*/
|
|
@@ -6142,7 +6138,7 @@ class ViewContainerRef {
|
|
|
6142
6138
|
* when the `live` property is set to false, and reattaches it when the property
|
|
6143
6139
|
* becomes true.
|
|
6144
6140
|
*
|
|
6145
|
-
* <code-example path="core/ts/change_detect/change-detection.ts" region="
|
|
6141
|
+
* <code-example path="core/ts/change_detect/change-detection.ts" region="reattach"></code-example>
|
|
6146
6142
|
*
|
|
6147
6143
|
* @abstract
|
|
6148
6144
|
*/
|
|
@@ -6154,26 +6150,32 @@ class ChangeDetectorRef {
|
|
|
6154
6150
|
* @suppress {checkTypes,extraRequire,uselessCode} checked by tsc
|
|
6155
6151
|
*/
|
|
6156
6152
|
/**
|
|
6153
|
+
* Represents an Angular [view](guide/glossary#view),
|
|
6154
|
+
* specifically the [host view](guide/glossary#view-tree) that is defined by a component.
|
|
6155
|
+
* Also serves as the base class
|
|
6156
|
+
* that adds destroy methods for [embedded views](guide/glossary#view-tree).
|
|
6157
|
+
*
|
|
6158
|
+
* @see `EmbeddedViewRef`
|
|
6157
6159
|
* @abstract
|
|
6158
6160
|
*/
|
|
6159
6161
|
class ViewRef extends ChangeDetectorRef {
|
|
6160
6162
|
}
|
|
6161
6163
|
/**
|
|
6162
|
-
* Represents an Angular
|
|
6164
|
+
* Represents an Angular [view](guide/glossary#view) in a view container.
|
|
6165
|
+
* An [embedded view](guide/glossary#view-tree) can be referenced from a component
|
|
6166
|
+
* other than the hosting component whose template defines it, or it can be defined
|
|
6167
|
+
* independently by a `TemplateRef`.
|
|
6163
6168
|
*
|
|
6164
|
-
*
|
|
6165
|
-
*
|
|
6166
|
-
*
|
|
6169
|
+
* Properties of elements in a view can change, but the structure (number and order) of elements in
|
|
6170
|
+
* a view cannot. Change the structure of elements by inserting, moving, or
|
|
6171
|
+
* removing nested views in a view container.
|
|
6167
6172
|
*
|
|
6168
|
-
*
|
|
6169
|
-
* a View cannot. Changing the structure of Elements can only be done by inserting, moving or
|
|
6170
|
-
* removing nested Views via a `ViewContainerRef`. Each View can contain many View Containers.
|
|
6171
|
-
* <!-- /TODO -->
|
|
6173
|
+
* @see `ViewContainerRef`
|
|
6172
6174
|
*
|
|
6173
6175
|
* \@usageNotes
|
|
6174
|
-
* ### Example
|
|
6175
6176
|
*
|
|
6176
|
-
*
|
|
6177
|
+
* The following template breaks down into two separate `TemplateRef` instances,
|
|
6178
|
+
* an outer one and an inner one.
|
|
6177
6179
|
*
|
|
6178
6180
|
* ```
|
|
6179
6181
|
* Count: {{items.length}}
|
|
@@ -6182,9 +6184,7 @@ class ViewRef extends ChangeDetectorRef {
|
|
|
6182
6184
|
* </ul>
|
|
6183
6185
|
* ```
|
|
6184
6186
|
*
|
|
6185
|
-
*
|
|
6186
|
-
*
|
|
6187
|
-
* Outer `TemplateRef`:
|
|
6187
|
+
* This is the outer `TemplateRef`:
|
|
6188
6188
|
*
|
|
6189
6189
|
* ```
|
|
6190
6190
|
* Count: {{items.length}}
|
|
@@ -6193,15 +6193,13 @@ class ViewRef extends ChangeDetectorRef {
|
|
|
6193
6193
|
* </ul>
|
|
6194
6194
|
* ```
|
|
6195
6195
|
*
|
|
6196
|
-
*
|
|
6196
|
+
* This is the inner `TemplateRef`:
|
|
6197
6197
|
*
|
|
6198
6198
|
* ```
|
|
6199
6199
|
* <li>{{item}}</li>
|
|
6200
6200
|
* ```
|
|
6201
6201
|
*
|
|
6202
|
-
*
|
|
6203
|
-
*
|
|
6204
|
-
* The outer/inner `TemplateRef`s are then assembled into views like so:
|
|
6202
|
+
* The outer and inner `TemplateRef` instances are assembled into views as follows:
|
|
6205
6203
|
*
|
|
6206
6204
|
* ```
|
|
6207
6205
|
* <!-- ViewRef: outer-0 -->
|
|
@@ -8163,7 +8161,10 @@ function _keyValueDiffersFactory() {
|
|
|
8163
8161
|
function _localeFactory(locale) {
|
|
8164
8162
|
return locale || 'en-US';
|
|
8165
8163
|
}
|
|
8166
|
-
/**
|
|
8164
|
+
/** *
|
|
8165
|
+
* A built-in [dependency injection token](guide/glossary#di-token)
|
|
8166
|
+
* that is used to configure the root injector for bootstrapping.
|
|
8167
|
+
@type {?} */
|
|
8167
8168
|
const APPLICATION_MODULE_PROVIDERS = [
|
|
8168
8169
|
{
|
|
8169
8170
|
provide: ApplicationRef,
|
|
@@ -8186,8 +8187,12 @@ const APPLICATION_MODULE_PROVIDERS = [
|
|
|
8186
8187
|
},
|
|
8187
8188
|
];
|
|
8188
8189
|
/**
|
|
8189
|
-
*
|
|
8190
|
-
*
|
|
8190
|
+
* Configures the root injector for an app with
|
|
8191
|
+
* providers of `\@angular/core` dependencies that `ApplicationRef` needs
|
|
8192
|
+
* to bootstrap components.
|
|
8193
|
+
*
|
|
8194
|
+
* Re-exported by `BrowserModule`, which is included automatically in the root
|
|
8195
|
+
* `AppModule` when you create a new app with the CLI `new` command.
|
|
8191
8196
|
*
|
|
8192
8197
|
* \@experimental
|
|
8193
8198
|
*/
|
|
@@ -15167,38 +15172,59 @@ function callHooks(data, arr) {
|
|
|
15167
15172
|
* Use of this source code is governed by an MIT-style license that can be
|
|
15168
15173
|
* found in the LICENSE file at https://angular.io/license
|
|
15169
15174
|
*/
|
|
15170
|
-
/**
|
|
15171
|
-
|
|
15172
|
-
|
|
15173
|
-
|
|
15174
|
-
|
|
15175
|
-
|
|
15176
|
-
|
|
15177
|
-
|
|
15178
|
-
|
|
15179
|
-
|
|
15180
|
-
|
|
15181
|
-
|
|
15182
|
-
|
|
15183
|
-
|
|
15184
|
-
|
|
15185
|
-
|
|
15186
|
-
|
|
15187
|
-
|
|
15188
|
-
|
|
15189
|
-
|
|
15190
|
-
|
|
15191
|
-
|
|
15192
|
-
|
|
15193
|
-
|
|
15194
|
-
|
|
15195
|
-
|
|
15196
|
-
|
|
15175
|
+
/**
|
|
15176
|
+
* @return {?}
|
|
15177
|
+
*/
|
|
15178
|
+
function ngDevModeResetPerfCounters() {
|
|
15179
|
+
/** @type {?} */
|
|
15180
|
+
const newCounters = {
|
|
15181
|
+
firstTemplatePass: 0,
|
|
15182
|
+
tNode: 0,
|
|
15183
|
+
tView: 0,
|
|
15184
|
+
rendererCreateTextNode: 0,
|
|
15185
|
+
rendererSetText: 0,
|
|
15186
|
+
rendererCreateElement: 0,
|
|
15187
|
+
rendererAddEventListener: 0,
|
|
15188
|
+
rendererSetAttribute: 0,
|
|
15189
|
+
rendererRemoveAttribute: 0,
|
|
15190
|
+
rendererSetProperty: 0,
|
|
15191
|
+
rendererSetClassName: 0,
|
|
15192
|
+
rendererAddClass: 0,
|
|
15193
|
+
rendererRemoveClass: 0,
|
|
15194
|
+
rendererSetStyle: 0,
|
|
15195
|
+
rendererRemoveStyle: 0,
|
|
15196
|
+
rendererDestroy: 0,
|
|
15197
|
+
rendererDestroyNode: 0,
|
|
15198
|
+
rendererMoveNode: 0,
|
|
15199
|
+
rendererRemoveNode: 0,
|
|
15200
|
+
};
|
|
15201
|
+
// NOTE: Under Ivy we may have both window & global defined in the Node
|
|
15202
|
+
// environment since ensureDocument() in render3.ts sets global.window.
|
|
15203
|
+
if (typeof window != 'undefined') {
|
|
15204
|
+
// Make sure to refer to ngDevMode as ['ngDevMode'] for closure.
|
|
15205
|
+
(/** @type {?} */ (window))['ngDevMode'] = newCounters;
|
|
15197
15206
|
}
|
|
15207
|
+
if (typeof global != 'undefined') {
|
|
15208
|
+
// Make sure to refer to ngDevMode as ['ngDevMode'] for closure.
|
|
15209
|
+
(/** @type {?} */ (global))['ngDevMode'] = newCounters;
|
|
15210
|
+
}
|
|
15211
|
+
if (typeof self != 'undefined') {
|
|
15212
|
+
// Make sure to refer to ngDevMode as ['ngDevMode'] for closure.
|
|
15213
|
+
(/** @type {?} */ (self))['ngDevMode'] = newCounters;
|
|
15214
|
+
}
|
|
15215
|
+
return newCounters;
|
|
15216
|
+
}
|
|
15217
|
+
/**
|
|
15218
|
+
* This checks to see if the `ngDevMode` has been set. If yes,
|
|
15219
|
+
* than we honor it, otherwise we default to dev mode with additional checks.
|
|
15220
|
+
*
|
|
15221
|
+
* The idea is that unless we are doing production build where we explicitly
|
|
15222
|
+
* set `ngDevMode == false` we should be helping the developer by providing
|
|
15223
|
+
* as much early warning and errors as possible.
|
|
15224
|
+
*/
|
|
15225
|
+
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
|
15198
15226
|
ngDevModeResetPerfCounters();
|
|
15199
|
-
|
|
15200
|
-
})(typeof window != 'undefined' && window || typeof self != 'undefined' && self ||
|
|
15201
|
-
typeof global != 'undefined' && global)));
|
|
15227
|
+
}
|
|
15202
15228
|
|
|
15203
15229
|
/**
|
|
15204
15230
|
* @fileoverview added by tsickle
|
|
@@ -18495,7 +18521,7 @@ function elementStyling(classDeclarations, styleDeclarations, styleSanitizer) {
|
|
|
18495
18521
|
*
|
|
18496
18522
|
* This method lazily creates the `StylingContext`. This is because in most cases
|
|
18497
18523
|
* we have styling without any bindings. Creating `StylingContext` eagerly would mean that
|
|
18498
|
-
* every style declaration such as `<div style="color:
|
|
18524
|
+
* every style declaration such as `<div style="color: red">` would result `StyleContext`
|
|
18499
18525
|
* which would create unnecessary memory pressure.
|
|
18500
18526
|
*
|
|
18501
18527
|
* @param {?} index Index of the style allocation. See: `elementStyling`.
|
|
@@ -23666,5 +23692,5 @@ function sanitizeResourceUrl(unsafeResourceUrl) {
|
|
|
23666
23692
|
* Generated bundle index. Do not edit.
|
|
23667
23693
|
*/
|
|
23668
23694
|
|
|
23669
|
-
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 };
|
|
23695
|
+
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 };
|
|
23670
23696
|
//# sourceMappingURL=core.js.map
|