@angular/core 5.2.0-rc.0 → 5.2.3
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 +4 -4
- package/bundles/core-testing.umd.min.js +2 -2
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +129 -83
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +9 -9
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +14 -14
- package/core.metadata.json +1 -1
- package/esm2015/core.js +85 -52
- package/esm2015/core.js.map +1 -1
- package/esm2015/testing.js +2 -2
- package/esm5/core.js +99 -53
- package/esm5/core.js.map +1 -1
- package/esm5/testing.js +2 -2
- package/package.json +1 -1
- package/src/animation/dsl.d.ts +3 -3
- package/src/change_detection/change_detection.d.ts +1 -1
- package/src/change_detection/change_detection_util.d.ts +13 -12
- package/src/core_private_export.d.ts +1 -1
- package/src/render3/instructions.d.ts +10 -4
- package/src/render3/interfaces.d.ts +11 -0
- package/testing.d.ts +2 -2
package/esm2015/testing.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v5.2.
|
|
3
|
-
* (c) 2010-
|
|
2
|
+
* @license Angular v5.2.3
|
|
3
|
+
* (c) 2010-2018 Google, Inc. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
import { ApplicationInitStatus, Compiler, Component, InjectionToken, Injector, NgModule, NgZone, Optional, RendererFactory2, SkipSelf, getDebugNode, ɵclearOverrides, ɵoverrideComponentView, ɵoverrideProvider, ɵstringify } from '@angular/core';
|
package/esm5/core.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v5.2.
|
|
3
|
-
* (c) 2010-
|
|
2
|
+
* @license Angular v5.2.3
|
|
3
|
+
* (c) 2010-2018 Google, Inc. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
import { __assign, __extends } from 'tslib';
|
|
@@ -716,7 +716,7 @@ var Version = /** @class */ (function () {
|
|
|
716
716
|
/**
|
|
717
717
|
* \@stable
|
|
718
718
|
*/
|
|
719
|
-
var VERSION = new Version('5.2.
|
|
719
|
+
var VERSION = new Version('5.2.3');
|
|
720
720
|
|
|
721
721
|
/**
|
|
722
722
|
* @fileoverview added by tsickle
|
|
@@ -7118,10 +7118,10 @@ function devModeEqual(a, b) {
|
|
|
7118
7118
|
}
|
|
7119
7119
|
/**
|
|
7120
7120
|
* Indicates that the result of a {\@link Pipe} transformation has changed even though the
|
|
7121
|
-
* reference
|
|
7122
|
-
* has not changed.
|
|
7121
|
+
* reference has not changed.
|
|
7123
7122
|
*
|
|
7124
|
-
*
|
|
7123
|
+
* Wrapped values are unwrapped automatically during the change detection, and the unwrapped value
|
|
7124
|
+
* is stored.
|
|
7125
7125
|
*
|
|
7126
7126
|
* Example:
|
|
7127
7127
|
*
|
|
@@ -7136,50 +7136,53 @@ function devModeEqual(a, b) {
|
|
|
7136
7136
|
* \@stable
|
|
7137
7137
|
*/
|
|
7138
7138
|
var WrappedValue = /** @class */ (function () {
|
|
7139
|
-
function WrappedValue(
|
|
7140
|
-
this.wrapped =
|
|
7139
|
+
function WrappedValue(value) {
|
|
7140
|
+
this.wrapped = value;
|
|
7141
7141
|
}
|
|
7142
|
+
/** Creates a wrapped value. */
|
|
7142
7143
|
/**
|
|
7144
|
+
* Creates a wrapped value.
|
|
7143
7145
|
* @param {?} value
|
|
7144
7146
|
* @return {?}
|
|
7145
7147
|
*/
|
|
7146
7148
|
WrappedValue.wrap = /**
|
|
7149
|
+
* Creates a wrapped value.
|
|
7147
7150
|
* @param {?} value
|
|
7148
7151
|
* @return {?}
|
|
7149
7152
|
*/
|
|
7150
7153
|
function (value) { return new WrappedValue(value); };
|
|
7151
|
-
return WrappedValue;
|
|
7152
|
-
}());
|
|
7153
|
-
/**
|
|
7154
|
-
* Helper class for unwrapping WrappedValue s
|
|
7155
|
-
*/
|
|
7156
|
-
var ValueUnwrapper = /** @class */ (function () {
|
|
7157
|
-
function ValueUnwrapper() {
|
|
7158
|
-
this.hasWrappedValue = false;
|
|
7159
|
-
}
|
|
7160
7154
|
/**
|
|
7155
|
+
* Returns the underlying value of a wrapped value.
|
|
7156
|
+
* Returns the given `value` when it is not wrapped.
|
|
7157
|
+
**/
|
|
7158
|
+
/**
|
|
7159
|
+
* Returns the underlying value of a wrapped value.
|
|
7160
|
+
* Returns the given `value` when it is not wrapped.
|
|
7161
|
+
*
|
|
7161
7162
|
* @param {?} value
|
|
7162
7163
|
* @return {?}
|
|
7163
7164
|
*/
|
|
7164
|
-
|
|
7165
|
+
WrappedValue.unwrap = /**
|
|
7166
|
+
* Returns the underlying value of a wrapped value.
|
|
7167
|
+
* Returns the given `value` when it is not wrapped.
|
|
7168
|
+
*
|
|
7165
7169
|
* @param {?} value
|
|
7166
7170
|
* @return {?}
|
|
7167
7171
|
*/
|
|
7168
|
-
function (value) {
|
|
7169
|
-
|
|
7170
|
-
this.hasWrappedValue = true;
|
|
7171
|
-
return value.wrapped;
|
|
7172
|
-
}
|
|
7173
|
-
return value;
|
|
7174
|
-
};
|
|
7172
|
+
function (value) { return WrappedValue.isWrapped(value) ? value.wrapped : value; };
|
|
7173
|
+
/** Returns true if `value` is a wrapped value. */
|
|
7175
7174
|
/**
|
|
7175
|
+
* Returns true if `value` is a wrapped value.
|
|
7176
|
+
* @param {?} value
|
|
7176
7177
|
* @return {?}
|
|
7177
7178
|
*/
|
|
7178
|
-
|
|
7179
|
+
WrappedValue.isWrapped = /**
|
|
7180
|
+
* Returns true if `value` is a wrapped value.
|
|
7181
|
+
* @param {?} value
|
|
7179
7182
|
* @return {?}
|
|
7180
7183
|
*/
|
|
7181
|
-
function () {
|
|
7182
|
-
return
|
|
7184
|
+
function (value) { return value instanceof WrappedValue; };
|
|
7185
|
+
return WrappedValue;
|
|
7183
7186
|
}());
|
|
7184
7187
|
/**
|
|
7185
7188
|
* Represents a basic change from a previous to a new value.
|
|
@@ -9813,13 +9816,10 @@ function tokenKey(token) {
|
|
|
9813
9816
|
* @return {?}
|
|
9814
9817
|
*/
|
|
9815
9818
|
function unwrapValue(view, nodeIdx, bindingIdx, value) {
|
|
9816
|
-
if (value
|
|
9817
|
-
value = value
|
|
9819
|
+
if (WrappedValue.isWrapped(value)) {
|
|
9820
|
+
value = WrappedValue.unwrap(value);
|
|
9818
9821
|
var /** @type {?} */ globalBindingIdx = view.def.nodes[nodeIdx].bindingIndex + bindingIdx;
|
|
9819
|
-
var /** @type {?} */ oldValue = view.oldValues[globalBindingIdx];
|
|
9820
|
-
if (oldValue instanceof WrappedValue) {
|
|
9821
|
-
oldValue = oldValue.wrapped;
|
|
9822
|
-
}
|
|
9822
|
+
var /** @type {?} */ oldValue = WrappedValue.unwrap(view.oldValues[globalBindingIdx]);
|
|
9823
9823
|
view.oldValues[globalBindingIdx] = new WrappedValue(oldValue);
|
|
9824
9824
|
}
|
|
9825
9825
|
return value;
|
|
@@ -9899,7 +9899,8 @@ function checkAndUpdateBinding(view, def, bindingIdx, value) {
|
|
|
9899
9899
|
function checkBindingNoChanges(view, def, bindingIdx, value) {
|
|
9900
9900
|
var /** @type {?} */ oldValue = view.oldValues[def.bindingIndex + bindingIdx];
|
|
9901
9901
|
if ((view.state & 1 /* BeforeFirstCheck */) || !devModeEqual(oldValue, value)) {
|
|
9902
|
-
|
|
9902
|
+
var /** @type {?} */ bindingName = def.bindings[bindingIdx].name;
|
|
9903
|
+
throw expressionChangedAfterItHasBeenCheckedError(Services.createDebugContext(view, def.nodeIndex), bindingName + ": " + oldValue, bindingName + ": " + value, (view.state & 1 /* BeforeFirstCheck */) !== 0);
|
|
9903
9904
|
}
|
|
9904
9905
|
}
|
|
9905
9906
|
/**
|
|
@@ -12601,10 +12602,7 @@ function updateProp(view, providerData, def, bindingIdx, value, changes) {
|
|
|
12601
12602
|
providerData.instance[propName] = value;
|
|
12602
12603
|
if (def.flags & 524288 /* OnChanges */) {
|
|
12603
12604
|
changes = changes || {};
|
|
12604
|
-
var /** @type {?} */ oldValue = view.oldValues[def.bindingIndex + bindingIdx];
|
|
12605
|
-
if (oldValue instanceof WrappedValue) {
|
|
12606
|
-
oldValue = oldValue.wrapped;
|
|
12607
|
-
}
|
|
12605
|
+
var /** @type {?} */ oldValue = WrappedValue.unwrap(view.oldValues[def.bindingIndex + bindingIdx]);
|
|
12608
12606
|
var /** @type {?} */ binding_1 = def.bindings[bindingIdx];
|
|
12609
12607
|
changes[/** @type {?} */ ((binding_1.nonMinifiedName))] =
|
|
12610
12608
|
new SimpleChange(oldValue, value, (view.state & 2 /* FirstCheck */) !== 0);
|
|
@@ -16669,6 +16667,10 @@ var bindingIndex;
|
|
|
16669
16667
|
* 2nd index is: context for function
|
|
16670
16668
|
*/
|
|
16671
16669
|
var cleanup;
|
|
16670
|
+
/**
|
|
16671
|
+
* Index in the data array at which view hooks begin to be stored.
|
|
16672
|
+
*/
|
|
16673
|
+
var viewHookStartIndex;
|
|
16672
16674
|
/**
|
|
16673
16675
|
* Swap the current state with a new state.
|
|
16674
16676
|
*
|
|
@@ -16686,10 +16688,8 @@ function enterView(newViewState, host) {
|
|
|
16686
16688
|
data = newViewState.data;
|
|
16687
16689
|
bindingIndex = newViewState.bindingStartIndex || 0;
|
|
16688
16690
|
ngStaticData = newViewState.ngStaticData;
|
|
16689
|
-
|
|
16690
|
-
|
|
16691
|
-
(/** @type {?} */ (newViewState)).data = data = [];
|
|
16692
|
-
}
|
|
16691
|
+
creationMode = newViewState.creationMode;
|
|
16692
|
+
viewHookStartIndex = newViewState.viewHookStartIndex;
|
|
16693
16693
|
cleanup = newViewState.cleanup;
|
|
16694
16694
|
renderer = newViewState.renderer;
|
|
16695
16695
|
if (host != null) {
|
|
@@ -16702,8 +16702,13 @@ function enterView(newViewState, host) {
|
|
|
16702
16702
|
/**
|
|
16703
16703
|
* Used in lieu of enterView to make it clear when we are exiting a child view. This makes
|
|
16704
16704
|
* the direction of traversal (up or down the view tree) a bit clearer.
|
|
16705
|
+
* @param {?} newViewState
|
|
16706
|
+
* @return {?}
|
|
16705
16707
|
*/
|
|
16706
|
-
|
|
16708
|
+
function leaveView(newViewState) {
|
|
16709
|
+
executeViewHooks();
|
|
16710
|
+
enterView(newViewState, null);
|
|
16711
|
+
}
|
|
16707
16712
|
/**
|
|
16708
16713
|
* @param {?} viewId
|
|
16709
16714
|
* @param {?} renderer
|
|
@@ -16717,15 +16722,16 @@ function createViewState(viewId, renderer, ngStaticData) {
|
|
|
16717
16722
|
// -1 for component views
|
|
16718
16723
|
node: /** @type {?} */ ((null)),
|
|
16719
16724
|
// until we initialize it in createNode.
|
|
16720
|
-
data:
|
|
16721
|
-
// Hack use as a marker for creationMode
|
|
16725
|
+
data: [],
|
|
16722
16726
|
ngStaticData: ngStaticData,
|
|
16723
16727
|
cleanup: null,
|
|
16724
16728
|
renderer: renderer,
|
|
16725
16729
|
child: null,
|
|
16726
16730
|
tail: null,
|
|
16727
16731
|
next: null,
|
|
16728
|
-
bindingStartIndex: null
|
|
16732
|
+
bindingStartIndex: null,
|
|
16733
|
+
creationMode: true,
|
|
16734
|
+
viewHookStartIndex: null
|
|
16729
16735
|
};
|
|
16730
16736
|
return newView;
|
|
16731
16737
|
}
|
|
@@ -16793,6 +16799,14 @@ function createLNode(index, type, native, state) {
|
|
|
16793
16799
|
isParent = true;
|
|
16794
16800
|
return node;
|
|
16795
16801
|
}
|
|
16802
|
+
/**
|
|
16803
|
+
* Resets the application state.
|
|
16804
|
+
* @return {?}
|
|
16805
|
+
*/
|
|
16806
|
+
function resetApplicationState() {
|
|
16807
|
+
isParent = false;
|
|
16808
|
+
previousOrParentNode = /** @type {?} */ ((null));
|
|
16809
|
+
}
|
|
16796
16810
|
/**
|
|
16797
16811
|
*
|
|
16798
16812
|
* @template T
|
|
@@ -16832,6 +16846,7 @@ function renderComponentOrTemplate(node, viewState, componentOrContext, template
|
|
|
16832
16846
|
if (rendererFactory.end) {
|
|
16833
16847
|
rendererFactory.end();
|
|
16834
16848
|
}
|
|
16849
|
+
viewState.creationMode = false;
|
|
16835
16850
|
leaveView(oldView);
|
|
16836
16851
|
}
|
|
16837
16852
|
}
|
|
@@ -17007,6 +17022,7 @@ function locateHostElement(factory, elementOrSelector) {
|
|
|
17007
17022
|
* @return {?}
|
|
17008
17023
|
*/
|
|
17009
17024
|
function hostElement(rNode, def) {
|
|
17025
|
+
resetApplicationState();
|
|
17010
17026
|
createLNode(0, 3 /* Element */, rNode, createViewState(-1, renderer, getTemplateStatic(def.template)));
|
|
17011
17027
|
}
|
|
17012
17028
|
/**
|
|
@@ -17343,12 +17359,41 @@ function generateInitialInputs(directiveIndex, inputs, staticData) {
|
|
|
17343
17359
|
return initialInputData;
|
|
17344
17360
|
}
|
|
17345
17361
|
/**
|
|
17346
|
-
* @param {?}
|
|
17362
|
+
* @param {?} lifecycle
|
|
17347
17363
|
* @param {?=} self
|
|
17348
17364
|
* @param {?=} method
|
|
17349
17365
|
* @return {?}
|
|
17350
17366
|
*/
|
|
17351
17367
|
|
|
17368
|
+
/**
|
|
17369
|
+
* Iterates over view hook functions and calls them.
|
|
17370
|
+
* @return {?}
|
|
17371
|
+
*/
|
|
17372
|
+
function executeViewHooks() {
|
|
17373
|
+
if (viewHookStartIndex == null)
|
|
17374
|
+
return;
|
|
17375
|
+
// Instead of using splice to remove init hooks after their first run (expensive), we
|
|
17376
|
+
// shift over the AFTER_CHECKED hooks as we call them and truncate once at the end.
|
|
17377
|
+
var /** @type {?} */ checkIndex = /** @type {?} */ (viewHookStartIndex);
|
|
17378
|
+
var /** @type {?} */ writeIndex = checkIndex;
|
|
17379
|
+
while (checkIndex < data.length) {
|
|
17380
|
+
// Call lifecycle hook with its context
|
|
17381
|
+
data[checkIndex + 1].call(data[checkIndex + 2]);
|
|
17382
|
+
if (data[checkIndex] === 16 /* AFTER_VIEW_CHECKED */) {
|
|
17383
|
+
// We know if the writeIndex falls behind that there is an init that needs to
|
|
17384
|
+
// be overwritten.
|
|
17385
|
+
if (writeIndex < checkIndex) {
|
|
17386
|
+
data[writeIndex] = data[checkIndex];
|
|
17387
|
+
data[writeIndex + 1] = data[checkIndex + 1];
|
|
17388
|
+
data[writeIndex + 2] = data[checkIndex + 2];
|
|
17389
|
+
}
|
|
17390
|
+
writeIndex += 3;
|
|
17391
|
+
}
|
|
17392
|
+
checkIndex += 3;
|
|
17393
|
+
}
|
|
17394
|
+
// Truncate once at the writeIndex
|
|
17395
|
+
data.length = writeIndex;
|
|
17396
|
+
}
|
|
17352
17397
|
/**
|
|
17353
17398
|
* Creates an LContainer.
|
|
17354
17399
|
*
|
|
@@ -17506,7 +17551,7 @@ function viewEnd() {
|
|
|
17506
17551
|
var /** @type {?} */ viewIdChanged = previousView == null ? true : previousView.data.id !== viewNode.data.id;
|
|
17507
17552
|
if (viewIdChanged) {
|
|
17508
17553
|
insertView(container, viewNode, containerState.nextIndex - 1);
|
|
17509
|
-
creationMode = false;
|
|
17554
|
+
currentView.creationMode = false;
|
|
17510
17555
|
}
|
|
17511
17556
|
leaveView(/** @type {?} */ ((/** @type {?} */ ((currentView)).parent)));
|
|
17512
17557
|
ngDevMode && assertEqual(isParent, false, 'isParent');
|
|
@@ -17535,6 +17580,7 @@ var componentRefresh = function (directiveIndex, elementIndex, template) {
|
|
|
17535
17580
|
template(directive, creationMode);
|
|
17536
17581
|
}
|
|
17537
17582
|
finally {
|
|
17583
|
+
hostView.creationMode = false;
|
|
17538
17584
|
leaveView(oldView);
|
|
17539
17585
|
}
|
|
17540
17586
|
};
|
|
@@ -18669,9 +18715,9 @@ function keyframes$1(steps) {
|
|
|
18669
18715
|
* <button (click)="next()">Next</button>
|
|
18670
18716
|
* <hr>
|
|
18671
18717
|
* <div [\@bannerAnimation]="selectedIndex" class="banner-container">
|
|
18672
|
-
* <div class="banner"> {{ banner }} </div>
|
|
18718
|
+
* <div class="banner" *ngFor="let banner of banners"> {{ banner }} </div>
|
|
18673
18719
|
* </div>
|
|
18674
|
-
*
|
|
18720
|
+
* `,
|
|
18675
18721
|
* animations: [
|
|
18676
18722
|
* trigger('bannerAnimation', [
|
|
18677
18723
|
* transition(":increment", group([
|
|
@@ -18691,7 +18737,7 @@ function keyframes$1(steps) {
|
|
|
18691
18737
|
* query(':leave', [
|
|
18692
18738
|
* animate('0.5s ease-out', style({ left: '100%' }))
|
|
18693
18739
|
* ])
|
|
18694
|
-
* ]))
|
|
18740
|
+
* ]))
|
|
18695
18741
|
* ])
|
|
18696
18742
|
* ]
|
|
18697
18743
|
* })
|
|
@@ -19224,5 +19270,5 @@ function transition$$1(stateChangeExpr, steps) {
|
|
|
19224
19270
|
* Generated bundle index. Do not edit.
|
|
19225
19271
|
*/
|
|
19226
19272
|
|
|
19227
|
-
export { 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, forwardRef, resolveForwardRef, Injector, ReflectiveInjector, ResolvedReflectiveFactory, ReflectiveKey, InjectionToken, Inject, Optional, Injectable, 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,
|
|
19273
|
+
export { 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, forwardRef, resolveForwardRef, Injector, ReflectiveInjector, ResolvedReflectiveFactory, ReflectiveKey, InjectionToken, Inject, Optional, Injectable, 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, devModeEqual as ɵdevModeEqual, isListLikeIterable as ɵisListLikeIterable, ChangeDetectorStatus as ɵChangeDetectorStatus, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, Console as ɵConsole, ComponentFactory as ɵComponentFactory, CodegenComponentFactoryResolver as ɵCodegenComponentFactoryResolver, ReflectionCapabilities as ɵReflectionCapabilities, RenderDebugInfo as ɵRenderDebugInfo, _global as ɵglobal, looseIdentical as ɵlooseIdentical, stringify as ɵstringify, makeDecorator as ɵmakeDecorator, isObservable as ɵisObservable, isPromise as ɵisPromise, clearOverrides as ɵclearOverrides, overrideComponentView as ɵoverrideComponentView, overrideProvider as ɵoverrideProvider, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, defineComponent as ɵdefineComponent, detectChanges as ɵdetectChanges, renderComponent as ɵrenderComponent, containerStart as ɵC, directive as ɵD, elementStart as ɵE, text as ɵT, viewStart as ɵV, bind as ɵb, bind1 as ɵb1, containerEnd as ɵc, containerRefreshStart as ɵcR, containerRefreshEnd as ɵcr, elementEnd as ɵe, elementProperty as ɵp, elementStyle as ɵs, textBinding as ɵt, viewEnd as ɵv, registerModuleFactory as ɵregisterModuleFactory, EMPTY_ARRAY 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, AUTO_STYLE, trigger$$1 as trigger, animate$$1 as animate, group$$1 as group, sequence$$1 as sequence, style$$1 as style, state$$1 as state, keyframes$$1 as keyframes, transition$$1 as transition, animate$1 as ɵbf, group$1 as ɵbg, keyframes$1 as ɵbk, sequence$1 as ɵbh, state$1 as ɵbj, style$1 as ɵbi, transition$1 as ɵbl, trigger$1 as ɵbe, _iterableDiffersFactory as ɵn, _keyValueDiffersFactory as ɵo, _localeFactory as ɵq, _appIdRandomProviderFactory as ɵi, defaultIterableDiffers as ɵj, defaultKeyValueDiffers as ɵk, DefaultIterableDifferFactory as ɵl, DefaultKeyValueDifferFactory as ɵm, ReflectiveInjector_ as ɵf, ReflectiveDependency as ɵg, resolveReflectiveProviders as ɵh, wtfEnabled as ɵr, createScope as ɵw, detectWTF as ɵu, endTimeRange as ɵz, leave as ɵx, startTimeRange as ɵy, stringify$1 as ɵbc, makeParamDecorator as ɵa, makePropDecorator as ɵd, _def as ɵba, DebugContext as ɵbb };
|
|
19228
19274
|
//# sourceMappingURL=core.js.map
|