@angular/core 9.1.5 → 9.1.9
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 +1 -1
- package/bundles/core-testing.umd.min.js +1 -1
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +99 -334
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +126 -133
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +47 -102
- package/core.metadata.json +1 -1
- package/esm2015/index.js +2 -2
- package/esm2015/public_api.js +2 -2
- package/esm2015/src/core.js +2 -2
- package/esm2015/src/core_render3_private_export.js +2 -2
- package/esm2015/src/reflection/reflection_capabilities.js +2 -2
- package/esm2015/src/render3/assert.js +1 -8
- package/esm2015/src/render3/component.js +2 -2
- package/esm2015/src/render3/component_ref.js +5 -3
- package/esm2015/src/render3/index.js +2 -2
- package/esm2015/src/render3/instructions/all.js +2 -3
- package/esm2015/src/render3/instructions/element.js +9 -6
- package/esm2015/src/render3/instructions/element_container.js +2 -2
- package/esm2015/src/render3/instructions/lview_debug.js +14 -11
- package/esm2015/src/render3/instructions/shared.js +32 -63
- package/esm2015/src/render3/instructions/styling.js +2 -2
- package/esm2015/src/render3/instructions/template.js +100 -0
- package/esm2015/src/render3/interfaces/container.js +9 -32
- package/esm2015/src/render3/interfaces/node.js +34 -4
- package/esm2015/src/render3/interfaces/view.js +1 -1
- package/esm2015/src/render3/jit/environment.js +1 -6
- package/esm2015/src/render3/node_assert.js +1 -1
- package/esm2015/src/render3/node_manipulation.js +3 -3
- package/esm2015/src/render3/styling/static_styling.js +25 -20
- package/esm2015/src/render3/util/view_traversal_utils.js +28 -2
- package/esm2015/src/render3/util/view_utils.js +2 -17
- package/esm2015/src/render3/view_engine_compatibility.js +3 -7
- package/esm2015/src/render3/view_ref.js +1 -10
- package/esm2015/src/util/assert.js +1 -1
- package/esm2015/src/version.js +1 -1
- package/esm5/src/core_render3_private_export.js +2 -2
- package/esm5/src/reflection/reflection_capabilities.js +2 -2
- package/esm5/src/render3/assert.js +1 -4
- package/esm5/src/render3/component.js +2 -2
- package/esm5/src/render3/component_ref.js +5 -3
- package/esm5/src/render3/index.js +2 -2
- package/esm5/src/render3/instructions/all.js +2 -3
- package/esm5/src/render3/instructions/element.js +9 -6
- package/esm5/src/render3/instructions/element_container.js +2 -2
- package/esm5/src/render3/instructions/lview_debug.js +8 -12
- package/esm5/src/render3/instructions/shared.js +30 -55
- package/esm5/src/render3/instructions/styling.js +2 -2
- package/esm5/src/render3/instructions/template.js +73 -0
- package/esm5/src/render3/interfaces/container.js +10 -2
- package/esm5/src/render3/interfaces/node.js +1 -1
- package/esm5/src/render3/interfaces/view.js +1 -1
- package/esm5/src/render3/jit/environment.js +1 -6
- package/esm5/src/render3/node_assert.js +1 -1
- package/esm5/src/render3/node_manipulation.js +3 -3
- package/esm5/src/render3/styling/static_styling.js +23 -18
- package/esm5/src/render3/util/view_traversal_utils.js +20 -2
- package/esm5/src/render3/util/view_utils.js +2 -8
- package/esm5/src/render3/view_engine_compatibility.js +3 -6
- package/esm5/src/render3/view_ref.js +1 -5
- package/esm5/src/util/assert.js +1 -1
- package/esm5/src/version.js +1 -1
- package/fesm2015/core.js +151 -435
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm5/core.js +100 -330
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
- package/esm2015/src/render3/instructions/container.js +0 -227
- package/esm2015/src/render3/instructions/embedded_view.js +0 -151
- package/esm5/src/render3/instructions/container.js +0 -173
- package/esm5/src/render3/instructions/embedded_view.js +0 -127
package/fesm5/core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v9.1.
|
|
2
|
+
* @license Angular v9.1.9
|
|
3
3
|
* (c) 2010-2020 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1941,7 +1941,15 @@ var TYPE = 1;
|
|
|
1941
1941
|
* without having to remember the specific indices.
|
|
1942
1942
|
* Uglify will inline these when minifying so there shouldn't be a cost.
|
|
1943
1943
|
*/
|
|
1944
|
-
|
|
1944
|
+
/**
|
|
1945
|
+
* Flag to signify that this `LContainer` may have transplanted views which need to be change
|
|
1946
|
+
* detected. (see: `LView[DECLARATION_COMPONENT_VIEW])`.
|
|
1947
|
+
*
|
|
1948
|
+
* This flag, once set, is never unset for the `LContainer`. This means that when unset we can skip
|
|
1949
|
+
* a lot of work in `refreshEmbeddedViews`. But when set we still need to verify
|
|
1950
|
+
* that the `MOVED_VIEWS` are transplanted and on-push.
|
|
1951
|
+
*/
|
|
1952
|
+
var HAS_TRANSPLANTED_VIEWS = 2;
|
|
1945
1953
|
// PARENT, NEXT, TRANSPLANTED_VIEWS_TO_REFRESH are indices 3, 4, and 5
|
|
1946
1954
|
// As we already have these constants in LView, we don't need to re-create them.
|
|
1947
1955
|
// T_HOST is index 6
|
|
@@ -2034,9 +2042,6 @@ function assertDataNext(lView, index, arr) {
|
|
|
2034
2042
|
arr = lView;
|
|
2035
2043
|
assertEqual(arr.length, index, "index " + index + " expected to be at the end of arr (length " + arr.length + ")");
|
|
2036
2044
|
}
|
|
2037
|
-
function assertLContainerOrUndefined(value) {
|
|
2038
|
-
value && assertEqual(isLContainer(value), true, 'Expecting LContainer or undefined or null');
|
|
2039
|
-
}
|
|
2040
2045
|
function assertLContainer(value) {
|
|
2041
2046
|
assertDefined(value, 'LContainer must be defined');
|
|
2042
2047
|
assertEqual(isLContainer(value), true, 'Expecting LContainer');
|
|
@@ -2329,12 +2334,6 @@ function getConstant(consts, index) {
|
|
|
2329
2334
|
function resetPreOrderHookFlags(lView) {
|
|
2330
2335
|
lView[PREORDER_HOOK_FLAGS] = 0;
|
|
2331
2336
|
}
|
|
2332
|
-
function getLContainerActiveIndex(lContainer) {
|
|
2333
|
-
return lContainer[ACTIVE_INDEX] >> 1 /* SHIFT */;
|
|
2334
|
-
}
|
|
2335
|
-
function setLContainerActiveIndex(lContainer, index) {
|
|
2336
|
-
lContainer[ACTIVE_INDEX] = index << 1 /* SHIFT */;
|
|
2337
|
-
}
|
|
2338
2337
|
/**
|
|
2339
2338
|
* Updates the `TRANSPLANTED_VIEWS_TO_REFRESH` counter on the `LContainer` as well as the parents
|
|
2340
2339
|
* whose
|
|
@@ -6241,6 +6240,24 @@ function getRootContext(viewOrComponent) {
|
|
|
6241
6240
|
assertDefined(rootView[CONTEXT], 'RootView has no context. Perhaps it is disconnected?');
|
|
6242
6241
|
return rootView[CONTEXT];
|
|
6243
6242
|
}
|
|
6243
|
+
/**
|
|
6244
|
+
* Gets the first `LContainer` in the LView or `null` if none exists.
|
|
6245
|
+
*/
|
|
6246
|
+
function getFirstLContainer(lView) {
|
|
6247
|
+
return getNearestLContainer(lView[CHILD_HEAD]);
|
|
6248
|
+
}
|
|
6249
|
+
/**
|
|
6250
|
+
* Gets the next `LContainer` that is a sibling of the given container.
|
|
6251
|
+
*/
|
|
6252
|
+
function getNextLContainer(container) {
|
|
6253
|
+
return getNearestLContainer(container[NEXT]);
|
|
6254
|
+
}
|
|
6255
|
+
function getNearestLContainer(viewOrContainer) {
|
|
6256
|
+
while (viewOrContainer !== null && !isLContainer(viewOrContainer)) {
|
|
6257
|
+
viewOrContainer = viewOrContainer[NEXT];
|
|
6258
|
+
}
|
|
6259
|
+
return viewOrContainer;
|
|
6260
|
+
}
|
|
6244
6261
|
|
|
6245
6262
|
/**
|
|
6246
6263
|
* @license
|
|
@@ -6594,8 +6611,10 @@ var TNode = /** @class */ (function () {
|
|
|
6594
6611
|
parent, //
|
|
6595
6612
|
projection, //
|
|
6596
6613
|
styles, //
|
|
6614
|
+
stylesWithoutHost, //
|
|
6597
6615
|
residualStyles, //
|
|
6598
6616
|
classes, //
|
|
6617
|
+
classesWithoutHost, //
|
|
6599
6618
|
residualClasses, //
|
|
6600
6619
|
classBindings, //
|
|
6601
6620
|
styleBindings) {
|
|
@@ -6623,8 +6642,10 @@ var TNode = /** @class */ (function () {
|
|
|
6623
6642
|
this.parent = parent;
|
|
6624
6643
|
this.projection = projection;
|
|
6625
6644
|
this.styles = styles;
|
|
6645
|
+
this.stylesWithoutHost = stylesWithoutHost;
|
|
6626
6646
|
this.residualStyles = residualStyles;
|
|
6627
6647
|
this.classes = classes;
|
|
6648
|
+
this.classesWithoutHost = classesWithoutHost;
|
|
6628
6649
|
this.residualClasses = residualClasses;
|
|
6629
6650
|
this.classBindings = classBindings;
|
|
6630
6651
|
this.styleBindings = styleBindings;
|
|
@@ -7018,17 +7039,9 @@ var LContainerDebug = /** @class */ (function () {
|
|
|
7018
7039
|
function LContainerDebug(_raw_lContainer) {
|
|
7019
7040
|
this._raw_lContainer = _raw_lContainer;
|
|
7020
7041
|
}
|
|
7021
|
-
Object.defineProperty(LContainerDebug.prototype, "activeIndex", {
|
|
7022
|
-
get: function () {
|
|
7023
|
-
return getLContainerActiveIndex(this._raw_lContainer);
|
|
7024
|
-
},
|
|
7025
|
-
enumerable: true,
|
|
7026
|
-
configurable: true
|
|
7027
|
-
});
|
|
7028
7042
|
Object.defineProperty(LContainerDebug.prototype, "hasTransplantedViews", {
|
|
7029
7043
|
get: function () {
|
|
7030
|
-
return
|
|
7031
|
-
1 /* HAS_TRANSPLANTED_VIEWS */;
|
|
7044
|
+
return this._raw_lContainer[HAS_TRANSPLANTED_VIEWS];
|
|
7032
7045
|
},
|
|
7033
7046
|
enumerable: true,
|
|
7034
7047
|
configurable: true
|
|
@@ -7484,7 +7497,7 @@ function assignTViewNodeToLView(tView, tParentNode, index, lView) {
|
|
|
7484
7497
|
tView.node = tNode = createTNode(tView, tParentNode, //
|
|
7485
7498
|
2 /* View */, index, null, null);
|
|
7486
7499
|
}
|
|
7487
|
-
|
|
7500
|
+
lView[T_HOST] = tNode;
|
|
7488
7501
|
}
|
|
7489
7502
|
/**
|
|
7490
7503
|
* When elements are created dynamically after a view blueprint is created (e.g. through
|
|
@@ -7624,7 +7637,7 @@ function refreshView(tView, lView, templateFn, context) {
|
|
|
7624
7637
|
// insertion points. This is needed to avoid the situation where the template is defined in this
|
|
7625
7638
|
// `LView` but its declaration appears after the insertion component.
|
|
7626
7639
|
markTransplantedViewsForRefresh(lView);
|
|
7627
|
-
|
|
7640
|
+
refreshEmbeddedViews(lView);
|
|
7628
7641
|
// Content query results must be refreshed before content hooks are called.
|
|
7629
7642
|
if (tView.contentQueries !== null) {
|
|
7630
7643
|
refreshContentQueries(tView, lView);
|
|
@@ -7995,8 +8008,10 @@ function createTNode(tView, tParent, type, adjustedIndex, tagName, attrs) {
|
|
|
7995
8008
|
tParent, // parent: TElementNode|TContainerNode|null
|
|
7996
8009
|
null, // projection: number|(ITNode|RNode[])[]|null
|
|
7997
8010
|
null, // styles: string|null
|
|
8011
|
+
null, // stylesWithoutHost: string|null
|
|
7998
8012
|
undefined, // residualStyles: string|null
|
|
7999
8013
|
null, // classes: string|null
|
|
8014
|
+
null, // classesWithoutHost: string|null
|
|
8000
8015
|
undefined, // residualClasses: string|null
|
|
8001
8016
|
0, // classBindings: TStylingRange;
|
|
8002
8017
|
0) :
|
|
@@ -8024,8 +8039,10 @@ function createTNode(tView, tParent, type, adjustedIndex, tagName, attrs) {
|
|
|
8024
8039
|
parent: tParent,
|
|
8025
8040
|
projection: null,
|
|
8026
8041
|
styles: null,
|
|
8042
|
+
stylesWithoutHost: null,
|
|
8027
8043
|
residualStyles: undefined,
|
|
8028
8044
|
classes: null,
|
|
8045
|
+
classesWithoutHost: null,
|
|
8029
8046
|
residualClasses: undefined,
|
|
8030
8047
|
classBindings: 0,
|
|
8031
8048
|
styleBindings: 0,
|
|
@@ -8672,7 +8689,7 @@ function createLContainer(hostNative, currentView, native, tNode) {
|
|
|
8672
8689
|
// https://jsperf.com/array-literal-vs-new-array-really
|
|
8673
8690
|
var lContainer = new (ngDevMode ? LContainerArray : Array)(hostNative, // host native
|
|
8674
8691
|
true, // Boolean `true` in this position signifies that this is an `LContainer`
|
|
8675
|
-
|
|
8692
|
+
false, // has transplanted views
|
|
8676
8693
|
currentView, // parent
|
|
8677
8694
|
null, // next
|
|
8678
8695
|
0, // transplanted views to refresh count
|
|
@@ -8686,10 +8703,10 @@ function createLContainer(hostNative, currentView, native, tNode) {
|
|
|
8686
8703
|
return lContainer;
|
|
8687
8704
|
}
|
|
8688
8705
|
/**
|
|
8689
|
-
* Goes over
|
|
8706
|
+
* Goes over embedded views (ones created through ViewContainerRef APIs) and refreshes
|
|
8690
8707
|
* them by executing an associated template function.
|
|
8691
8708
|
*/
|
|
8692
|
-
function
|
|
8709
|
+
function refreshEmbeddedViews(lView) {
|
|
8693
8710
|
for (var lContainer = getFirstLContainer(lView); lContainer !== null; lContainer = getNextLContainer(lContainer)) {
|
|
8694
8711
|
for (var i = CONTAINER_HEADER_OFFSET; i < lContainer.length; i++) {
|
|
8695
8712
|
var embeddedLView = lContainer[i];
|
|
@@ -8701,60 +8718,31 @@ function refreshDynamicEmbeddedViews(lView) {
|
|
|
8701
8718
|
}
|
|
8702
8719
|
}
|
|
8703
8720
|
}
|
|
8704
|
-
/**
|
|
8705
|
-
* Gets the first `LContainer` in the LView or `null` if none exists.
|
|
8706
|
-
*/
|
|
8707
|
-
function getFirstLContainer(lView) {
|
|
8708
|
-
var viewOrContainer = lView[CHILD_HEAD];
|
|
8709
|
-
while (viewOrContainer !== null &&
|
|
8710
|
-
!(isLContainer(viewOrContainer) &&
|
|
8711
|
-
viewOrContainer[ACTIVE_INDEX] >> 1 /* SHIFT */ ===
|
|
8712
|
-
-1 /* DYNAMIC_EMBEDDED_VIEWS_ONLY */)) {
|
|
8713
|
-
viewOrContainer = viewOrContainer[NEXT];
|
|
8714
|
-
}
|
|
8715
|
-
return viewOrContainer;
|
|
8716
|
-
}
|
|
8717
|
-
/**
|
|
8718
|
-
* Gets the next `LContainer` that is a sibling of the given container.
|
|
8719
|
-
*/
|
|
8720
|
-
function getNextLContainer(container) {
|
|
8721
|
-
var viewOrContainer = container[NEXT];
|
|
8722
|
-
while (viewOrContainer !== null &&
|
|
8723
|
-
!(isLContainer(viewOrContainer) &&
|
|
8724
|
-
viewOrContainer[ACTIVE_INDEX] >> 1 /* SHIFT */ ===
|
|
8725
|
-
-1 /* DYNAMIC_EMBEDDED_VIEWS_ONLY */)) {
|
|
8726
|
-
viewOrContainer = viewOrContainer[NEXT];
|
|
8727
|
-
}
|
|
8728
|
-
return viewOrContainer;
|
|
8729
|
-
}
|
|
8730
8721
|
/**
|
|
8731
8722
|
* Mark transplanted views as needing to be refreshed at their insertion points.
|
|
8732
8723
|
*
|
|
8733
|
-
* See: `ActiveIndexFlag.HAS_TRANSPLANTED_VIEWS` and `LView[DECLARATION_COMPONENT_VIEW]` for
|
|
8734
|
-
* explanation of transplanted views.
|
|
8735
|
-
*
|
|
8736
8724
|
* @param lView The `LView` that may have transplanted views.
|
|
8737
8725
|
*/
|
|
8738
8726
|
function markTransplantedViewsForRefresh(lView) {
|
|
8739
8727
|
for (var lContainer = getFirstLContainer(lView); lContainer !== null; lContainer = getNextLContainer(lContainer)) {
|
|
8740
|
-
if (
|
|
8741
|
-
|
|
8742
|
-
|
|
8743
|
-
|
|
8744
|
-
|
|
8745
|
-
|
|
8746
|
-
|
|
8747
|
-
|
|
8748
|
-
|
|
8749
|
-
|
|
8750
|
-
|
|
8751
|
-
|
|
8752
|
-
// Note, it is possible that the `movedViews` is tracking views that are transplanted *and*
|
|
8753
|
-
// those that aren't (declaration component === insertion component). In the latter case,
|
|
8754
|
-
// it's fine to add the flag, as we will clear it immediately in
|
|
8755
|
-
// `refreshDynamicEmbeddedViews` for the view currently being refreshed.
|
|
8756
|
-
movedLView[FLAGS] |= 1024 /* RefreshTransplantedView */;
|
|
8728
|
+
if (!lContainer[HAS_TRANSPLANTED_VIEWS])
|
|
8729
|
+
continue;
|
|
8730
|
+
var movedViews = lContainer[MOVED_VIEWS];
|
|
8731
|
+
ngDevMode && assertDefined(movedViews, 'Transplanted View flags set but missing MOVED_VIEWS');
|
|
8732
|
+
for (var i = 0; i < movedViews.length; i++) {
|
|
8733
|
+
var movedLView = movedViews[i];
|
|
8734
|
+
var insertionLContainer = movedLView[PARENT];
|
|
8735
|
+
ngDevMode && assertLContainer(insertionLContainer);
|
|
8736
|
+
// We don't want to increment the counter if the moved LView was already marked for
|
|
8737
|
+
// refresh.
|
|
8738
|
+
if ((movedLView[FLAGS] & 1024 /* RefreshTransplantedView */) === 0) {
|
|
8739
|
+
updateTransplantedViewCount(insertionLContainer, 1);
|
|
8757
8740
|
}
|
|
8741
|
+
// Note, it is possible that the `movedViews` is tracking views that are transplanted *and*
|
|
8742
|
+
// those that aren't (declaration component === insertion component). In the latter case,
|
|
8743
|
+
// it's fine to add the flag, as we will clear it immediately in
|
|
8744
|
+
// `refreshEmbeddedViews` for the view currently being refreshed.
|
|
8745
|
+
movedLView[FLAGS] |= 1024 /* RefreshTransplantedView */;
|
|
8758
8746
|
}
|
|
8759
8747
|
}
|
|
8760
8748
|
}
|
|
@@ -9325,7 +9313,7 @@ function trackMovedView(declarationContainer, lView) {
|
|
|
9325
9313
|
// At this point the declaration-component is not same as insertion-component; this means that
|
|
9326
9314
|
// this is a transplanted view. Mark the declared lView as having transplanted views so that
|
|
9327
9315
|
// those views can participate in CD.
|
|
9328
|
-
declarationContainer[
|
|
9316
|
+
declarationContainer[HAS_TRANSPLANTED_VIEWS] = true;
|
|
9329
9317
|
}
|
|
9330
9318
|
if (movedViews === null) {
|
|
9331
9319
|
declarationContainer[MOVED_VIEWS] = [lView];
|
|
@@ -10114,10 +10102,6 @@ var ViewRef = /** @class */ (function () {
|
|
|
10114
10102
|
this._cdRefInjectingView = _cdRefInjectingView;
|
|
10115
10103
|
this._appRef = null;
|
|
10116
10104
|
this._viewContainerRef = null;
|
|
10117
|
-
/**
|
|
10118
|
-
* @internal
|
|
10119
|
-
*/
|
|
10120
|
-
this._tViewNode = null;
|
|
10121
10105
|
}
|
|
10122
10106
|
Object.defineProperty(ViewRef.prototype, "rootNodes", {
|
|
10123
10107
|
get: function () {
|
|
@@ -10510,9 +10494,7 @@ function createTemplateRef(TemplateRefToken, ElementRefToken, hostTNode, hostVie
|
|
|
10510
10494
|
embeddedLView[QUERIES] = declarationViewLQueries.createEmbeddedView(embeddedTView);
|
|
10511
10495
|
}
|
|
10512
10496
|
renderView(embeddedTView, embeddedLView, context);
|
|
10513
|
-
|
|
10514
|
-
viewRef._tViewNode = embeddedLView[T_HOST];
|
|
10515
|
-
return viewRef;
|
|
10497
|
+
return new ViewRef(embeddedLView);
|
|
10516
10498
|
};
|
|
10517
10499
|
return TemplateRef;
|
|
10518
10500
|
}(TemplateRefToken));
|
|
@@ -10703,7 +10685,6 @@ function createContainerRef(ViewContainerRefToken, ElementRefToken, hostTNode, h
|
|
|
10703
10685
|
if (isLContainer(slotValue)) {
|
|
10704
10686
|
// If the host is a container, we don't need to create a new LContainer
|
|
10705
10687
|
lContainer = slotValue;
|
|
10706
|
-
setLContainerActiveIndex(lContainer, -1 /* DYNAMIC_EMBEDDED_VIEWS_ONLY */);
|
|
10707
10688
|
}
|
|
10708
10689
|
else {
|
|
10709
10690
|
var commentNode = void 0;
|
|
@@ -10894,7 +10875,7 @@ function isType(v) {
|
|
|
10894
10875
|
var DELEGATE_CTOR = /^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*arguments\)/;
|
|
10895
10876
|
var INHERITED_CLASS = /^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/;
|
|
10896
10877
|
var INHERITED_CLASS_WITH_CTOR = /^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/;
|
|
10897
|
-
var INHERITED_CLASS_WITH_DELEGATE_CTOR = /^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(\)\s*{\s
|
|
10878
|
+
var INHERITED_CLASS_WITH_DELEGATE_CTOR = /^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(\)\s*{\s*super\(\.\.\.arguments\)/;
|
|
10898
10879
|
/**
|
|
10899
10880
|
* Determine whether a stringified type is a class which delegates its constructor
|
|
10900
10881
|
* to its parent.
|
|
@@ -13355,29 +13336,34 @@ function componentDefResolved(type) {
|
|
|
13355
13336
|
*
|
|
13356
13337
|
* @param tNode The `TNode` into which the styling information should be loaded.
|
|
13357
13338
|
* @param attrs `TAttributes` containing the styling information.
|
|
13339
|
+
* @param writeToHost Where should the resulting static styles be written?
|
|
13340
|
+
* - `false` Write to `TNode.stylesWithoutHost` / `TNode.classesWithoutHost`
|
|
13341
|
+
* - `true` Write to `TNode.styles` / `TNode.classes`
|
|
13358
13342
|
*/
|
|
13359
|
-
function computeStaticStyling(tNode, attrs) {
|
|
13343
|
+
function computeStaticStyling(tNode, attrs, writeToHost) {
|
|
13360
13344
|
ngDevMode &&
|
|
13361
13345
|
assertFirstCreatePass(getTView(), 'Expecting to be called in first template pass only');
|
|
13362
|
-
var styles = tNode.styles;
|
|
13363
|
-
var classes = tNode.classes;
|
|
13346
|
+
var styles = writeToHost ? tNode.styles : null;
|
|
13347
|
+
var classes = writeToHost ? tNode.classes : null;
|
|
13364
13348
|
var mode = 0;
|
|
13365
|
-
|
|
13366
|
-
var
|
|
13367
|
-
|
|
13368
|
-
|
|
13369
|
-
|
|
13370
|
-
|
|
13371
|
-
|
|
13372
|
-
|
|
13373
|
-
|
|
13374
|
-
|
|
13375
|
-
|
|
13376
|
-
|
|
13349
|
+
if (attrs !== null) {
|
|
13350
|
+
for (var i = 0; i < attrs.length; i++) {
|
|
13351
|
+
var value = attrs[i];
|
|
13352
|
+
if (typeof value === 'number') {
|
|
13353
|
+
mode = value;
|
|
13354
|
+
}
|
|
13355
|
+
else if (mode == 1 /* Classes */) {
|
|
13356
|
+
classes = concatStringsWithSpace(classes, value);
|
|
13357
|
+
}
|
|
13358
|
+
else if (mode == 2 /* Styles */) {
|
|
13359
|
+
var style = value;
|
|
13360
|
+
var styleValue = attrs[++i];
|
|
13361
|
+
styles = concatStringsWithSpace(styles, style + ': ' + styleValue + ';');
|
|
13362
|
+
}
|
|
13377
13363
|
}
|
|
13378
13364
|
}
|
|
13379
|
-
styles
|
|
13380
|
-
classes
|
|
13365
|
+
writeToHost ? tNode.styles = styles : tNode.stylesWithoutHost = styles;
|
|
13366
|
+
writeToHost ? tNode.classes = classes : tNode.classesWithoutHost = classes;
|
|
13381
13367
|
}
|
|
13382
13368
|
|
|
13383
13369
|
/**
|
|
@@ -14275,26 +14261,6 @@ function tick(component) {
|
|
|
14275
14261
|
* Use of this source code is governed by an MIT-style license that can be
|
|
14276
14262
|
* found in the LICENSE file at https://angular.io/license
|
|
14277
14263
|
*/
|
|
14278
|
-
/**
|
|
14279
|
-
* Creates an LContainer for inline views, e.g.
|
|
14280
|
-
*
|
|
14281
|
-
* % if (showing) {
|
|
14282
|
-
* <div></div>
|
|
14283
|
-
* % }
|
|
14284
|
-
*
|
|
14285
|
-
* @param index The index of the container in the data array
|
|
14286
|
-
*
|
|
14287
|
-
* @codeGenApi
|
|
14288
|
-
*/
|
|
14289
|
-
function ɵɵcontainer(index) {
|
|
14290
|
-
var lView = getLView();
|
|
14291
|
-
var tView = getTView();
|
|
14292
|
-
var tNode = containerInternal(tView, lView, index, null, null);
|
|
14293
|
-
if (tView.firstCreatePass) {
|
|
14294
|
-
tNode.tViews = [];
|
|
14295
|
-
}
|
|
14296
|
-
setIsNotParent();
|
|
14297
|
-
}
|
|
14298
14264
|
function templateFirstCreatePass(index, tView, lView, templateFn, decls, vars, tagName, attrsIndex, localRefsIndex) {
|
|
14299
14265
|
ngDevMode && assertFirstCreatePass(tView);
|
|
14300
14266
|
ngDevMode && ngDevMode.firstCreatePass++;
|
|
@@ -14351,83 +14317,6 @@ function ɵɵtemplate(index, templateFn, decls, vars, tagName, attrsIndex, local
|
|
|
14351
14317
|
saveResolvedLocalsInData(lView, tNode, localRefExtractor);
|
|
14352
14318
|
}
|
|
14353
14319
|
}
|
|
14354
|
-
/**
|
|
14355
|
-
* Sets a container up to receive views.
|
|
14356
|
-
*
|
|
14357
|
-
* @param index The index of the container in the data array
|
|
14358
|
-
*
|
|
14359
|
-
* @codeGenApi
|
|
14360
|
-
*/
|
|
14361
|
-
function ɵɵcontainerRefreshStart(index) {
|
|
14362
|
-
var lView = getLView();
|
|
14363
|
-
var tView = getTView();
|
|
14364
|
-
var previousOrParentTNode = load(tView.data, index);
|
|
14365
|
-
ngDevMode && assertNodeType(previousOrParentTNode, 0 /* Container */);
|
|
14366
|
-
setPreviousOrParentTNode(previousOrParentTNode, true);
|
|
14367
|
-
lView[index + HEADER_OFFSET][ACTIVE_INDEX] = 0;
|
|
14368
|
-
// We need to execute init hooks here so ngOnInit hooks are called in top level views
|
|
14369
|
-
// before they are called in embedded views (for backwards compatibility).
|
|
14370
|
-
if (!getCheckNoChangesMode()) {
|
|
14371
|
-
var hooksInitPhaseCompleted = (lView[FLAGS] & 3 /* InitPhaseStateMask */) === 3 /* InitPhaseCompleted */;
|
|
14372
|
-
if (hooksInitPhaseCompleted) {
|
|
14373
|
-
var preOrderCheckHooks = tView.preOrderCheckHooks;
|
|
14374
|
-
if (preOrderCheckHooks !== null) {
|
|
14375
|
-
executeCheckHooks(lView, preOrderCheckHooks, null);
|
|
14376
|
-
}
|
|
14377
|
-
}
|
|
14378
|
-
else {
|
|
14379
|
-
var preOrderHooks = tView.preOrderHooks;
|
|
14380
|
-
if (preOrderHooks !== null) {
|
|
14381
|
-
executeInitAndCheckHooks(lView, preOrderHooks, 0 /* OnInitHooksToBeRun */, null);
|
|
14382
|
-
}
|
|
14383
|
-
incrementInitPhaseFlags(lView, 0 /* OnInitHooksToBeRun */);
|
|
14384
|
-
}
|
|
14385
|
-
}
|
|
14386
|
-
}
|
|
14387
|
-
/**
|
|
14388
|
-
* Marks the end of the LContainer.
|
|
14389
|
-
*
|
|
14390
|
-
* Marking the end of LContainer is the time when to child views get inserted or removed.
|
|
14391
|
-
*
|
|
14392
|
-
* @codeGenApi
|
|
14393
|
-
*/
|
|
14394
|
-
function ɵɵcontainerRefreshEnd() {
|
|
14395
|
-
var previousOrParentTNode = getPreviousOrParentTNode();
|
|
14396
|
-
if (getIsParent()) {
|
|
14397
|
-
setIsNotParent();
|
|
14398
|
-
}
|
|
14399
|
-
else {
|
|
14400
|
-
ngDevMode && assertNodeType(previousOrParentTNode, 2 /* View */);
|
|
14401
|
-
ngDevMode && assertHasParent(previousOrParentTNode);
|
|
14402
|
-
previousOrParentTNode = previousOrParentTNode.parent;
|
|
14403
|
-
setPreviousOrParentTNode(previousOrParentTNode, false);
|
|
14404
|
-
}
|
|
14405
|
-
ngDevMode && assertNodeType(previousOrParentTNode, 0 /* Container */);
|
|
14406
|
-
var lContainer = getLView()[previousOrParentTNode.index];
|
|
14407
|
-
var nextIndex = getLContainerActiveIndex(lContainer);
|
|
14408
|
-
// remove extra views at the end of the container
|
|
14409
|
-
while (nextIndex < lContainer.length - CONTAINER_HEADER_OFFSET) {
|
|
14410
|
-
removeView(lContainer, nextIndex);
|
|
14411
|
-
}
|
|
14412
|
-
}
|
|
14413
|
-
function containerInternal(tView, lView, nodeIndex, tagName, attrs) {
|
|
14414
|
-
ngDevMode &&
|
|
14415
|
-
assertEqual(getBindingIndex(), tView.bindingStartIndex, 'container nodes should be created before any bindings');
|
|
14416
|
-
var adjustedIndex = nodeIndex + HEADER_OFFSET;
|
|
14417
|
-
ngDevMode && assertDataInRange(lView, nodeIndex + HEADER_OFFSET);
|
|
14418
|
-
ngDevMode && ngDevMode.rendererCreateComment++;
|
|
14419
|
-
var comment = lView[adjustedIndex] =
|
|
14420
|
-
lView[RENDERER].createComment(ngDevMode ? 'container' : '');
|
|
14421
|
-
var tNode = getOrCreateTNode(tView, lView[T_HOST], nodeIndex, 0 /* Container */, tagName, attrs);
|
|
14422
|
-
var lContainer = lView[adjustedIndex] = createLContainer(comment, lView, comment, tNode);
|
|
14423
|
-
appendChild(tView, lView, comment, tNode);
|
|
14424
|
-
attachPatchData(comment, lView);
|
|
14425
|
-
// Containers are added to the current view tree instead of their embedded views
|
|
14426
|
-
// because views can be removed and re-inserted.
|
|
14427
|
-
addToViewTree(lView, lContainer);
|
|
14428
|
-
ngDevMode && assertNodeType(getPreviousOrParentTNode(), 0 /* Container */);
|
|
14429
|
-
return tNode;
|
|
14430
|
-
}
|
|
14431
14320
|
|
|
14432
14321
|
/**
|
|
14433
14322
|
* @license
|
|
@@ -14566,8 +14455,11 @@ function elementStartFirstCreatePass(index, tView, lView, native, name, attrsInd
|
|
|
14566
14455
|
var tNode = getOrCreateTNode(tView, lView[T_HOST], index, 3 /* Element */, name, attrs);
|
|
14567
14456
|
var hasDirectives = resolveDirectives(tView, lView, tNode, getConstant(tViewConsts, localRefsIndex));
|
|
14568
14457
|
ngDevMode && warnAboutUnknownElement(tView, lView, native, tNode, hasDirectives);
|
|
14458
|
+
if (tNode.attrs !== null) {
|
|
14459
|
+
computeStaticStyling(tNode, tNode.attrs, false);
|
|
14460
|
+
}
|
|
14569
14461
|
if (tNode.mergedAttrs !== null) {
|
|
14570
|
-
computeStaticStyling(tNode, tNode.mergedAttrs);
|
|
14462
|
+
computeStaticStyling(tNode, tNode.mergedAttrs, true);
|
|
14571
14463
|
}
|
|
14572
14464
|
if (tView.queries !== null) {
|
|
14573
14465
|
tView.queries.elementStart(tView, tNode);
|
|
@@ -14656,11 +14548,11 @@ function ɵɵelementEnd() {
|
|
|
14656
14548
|
tView.queries.elementEnd(previousOrParentTNode);
|
|
14657
14549
|
}
|
|
14658
14550
|
}
|
|
14659
|
-
if (tNode.
|
|
14660
|
-
setDirectiveInputsWhichShadowsStyling(tView, tNode, getLView(), tNode.
|
|
14551
|
+
if (tNode.classesWithoutHost != null && hasClassInput(tNode)) {
|
|
14552
|
+
setDirectiveInputsWhichShadowsStyling(tView, tNode, getLView(), tNode.classesWithoutHost, true);
|
|
14661
14553
|
}
|
|
14662
|
-
if (tNode.
|
|
14663
|
-
setDirectiveInputsWhichShadowsStyling(tView, tNode, getLView(), tNode.
|
|
14554
|
+
if (tNode.stylesWithoutHost != null && hasStyleInput(tNode)) {
|
|
14555
|
+
setDirectiveInputsWhichShadowsStyling(tView, tNode, getLView(), tNode.stylesWithoutHost, false);
|
|
14664
14556
|
}
|
|
14665
14557
|
}
|
|
14666
14558
|
/**
|
|
@@ -14728,7 +14620,7 @@ function elementContainerStartFirstCreatePass(index, tView, lView, attrsIndex, l
|
|
|
14728
14620
|
// While ng-container doesn't necessarily support styling, we use the style context to identify
|
|
14729
14621
|
// and execute directives on the ng-container.
|
|
14730
14622
|
if (attrs !== null) {
|
|
14731
|
-
computeStaticStyling(tNode, attrs);
|
|
14623
|
+
computeStaticStyling(tNode, attrs, true);
|
|
14732
14624
|
}
|
|
14733
14625
|
var localRefs = getConstant(tViewConsts, localRefsIndex);
|
|
14734
14626
|
resolveDirectives(tView, lView, tNode, localRefs);
|
|
@@ -14814,124 +14706,6 @@ function ɵɵelementContainer(index, attrsIndex, localRefsIndex) {
|
|
|
14814
14706
|
ɵɵelementContainerEnd();
|
|
14815
14707
|
}
|
|
14816
14708
|
|
|
14817
|
-
/**
|
|
14818
|
-
* @license
|
|
14819
|
-
* Copyright Google Inc. All Rights Reserved.
|
|
14820
|
-
*
|
|
14821
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
14822
|
-
* found in the LICENSE file at https://angular.io/license
|
|
14823
|
-
*/
|
|
14824
|
-
/**
|
|
14825
|
-
* Marks the start of an embedded view.
|
|
14826
|
-
*
|
|
14827
|
-
* @param viewBlockId The ID of this view
|
|
14828
|
-
* @return boolean Whether or not this view is in creation mode
|
|
14829
|
-
*
|
|
14830
|
-
* @codeGenApi
|
|
14831
|
-
*/
|
|
14832
|
-
function ɵɵembeddedViewStart(viewBlockId, decls, vars) {
|
|
14833
|
-
var lView = getLView();
|
|
14834
|
-
var previousOrParentTNode = getPreviousOrParentTNode();
|
|
14835
|
-
// The previous node can be a view node if we are processing an inline for loop
|
|
14836
|
-
var containerTNode = previousOrParentTNode.type === 2 /* View */ ?
|
|
14837
|
-
previousOrParentTNode.parent :
|
|
14838
|
-
previousOrParentTNode;
|
|
14839
|
-
var lContainer = lView[containerTNode.index];
|
|
14840
|
-
ngDevMode && assertNodeType(containerTNode, 0 /* Container */);
|
|
14841
|
-
var viewToRender = scanForView(lContainer, getLContainerActiveIndex(lContainer), viewBlockId);
|
|
14842
|
-
if (viewToRender) {
|
|
14843
|
-
setIsParent();
|
|
14844
|
-
enterView(viewToRender, viewToRender[TVIEW].node);
|
|
14845
|
-
}
|
|
14846
|
-
else {
|
|
14847
|
-
// When we create a new LView, we always reset the state of the instructions.
|
|
14848
|
-
viewToRender = createLView(lView, getOrCreateEmbeddedTView(viewBlockId, decls, vars, containerTNode), null, 16 /* CheckAlways */, null, null);
|
|
14849
|
-
var tParentNode = getIsParent() ? previousOrParentTNode :
|
|
14850
|
-
previousOrParentTNode && previousOrParentTNode.parent;
|
|
14851
|
-
assignTViewNodeToLView(viewToRender[TVIEW], tParentNode, viewBlockId, viewToRender);
|
|
14852
|
-
enterView(viewToRender, viewToRender[TVIEW].node);
|
|
14853
|
-
}
|
|
14854
|
-
if (lContainer) {
|
|
14855
|
-
if (isCreationMode(viewToRender)) {
|
|
14856
|
-
// it is a new view, insert it into collection of views for a given container
|
|
14857
|
-
insertView(viewToRender[TVIEW], viewToRender, lContainer, getLContainerActiveIndex(lContainer));
|
|
14858
|
-
}
|
|
14859
|
-
lContainer[ACTIVE_INDEX] += 2 /* INCREMENT */;
|
|
14860
|
-
}
|
|
14861
|
-
return isCreationMode(viewToRender) ? 1 /* Create */ | 2 /* Update */ :
|
|
14862
|
-
2 /* Update */;
|
|
14863
|
-
}
|
|
14864
|
-
/**
|
|
14865
|
-
* Initialize the TView (e.g. static data) for the active embedded view.
|
|
14866
|
-
*
|
|
14867
|
-
* Each embedded view block must create or retrieve its own TView. Otherwise, the embedded view's
|
|
14868
|
-
* static data for a particular node would overwrite the static data for a node in the view above
|
|
14869
|
-
* it with the same index (since it's in the same template).
|
|
14870
|
-
*
|
|
14871
|
-
* @param viewIndex The index of the TView in TNode.tViews
|
|
14872
|
-
* @param decls The number of nodes, local refs, and pipes in this template
|
|
14873
|
-
* @param vars The number of bindings and pure function bindings in this template
|
|
14874
|
-
* @param container The parent container in which to look for the view's static data
|
|
14875
|
-
* @returns TView
|
|
14876
|
-
*/
|
|
14877
|
-
function getOrCreateEmbeddedTView(viewIndex, decls, vars, parent) {
|
|
14878
|
-
var tView = getLView()[TVIEW];
|
|
14879
|
-
ngDevMode && assertNodeType(parent, 0 /* Container */);
|
|
14880
|
-
var containerTViews = parent.tViews;
|
|
14881
|
-
ngDevMode && assertDefined(containerTViews, 'TView expected');
|
|
14882
|
-
ngDevMode && assertEqual(Array.isArray(containerTViews), true, 'TViews should be in an array');
|
|
14883
|
-
if (viewIndex >= containerTViews.length || containerTViews[viewIndex] == null) {
|
|
14884
|
-
containerTViews[viewIndex] = createTView(2 /* Embedded */, viewIndex, null, decls, vars, tView.directiveRegistry, tView.pipeRegistry, null, null, tView.consts);
|
|
14885
|
-
}
|
|
14886
|
-
return containerTViews[viewIndex];
|
|
14887
|
-
}
|
|
14888
|
-
/**
|
|
14889
|
-
* Looks for a view with a given view block id inside a provided LContainer.
|
|
14890
|
-
* Removes views that need to be deleted in the process.
|
|
14891
|
-
*
|
|
14892
|
-
* @param lContainer to search for views
|
|
14893
|
-
* @param startIdx starting index in the views array to search from
|
|
14894
|
-
* @param viewBlockId exact view block id to look for
|
|
14895
|
-
*/
|
|
14896
|
-
function scanForView(lContainer, startIdx, viewBlockId) {
|
|
14897
|
-
for (var i = startIdx + CONTAINER_HEADER_OFFSET; i < lContainer.length; i++) {
|
|
14898
|
-
var viewAtPositionId = lContainer[i][TVIEW].id;
|
|
14899
|
-
if (viewAtPositionId === viewBlockId) {
|
|
14900
|
-
return lContainer[i];
|
|
14901
|
-
}
|
|
14902
|
-
else if (viewAtPositionId < viewBlockId) {
|
|
14903
|
-
// found a view that should not be at this position - remove
|
|
14904
|
-
removeView(lContainer, i - CONTAINER_HEADER_OFFSET);
|
|
14905
|
-
}
|
|
14906
|
-
else {
|
|
14907
|
-
// found a view with id greater than the one we are searching for
|
|
14908
|
-
// which means that required view doesn't exist and can't be found at
|
|
14909
|
-
// later positions in the views array - stop the searchdef.cont here
|
|
14910
|
-
break;
|
|
14911
|
-
}
|
|
14912
|
-
}
|
|
14913
|
-
return null;
|
|
14914
|
-
}
|
|
14915
|
-
/**
|
|
14916
|
-
* Marks the end of an embedded view.
|
|
14917
|
-
*
|
|
14918
|
-
* @codeGenApi
|
|
14919
|
-
*/
|
|
14920
|
-
function ɵɵembeddedViewEnd() {
|
|
14921
|
-
var lView = getLView();
|
|
14922
|
-
var tView = getTView();
|
|
14923
|
-
var viewHost = lView[T_HOST];
|
|
14924
|
-
var context = lView[CONTEXT];
|
|
14925
|
-
if (isCreationMode(lView)) {
|
|
14926
|
-
renderView(tView, lView, context); // creation mode pass
|
|
14927
|
-
}
|
|
14928
|
-
refreshView(tView, lView, tView.template, context); // update mode pass
|
|
14929
|
-
var lContainer = lView[PARENT];
|
|
14930
|
-
ngDevMode && assertLContainerOrUndefined(lContainer);
|
|
14931
|
-
leaveView();
|
|
14932
|
-
setPreviousOrParentTNode(viewHost, false);
|
|
14933
|
-
}
|
|
14934
|
-
|
|
14935
14709
|
/**
|
|
14936
14710
|
* Returns the current OpaqueViewState instance.
|
|
14937
14711
|
*
|
|
@@ -16729,7 +16503,7 @@ function checkStylingMap(keyValueArraySet, stringParser, value, isClassBased) {
|
|
|
16729
16503
|
// the binding has removed it. This would confuse `[ngStyle]`/`[ngClass]` to do the wrong
|
|
16730
16504
|
// thing as it would think that the static portion was removed. For this reason we
|
|
16731
16505
|
// concatenate it so that `[ngStyle]`/`[ngClass]` can continue to work on changed.
|
|
16732
|
-
var staticPrefix = isClassBased ? tNode.
|
|
16506
|
+
var staticPrefix = isClassBased ? tNode.classesWithoutHost : tNode.stylesWithoutHost;
|
|
16733
16507
|
ngDevMode && isClassBased === false && staticPrefix !== null &&
|
|
16734
16508
|
assertEqual(staticPrefix.endsWith(';'), true, 'Expecting static portion to end with \';\'');
|
|
16735
16509
|
if (staticPrefix !== null) {
|
|
@@ -19234,7 +19008,7 @@ function createRootComponentView(rNode, def, rootView, rendererFactory, hostRend
|
|
|
19234
19008
|
var tNode = getOrCreateTNode(tView, null, 0, 3 /* Element */, null, null);
|
|
19235
19009
|
var mergedAttrs = tNode.mergedAttrs = def.hostAttrs;
|
|
19236
19010
|
if (mergedAttrs !== null) {
|
|
19237
|
-
computeStaticStyling(tNode, mergedAttrs);
|
|
19011
|
+
computeStaticStyling(tNode, mergedAttrs, true);
|
|
19238
19012
|
if (rNode !== null) {
|
|
19239
19013
|
setUpAttributes(hostRenderer, rNode, mergedAttrs);
|
|
19240
19014
|
if (tNode.classes !== null) {
|
|
@@ -20275,7 +20049,7 @@ var Version = /** @class */ (function () {
|
|
|
20275
20049
|
/**
|
|
20276
20050
|
* @publicApi
|
|
20277
20051
|
*/
|
|
20278
|
-
var VERSION = new Version('9.1.
|
|
20052
|
+
var VERSION = new Version('9.1.9');
|
|
20279
20053
|
|
|
20280
20054
|
/**
|
|
20281
20055
|
* @license
|
|
@@ -23401,7 +23175,8 @@ var ComponentFactory$1 = /** @class */ (function (_super) {
|
|
|
23401
23175
|
if (!rootSelectorOrNode || isIsolated) {
|
|
23402
23176
|
// The host element of the internal or isolated root view is attached to the component's host
|
|
23403
23177
|
// view node.
|
|
23404
|
-
|
|
23178
|
+
ngDevMode && assertNodeOfPossibleTypes(rootTView.node, 2 /* View */);
|
|
23179
|
+
rootTView.node.child = tElementNode;
|
|
23405
23180
|
}
|
|
23406
23181
|
return componentRef;
|
|
23407
23182
|
};
|
|
@@ -23436,7 +23211,7 @@ var ComponentRef$1 = /** @class */ (function (_super) {
|
|
|
23436
23211
|
_this.destroyCbs = [];
|
|
23437
23212
|
_this.instance = instance;
|
|
23438
23213
|
_this.hostView = _this.changeDetectorRef = new RootViewRef(_rootLView);
|
|
23439
|
-
|
|
23214
|
+
assignTViewNodeToLView(_rootLView[TVIEW], null, -1, _rootLView);
|
|
23440
23215
|
_this.componentType = componentType;
|
|
23441
23216
|
return _this;
|
|
23442
23217
|
}
|
|
@@ -26511,10 +26286,7 @@ var ɵ0$d = function () { return ({
|
|
|
26511
26286
|
'ɵɵProvidersFeature': ɵɵProvidersFeature,
|
|
26512
26287
|
'ɵɵCopyDefinitionFeature': ɵɵCopyDefinitionFeature,
|
|
26513
26288
|
'ɵɵInheritDefinitionFeature': ɵɵInheritDefinitionFeature,
|
|
26514
|
-
'ɵɵcontainer': ɵɵcontainer,
|
|
26515
26289
|
'ɵɵnextContext': ɵɵnextContext,
|
|
26516
|
-
'ɵɵcontainerRefreshStart': ɵɵcontainerRefreshStart,
|
|
26517
|
-
'ɵɵcontainerRefreshEnd': ɵɵcontainerRefreshEnd,
|
|
26518
26290
|
'ɵɵnamespaceHTML': ɵɵnamespaceHTML,
|
|
26519
26291
|
'ɵɵnamespaceMathML': ɵɵnamespaceMathML,
|
|
26520
26292
|
'ɵɵnamespaceSVG': ɵɵnamespaceSVG,
|
|
@@ -26614,8 +26386,6 @@ var ɵ0$d = function () { return ({
|
|
|
26614
26386
|
'ɵɵtextInterpolate7': ɵɵtextInterpolate7,
|
|
26615
26387
|
'ɵɵtextInterpolate8': ɵɵtextInterpolate8,
|
|
26616
26388
|
'ɵɵtextInterpolateV': ɵɵtextInterpolateV,
|
|
26617
|
-
'ɵɵembeddedViewStart': ɵɵembeddedViewStart,
|
|
26618
|
-
'ɵɵembeddedViewEnd': ɵɵembeddedViewEnd,
|
|
26619
26389
|
'ɵɵi18n': ɵɵi18n,
|
|
26620
26390
|
'ɵɵi18nAttributes': ɵɵi18nAttributes,
|
|
26621
26391
|
'ɵɵi18nExp': ɵɵi18nExp,
|
|
@@ -32889,5 +32659,5 @@ if (ngDevMode) {
|
|
|
32889
32659
|
* Generated bundle index. Do not edit.
|
|
32890
32660
|
*/
|
|
32891
32661
|
|
|
32892
|
-
export { ANALYZE_FOR_ENTRY_COMPONENTS, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory, ComponentFactoryResolver, ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ElementRef, EmbeddedViewRef, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID$1 as LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory, NgModuleFactoryLoader, NgModuleRef, NgProbeToken, NgZone, Optional, Output, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, Pipe, PlatformRef, Query, QueryList, ReflectiveInjector, ReflectiveKey, Renderer2, RendererFactory2, RendererStyleFlags2, ResolvedReflectiveFactory, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, SystemJsNgModuleLoader, SystemJsNgModuleLoaderConfig, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef$1 as ViewRef, WrappedValue, asNativeElements, assertPlatform, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode$1 as getDebugNode, getModuleFactory, getPlatform, inject, isDevMode, platformCore, resolveForwardRef, setTestabilityGetter, ɵ0, ɵ1, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, CodegenComponentFactoryResolver as ɵCodegenComponentFactoryResolver, Compiler_compileModuleAndAllComponentsAsync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsAsync__POST_R3__, Compiler_compileModuleAndAllComponentsSync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsSync__POST_R3__, Compiler_compileModuleAsync__POST_R3__ as ɵCompiler_compileModuleAsync__POST_R3__, Compiler_compileModuleSync__POST_R3__ as ɵCompiler_compileModuleSync__POST_R3__, ComponentFactory as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, EMPTY_ARRAY$4 as ɵEMPTY_ARRAY, EMPTY_MAP as ɵEMPTY_MAP, INJECTOR_IMPL__POST_R3__ as ɵINJECTOR_IMPL__POST_R3__, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory$1 as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory$1 as ɵRender3ComponentFactory, ComponentRef$1 as ɵRender3ComponentRef, NgModuleRef$1 as ɵRender3NgModuleRef, SWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__ as ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__, SWITCH_COMPILE_COMPONENT__POST_R3__ as ɵSWITCH_COMPILE_COMPONENT__POST_R3__, SWITCH_COMPILE_DIRECTIVE__POST_R3__ as ɵSWITCH_COMPILE_DIRECTIVE__POST_R3__, SWITCH_COMPILE_INJECTABLE__POST_R3__ as ɵSWITCH_COMPILE_INJECTABLE__POST_R3__, SWITCH_COMPILE_NGMODULE__POST_R3__ as ɵSWITCH_COMPILE_NGMODULE__POST_R3__, SWITCH_COMPILE_PIPE__POST_R3__ as ɵSWITCH_COMPILE_PIPE__POST_R3__, SWITCH_ELEMENT_REF_FACTORY__POST_R3__ as ɵSWITCH_ELEMENT_REF_FACTORY__POST_R3__, SWITCH_IVY_ENABLED__POST_R3__ as ɵSWITCH_IVY_ENABLED__POST_R3__, SWITCH_RENDERER2_FACTORY__POST_R3__ as ɵSWITCH_RENDERER2_FACTORY__POST_R3__, SWITCH_TEMPLATE_REF_FACTORY__POST_R3__ as ɵSWITCH_TEMPLATE_REF_FACTORY__POST_R3__, SWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__ as ɵSWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeStyle as ɵ_sanitizeStyle, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, anchorDef as ɵand, isForwardRef as ɵangular_packages_core_core_a, injectInjectorOnly as ɵangular_packages_core_core_b, getLView as ɵangular_packages_core_core_ba, getPreviousOrParentTNode as ɵangular_packages_core_core_bb, getBindingRoot as ɵangular_packages_core_core_bc, nextContextImpl as ɵangular_packages_core_core_bd, pureFunction1Internal as ɵangular_packages_core_core_bf, pureFunction2Internal as ɵangular_packages_core_core_bg, pureFunction3Internal as ɵangular_packages_core_core_bh, pureFunction4Internal as ɵangular_packages_core_core_bi, pureFunctionVInternal as ɵangular_packages_core_core_bj, getUrlSanitizer as ɵangular_packages_core_core_bk, makeParamDecorator as ɵangular_packages_core_core_bl, makePropDecorator as ɵangular_packages_core_core_bm, getClosureSafeProperty as ɵangular_packages_core_core_bn, noSideEffects as ɵangular_packages_core_core_bp, getRootContext as ɵangular_packages_core_core_bq, NullInjector as ɵangular_packages_core_core_c, ReflectiveInjector_ as ɵangular_packages_core_core_d, ReflectiveDependency as ɵangular_packages_core_core_e, resolveReflectiveProviders as ɵangular_packages_core_core_f, _appIdRandomProviderFactory as ɵangular_packages_core_core_g, createElementRef as ɵangular_packages_core_core_h, createTemplateRef as ɵangular_packages_core_core_i, getModuleFactory__PRE_R3__ as ɵangular_packages_core_core_j, DebugNode__PRE_R3__ as ɵangular_packages_core_core_k, DebugElement__PRE_R3__ as ɵangular_packages_core_core_l, getDebugNodeR2__PRE_R3__ as ɵangular_packages_core_core_m, DefaultIterableDifferFactory as ɵangular_packages_core_core_n, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_o, _iterableDiffersFactory as ɵangular_packages_core_core_p, _keyValueDiffersFactory as ɵangular_packages_core_core_q, _localeFactory as ɵangular_packages_core_core_r, APPLICATION_MODULE_PROVIDERS as ɵangular_packages_core_core_s, zoneSchedulerFactory as ɵangular_packages_core_core_t, USD_CURRENCY_CODE as ɵangular_packages_core_core_u, _def as ɵangular_packages_core_core_v, DebugContext as ɵangular_packages_core_core_w, SCHEDULER as ɵangular_packages_core_core_x, injectAttributeImpl as ɵangular_packages_core_core_y, instructionState as ɵangular_packages_core_core_z, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, createComponentFactory as ɵccf, clearOverrides as ɵclearOverrides, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, createNgModuleFactory as ɵcmf, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory__POST_R3__ as ɵcompileNgModuleFactory__POST_R3__, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, createRendererType2 as ɵcrt, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual$1 as ɵdevModeEqual, directiveDef as ɵdid, elementDef as ɵeld, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getComponentViewDefinitionFactory as ɵgetComponentViewDefinitionFactory, getDebugNodeR2 as ɵgetDebugNodeR2, getDebugNode__POST_R3__ as ɵgetDebugNode__POST_R3__, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getModuleFactory__POST_R3__ as ɵgetModuleFactory__POST_R3__, getSanitizationBypassType as ɵgetSanitizationBypassType, _global as ɵglobal, initServicesIfNeeded as ɵinitServicesIfNeeded, inlineInterpolate as ɵinlineInterpolate, interpolate as ɵinterpolate, isBoundToModule__POST_R3__ as ɵisBoundToModule__POST_R3__, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable$1 as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, ivyEnabled as ɵivyEnabled, looseIdentical as ɵlooseIdentical, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, nodeValue as ɵnov, overrideComponentView as ɵoverrideComponentView, overrideProvider as ɵoverrideProvider, pureArrayDef as ɵpad, patchComponentDefWithScope as ɵpatchComponentDefWithScope, pipeDef as ɵpid, pureObjectDef as ɵpod, purePipeDef as ɵppd, providerDef as ɵprd, publishDefaultGlobalUtils as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, queryDef as ɵqud, registerLocaleData as ɵregisterLocaleData, registerModuleFactory as ɵregisterModuleFactory, registerNgModuleType as ɵregisterNgModuleType, renderComponent$1 as ɵrenderComponent, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, store as ɵstore, stringify as ɵstringify, textDef as ɵted, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapValue as ɵunv, unwrapSafeValue as ɵunwrapSafeValue, viewDef as ɵvid, whenRendered as ɵwhenRendered, ɵɵCopyDefinitionFeature, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcomponentHostSyntheticListener, ɵɵcontainer, ɵɵcontainerRefreshEnd, ɵɵcontainerRefreshStart, ɵɵcontentQuery, ɵɵdefaultStyleSanitizer, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵembeddedViewEnd, ɵɵembeddedViewStart, ɵɵenableBindings, ɵɵgetCurrentView, ɵɵgetFactoryOf, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinjectPipeChangeDetectorRef, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryRefresh, ɵɵreference, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵselect, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstaticContentQuery, ɵɵstaticViewQuery, ɵɵstyleMap, ɵɵstyleMapInterpolate1, ɵɵstyleMapInterpolate2, ɵɵstyleMapInterpolate3, ɵɵstyleMapInterpolate4, ɵɵstyleMapInterpolate5, ɵɵstyleMapInterpolate6, ɵɵstyleMapInterpolate7, ɵɵstyleMapInterpolate8, ɵɵstyleMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵstyleSanitizer, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵupdateSyntheticHostBinding, ɵɵviewQuery };
|
|
32662
|
+
export { ANALYZE_FOR_ENTRY_COMPONENTS, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory, ComponentFactoryResolver, ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ElementRef, EmbeddedViewRef, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID$1 as LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory, NgModuleFactoryLoader, NgModuleRef, NgProbeToken, NgZone, Optional, Output, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, Pipe, PlatformRef, Query, QueryList, ReflectiveInjector, ReflectiveKey, Renderer2, RendererFactory2, RendererStyleFlags2, ResolvedReflectiveFactory, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, SystemJsNgModuleLoader, SystemJsNgModuleLoaderConfig, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef$1 as ViewRef, WrappedValue, asNativeElements, assertPlatform, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode$1 as getDebugNode, getModuleFactory, getPlatform, inject, isDevMode, platformCore, resolveForwardRef, setTestabilityGetter, ɵ0, ɵ1, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, CodegenComponentFactoryResolver as ɵCodegenComponentFactoryResolver, Compiler_compileModuleAndAllComponentsAsync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsAsync__POST_R3__, Compiler_compileModuleAndAllComponentsSync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsSync__POST_R3__, Compiler_compileModuleAsync__POST_R3__ as ɵCompiler_compileModuleAsync__POST_R3__, Compiler_compileModuleSync__POST_R3__ as ɵCompiler_compileModuleSync__POST_R3__, ComponentFactory as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, EMPTY_ARRAY$4 as ɵEMPTY_ARRAY, EMPTY_MAP as ɵEMPTY_MAP, INJECTOR_IMPL__POST_R3__ as ɵINJECTOR_IMPL__POST_R3__, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory$1 as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory$1 as ɵRender3ComponentFactory, ComponentRef$1 as ɵRender3ComponentRef, NgModuleRef$1 as ɵRender3NgModuleRef, SWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__ as ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__, SWITCH_COMPILE_COMPONENT__POST_R3__ as ɵSWITCH_COMPILE_COMPONENT__POST_R3__, SWITCH_COMPILE_DIRECTIVE__POST_R3__ as ɵSWITCH_COMPILE_DIRECTIVE__POST_R3__, SWITCH_COMPILE_INJECTABLE__POST_R3__ as ɵSWITCH_COMPILE_INJECTABLE__POST_R3__, SWITCH_COMPILE_NGMODULE__POST_R3__ as ɵSWITCH_COMPILE_NGMODULE__POST_R3__, SWITCH_COMPILE_PIPE__POST_R3__ as ɵSWITCH_COMPILE_PIPE__POST_R3__, SWITCH_ELEMENT_REF_FACTORY__POST_R3__ as ɵSWITCH_ELEMENT_REF_FACTORY__POST_R3__, SWITCH_IVY_ENABLED__POST_R3__ as ɵSWITCH_IVY_ENABLED__POST_R3__, SWITCH_RENDERER2_FACTORY__POST_R3__ as ɵSWITCH_RENDERER2_FACTORY__POST_R3__, SWITCH_TEMPLATE_REF_FACTORY__POST_R3__ as ɵSWITCH_TEMPLATE_REF_FACTORY__POST_R3__, SWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__ as ɵSWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeStyle as ɵ_sanitizeStyle, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, anchorDef as ɵand, isForwardRef as ɵangular_packages_core_core_a, injectInjectorOnly as ɵangular_packages_core_core_b, getLView as ɵangular_packages_core_core_ba, getPreviousOrParentTNode as ɵangular_packages_core_core_bb, getBindingRoot as ɵangular_packages_core_core_bc, nextContextImpl as ɵangular_packages_core_core_bd, pureFunction1Internal as ɵangular_packages_core_core_bf, pureFunction2Internal as ɵangular_packages_core_core_bg, pureFunction3Internal as ɵangular_packages_core_core_bh, pureFunction4Internal as ɵangular_packages_core_core_bi, pureFunctionVInternal as ɵangular_packages_core_core_bj, getUrlSanitizer as ɵangular_packages_core_core_bk, makeParamDecorator as ɵangular_packages_core_core_bl, makePropDecorator as ɵangular_packages_core_core_bm, getClosureSafeProperty as ɵangular_packages_core_core_bn, noSideEffects as ɵangular_packages_core_core_bp, getRootContext as ɵangular_packages_core_core_bq, NullInjector as ɵangular_packages_core_core_c, ReflectiveInjector_ as ɵangular_packages_core_core_d, ReflectiveDependency as ɵangular_packages_core_core_e, resolveReflectiveProviders as ɵangular_packages_core_core_f, _appIdRandomProviderFactory as ɵangular_packages_core_core_g, createElementRef as ɵangular_packages_core_core_h, createTemplateRef as ɵangular_packages_core_core_i, getModuleFactory__PRE_R3__ as ɵangular_packages_core_core_j, DebugNode__PRE_R3__ as ɵangular_packages_core_core_k, DebugElement__PRE_R3__ as ɵangular_packages_core_core_l, getDebugNodeR2__PRE_R3__ as ɵangular_packages_core_core_m, DefaultIterableDifferFactory as ɵangular_packages_core_core_n, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_o, _iterableDiffersFactory as ɵangular_packages_core_core_p, _keyValueDiffersFactory as ɵangular_packages_core_core_q, _localeFactory as ɵangular_packages_core_core_r, APPLICATION_MODULE_PROVIDERS as ɵangular_packages_core_core_s, zoneSchedulerFactory as ɵangular_packages_core_core_t, USD_CURRENCY_CODE as ɵangular_packages_core_core_u, _def as ɵangular_packages_core_core_v, DebugContext as ɵangular_packages_core_core_w, SCHEDULER as ɵangular_packages_core_core_x, injectAttributeImpl as ɵangular_packages_core_core_y, instructionState as ɵangular_packages_core_core_z, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, createComponentFactory as ɵccf, clearOverrides as ɵclearOverrides, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, createNgModuleFactory as ɵcmf, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory__POST_R3__ as ɵcompileNgModuleFactory__POST_R3__, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, createRendererType2 as ɵcrt, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual$1 as ɵdevModeEqual, directiveDef as ɵdid, elementDef as ɵeld, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getComponentViewDefinitionFactory as ɵgetComponentViewDefinitionFactory, getDebugNodeR2 as ɵgetDebugNodeR2, getDebugNode__POST_R3__ as ɵgetDebugNode__POST_R3__, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getModuleFactory__POST_R3__ as ɵgetModuleFactory__POST_R3__, getSanitizationBypassType as ɵgetSanitizationBypassType, _global as ɵglobal, initServicesIfNeeded as ɵinitServicesIfNeeded, inlineInterpolate as ɵinlineInterpolate, interpolate as ɵinterpolate, isBoundToModule__POST_R3__ as ɵisBoundToModule__POST_R3__, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable$1 as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, ivyEnabled as ɵivyEnabled, looseIdentical as ɵlooseIdentical, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, nodeValue as ɵnov, overrideComponentView as ɵoverrideComponentView, overrideProvider as ɵoverrideProvider, pureArrayDef as ɵpad, patchComponentDefWithScope as ɵpatchComponentDefWithScope, pipeDef as ɵpid, pureObjectDef as ɵpod, purePipeDef as ɵppd, providerDef as ɵprd, publishDefaultGlobalUtils as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, queryDef as ɵqud, registerLocaleData as ɵregisterLocaleData, registerModuleFactory as ɵregisterModuleFactory, registerNgModuleType as ɵregisterNgModuleType, renderComponent$1 as ɵrenderComponent, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, store as ɵstore, stringify as ɵstringify, textDef as ɵted, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapValue as ɵunv, unwrapSafeValue as ɵunwrapSafeValue, viewDef as ɵvid, whenRendered as ɵwhenRendered, ɵɵCopyDefinitionFeature, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcomponentHostSyntheticListener, ɵɵcontentQuery, ɵɵdefaultStyleSanitizer, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetCurrentView, ɵɵgetFactoryOf, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinjectPipeChangeDetectorRef, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryRefresh, ɵɵreference, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵselect, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstaticContentQuery, ɵɵstaticViewQuery, ɵɵstyleMap, ɵɵstyleMapInterpolate1, ɵɵstyleMapInterpolate2, ɵɵstyleMapInterpolate3, ɵɵstyleMapInterpolate4, ɵɵstyleMapInterpolate5, ɵɵstyleMapInterpolate6, ɵɵstyleMapInterpolate7, ɵɵstyleMapInterpolate8, ɵɵstyleMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵstyleSanitizer, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵupdateSyntheticHostBinding, ɵɵviewQuery };
|
|
32893
32663
|
//# sourceMappingURL=core.js.map
|