@angular/core 10.0.4 → 10.0.5
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 +200 -201
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +124 -124
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +125 -119
- package/core.metadata.json +1 -1
- package/esm2015/core.js +11 -10
- package/esm2015/src/core_render3_private_export.js +2 -2
- package/esm2015/src/metadata/directives.js +1 -1
- package/esm2015/src/render3/definition.js +3 -11
- package/esm2015/src/render3/di.js +3 -3
- package/esm2015/src/render3/di_setup.js +5 -5
- package/esm2015/src/render3/features/inherit_definition_feature.js +1 -11
- package/esm2015/src/render3/features/ng_onchanges_feature.js +32 -22
- package/esm2015/src/render3/hooks.js +27 -23
- package/esm2015/src/render3/index.js +3 -3
- package/esm2015/src/render3/instructions/element.js +4 -4
- package/esm2015/src/render3/instructions/host_property.js +3 -3
- package/esm2015/src/render3/instructions/listener.js +3 -3
- package/esm2015/src/render3/instructions/shared.js +15 -12
- package/esm2015/src/render3/interfaces/definition.js +1 -1
- package/esm2015/src/render3/interfaces/node.js +1 -1
- package/esm2015/src/render3/jit/environment.js +3 -3
- package/esm2015/src/render3/util/discovery_utils.js +2 -2
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +179 -181
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/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/fesm2015/core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v10.0.
|
|
2
|
+
* @license Angular v10.0.5
|
|
3
3
|
* (c) 2010-2020 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1603,14 +1603,6 @@ function ɵɵdefineComponent(componentDefinition) {
|
|
|
1603
1603
|
inputs: null,
|
|
1604
1604
|
outputs: null,
|
|
1605
1605
|
exportAs: componentDefinition.exportAs || null,
|
|
1606
|
-
onChanges: null,
|
|
1607
|
-
onInit: typePrototype.ngOnInit || null,
|
|
1608
|
-
doCheck: typePrototype.ngDoCheck || null,
|
|
1609
|
-
afterContentInit: typePrototype.ngAfterContentInit || null,
|
|
1610
|
-
afterContentChecked: typePrototype.ngAfterContentChecked || null,
|
|
1611
|
-
afterViewInit: typePrototype.ngAfterViewInit || null,
|
|
1612
|
-
afterViewChecked: typePrototype.ngAfterViewChecked || null,
|
|
1613
|
-
onDestroy: typePrototype.ngOnDestroy || null,
|
|
1614
1606
|
onPush: componentDefinition.changeDetection === ChangeDetectionStrategy.OnPush,
|
|
1615
1607
|
directiveDefs: null,
|
|
1616
1608
|
pipeDefs: null,
|
|
@@ -1618,8 +1610,8 @@ function ɵɵdefineComponent(componentDefinition) {
|
|
|
1618
1610
|
viewQuery: componentDefinition.viewQuery || null,
|
|
1619
1611
|
features: componentDefinition.features || null,
|
|
1620
1612
|
data: componentDefinition.data || {},
|
|
1621
|
-
// TODO(misko): convert ViewEncapsulation into const enum so that it can be used
|
|
1622
|
-
// the next line. Also `None` should be 0 not 2.
|
|
1613
|
+
// TODO(misko): convert ViewEncapsulation into const enum so that it can be used
|
|
1614
|
+
// directly in the next line. Also `None` should be 0 not 2.
|
|
1623
1615
|
encapsulation: componentDefinition.encapsulation || ViewEncapsulation$1.Emulated,
|
|
1624
1616
|
id: 'c',
|
|
1625
1617
|
styles: componentDefinition.styles || EMPTY_ARRAY,
|
|
@@ -2036,6 +2028,126 @@ function assertDirectiveDef(obj) {
|
|
|
2036
2028
|
}
|
|
2037
2029
|
}
|
|
2038
2030
|
|
|
2031
|
+
/**
|
|
2032
|
+
* @license
|
|
2033
|
+
* Copyright Google LLC All Rights Reserved.
|
|
2034
|
+
*
|
|
2035
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
2036
|
+
* found in the LICENSE file at https://angular.io/license
|
|
2037
|
+
*/
|
|
2038
|
+
/**
|
|
2039
|
+
* Represents a basic change from a previous to a new value for a single
|
|
2040
|
+
* property on a directive instance. Passed as a value in a
|
|
2041
|
+
* {@link SimpleChanges} object to the `ngOnChanges` hook.
|
|
2042
|
+
*
|
|
2043
|
+
* @see `OnChanges`
|
|
2044
|
+
*
|
|
2045
|
+
* @publicApi
|
|
2046
|
+
*/
|
|
2047
|
+
class SimpleChange {
|
|
2048
|
+
constructor(previousValue, currentValue, firstChange) {
|
|
2049
|
+
this.previousValue = previousValue;
|
|
2050
|
+
this.currentValue = currentValue;
|
|
2051
|
+
this.firstChange = firstChange;
|
|
2052
|
+
}
|
|
2053
|
+
/**
|
|
2054
|
+
* Check whether the new value is the first value assigned.
|
|
2055
|
+
*/
|
|
2056
|
+
isFirstChange() {
|
|
2057
|
+
return this.firstChange;
|
|
2058
|
+
}
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
/**
|
|
2062
|
+
* @license
|
|
2063
|
+
* Copyright Google LLC All Rights Reserved.
|
|
2064
|
+
*
|
|
2065
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
2066
|
+
* found in the LICENSE file at https://angular.io/license
|
|
2067
|
+
*/
|
|
2068
|
+
/**
|
|
2069
|
+
* The NgOnChangesFeature decorates a component with support for the ngOnChanges
|
|
2070
|
+
* lifecycle hook, so it should be included in any component that implements
|
|
2071
|
+
* that hook.
|
|
2072
|
+
*
|
|
2073
|
+
* If the component or directive uses inheritance, the NgOnChangesFeature MUST
|
|
2074
|
+
* be included as a feature AFTER {@link InheritDefinitionFeature}, otherwise
|
|
2075
|
+
* inherited properties will not be propagated to the ngOnChanges lifecycle
|
|
2076
|
+
* hook.
|
|
2077
|
+
*
|
|
2078
|
+
* Example usage:
|
|
2079
|
+
*
|
|
2080
|
+
* ```
|
|
2081
|
+
* static ɵcmp = defineComponent({
|
|
2082
|
+
* ...
|
|
2083
|
+
* inputs: {name: 'publicName'},
|
|
2084
|
+
* features: [NgOnChangesFeature]
|
|
2085
|
+
* });
|
|
2086
|
+
* ```
|
|
2087
|
+
*
|
|
2088
|
+
* @codeGenApi
|
|
2089
|
+
*/
|
|
2090
|
+
function ɵɵNgOnChangesFeature() {
|
|
2091
|
+
return NgOnChangesFeatureImpl;
|
|
2092
|
+
}
|
|
2093
|
+
function NgOnChangesFeatureImpl(definition) {
|
|
2094
|
+
if (definition.type.prototype.ngOnChanges) {
|
|
2095
|
+
definition.setInput = ngOnChangesSetInput;
|
|
2096
|
+
}
|
|
2097
|
+
return rememberChangeHistoryAndInvokeOnChangesHook;
|
|
2098
|
+
}
|
|
2099
|
+
// This option ensures that the ngOnChanges lifecycle hook will be inherited
|
|
2100
|
+
// from superclasses (in InheritDefinitionFeature).
|
|
2101
|
+
/** @nocollapse */
|
|
2102
|
+
// tslint:disable-next-line:no-toplevel-property-access
|
|
2103
|
+
ɵɵNgOnChangesFeature.ngInherit = true;
|
|
2104
|
+
/**
|
|
2105
|
+
* This is a synthetic lifecycle hook which gets inserted into `TView.preOrderHooks` to simulate
|
|
2106
|
+
* `ngOnChanges`.
|
|
2107
|
+
*
|
|
2108
|
+
* The hook reads the `NgSimpleChangesStore` data from the component instance and if changes are
|
|
2109
|
+
* found it invokes `ngOnChanges` on the component instance.
|
|
2110
|
+
*
|
|
2111
|
+
* @param this Component instance. Because this function gets inserted into `TView.preOrderHooks`,
|
|
2112
|
+
* it is guaranteed to be called with component instance.
|
|
2113
|
+
*/
|
|
2114
|
+
function rememberChangeHistoryAndInvokeOnChangesHook() {
|
|
2115
|
+
const simpleChangesStore = getSimpleChangesStore(this);
|
|
2116
|
+
const current = simpleChangesStore === null || simpleChangesStore === void 0 ? void 0 : simpleChangesStore.current;
|
|
2117
|
+
if (current) {
|
|
2118
|
+
const previous = simpleChangesStore.previous;
|
|
2119
|
+
if (previous === EMPTY_OBJ) {
|
|
2120
|
+
simpleChangesStore.previous = current;
|
|
2121
|
+
}
|
|
2122
|
+
else {
|
|
2123
|
+
// New changes are copied to the previous store, so that we don't lose history for inputs
|
|
2124
|
+
// which were not changed this time
|
|
2125
|
+
for (let key in current) {
|
|
2126
|
+
previous[key] = current[key];
|
|
2127
|
+
}
|
|
2128
|
+
}
|
|
2129
|
+
simpleChangesStore.current = null;
|
|
2130
|
+
this.ngOnChanges(current);
|
|
2131
|
+
}
|
|
2132
|
+
}
|
|
2133
|
+
function ngOnChangesSetInput(instance, value, publicName, privateName) {
|
|
2134
|
+
const simpleChangesStore = getSimpleChangesStore(instance) ||
|
|
2135
|
+
setSimpleChangesStore(instance, { previous: EMPTY_OBJ, current: null });
|
|
2136
|
+
const current = simpleChangesStore.current || (simpleChangesStore.current = {});
|
|
2137
|
+
const previous = simpleChangesStore.previous;
|
|
2138
|
+
const declaredName = this.declaredInputs[publicName];
|
|
2139
|
+
const previousChange = previous[declaredName];
|
|
2140
|
+
current[declaredName] = new SimpleChange(previousChange && previousChange.currentValue, value, previous === EMPTY_OBJ);
|
|
2141
|
+
instance[privateName] = value;
|
|
2142
|
+
}
|
|
2143
|
+
const SIMPLE_CHANGES_STORE = '__ngSimpleChanges__';
|
|
2144
|
+
function getSimpleChangesStore(instance) {
|
|
2145
|
+
return instance[SIMPLE_CHANGES_STORE] || null;
|
|
2146
|
+
}
|
|
2147
|
+
function setSimpleChangesStore(instance, store) {
|
|
2148
|
+
return instance[SIMPLE_CHANGES_STORE] = store;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2039
2151
|
/**
|
|
2040
2152
|
* @license
|
|
2041
2153
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -2731,17 +2843,19 @@ function getNamespace() {
|
|
|
2731
2843
|
*/
|
|
2732
2844
|
function registerPreOrderHooks(directiveIndex, directiveDef, tView) {
|
|
2733
2845
|
ngDevMode && assertFirstCreatePass(tView);
|
|
2734
|
-
const {
|
|
2735
|
-
if (
|
|
2736
|
-
|
|
2737
|
-
(tView.
|
|
2846
|
+
const { ngOnChanges, ngOnInit, ngDoCheck } = directiveDef.type.prototype;
|
|
2847
|
+
if (ngOnChanges) {
|
|
2848
|
+
const wrappedOnChanges = NgOnChangesFeatureImpl(directiveDef);
|
|
2849
|
+
(tView.preOrderHooks || (tView.preOrderHooks = [])).push(directiveIndex, wrappedOnChanges);
|
|
2850
|
+
(tView.preOrderCheckHooks || (tView.preOrderCheckHooks = []))
|
|
2851
|
+
.push(directiveIndex, wrappedOnChanges);
|
|
2738
2852
|
}
|
|
2739
|
-
if (
|
|
2740
|
-
(tView.preOrderHooks || (tView.preOrderHooks = [])).push(-directiveIndex,
|
|
2853
|
+
if (ngOnInit) {
|
|
2854
|
+
(tView.preOrderHooks || (tView.preOrderHooks = [])).push(0 - directiveIndex, ngOnInit);
|
|
2741
2855
|
}
|
|
2742
|
-
if (
|
|
2743
|
-
(tView.preOrderHooks || (tView.preOrderHooks = [])).push(directiveIndex,
|
|
2744
|
-
(tView.preOrderCheckHooks || (tView.preOrderCheckHooks = [])).push(directiveIndex,
|
|
2856
|
+
if (ngDoCheck) {
|
|
2857
|
+
(tView.preOrderHooks || (tView.preOrderHooks = [])).push(directiveIndex, ngDoCheck);
|
|
2858
|
+
(tView.preOrderCheckHooks || (tView.preOrderCheckHooks = [])).push(directiveIndex, ngDoCheck);
|
|
2745
2859
|
}
|
|
2746
2860
|
}
|
|
2747
2861
|
/**
|
|
@@ -2769,23 +2883,24 @@ function registerPostOrderHooks(tView, tNode) {
|
|
|
2769
2883
|
// hooks for projected components and directives must be called *before* their hosts.
|
|
2770
2884
|
for (let i = tNode.directiveStart, end = tNode.directiveEnd; i < end; i++) {
|
|
2771
2885
|
const directiveDef = tView.data[i];
|
|
2772
|
-
|
|
2773
|
-
|
|
2886
|
+
const lifecycleHooks = directiveDef.type.prototype;
|
|
2887
|
+
const { ngAfterContentInit, ngAfterContentChecked, ngAfterViewInit, ngAfterViewChecked, ngOnDestroy } = lifecycleHooks;
|
|
2888
|
+
if (ngAfterContentInit) {
|
|
2889
|
+
(tView.contentHooks || (tView.contentHooks = [])).push(-i, ngAfterContentInit);
|
|
2774
2890
|
}
|
|
2775
|
-
if (
|
|
2776
|
-
(tView.contentHooks || (tView.contentHooks = [])).push(i,
|
|
2777
|
-
(tView.contentCheckHooks || (tView.contentCheckHooks = []))
|
|
2778
|
-
.push(i, directiveDef.afterContentChecked);
|
|
2891
|
+
if (ngAfterContentChecked) {
|
|
2892
|
+
(tView.contentHooks || (tView.contentHooks = [])).push(i, ngAfterContentChecked);
|
|
2893
|
+
(tView.contentCheckHooks || (tView.contentCheckHooks = [])).push(i, ngAfterContentChecked);
|
|
2779
2894
|
}
|
|
2780
|
-
if (
|
|
2781
|
-
(tView.viewHooks || (tView.viewHooks = [])).push(-i,
|
|
2895
|
+
if (ngAfterViewInit) {
|
|
2896
|
+
(tView.viewHooks || (tView.viewHooks = [])).push(-i, ngAfterViewInit);
|
|
2782
2897
|
}
|
|
2783
|
-
if (
|
|
2784
|
-
(tView.viewHooks || (tView.viewHooks = [])).push(i,
|
|
2785
|
-
(tView.viewCheckHooks || (tView.viewCheckHooks = [])).push(i,
|
|
2898
|
+
if (ngAfterViewChecked) {
|
|
2899
|
+
(tView.viewHooks || (tView.viewHooks = [])).push(i, ngAfterViewChecked);
|
|
2900
|
+
(tView.viewCheckHooks || (tView.viewCheckHooks = [])).push(i, ngAfterViewChecked);
|
|
2786
2901
|
}
|
|
2787
|
-
if (
|
|
2788
|
-
(tView.destroyHooks || (tView.destroyHooks = [])).push(i,
|
|
2902
|
+
if (ngOnDestroy != null) {
|
|
2903
|
+
(tView.destroyHooks || (tView.destroyHooks = [])).push(i, ngOnDestroy);
|
|
2789
2904
|
}
|
|
2790
2905
|
}
|
|
2791
2906
|
}
|
|
@@ -3865,10 +3980,10 @@ function searchTokensOnInjector(injectorIndex, lView, token, previousTView, flag
|
|
|
3865
3980
|
function locateDirectiveOrProvider(tNode, tView, token, canAccessViewProviders, isHostSpecialCase) {
|
|
3866
3981
|
const nodeProviderIndexes = tNode.providerIndexes;
|
|
3867
3982
|
const tInjectables = tView.data;
|
|
3868
|
-
const injectablesStart = nodeProviderIndexes &
|
|
3983
|
+
const injectablesStart = nodeProviderIndexes & 1048575 /* ProvidersStartIndexMask */;
|
|
3869
3984
|
const directivesStart = tNode.directiveStart;
|
|
3870
3985
|
const directiveEnd = tNode.directiveEnd;
|
|
3871
|
-
const cptViewProvidersCount = nodeProviderIndexes >>
|
|
3986
|
+
const cptViewProvidersCount = nodeProviderIndexes >> 20 /* CptViewProvidersCountShift */;
|
|
3872
3987
|
const startingIndex = canAccessViewProviders ? injectablesStart : injectablesStart + cptViewProvidersCount;
|
|
3873
3988
|
// When the host special case applies, only the viewProviders and the component are visible
|
|
3874
3989
|
const endIndex = isHostSpecialCase ? injectablesStart + cptViewProvidersCount : directiveEnd;
|
|
@@ -6949,6 +7064,8 @@ function setHostBindingsByExecutingExpandoInstructions(tView, lView) {
|
|
|
6949
7064
|
else {
|
|
6950
7065
|
// If it's not a number, it's a host binding function that needs to be executed.
|
|
6951
7066
|
if (instruction !== null) {
|
|
7067
|
+
ngDevMode &&
|
|
7068
|
+
assertLessThan(currentDirectiveIndex, 1048576 /* CptViewProvidersCountShifter */, 'Reached the max number of host bindings');
|
|
6952
7069
|
setBindingRootForHostBindings(bindingRootIndex, currentDirectiveIndex);
|
|
6953
7070
|
const hostCtx = lView[currentDirectiveIndex];
|
|
6954
7071
|
instruction(2 /* Update */, hostCtx);
|
|
@@ -7711,7 +7828,7 @@ function elementPropertyInternal(tView, tNode, lView, propName, value, renderer,
|
|
|
7711
7828
|
propName = mapPropName(propName);
|
|
7712
7829
|
if (ngDevMode) {
|
|
7713
7830
|
validateAgainstEventProperties(propName);
|
|
7714
|
-
if (!validateProperty(tView,
|
|
7831
|
+
if (!validateProperty(tView, element, propName, tNode)) {
|
|
7715
7832
|
// Return here since we only log warnings for unknown properties.
|
|
7716
7833
|
logUnknownPropertyError(propName, tNode);
|
|
7717
7834
|
return;
|
|
@@ -7729,10 +7846,10 @@ function elementPropertyInternal(tView, tNode, lView, propName, value, renderer,
|
|
|
7729
7846
|
element[propName] = value;
|
|
7730
7847
|
}
|
|
7731
7848
|
}
|
|
7732
|
-
else if (tNode.type === 0 /* Container */) {
|
|
7849
|
+
else if (tNode.type === 0 /* Container */ || tNode.type === 4 /* ElementContainer */) {
|
|
7733
7850
|
// If the node is a container and the property didn't
|
|
7734
7851
|
// match any of the inputs or schemas we should throw.
|
|
7735
|
-
if (ngDevMode && !matchingSchemas(tView,
|
|
7852
|
+
if (ngDevMode && !matchingSchemas(tView, tNode.tagName)) {
|
|
7736
7853
|
logUnknownPropertyError(propName, tNode);
|
|
7737
7854
|
}
|
|
7738
7855
|
}
|
|
@@ -7785,7 +7902,7 @@ function setNgReflectProperties(lView, element, type, dataValue, value) {
|
|
|
7785
7902
|
}
|
|
7786
7903
|
}
|
|
7787
7904
|
}
|
|
7788
|
-
function validateProperty(tView,
|
|
7905
|
+
function validateProperty(tView, element, propName, tNode) {
|
|
7789
7906
|
// If `schemas` is set to `null`, that's an indication that this Component was compiled in AOT
|
|
7790
7907
|
// mode where this check happens at compile time. In JIT mode, `schemas` is always present and
|
|
7791
7908
|
// defined as an array (as an empty array in case `schemas` field is not defined) and we should
|
|
@@ -7794,15 +7911,14 @@ function validateProperty(tView, lView, element, propName, tNode) {
|
|
|
7794
7911
|
return true;
|
|
7795
7912
|
// The property is considered valid if the element matches the schema, it exists on the element
|
|
7796
7913
|
// or it is synthetic, and we are in a browser context (web worker nodes should be skipped).
|
|
7797
|
-
if (matchingSchemas(tView,
|
|
7798
|
-
isAnimationProp(propName)) {
|
|
7914
|
+
if (matchingSchemas(tView, tNode.tagName) || propName in element || isAnimationProp(propName)) {
|
|
7799
7915
|
return true;
|
|
7800
7916
|
}
|
|
7801
7917
|
// Note: `typeof Node` returns 'function' in most browsers, but on IE it is 'object' so we
|
|
7802
7918
|
// need to account for both here, while being careful for `typeof null` also returning 'object'.
|
|
7803
7919
|
return typeof Node === 'undefined' || Node === null || !(element instanceof Node);
|
|
7804
7920
|
}
|
|
7805
|
-
function matchingSchemas(tView,
|
|
7921
|
+
function matchingSchemas(tView, tagName) {
|
|
7806
7922
|
const schemas = tView.schemas;
|
|
7807
7923
|
if (schemas !== null) {
|
|
7808
7924
|
for (let i = 0; i < schemas.length; i++) {
|
|
@@ -7882,16 +7998,18 @@ function resolveDirectives(tView, lView, tNode, localRefs) {
|
|
|
7882
7998
|
tNode.flags |= 8 /* hasContentQuery */;
|
|
7883
7999
|
if (def.hostBindings !== null || def.hostAttrs !== null || def.hostVars !== 0)
|
|
7884
8000
|
tNode.flags |= 128 /* hasHostBindings */;
|
|
8001
|
+
const lifeCycleHooks = def.type.prototype;
|
|
7885
8002
|
// Only push a node index into the preOrderHooks array if this is the first
|
|
7886
8003
|
// pre-order hook found on this node.
|
|
7887
|
-
if (!preOrderHooksFound &&
|
|
8004
|
+
if (!preOrderHooksFound &&
|
|
8005
|
+
(lifeCycleHooks.ngOnChanges || lifeCycleHooks.ngOnInit || lifeCycleHooks.ngDoCheck)) {
|
|
7888
8006
|
// We will push the actual hook function into this array later during dir instantiation.
|
|
7889
8007
|
// We cannot do it now because we must ensure hooks are registered in the same
|
|
7890
8008
|
// order that directives are created (i.e. injection order).
|
|
7891
8009
|
(tView.preOrderHooks || (tView.preOrderHooks = [])).push(tNode.index - HEADER_OFFSET);
|
|
7892
8010
|
preOrderHooksFound = true;
|
|
7893
8011
|
}
|
|
7894
|
-
if (!preOrderCheckHooksFound && (
|
|
8012
|
+
if (!preOrderCheckHooksFound && (lifeCycleHooks.ngOnChanges || lifeCycleHooks.ngDoCheck)) {
|
|
7895
8013
|
(tView.preOrderCheckHooks || (tView.preOrderCheckHooks = []))
|
|
7896
8014
|
.push(tNode.index - HEADER_OFFSET);
|
|
7897
8015
|
preOrderCheckHooksFound = true;
|
|
@@ -8031,7 +8149,7 @@ function generateExpandoInstructionBlock(tView, tNode, directiveCount) {
|
|
|
8031
8149
|
// requires non standard math arithmetic and it can prevent VM optimizations.
|
|
8032
8150
|
// `0-0` will always produce `0` and will not cause a potential deoptimization in VM.
|
|
8033
8151
|
const elementIndex = HEADER_OFFSET - tNode.index;
|
|
8034
|
-
const providerStartIndex = tNode.providerIndexes &
|
|
8152
|
+
const providerStartIndex = tNode.providerIndexes & 1048575 /* ProvidersStartIndexMask */;
|
|
8035
8153
|
const providerCount = tView.data.length - providerStartIndex;
|
|
8036
8154
|
(tView.expandoInstructions || (tView.expandoInstructions = []))
|
|
8037
8155
|
.push(elementIndex, providerCount, directiveCount);
|
|
@@ -13818,7 +13936,7 @@ function elementStartFirstCreatePass(index, tView, lView, native, name, attrsInd
|
|
|
13818
13936
|
const attrs = getConstant(tViewConsts, attrsIndex);
|
|
13819
13937
|
const tNode = getOrCreateTNode(tView, lView[T_HOST], index, 3 /* Element */, name, attrs);
|
|
13820
13938
|
const hasDirectives = resolveDirectives(tView, lView, tNode, getConstant(tViewConsts, localRefsIndex));
|
|
13821
|
-
ngDevMode && logUnknownElementError(tView,
|
|
13939
|
+
ngDevMode && logUnknownElementError(tView, native, tNode, hasDirectives);
|
|
13822
13940
|
if (tNode.attrs !== null) {
|
|
13823
13941
|
computeStaticStyling(tNode, tNode.attrs, false);
|
|
13824
13942
|
}
|
|
@@ -13933,7 +14051,7 @@ function ɵɵelement(index, name, attrsIndex, localRefsIndex) {
|
|
|
13933
14051
|
ɵɵelementStart(index, name, attrsIndex, localRefsIndex);
|
|
13934
14052
|
ɵɵelementEnd();
|
|
13935
14053
|
}
|
|
13936
|
-
function logUnknownElementError(tView,
|
|
14054
|
+
function logUnknownElementError(tView, element, tNode, hasDirectives) {
|
|
13937
14055
|
const schemas = tView.schemas;
|
|
13938
14056
|
// If `schemas` is set to `null`, that's an indication that this Component was compiled in AOT
|
|
13939
14057
|
// mode where this check happens at compile time. In JIT mode, `schemas` is always present and
|
|
@@ -13954,7 +14072,7 @@ function logUnknownElementError(tView, lView, element, tNode, hasDirectives) {
|
|
|
13954
14072
|
element instanceof HTMLUnknownElement) ||
|
|
13955
14073
|
(typeof customElements !== 'undefined' && tagName.indexOf('-') > -1 &&
|
|
13956
14074
|
!customElements.get(tagName));
|
|
13957
|
-
if (isUnknown && !matchingSchemas(tView,
|
|
14075
|
+
if (isUnknown && !matchingSchemas(tView, tagName)) {
|
|
13958
14076
|
let message = `'${tagName}' is not a known element:\n`;
|
|
13959
14077
|
message += `1. If '${tagName}' is an Angular component, then verify that it is part of this module.\n`;
|
|
13960
14078
|
if (tagName && tagName.indexOf('-') > -1) {
|
|
@@ -14156,14 +14274,14 @@ function ɵɵlistener(eventName, listenerFn, useCapture = false, eventTargetReso
|
|
|
14156
14274
|
*
|
|
14157
14275
|
* @codeGenApi
|
|
14158
14276
|
*/
|
|
14159
|
-
function
|
|
14277
|
+
function ɵɵsyntheticHostListener(eventName, listenerFn, useCapture = false, eventTargetResolver) {
|
|
14160
14278
|
const tNode = getPreviousOrParentTNode();
|
|
14161
14279
|
const lView = getLView();
|
|
14162
14280
|
const tView = getTView();
|
|
14163
14281
|
const currentDef = getCurrentDirectiveDef(tView.data);
|
|
14164
14282
|
const renderer = loadComponentRenderer(currentDef, tNode, lView);
|
|
14165
14283
|
listenerInternal(tView, lView, renderer, tNode, eventName, listenerFn, useCapture, eventTargetResolver);
|
|
14166
|
-
return
|
|
14284
|
+
return ɵɵsyntheticHostListener;
|
|
14167
14285
|
}
|
|
14168
14286
|
/**
|
|
14169
14287
|
* A utility function that checks if a given element has already an event handler registered for an
|
|
@@ -17777,7 +17895,7 @@ function ɵɵhostProperty(propName, value, sanitizer) {
|
|
|
17777
17895
|
*
|
|
17778
17896
|
* @codeGenApi
|
|
17779
17897
|
*/
|
|
17780
|
-
function
|
|
17898
|
+
function ɵɵsyntheticHostProperty(propName, value, sanitizer) {
|
|
17781
17899
|
const lView = getLView();
|
|
17782
17900
|
const bindingIndex = nextBindingIndex();
|
|
17783
17901
|
if (bindingUpdated(lView, bindingIndex, value)) {
|
|
@@ -17788,7 +17906,7 @@ function ɵɵupdateSyntheticHostBinding(propName, value, sanitizer) {
|
|
|
17788
17906
|
elementPropertyInternal(tView, tNode, lView, propName, value, renderer, sanitizer, true);
|
|
17789
17907
|
ngDevMode && storePropertyBindingMetadata(tView.data, tNode, propName, bindingIndex);
|
|
17790
17908
|
}
|
|
17791
|
-
return
|
|
17909
|
+
return ɵɵsyntheticHostProperty;
|
|
17792
17910
|
}
|
|
17793
17911
|
|
|
17794
17912
|
/**
|
|
@@ -17930,7 +18048,7 @@ function getInjectionTokens(element) {
|
|
|
17930
18048
|
const tView = lView[TVIEW];
|
|
17931
18049
|
const tNode = tView.data[context.nodeIndex];
|
|
17932
18050
|
const providerTokens = [];
|
|
17933
|
-
const startIndex = tNode.providerIndexes &
|
|
18051
|
+
const startIndex = tNode.providerIndexes & 1048575 /* ProvidersStartIndexMask */;
|
|
17934
18052
|
const endIndex = tNode.directiveEnd;
|
|
17935
18053
|
for (let i = startIndex; i < endIndex; i++) {
|
|
17936
18054
|
let value = tView.data[i];
|
|
@@ -18483,16 +18601,6 @@ function ɵɵInheritDefinitionFeature(definition) {
|
|
|
18483
18601
|
const defData = definition.data;
|
|
18484
18602
|
defData.animation = (defData.animation || []).concat(superDef.data.animation);
|
|
18485
18603
|
}
|
|
18486
|
-
// Inherit hooks
|
|
18487
|
-
// Assume super class inheritance feature has already run.
|
|
18488
|
-
writeableDef.afterContentChecked =
|
|
18489
|
-
writeableDef.afterContentChecked || superDef.afterContentChecked;
|
|
18490
|
-
writeableDef.afterContentInit = definition.afterContentInit || superDef.afterContentInit;
|
|
18491
|
-
writeableDef.afterViewChecked = definition.afterViewChecked || superDef.afterViewChecked;
|
|
18492
|
-
writeableDef.afterViewInit = definition.afterViewInit || superDef.afterViewInit;
|
|
18493
|
-
writeableDef.doCheck = definition.doCheck || superDef.doCheck;
|
|
18494
|
-
writeableDef.onDestroy = definition.onDestroy || superDef.onDestroy;
|
|
18495
|
-
writeableDef.onInit = definition.onInit || superDef.onInit;
|
|
18496
18604
|
}
|
|
18497
18605
|
// Run parent features
|
|
18498
18606
|
const features = superDef.features;
|
|
@@ -18665,116 +18773,6 @@ function ɵɵCopyDefinitionFeature(definition) {
|
|
|
18665
18773
|
}
|
|
18666
18774
|
}
|
|
18667
18775
|
|
|
18668
|
-
/**
|
|
18669
|
-
* @license
|
|
18670
|
-
* Copyright Google LLC All Rights Reserved.
|
|
18671
|
-
*
|
|
18672
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
18673
|
-
* found in the LICENSE file at https://angular.io/license
|
|
18674
|
-
*/
|
|
18675
|
-
/**
|
|
18676
|
-
* Represents a basic change from a previous to a new value for a single
|
|
18677
|
-
* property on a directive instance. Passed as a value in a
|
|
18678
|
-
* {@link SimpleChanges} object to the `ngOnChanges` hook.
|
|
18679
|
-
*
|
|
18680
|
-
* @see `OnChanges`
|
|
18681
|
-
*
|
|
18682
|
-
* @publicApi
|
|
18683
|
-
*/
|
|
18684
|
-
class SimpleChange {
|
|
18685
|
-
constructor(previousValue, currentValue, firstChange) {
|
|
18686
|
-
this.previousValue = previousValue;
|
|
18687
|
-
this.currentValue = currentValue;
|
|
18688
|
-
this.firstChange = firstChange;
|
|
18689
|
-
}
|
|
18690
|
-
/**
|
|
18691
|
-
* Check whether the new value is the first value assigned.
|
|
18692
|
-
*/
|
|
18693
|
-
isFirstChange() {
|
|
18694
|
-
return this.firstChange;
|
|
18695
|
-
}
|
|
18696
|
-
}
|
|
18697
|
-
|
|
18698
|
-
/**
|
|
18699
|
-
* @license
|
|
18700
|
-
* Copyright Google LLC All Rights Reserved.
|
|
18701
|
-
*
|
|
18702
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
18703
|
-
* found in the LICENSE file at https://angular.io/license
|
|
18704
|
-
*/
|
|
18705
|
-
const PRIVATE_PREFIX = '__ngOnChanges_';
|
|
18706
|
-
/**
|
|
18707
|
-
* The NgOnChangesFeature decorates a component with support for the ngOnChanges
|
|
18708
|
-
* lifecycle hook, so it should be included in any component that implements
|
|
18709
|
-
* that hook.
|
|
18710
|
-
*
|
|
18711
|
-
* If the component or directive uses inheritance, the NgOnChangesFeature MUST
|
|
18712
|
-
* be included as a feature AFTER {@link InheritDefinitionFeature}, otherwise
|
|
18713
|
-
* inherited properties will not be propagated to the ngOnChanges lifecycle
|
|
18714
|
-
* hook.
|
|
18715
|
-
*
|
|
18716
|
-
* Example usage:
|
|
18717
|
-
*
|
|
18718
|
-
* ```
|
|
18719
|
-
* static ɵcmp = defineComponent({
|
|
18720
|
-
* ...
|
|
18721
|
-
* inputs: {name: 'publicName'},
|
|
18722
|
-
* features: [NgOnChangesFeature]
|
|
18723
|
-
* });
|
|
18724
|
-
* ```
|
|
18725
|
-
*
|
|
18726
|
-
* @codeGenApi
|
|
18727
|
-
*/
|
|
18728
|
-
function ɵɵNgOnChangesFeature(definition) {
|
|
18729
|
-
if (definition.type.prototype.ngOnChanges) {
|
|
18730
|
-
definition.setInput = ngOnChangesSetInput;
|
|
18731
|
-
definition.onChanges = wrapOnChanges();
|
|
18732
|
-
}
|
|
18733
|
-
}
|
|
18734
|
-
// This option ensures that the ngOnChanges lifecycle hook will be inherited
|
|
18735
|
-
// from superclasses (in InheritDefinitionFeature).
|
|
18736
|
-
/** @nocollapse */
|
|
18737
|
-
// tslint:disable-next-line:no-toplevel-property-access
|
|
18738
|
-
ɵɵNgOnChangesFeature.ngInherit = true;
|
|
18739
|
-
function wrapOnChanges() {
|
|
18740
|
-
return function wrapOnChangesHook_inPreviousChangesStorage() {
|
|
18741
|
-
const simpleChangesStore = getSimpleChangesStore(this);
|
|
18742
|
-
const current = simpleChangesStore && simpleChangesStore.current;
|
|
18743
|
-
if (current) {
|
|
18744
|
-
const previous = simpleChangesStore.previous;
|
|
18745
|
-
if (previous === EMPTY_OBJ) {
|
|
18746
|
-
simpleChangesStore.previous = current;
|
|
18747
|
-
}
|
|
18748
|
-
else {
|
|
18749
|
-
// New changes are copied to the previous store, so that we don't lose history for inputs
|
|
18750
|
-
// which were not changed this time
|
|
18751
|
-
for (let key in current) {
|
|
18752
|
-
previous[key] = current[key];
|
|
18753
|
-
}
|
|
18754
|
-
}
|
|
18755
|
-
simpleChangesStore.current = null;
|
|
18756
|
-
this.ngOnChanges(current);
|
|
18757
|
-
}
|
|
18758
|
-
};
|
|
18759
|
-
}
|
|
18760
|
-
function ngOnChangesSetInput(instance, value, publicName, privateName) {
|
|
18761
|
-
const simpleChangesStore = getSimpleChangesStore(instance) ||
|
|
18762
|
-
setSimpleChangesStore(instance, { previous: EMPTY_OBJ, current: null });
|
|
18763
|
-
const current = simpleChangesStore.current || (simpleChangesStore.current = {});
|
|
18764
|
-
const previous = simpleChangesStore.previous;
|
|
18765
|
-
const declaredName = this.declaredInputs[publicName];
|
|
18766
|
-
const previousChange = previous[declaredName];
|
|
18767
|
-
current[declaredName] = new SimpleChange(previousChange && previousChange.currentValue, value, previous === EMPTY_OBJ);
|
|
18768
|
-
instance[privateName] = value;
|
|
18769
|
-
}
|
|
18770
|
-
const SIMPLE_CHANGES_STORE = '__ngSimpleChanges__';
|
|
18771
|
-
function getSimpleChangesStore(instance) {
|
|
18772
|
-
return instance[SIMPLE_CHANGES_STORE] || null;
|
|
18773
|
-
}
|
|
18774
|
-
function setSimpleChangesStore(instance, store) {
|
|
18775
|
-
return instance[SIMPLE_CHANGES_STORE] = store;
|
|
18776
|
-
}
|
|
18777
|
-
|
|
18778
18776
|
/**
|
|
18779
18777
|
* @license
|
|
18780
18778
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -18829,9 +18827,9 @@ function resolveProvider$1(provider, tInjectables, lInjectablesBlueprint, isComp
|
|
|
18829
18827
|
let token = isTypeProvider(provider) ? provider : resolveForwardRef(provider.provide);
|
|
18830
18828
|
let providerFactory = providerToFactory(provider);
|
|
18831
18829
|
const tNode = getPreviousOrParentTNode();
|
|
18832
|
-
const beginIndex = tNode.providerIndexes &
|
|
18830
|
+
const beginIndex = tNode.providerIndexes & 1048575 /* ProvidersStartIndexMask */;
|
|
18833
18831
|
const endIndex = tNode.directiveStart;
|
|
18834
|
-
const cptViewProvidersCount = tNode.providerIndexes >>
|
|
18832
|
+
const cptViewProvidersCount = tNode.providerIndexes >> 20 /* CptViewProvidersCountShift */;
|
|
18835
18833
|
if (isTypeProvider(provider) || !provider.multi) {
|
|
18836
18834
|
// Single provider case: the factory is created and pushed immediately
|
|
18837
18835
|
const factory = new NodeInjectorFactory(providerFactory, isViewProvider, ɵɵdirectiveInject);
|
|
@@ -18843,7 +18841,7 @@ function resolveProvider$1(provider, tInjectables, lInjectablesBlueprint, isComp
|
|
|
18843
18841
|
tNode.directiveStart++;
|
|
18844
18842
|
tNode.directiveEnd++;
|
|
18845
18843
|
if (isViewProvider) {
|
|
18846
|
-
tNode.providerIndexes +=
|
|
18844
|
+
tNode.providerIndexes += 1048576 /* CptViewProvidersCountShifter */;
|
|
18847
18845
|
}
|
|
18848
18846
|
lInjectablesBlueprint.push(factory);
|
|
18849
18847
|
lView.push(factory);
|
|
@@ -18893,7 +18891,7 @@ function resolveProvider$1(provider, tInjectables, lInjectablesBlueprint, isComp
|
|
|
18893
18891
|
tNode.directiveStart++;
|
|
18894
18892
|
tNode.directiveEnd++;
|
|
18895
18893
|
if (isViewProvider) {
|
|
18896
|
-
tNode.providerIndexes +=
|
|
18894
|
+
tNode.providerIndexes += 1048576 /* CptViewProvidersCountShifter */;
|
|
18897
18895
|
}
|
|
18898
18896
|
lInjectablesBlueprint.push(factory);
|
|
18899
18897
|
lView.push(factory);
|
|
@@ -19309,7 +19307,7 @@ class Version {
|
|
|
19309
19307
|
/**
|
|
19310
19308
|
* @publicApi
|
|
19311
19309
|
*/
|
|
19312
|
-
const VERSION = new Version('10.0.
|
|
19310
|
+
const VERSION = new Version('10.0.5');
|
|
19313
19311
|
|
|
19314
19312
|
/**
|
|
19315
19313
|
* @license
|
|
@@ -25332,8 +25330,8 @@ const ɵ0$d = () => ({
|
|
|
25332
25330
|
'ɵɵrestoreView': ɵɵrestoreView,
|
|
25333
25331
|
'ɵɵlistener': ɵɵlistener,
|
|
25334
25332
|
'ɵɵprojection': ɵɵprojection,
|
|
25335
|
-
'
|
|
25336
|
-
'
|
|
25333
|
+
'ɵɵsyntheticHostProperty': ɵɵsyntheticHostProperty,
|
|
25334
|
+
'ɵɵsyntheticHostListener': ɵɵsyntheticHostListener,
|
|
25337
25335
|
'ɵɵpipeBind1': ɵɵpipeBind1,
|
|
25338
25336
|
'ɵɵpipeBind2': ɵɵpipeBind2,
|
|
25339
25337
|
'ɵɵpipeBind3': ɵɵpipeBind3,
|
|
@@ -31452,5 +31450,5 @@ if (ngDevMode) {
|
|
|
31452
31450
|
* Generated bundle index. Do not edit.
|
|
31453
31451
|
*/
|
|
31454
31452
|
|
|
31455
|
-
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, _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 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 as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, ivyEnabled as ɵivyEnabled, 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, ɵɵ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, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵupdateSyntheticHostBinding, ɵɵviewQuery };
|
|
31453
|
+
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, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, anchorDef as ɵand, isForwardRef as ɵangular_packages_core_core_a, injectInjectorOnly as ɵangular_packages_core_core_b, instructionState as ɵangular_packages_core_core_ba, getLView as ɵangular_packages_core_core_bb, getPreviousOrParentTNode as ɵangular_packages_core_core_bc, getBindingRoot as ɵangular_packages_core_core_bd, nextContextImpl as ɵangular_packages_core_core_be, pureFunction1Internal as ɵangular_packages_core_core_bg, pureFunction2Internal as ɵangular_packages_core_core_bh, pureFunction3Internal as ɵangular_packages_core_core_bi, pureFunction4Internal as ɵangular_packages_core_core_bj, pureFunctionVInternal as ɵangular_packages_core_core_bk, getUrlSanitizer as ɵangular_packages_core_core_bl, makeParamDecorator as ɵangular_packages_core_core_bm, makePropDecorator as ɵangular_packages_core_core_bn, getClosureSafeProperty as ɵangular_packages_core_core_bo, noSideEffects as ɵangular_packages_core_core_bq, getRootContext as ɵangular_packages_core_core_br, 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, NgOnChangesFeatureImpl as ɵangular_packages_core_core_x, SCHEDULER as ɵangular_packages_core_core_y, injectAttributeImpl 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 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 as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, ivyEnabled as ɵivyEnabled, 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, ɵɵcontentQuery, ɵɵ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, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵviewQuery };
|
|
31456
31454
|
//# sourceMappingURL=core.js.map
|