@angular/core 8.2.1 → 8.2.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 +94 -1
- package/bundles/core-testing.umd.js.map +1 -1
- package/bundles/core-testing.umd.min.js +3 -2
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +394 -41
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +36 -55
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +5 -2
- package/core.metadata.json +1 -1
- package/esm2015/core.externs.js +4 -4
- package/esm2015/src/metadata/directives.js +1 -1
- package/esm2015/src/version.js +1 -1
- package/esm5/src/metadata/directives.js +1 -1
- package/esm5/src/version.js +1 -1
- package/fesm2015/core.js +7323 -42
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +593 -2
- package/fesm2015/testing.js.map +1 -1
- package/fesm5/core.js +295 -40
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +15 -2
- package/fesm5/testing.js.map +1 -1
- package/package.json +1 -1
- package/schematics/migrations/static-queries/strategies/usage_strategy/usage_strategy.js +5 -5
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
- package/schematics/migrations/injectable-pipe/angular/injectable_pipe_visitor.d.ts +0 -30
- package/schematics/migrations/injectable-pipe/angular/injectable_pipe_visitor.js +0 -68
- package/schematics/migrations/injectable-pipe/index.d.ts +0 -14
- package/schematics/migrations/injectable-pipe/index.js +0 -85
- package/schematics/migrations/injectable-pipe/util.d.ts +0 -19
- package/schematics/migrations/injectable-pipe/util.js +0 -44
package/fesm5/core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v8.2.
|
|
2
|
+
* @license Angular v8.2.5
|
|
3
3
|
* (c) 2010-2019 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -886,6 +886,11 @@ function removeFromArray(arr, index) {
|
|
|
886
886
|
* Use of this source code is governed by an MIT-style license that can be
|
|
887
887
|
* found in the LICENSE file at https://angular.io/license
|
|
888
888
|
*/
|
|
889
|
+
function assertNumber(actual, msg) {
|
|
890
|
+
if (typeof actual != 'number') {
|
|
891
|
+
throwError(msg);
|
|
892
|
+
}
|
|
893
|
+
}
|
|
889
894
|
function assertEqual(actual, expected, msg) {
|
|
890
895
|
if (actual != expected) {
|
|
891
896
|
throwError(msg);
|
|
@@ -896,6 +901,11 @@ function assertNotEqual(actual, expected, msg) {
|
|
|
896
901
|
throwError(msg);
|
|
897
902
|
}
|
|
898
903
|
}
|
|
904
|
+
function assertSame(actual, expected, msg) {
|
|
905
|
+
if (actual !== expected) {
|
|
906
|
+
throwError(msg);
|
|
907
|
+
}
|
|
908
|
+
}
|
|
899
909
|
function assertNotSame(actual, expected, msg) {
|
|
900
910
|
if (actual === expected) {
|
|
901
911
|
throwError(msg);
|
|
@@ -911,6 +921,11 @@ function assertGreaterThan(actual, expected, msg) {
|
|
|
911
921
|
throwError(msg);
|
|
912
922
|
}
|
|
913
923
|
}
|
|
924
|
+
function assertNotDefined(actual, msg) {
|
|
925
|
+
if (actual != null) {
|
|
926
|
+
throwError(msg);
|
|
927
|
+
}
|
|
928
|
+
}
|
|
914
929
|
function assertDefined(actual, msg) {
|
|
915
930
|
if (actual == null) {
|
|
916
931
|
throwError(msg);
|
|
@@ -1545,6 +1560,9 @@ var DECLARATION_LCONTAINER = 17;
|
|
|
1545
1560
|
var PREORDER_HOOK_FLAGS = 18;
|
|
1546
1561
|
/** Size of LView's header. Necessary to adjust for it when setting slots. */
|
|
1547
1562
|
var HEADER_OFFSET = 19;
|
|
1563
|
+
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
1564
|
+
// failure based on types.
|
|
1565
|
+
var unusedValueExportToPlacateAjd = 1;
|
|
1548
1566
|
|
|
1549
1567
|
/**
|
|
1550
1568
|
* @license
|
|
@@ -1579,6 +1597,9 @@ var VIEW_REFS = 8;
|
|
|
1579
1597
|
* remove views from the DOM when they are no longer required.
|
|
1580
1598
|
*/
|
|
1581
1599
|
var CONTAINER_HEADER_OFFSET = 9;
|
|
1600
|
+
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
1601
|
+
// failure based on types.
|
|
1602
|
+
var unusedValueExportToPlacateAjd$1 = 1;
|
|
1582
1603
|
|
|
1583
1604
|
/**
|
|
1584
1605
|
* @license
|
|
@@ -1643,6 +1664,11 @@ function assertHasParent(tNode) {
|
|
|
1643
1664
|
assertDefined(tNode, 'previousOrParentTNode should exist!');
|
|
1644
1665
|
assertDefined(tNode.parent, 'previousOrParentTNode should have a parent');
|
|
1645
1666
|
}
|
|
1667
|
+
function assertDataNext(lView, index, arr) {
|
|
1668
|
+
if (arr == null)
|
|
1669
|
+
arr = lView;
|
|
1670
|
+
assertEqual(arr.length, index, "index " + index + " expected to be at the end of arr (length " + arr.length + ")");
|
|
1671
|
+
}
|
|
1646
1672
|
function assertLContainerOrUndefined(value) {
|
|
1647
1673
|
value && assertEqual(isLContainer(value), true, 'Expecting LContainer or undefined or null');
|
|
1648
1674
|
}
|
|
@@ -1792,6 +1818,9 @@ function isFactory(obj) {
|
|
|
1792
1818
|
return obj !== null && typeof obj == 'object' &&
|
|
1793
1819
|
Object.getPrototypeOf(obj) == NodeInjectorFactory.prototype;
|
|
1794
1820
|
}
|
|
1821
|
+
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
1822
|
+
// failure based on types.
|
|
1823
|
+
var unusedValueExportToPlacateAjd$2 = 1;
|
|
1795
1824
|
|
|
1796
1825
|
/**
|
|
1797
1826
|
* @license
|
|
@@ -2194,6 +2223,34 @@ function unwrapRNode(value) {
|
|
|
2194
2223
|
}
|
|
2195
2224
|
return value;
|
|
2196
2225
|
}
|
|
2226
|
+
/**
|
|
2227
|
+
* Returns `LView` or `null` if not found.
|
|
2228
|
+
* @param value wrapped value of `RNode`, `LView`, `LContainer`
|
|
2229
|
+
*/
|
|
2230
|
+
function unwrapLView(value) {
|
|
2231
|
+
while (Array.isArray(value)) {
|
|
2232
|
+
// This check is same as `isLView()` but we don't call at as we don't want to call
|
|
2233
|
+
// `Array.isArray()` twice and give JITer more work for inlining.
|
|
2234
|
+
if (typeof value[TYPE] === 'object')
|
|
2235
|
+
return value;
|
|
2236
|
+
value = value[HOST];
|
|
2237
|
+
}
|
|
2238
|
+
return null;
|
|
2239
|
+
}
|
|
2240
|
+
/**
|
|
2241
|
+
* Returns `LContainer` or `null` if not found.
|
|
2242
|
+
* @param value wrapped value of `RNode`, `LView`, `LContainer`
|
|
2243
|
+
*/
|
|
2244
|
+
function unwrapLContainer(value) {
|
|
2245
|
+
while (Array.isArray(value)) {
|
|
2246
|
+
// This check is same as `isLContainer()` but we don't call at as we don't want to call
|
|
2247
|
+
// `Array.isArray()` twice and give JITer more work for inlining.
|
|
2248
|
+
if (value[TYPE] === true)
|
|
2249
|
+
return value;
|
|
2250
|
+
value = value[HOST];
|
|
2251
|
+
}
|
|
2252
|
+
return null;
|
|
2253
|
+
}
|
|
2197
2254
|
/**
|
|
2198
2255
|
* Retrieves an element value from the provided `viewData`, by unwrapping
|
|
2199
2256
|
* from any containers, component views, or style contexts.
|
|
@@ -2996,6 +3053,9 @@ function getPropValuesStartPosition(context) {
|
|
|
2996
3053
|
return 6 /* MapBindingsBindingsStartPosition */ +
|
|
2997
3054
|
context[4 /* MapBindingsValuesCountPosition */];
|
|
2998
3055
|
}
|
|
3056
|
+
function isMapBased(prop) {
|
|
3057
|
+
return prop === MAP_BASED_ENTRY_PROP_NAME;
|
|
3058
|
+
}
|
|
2999
3059
|
function hasValueChanged(a, b) {
|
|
3000
3060
|
var compareValueA = Array.isArray(a) ? a[0 /* RawValuePosition */] : a;
|
|
3001
3061
|
var compareValueB = Array.isArray(b) ? b[0 /* RawValuePosition */] : b;
|
|
@@ -3105,6 +3165,9 @@ var ɵ0$3 = function (hostElement, rendererType) { return document; };
|
|
|
3105
3165
|
var domRendererFactory3 = {
|
|
3106
3166
|
createRenderer: ɵ0$3
|
|
3107
3167
|
};
|
|
3168
|
+
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
3169
|
+
// failure based on types.
|
|
3170
|
+
var unusedValueExportToPlacateAjd$3 = 1;
|
|
3108
3171
|
|
|
3109
3172
|
/**
|
|
3110
3173
|
* Assigns all attribute values to the provided element via the inferred renderer.
|
|
@@ -3182,6 +3245,15 @@ function setUpAttributes(native, attrs) {
|
|
|
3182
3245
|
// iterated over.
|
|
3183
3246
|
return i;
|
|
3184
3247
|
}
|
|
3248
|
+
function attrsStylingIndexOf(attrs, startIndex) {
|
|
3249
|
+
for (var i = startIndex; i < attrs.length; i++) {
|
|
3250
|
+
var val = attrs[i];
|
|
3251
|
+
if (val === 1 /* Classes */ || val === 2 /* Styles */) {
|
|
3252
|
+
return i;
|
|
3253
|
+
}
|
|
3254
|
+
}
|
|
3255
|
+
return -1;
|
|
3256
|
+
}
|
|
3185
3257
|
/**
|
|
3186
3258
|
* Test whether the given value is a marker that indicates that the following
|
|
3187
3259
|
* attribute values in a `TAttributes` array are only the names of attributes,
|
|
@@ -3892,6 +3964,7 @@ function ɵɵgetInheritedFactory(type) {
|
|
|
3892
3964
|
* Use of this source code is governed by an MIT-style license that can be
|
|
3893
3965
|
* found in the LICENSE file at https://angular.io/license
|
|
3894
3966
|
*/
|
|
3967
|
+
var ERROR_TYPE = 'ngType';
|
|
3895
3968
|
var ERROR_DEBUG_CONTEXT = 'ngDebugContext';
|
|
3896
3969
|
var ERROR_ORIGINAL_ERROR = 'ngOriginalError';
|
|
3897
3970
|
var ERROR_LOGGER = 'ngErrorLogger';
|
|
@@ -3909,6 +3982,9 @@ function wrappedError(message, originalError) {
|
|
|
3909
3982
|
* Use of this source code is governed by an MIT-style license that can be
|
|
3910
3983
|
* found in the LICENSE file at https://angular.io/license
|
|
3911
3984
|
*/
|
|
3985
|
+
function getType(error) {
|
|
3986
|
+
return error[ERROR_TYPE];
|
|
3987
|
+
}
|
|
3912
3988
|
function getDebugContext(error) {
|
|
3913
3989
|
return error[ERROR_DEBUG_CONTEXT];
|
|
3914
3990
|
}
|
|
@@ -4340,6 +4416,8 @@ function isDOMParserAvailable() {
|
|
|
4340
4416
|
* This regular expression was taken from the Closure sanitization library.
|
|
4341
4417
|
*/
|
|
4342
4418
|
var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi;
|
|
4419
|
+
/* A pattern that matches safe srcset values */
|
|
4420
|
+
var SAFE_SRCSET_PATTERN = /^(?:(?:https?|file):|[^&:/?#]*(?:[/?#]|$))/gi;
|
|
4343
4421
|
/** A pattern that matches safe data URLs. Only matches image, video and audio types. */
|
|
4344
4422
|
var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+\/]+=*$/i;
|
|
4345
4423
|
function _sanitizeUrl(url) {
|
|
@@ -5347,6 +5425,8 @@ function throwInvalidProviderError(ngModuleType, providers, provider) {
|
|
|
5347
5425
|
}
|
|
5348
5426
|
|
|
5349
5427
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
5428
|
+
// failure based on types.
|
|
5429
|
+
var unusedValueExportToPlacateAjd$4 = 1;
|
|
5350
5430
|
|
|
5351
5431
|
/**
|
|
5352
5432
|
* @license
|
|
@@ -5355,6 +5435,9 @@ function throwInvalidProviderError(ngModuleType, providers, provider) {
|
|
|
5355
5435
|
* Use of this source code is governed by an MIT-style license that can be
|
|
5356
5436
|
* found in the LICENSE file at https://angular.io/license
|
|
5357
5437
|
*/
|
|
5438
|
+
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
5439
|
+
// failure based on types.
|
|
5440
|
+
var unusedValueExportToPlacateAjd$5 = 1;
|
|
5358
5441
|
|
|
5359
5442
|
/**
|
|
5360
5443
|
* @license
|
|
@@ -5363,6 +5446,7 @@ function throwInvalidProviderError(ngModuleType, providers, provider) {
|
|
|
5363
5446
|
* Use of this source code is governed by an MIT-style license that can be
|
|
5364
5447
|
* found in the LICENSE file at https://angular.io/license
|
|
5365
5448
|
*/
|
|
5449
|
+
var unusedValueToPlacateAjd = unusedValueExportToPlacateAjd$4 + unusedValueExportToPlacateAjd$5;
|
|
5366
5450
|
var NG_TEMPLATE_SELECTOR = 'ng-template';
|
|
5367
5451
|
function isCssClassMatching(nodeClassAttrVal, cssClassToMatch) {
|
|
5368
5452
|
var nodeClassesLen = nodeClassAttrVal.length;
|
|
@@ -6143,6 +6227,7 @@ var setStyle = function (renderer, native, prop, value) {
|
|
|
6143
6227
|
(nativeStyle && nativeStyle.removeProperty(prop));
|
|
6144
6228
|
}
|
|
6145
6229
|
};
|
|
6230
|
+
var ɵ0$4 = setStyle;
|
|
6146
6231
|
/**
|
|
6147
6232
|
* Adds/removes the provided className value to the provided element.
|
|
6148
6233
|
*/
|
|
@@ -6165,6 +6250,7 @@ var setClass = function (renderer, native, className, value) {
|
|
|
6165
6250
|
}
|
|
6166
6251
|
}
|
|
6167
6252
|
};
|
|
6253
|
+
var ɵ1$1 = setClass;
|
|
6168
6254
|
/**
|
|
6169
6255
|
* Iterates over all provided styling entries and renders them on the element.
|
|
6170
6256
|
*
|
|
@@ -6249,6 +6335,9 @@ var ELEMENT_MARKER = {
|
|
|
6249
6335
|
var COMMENT_MARKER = {
|
|
6250
6336
|
marker: 'comment'
|
|
6251
6337
|
};
|
|
6338
|
+
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
6339
|
+
// failure based on types.
|
|
6340
|
+
var unusedValueExportToPlacateAjd$6 = 1;
|
|
6252
6341
|
|
|
6253
6342
|
/**
|
|
6254
6343
|
* @license
|
|
@@ -7465,12 +7554,12 @@ function selectInternal(lView, index) {
|
|
|
7465
7554
|
setSelectedIndex(index);
|
|
7466
7555
|
}
|
|
7467
7556
|
|
|
7468
|
-
var ɵ0$
|
|
7557
|
+
var ɵ0$5 = function () { return Promise.resolve(null); };
|
|
7469
7558
|
/**
|
|
7470
7559
|
* A permanent marker promise which signifies that the current CD tree is
|
|
7471
7560
|
* clean.
|
|
7472
7561
|
*/
|
|
7473
|
-
var _CLEAN_PROMISE = (ɵ0$
|
|
7562
|
+
var _CLEAN_PROMISE = (ɵ0$5)();
|
|
7474
7563
|
/**
|
|
7475
7564
|
* Refreshes the view, executing the following steps in that order:
|
|
7476
7565
|
* triggers init hooks, refreshes dynamic embedded views, triggers content hooks, sets host
|
|
@@ -8872,6 +8961,16 @@ function detectChangesInternal(view, context) {
|
|
|
8872
8961
|
function detectChangesInRootView(lView) {
|
|
8873
8962
|
tickRootContext(lView[CONTEXT]);
|
|
8874
8963
|
}
|
|
8964
|
+
/**
|
|
8965
|
+
* Checks the change detector and its children, and throws if any changes are detected.
|
|
8966
|
+
*
|
|
8967
|
+
* This is used in development mode to verify that running change detection doesn't
|
|
8968
|
+
* introduce other changes.
|
|
8969
|
+
*/
|
|
8970
|
+
function checkNoChanges(component) {
|
|
8971
|
+
var view = getComponentViewByInstance(component);
|
|
8972
|
+
checkNoChangesInternal(view, component);
|
|
8973
|
+
}
|
|
8875
8974
|
function checkNoChangesInternal(view, context) {
|
|
8876
8975
|
setCheckNoChangesMode(true);
|
|
8877
8976
|
try {
|
|
@@ -9043,6 +9142,7 @@ function renderInitialStyling(renderer, native, tNode) {
|
|
|
9043
9142
|
* Use of this source code is governed by an MIT-style license that can be
|
|
9044
9143
|
* found in the LICENSE file at https://angular.io/license
|
|
9045
9144
|
*/
|
|
9145
|
+
var unusedValueToPlacateAjd$1 = unusedValueExportToPlacateAjd$1 + unusedValueExportToPlacateAjd$4 + unusedValueExportToPlacateAjd$5 + unusedValueExportToPlacateAjd$3 + unusedValueExportToPlacateAjd;
|
|
9046
9146
|
function getLContainer(tNode, embeddedView) {
|
|
9047
9147
|
ngDevMode && assertLView(embeddedView);
|
|
9048
9148
|
var container = embeddedView[PARENT];
|
|
@@ -10595,6 +10695,7 @@ var SWITCH_CHANGE_DETECTOR_REF_FACTORY__PRE_R3__ = function () {
|
|
|
10595
10695
|
args[_i] = arguments[_i];
|
|
10596
10696
|
}
|
|
10597
10697
|
};
|
|
10698
|
+
var ɵ0$6 = SWITCH_CHANGE_DETECTOR_REF_FACTORY__PRE_R3__;
|
|
10598
10699
|
var SWITCH_CHANGE_DETECTOR_REF_FACTORY = SWITCH_CHANGE_DETECTOR_REF_FACTORY__PRE_R3__;
|
|
10599
10700
|
|
|
10600
10701
|
/**
|
|
@@ -11016,8 +11117,8 @@ function compileInjectable(type, srcMeta) {
|
|
|
11016
11117
|
},
|
|
11017
11118
|
});
|
|
11018
11119
|
}
|
|
11019
|
-
var ɵ0$
|
|
11020
|
-
var USE_VALUE$1 = getClosureSafeProperty({ provide: String, useValue: ɵ0$
|
|
11120
|
+
var ɵ0$7 = getClosureSafeProperty;
|
|
11121
|
+
var USE_VALUE$1 = getClosureSafeProperty({ provide: String, useValue: ɵ0$7 });
|
|
11021
11122
|
function isUseClassProvider(meta) {
|
|
11022
11123
|
return meta.useClass !== undefined;
|
|
11023
11124
|
}
|
|
@@ -11038,8 +11139,8 @@ function isUseExistingProvider(meta) {
|
|
|
11038
11139
|
* Use of this source code is governed by an MIT-style license that can be
|
|
11039
11140
|
* found in the LICENSE file at https://angular.io/license
|
|
11040
11141
|
*/
|
|
11041
|
-
var ɵ0$
|
|
11042
|
-
var USE_VALUE$2 = getClosureSafeProperty({ provide: String, useValue: ɵ0$
|
|
11142
|
+
var ɵ0$8 = getClosureSafeProperty;
|
|
11143
|
+
var USE_VALUE$2 = getClosureSafeProperty({ provide: String, useValue: ɵ0$8 });
|
|
11043
11144
|
var EMPTY_ARRAY$1 = [];
|
|
11044
11145
|
function convertInjectableProviderToFactory(type, provider) {
|
|
11045
11146
|
if (!provider) {
|
|
@@ -11089,14 +11190,14 @@ function convertInjectableProviderToFactory(type, provider) {
|
|
|
11089
11190
|
* Use of this source code is governed by an MIT-style license that can be
|
|
11090
11191
|
* found in the LICENSE file at https://angular.io/license
|
|
11091
11192
|
*/
|
|
11092
|
-
var ɵ0$
|
|
11193
|
+
var ɵ0$9 = function (type, meta) { return SWITCH_COMPILE_INJECTABLE(type, meta); };
|
|
11093
11194
|
/**
|
|
11094
11195
|
* Injectable decorator and metadata.
|
|
11095
11196
|
*
|
|
11096
11197
|
* @Annotation
|
|
11097
11198
|
* @publicApi
|
|
11098
11199
|
*/
|
|
11099
|
-
var Injectable = makeDecorator('Injectable', undefined, undefined, undefined, ɵ0$
|
|
11200
|
+
var Injectable = makeDecorator('Injectable', undefined, undefined, undefined, ɵ0$9);
|
|
11100
11201
|
/**
|
|
11101
11202
|
* Supports @Injectable() in JIT mode for Render2.
|
|
11102
11203
|
*/
|
|
@@ -11636,11 +11737,13 @@ var Injector = /** @class */ (function () {
|
|
|
11636
11737
|
var IDENT = function (value) {
|
|
11637
11738
|
return value;
|
|
11638
11739
|
};
|
|
11740
|
+
var ɵ0$a = IDENT;
|
|
11639
11741
|
var EMPTY = [];
|
|
11640
11742
|
var CIRCULAR$1 = IDENT;
|
|
11641
11743
|
var MULTI_PROVIDER_FN = function () {
|
|
11642
11744
|
return Array.prototype.slice.call(arguments);
|
|
11643
11745
|
};
|
|
11746
|
+
var ɵ1$2 = MULTI_PROVIDER_FN;
|
|
11644
11747
|
var NO_NEW_LINE$1 = 'ɵ';
|
|
11645
11748
|
var StaticInjector = /** @class */ (function () {
|
|
11646
11749
|
function StaticInjector(providers, parent, source) {
|
|
@@ -11683,7 +11786,9 @@ function resolveProvider(provider) {
|
|
|
11683
11786
|
else if (provider.useFactory) {
|
|
11684
11787
|
fn = provider.useFactory;
|
|
11685
11788
|
}
|
|
11686
|
-
else if (provider.useExisting)
|
|
11789
|
+
else if (provider.useExisting) {
|
|
11790
|
+
// Just use IDENT
|
|
11791
|
+
}
|
|
11687
11792
|
else if (provider.useClass) {
|
|
11688
11793
|
useNew = true;
|
|
11689
11794
|
fn = resolveForwardRef(provider.useClass);
|
|
@@ -12793,7 +12898,7 @@ var Query = /** @class */ (function () {
|
|
|
12793
12898
|
}
|
|
12794
12899
|
return Query;
|
|
12795
12900
|
}());
|
|
12796
|
-
var ɵ0$
|
|
12901
|
+
var ɵ0$b = function (selector, data) {
|
|
12797
12902
|
if (data === void 0) { data = {}; }
|
|
12798
12903
|
return (__assign({ selector: selector, first: false, isViewQuery: false, descendants: false }, data));
|
|
12799
12904
|
};
|
|
@@ -12804,8 +12909,8 @@ var ɵ0$8 = function (selector, data) {
|
|
|
12804
12909
|
* @Annotation
|
|
12805
12910
|
* @publicApi
|
|
12806
12911
|
*/
|
|
12807
|
-
var ContentChildren = makePropDecorator('ContentChildren', ɵ0$
|
|
12808
|
-
var ɵ1$
|
|
12912
|
+
var ContentChildren = makePropDecorator('ContentChildren', ɵ0$b, Query);
|
|
12913
|
+
var ɵ1$3 = function (selector, data) {
|
|
12809
12914
|
if (data === void 0) { data = {}; }
|
|
12810
12915
|
return (__assign({ selector: selector, first: true, isViewQuery: false, descendants: true }, data));
|
|
12811
12916
|
};
|
|
@@ -12817,7 +12922,7 @@ var ɵ1$1 = function (selector, data) {
|
|
|
12817
12922
|
*
|
|
12818
12923
|
* @publicApi
|
|
12819
12924
|
*/
|
|
12820
|
-
var ContentChild = makePropDecorator('ContentChild', ɵ1$
|
|
12925
|
+
var ContentChild = makePropDecorator('ContentChild', ɵ1$3, Query);
|
|
12821
12926
|
var ɵ2 = function (selector, data) {
|
|
12822
12927
|
if (data === void 0) { data = {}; }
|
|
12823
12928
|
return (__assign({ selector: selector, first: false, isViewQuery: true, descendants: true }, data));
|
|
@@ -12927,6 +13032,9 @@ function maybeQueueResolutionOfComponentResources(type, metadata) {
|
|
|
12927
13032
|
componentDefPendingResolution.add(type);
|
|
12928
13033
|
}
|
|
12929
13034
|
}
|
|
13035
|
+
function isComponentDefPendingResolution(type) {
|
|
13036
|
+
return componentDefPendingResolution.has(type);
|
|
13037
|
+
}
|
|
12930
13038
|
function componentNeedsResolution(component) {
|
|
12931
13039
|
return !!((component.templateUrl && !component.hasOwnProperty('template')) ||
|
|
12932
13040
|
component.styleUrls && component.styleUrls.length);
|
|
@@ -12936,6 +13044,11 @@ function clearResolutionOfComponentResourcesQueue() {
|
|
|
12936
13044
|
componentResourceResolutionQueue = new Map();
|
|
12937
13045
|
return old;
|
|
12938
13046
|
}
|
|
13047
|
+
function restoreComponentResolutionQueue(queue) {
|
|
13048
|
+
componentDefPendingResolution.clear();
|
|
13049
|
+
queue.forEach(function (_, type) { return componentDefPendingResolution.add(type); });
|
|
13050
|
+
componentResourceResolutionQueue = queue;
|
|
13051
|
+
}
|
|
12939
13052
|
function isComponentResourceResolutionQueueEmpty() {
|
|
12940
13053
|
return componentResourceResolutionQueue.size === 0;
|
|
12941
13054
|
}
|
|
@@ -13040,6 +13153,44 @@ function getSymbolIterator() {
|
|
|
13040
13153
|
* Use of this source code is governed by an MIT-style license that can be
|
|
13041
13154
|
* found in the LICENSE file at https://angular.io/license
|
|
13042
13155
|
*/
|
|
13156
|
+
function isListLikeIterable(obj) {
|
|
13157
|
+
if (!isJsObject(obj))
|
|
13158
|
+
return false;
|
|
13159
|
+
return Array.isArray(obj) ||
|
|
13160
|
+
(!(obj instanceof Map) && // JS Map are iterables but return entries as [k, v]
|
|
13161
|
+
getSymbolIterator() in obj); // JS Iterable have a Symbol.iterator prop
|
|
13162
|
+
}
|
|
13163
|
+
function areIterablesEqual(a, b, comparator) {
|
|
13164
|
+
var iterator1 = a[getSymbolIterator()]();
|
|
13165
|
+
var iterator2 = b[getSymbolIterator()]();
|
|
13166
|
+
while (true) {
|
|
13167
|
+
var item1 = iterator1.next();
|
|
13168
|
+
var item2 = iterator2.next();
|
|
13169
|
+
if (item1.done && item2.done)
|
|
13170
|
+
return true;
|
|
13171
|
+
if (item1.done || item2.done)
|
|
13172
|
+
return false;
|
|
13173
|
+
if (!comparator(item1.value, item2.value))
|
|
13174
|
+
return false;
|
|
13175
|
+
}
|
|
13176
|
+
}
|
|
13177
|
+
function iterateListLike(obj, fn) {
|
|
13178
|
+
if (Array.isArray(obj)) {
|
|
13179
|
+
for (var i = 0; i < obj.length; i++) {
|
|
13180
|
+
fn(obj[i]);
|
|
13181
|
+
}
|
|
13182
|
+
}
|
|
13183
|
+
else {
|
|
13184
|
+
var iterator = obj[getSymbolIterator()]();
|
|
13185
|
+
var item = void 0;
|
|
13186
|
+
while (!((item = iterator.next()).done)) {
|
|
13187
|
+
fn(item.value);
|
|
13188
|
+
}
|
|
13189
|
+
}
|
|
13190
|
+
}
|
|
13191
|
+
function isJsObject(o) {
|
|
13192
|
+
return o !== null && (typeof o === 'function' || typeof o === 'object');
|
|
13193
|
+
}
|
|
13043
13194
|
|
|
13044
13195
|
/**
|
|
13045
13196
|
* @license
|
|
@@ -13052,6 +13203,23 @@ function getSymbolIterator() {
|
|
|
13052
13203
|
function looseIdentical(a, b) {
|
|
13053
13204
|
return a === b || typeof a === 'number' && typeof b === 'number' && isNaN(a) && isNaN(b);
|
|
13054
13205
|
}
|
|
13206
|
+
function devModeEqual(a, b) {
|
|
13207
|
+
var isListLikeIterableA = isListLikeIterable(a);
|
|
13208
|
+
var isListLikeIterableB = isListLikeIterable(b);
|
|
13209
|
+
if (isListLikeIterableA && isListLikeIterableB) {
|
|
13210
|
+
return areIterablesEqual(a, b, devModeEqual);
|
|
13211
|
+
}
|
|
13212
|
+
else {
|
|
13213
|
+
var isAObject = a && (typeof a === 'object' || typeof a === 'function');
|
|
13214
|
+
var isBObject = b && (typeof b === 'object' || typeof b === 'function');
|
|
13215
|
+
if (!isListLikeIterableA && isAObject && !isListLikeIterableB && isBObject) {
|
|
13216
|
+
return true;
|
|
13217
|
+
}
|
|
13218
|
+
else {
|
|
13219
|
+
return looseIdentical(a, b);
|
|
13220
|
+
}
|
|
13221
|
+
}
|
|
13222
|
+
}
|
|
13055
13223
|
|
|
13056
13224
|
/**
|
|
13057
13225
|
* @license
|
|
@@ -13060,11 +13228,11 @@ function looseIdentical(a, b) {
|
|
|
13060
13228
|
* Use of this source code is governed by an MIT-style license that can be
|
|
13061
13229
|
* found in the LICENSE file at https://angular.io/license
|
|
13062
13230
|
*/
|
|
13063
|
-
function devModeEqual(a, b) {
|
|
13064
|
-
var isListLikeIterableA = isListLikeIterable(a);
|
|
13065
|
-
var isListLikeIterableB = isListLikeIterable(b);
|
|
13231
|
+
function devModeEqual$1(a, b) {
|
|
13232
|
+
var isListLikeIterableA = isListLikeIterable$1(a);
|
|
13233
|
+
var isListLikeIterableB = isListLikeIterable$1(b);
|
|
13066
13234
|
if (isListLikeIterableA && isListLikeIterableB) {
|
|
13067
|
-
return areIterablesEqual(a, b, devModeEqual);
|
|
13235
|
+
return areIterablesEqual$1(a, b, devModeEqual$1);
|
|
13068
13236
|
}
|
|
13069
13237
|
else {
|
|
13070
13238
|
var isAObject = a && (typeof a === 'object' || typeof a === 'function');
|
|
@@ -13112,14 +13280,14 @@ var WrappedValue = /** @class */ (function () {
|
|
|
13112
13280
|
WrappedValue.isWrapped = function (value) { return value instanceof WrappedValue; };
|
|
13113
13281
|
return WrappedValue;
|
|
13114
13282
|
}());
|
|
13115
|
-
function isListLikeIterable(obj) {
|
|
13116
|
-
if (!isJsObject(obj))
|
|
13283
|
+
function isListLikeIterable$1(obj) {
|
|
13284
|
+
if (!isJsObject$1(obj))
|
|
13117
13285
|
return false;
|
|
13118
13286
|
return Array.isArray(obj) ||
|
|
13119
13287
|
(!(obj instanceof Map) && // JS Map are iterables but return entries as [k, v]
|
|
13120
13288
|
getSymbolIterator() in obj); // JS Iterable have a Symbol.iterator prop
|
|
13121
13289
|
}
|
|
13122
|
-
function areIterablesEqual(a, b, comparator) {
|
|
13290
|
+
function areIterablesEqual$1(a, b, comparator) {
|
|
13123
13291
|
var iterator1 = a[getSymbolIterator()]();
|
|
13124
13292
|
var iterator2 = b[getSymbolIterator()]();
|
|
13125
13293
|
while (true) {
|
|
@@ -13133,7 +13301,7 @@ function areIterablesEqual(a, b, comparator) {
|
|
|
13133
13301
|
return false;
|
|
13134
13302
|
}
|
|
13135
13303
|
}
|
|
13136
|
-
function iterateListLike(obj, fn) {
|
|
13304
|
+
function iterateListLike$1(obj, fn) {
|
|
13137
13305
|
if (Array.isArray(obj)) {
|
|
13138
13306
|
for (var i = 0; i < obj.length; i++) {
|
|
13139
13307
|
fn(obj[i]);
|
|
@@ -13147,7 +13315,7 @@ function iterateListLike(obj, fn) {
|
|
|
13147
13315
|
}
|
|
13148
13316
|
}
|
|
13149
13317
|
}
|
|
13150
|
-
function isJsObject(o) {
|
|
13318
|
+
function isJsObject$1(o) {
|
|
13151
13319
|
return o !== null && (typeof o === 'function' || typeof o === 'object');
|
|
13152
13320
|
}
|
|
13153
13321
|
|
|
@@ -13181,7 +13349,7 @@ function bindingUpdated(lView, bindingIndex, value) {
|
|
|
13181
13349
|
// View engine didn't report undefined values as changed on the first checkNoChanges pass
|
|
13182
13350
|
// (before the change detection was run).
|
|
13183
13351
|
var oldValueToCompare = oldValue !== NO_CHANGE ? oldValue : undefined;
|
|
13184
|
-
if (!devModeEqual(oldValueToCompare, value)) {
|
|
13352
|
+
if (!devModeEqual$1(oldValueToCompare, value)) {
|
|
13185
13353
|
throwErrorIfNoChangesMode(oldValue === NO_CHANGE, oldValueToCompare, value);
|
|
13186
13354
|
}
|
|
13187
13355
|
}
|
|
@@ -13893,6 +14061,23 @@ function markDirty(component) {
|
|
|
13893
14061
|
ngDevMode && assertDefined(rootView[CONTEXT], 'rootContext should be defined');
|
|
13894
14062
|
scheduleTick(rootView[CONTEXT], 1 /* DetectChanges */);
|
|
13895
14063
|
}
|
|
14064
|
+
/**
|
|
14065
|
+
* Used to perform change detection on the whole application.
|
|
14066
|
+
*
|
|
14067
|
+
* This is equivalent to `detectChanges`, but invoked on root component. Additionally, `tick`
|
|
14068
|
+
* executes lifecycle hooks and conditionally checks components based on their
|
|
14069
|
+
* `ChangeDetectionStrategy` and dirtiness.
|
|
14070
|
+
*
|
|
14071
|
+
* The preferred way to trigger change detection is to call `markDirty`. `markDirty` internally
|
|
14072
|
+
* schedules `tick` using a scheduler in order to coalesce multiple `markDirty` calls into a
|
|
14073
|
+
* single change detection run. By default, the scheduler is `requestAnimationFrame`, but can
|
|
14074
|
+
* be changed when calling `renderComponent` and providing the `scheduler` option.
|
|
14075
|
+
*/
|
|
14076
|
+
function tick(component) {
|
|
14077
|
+
var rootView = getRootView(component);
|
|
14078
|
+
var rootContext = rootView[CONTEXT];
|
|
14079
|
+
tickRootContext(rootContext);
|
|
14080
|
+
}
|
|
13896
14081
|
|
|
13897
14082
|
/**
|
|
13898
14083
|
* @license
|
|
@@ -17045,6 +17230,20 @@ function getLocalRefs(target) {
|
|
|
17045
17230
|
function getHostElement(directive) {
|
|
17046
17231
|
return getLContext(directive).native;
|
|
17047
17232
|
}
|
|
17233
|
+
/**
|
|
17234
|
+
* Retrieves the rendered text for a given component.
|
|
17235
|
+
*
|
|
17236
|
+
* This function retrieves the host element of a component and
|
|
17237
|
+
* and then returns the `textContent` for that element. This implies
|
|
17238
|
+
* that the text returned will include re-projected content of
|
|
17239
|
+
* the component as well.
|
|
17240
|
+
*
|
|
17241
|
+
* @param component The component to return the content text for.
|
|
17242
|
+
*/
|
|
17243
|
+
function getRenderedText(component) {
|
|
17244
|
+
var hostElement = getHostElement(component);
|
|
17245
|
+
return hostElement.textContent || '';
|
|
17246
|
+
}
|
|
17048
17247
|
function loadLContextFromNode(node) {
|
|
17049
17248
|
if (!(node instanceof Node))
|
|
17050
17249
|
throw new Error('Expecting instance of DOM Node');
|
|
@@ -17195,6 +17394,13 @@ function publishGlobalUtil(name, fn) {
|
|
|
17195
17394
|
* Use of this source code is governed by an MIT-style license that can be
|
|
17196
17395
|
* found in the LICENSE file at https://angular.io/license
|
|
17197
17396
|
*/
|
|
17397
|
+
var ɵ0$c = function (token, notFoundValue) {
|
|
17398
|
+
throw new Error('NullInjector: Not found: ' + stringifyForError(token));
|
|
17399
|
+
};
|
|
17400
|
+
// TODO: A hack to not pull in the NullInjector from @angular/core.
|
|
17401
|
+
var NULL_INJECTOR$1 = {
|
|
17402
|
+
get: ɵ0$c
|
|
17403
|
+
};
|
|
17198
17404
|
/**
|
|
17199
17405
|
* Bootstraps a Component into an existing host element and returns an instance
|
|
17200
17406
|
* of the component.
|
|
@@ -17390,6 +17596,7 @@ var SimpleChange = /** @class */ (function () {
|
|
|
17390
17596
|
* Use of this source code is governed by an MIT-style license that can be
|
|
17391
17597
|
* found in the LICENSE file at https://angular.io/license
|
|
17392
17598
|
*/
|
|
17599
|
+
var PRIVATE_PREFIX = '__ngOnChanges_';
|
|
17393
17600
|
/**
|
|
17394
17601
|
* The NgOnChangesFeature decorates a component with support for the ngOnChanges
|
|
17395
17602
|
* lifecycle hook, so it should be included in any component that implements
|
|
@@ -17955,6 +18162,9 @@ function noComponentFactoryError(component) {
|
|
|
17955
18162
|
return error;
|
|
17956
18163
|
}
|
|
17957
18164
|
var ERROR_COMPONENT = 'ngComponent';
|
|
18165
|
+
function getComponent$1(error) {
|
|
18166
|
+
return error[ERROR_COMPONENT];
|
|
18167
|
+
}
|
|
17958
18168
|
var _NullComponentFactoryResolver = /** @class */ (function () {
|
|
17959
18169
|
function _NullComponentFactoryResolver() {
|
|
17960
18170
|
}
|
|
@@ -18209,7 +18419,7 @@ var Version = /** @class */ (function () {
|
|
|
18209
18419
|
/**
|
|
18210
18420
|
* @publicApi
|
|
18211
18421
|
*/
|
|
18212
|
-
var VERSION = new Version('8.2.
|
|
18422
|
+
var VERSION = new Version('8.2.5');
|
|
18213
18423
|
|
|
18214
18424
|
/**
|
|
18215
18425
|
* @license
|
|
@@ -18221,13 +18431,14 @@ var VERSION = new Version('8.2.1');
|
|
|
18221
18431
|
var DefaultIterableDifferFactory = /** @class */ (function () {
|
|
18222
18432
|
function DefaultIterableDifferFactory() {
|
|
18223
18433
|
}
|
|
18224
|
-
DefaultIterableDifferFactory.prototype.supports = function (obj) { return isListLikeIterable(obj); };
|
|
18434
|
+
DefaultIterableDifferFactory.prototype.supports = function (obj) { return isListLikeIterable$1(obj); };
|
|
18225
18435
|
DefaultIterableDifferFactory.prototype.create = function (trackByFn) {
|
|
18226
18436
|
return new DefaultIterableDiffer(trackByFn);
|
|
18227
18437
|
};
|
|
18228
18438
|
return DefaultIterableDifferFactory;
|
|
18229
18439
|
}());
|
|
18230
18440
|
var trackByIdentity = function (index, item) { return item; };
|
|
18441
|
+
var ɵ0$d = trackByIdentity;
|
|
18231
18442
|
/**
|
|
18232
18443
|
* @deprecated v4.0.0 - Should not be part of public API.
|
|
18233
18444
|
* @publicApi
|
|
@@ -18342,7 +18553,7 @@ var DefaultIterableDiffer = /** @class */ (function () {
|
|
|
18342
18553
|
DefaultIterableDiffer.prototype.diff = function (collection) {
|
|
18343
18554
|
if (collection == null)
|
|
18344
18555
|
collection = [];
|
|
18345
|
-
if (!isListLikeIterable(collection)) {
|
|
18556
|
+
if (!isListLikeIterable$1(collection)) {
|
|
18346
18557
|
throw new Error("Error trying to diff '" + stringify(collection) + "'. Only arrays and iterables are allowed");
|
|
18347
18558
|
}
|
|
18348
18559
|
if (this.check(collection)) {
|
|
@@ -18383,7 +18594,7 @@ var DefaultIterableDiffer = /** @class */ (function () {
|
|
|
18383
18594
|
}
|
|
18384
18595
|
else {
|
|
18385
18596
|
index = 0;
|
|
18386
|
-
iterateListLike(collection, function (item) {
|
|
18597
|
+
iterateListLike$1(collection, function (item) {
|
|
18387
18598
|
itemTrackBy = _this._trackByFn(index, item);
|
|
18388
18599
|
if (record === null || !looseIdentical(record.trackById, itemTrackBy)) {
|
|
18389
18600
|
record = _this._mismatch(record, item, itemTrackBy, index);
|
|
@@ -18895,7 +19106,7 @@ function getPreviousIndex(item, addRemoveOffset, moveOffsets) {
|
|
|
18895
19106
|
var DefaultKeyValueDifferFactory = /** @class */ (function () {
|
|
18896
19107
|
function DefaultKeyValueDifferFactory() {
|
|
18897
19108
|
}
|
|
18898
|
-
DefaultKeyValueDifferFactory.prototype.supports = function (obj) { return obj instanceof Map || isJsObject(obj); };
|
|
19109
|
+
DefaultKeyValueDifferFactory.prototype.supports = function (obj) { return obj instanceof Map || isJsObject$1(obj); };
|
|
18899
19110
|
DefaultKeyValueDifferFactory.prototype.create = function () { return new DefaultKeyValueDiffer(); };
|
|
18900
19111
|
return DefaultKeyValueDifferFactory;
|
|
18901
19112
|
}());
|
|
@@ -18955,7 +19166,7 @@ var DefaultKeyValueDiffer = /** @class */ (function () {
|
|
|
18955
19166
|
if (!map) {
|
|
18956
19167
|
map = new Map();
|
|
18957
19168
|
}
|
|
18958
|
-
else if (!(map instanceof Map || isJsObject(map))) {
|
|
19169
|
+
else if (!(map instanceof Map || isJsObject$1(map))) {
|
|
18959
19170
|
throw new Error("Error trying to diff '" + stringify(map) + "'. Only maps and objects are allowed");
|
|
18960
19171
|
}
|
|
18961
19172
|
return this.check(map) ? this : null;
|
|
@@ -19468,6 +19679,22 @@ function shouldCallLifecycleInitHook(view, initState, index) {
|
|
|
19468
19679
|
}
|
|
19469
19680
|
return false;
|
|
19470
19681
|
}
|
|
19682
|
+
/**
|
|
19683
|
+
* Node instance data.
|
|
19684
|
+
*
|
|
19685
|
+
* We have a separate type per NodeType to save memory
|
|
19686
|
+
* (TextData | ElementData | ProviderData | PureExpressionData | QueryList<any>)
|
|
19687
|
+
*
|
|
19688
|
+
* To keep our code monomorphic,
|
|
19689
|
+
* we prohibit using `NodeData` directly but enforce the use of accessors (`asElementData`, ...).
|
|
19690
|
+
* This way, no usage site can get a `NodeData` from view.nodes and then use it for different
|
|
19691
|
+
* purposes.
|
|
19692
|
+
*/
|
|
19693
|
+
var NodeData = /** @class */ (function () {
|
|
19694
|
+
function NodeData() {
|
|
19695
|
+
}
|
|
19696
|
+
return NodeData;
|
|
19697
|
+
}());
|
|
19471
19698
|
/**
|
|
19472
19699
|
* Accessor for view.nodes, enforcing that every usage site stays monomorphic.
|
|
19473
19700
|
*/
|
|
@@ -19600,7 +19827,7 @@ function checkAndUpdateBinding(view, def, bindingIdx, value) {
|
|
|
19600
19827
|
}
|
|
19601
19828
|
function checkBindingNoChanges(view, def, bindingIdx, value) {
|
|
19602
19829
|
var oldValue = view.oldValues[def.bindingIndex + bindingIdx];
|
|
19603
|
-
if ((view.state & 1 /* BeforeFirstCheck */) || !devModeEqual(oldValue, value)) {
|
|
19830
|
+
if ((view.state & 1 /* BeforeFirstCheck */) || !devModeEqual$1(oldValue, value)) {
|
|
19604
19831
|
var bindingName = def.bindings[bindingIdx].name;
|
|
19605
19832
|
throw expressionChangedAfterItHasBeenCheckedError(Services.createDebugContext(view, def.nodeIndex), bindingName + ": " + oldValue, bindingName + ": " + value, (view.state & 1 /* BeforeFirstCheck */) !== 0);
|
|
19606
19833
|
}
|
|
@@ -21354,6 +21581,16 @@ var ComponentFactory$1 = /** @class */ (function (_super) {
|
|
|
21354
21581
|
return ComponentFactory;
|
|
21355
21582
|
}(ComponentFactory));
|
|
21356
21583
|
var componentFactoryResolver = new ComponentFactoryResolver$1();
|
|
21584
|
+
/**
|
|
21585
|
+
* Creates a ComponentFactoryResolver and stores it on the injector. Or, if the
|
|
21586
|
+
* ComponentFactoryResolver
|
|
21587
|
+
* already exists, retrieves the existing ComponentFactoryResolver.
|
|
21588
|
+
*
|
|
21589
|
+
* @returns The ComponentFactoryResolver instance to use
|
|
21590
|
+
*/
|
|
21591
|
+
function injectComponentFactoryResolver() {
|
|
21592
|
+
return componentFactoryResolver;
|
|
21593
|
+
}
|
|
21357
21594
|
/**
|
|
21358
21595
|
* Represents an instance of a Component created via a {@link ComponentFactory}.
|
|
21359
21596
|
*
|
|
@@ -22791,6 +23028,9 @@ function registerNgModuleType(ngModuleType) {
|
|
|
22791
23028
|
imports.forEach(function (i) { return registerNgModuleType(i); });
|
|
22792
23029
|
}
|
|
22793
23030
|
}
|
|
23031
|
+
function clearModulesForTest() {
|
|
23032
|
+
modules.clear();
|
|
23033
|
+
}
|
|
22794
23034
|
function getRegisteredNgModuleType(id) {
|
|
22795
23035
|
return modules.get(id);
|
|
22796
23036
|
}
|
|
@@ -23651,6 +23891,9 @@ var QueryList = /** @class */ (function () {
|
|
|
23651
23891
|
* Use of this source code is governed by an MIT-style license that can be
|
|
23652
23892
|
* found in the LICENSE file at https://angular.io/license
|
|
23653
23893
|
*/
|
|
23894
|
+
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
23895
|
+
// failure based on types.
|
|
23896
|
+
var unusedValueExportToPlacateAjd$7 = 1;
|
|
23654
23897
|
|
|
23655
23898
|
/**
|
|
23656
23899
|
* @license
|
|
@@ -23659,6 +23902,9 @@ var QueryList = /** @class */ (function () {
|
|
|
23659
23902
|
* Use of this source code is governed by an MIT-style license that can be
|
|
23660
23903
|
* found in the LICENSE file at https://angular.io/license
|
|
23661
23904
|
*/
|
|
23905
|
+
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
23906
|
+
// failure based on types.
|
|
23907
|
+
var unusedValueExportToPlacateAjd$8 = 1;
|
|
23662
23908
|
|
|
23663
23909
|
/**
|
|
23664
23910
|
* @license
|
|
@@ -23667,6 +23913,7 @@ var QueryList = /** @class */ (function () {
|
|
|
23667
23913
|
* Use of this source code is governed by an MIT-style license that can be
|
|
23668
23914
|
* found in the LICENSE file at https://angular.io/license
|
|
23669
23915
|
*/
|
|
23916
|
+
var unusedValueToPlacateAjd$2 = unusedValueExportToPlacateAjd$7 + unusedValueExportToPlacateAjd$2 + unusedValueExportToPlacateAjd$4 + unusedValueExportToPlacateAjd$8;
|
|
23670
23917
|
var LQuery_ = /** @class */ (function () {
|
|
23671
23918
|
function LQuery_(queryList) {
|
|
23672
23919
|
this.queryList = queryList;
|
|
@@ -24229,7 +24476,7 @@ function ɵɵinjectPipeChangeDetectorRef(flags) {
|
|
|
24229
24476
|
* Use of this source code is governed by an MIT-style license that can be
|
|
24230
24477
|
* found in the LICENSE file at https://angular.io/license
|
|
24231
24478
|
*/
|
|
24232
|
-
var ɵ0$
|
|
24479
|
+
var ɵ0$e = function () { return ({
|
|
24233
24480
|
'ɵɵattribute': ɵɵattribute,
|
|
24234
24481
|
'ɵɵattributeInterpolate1': ɵɵattributeInterpolate1,
|
|
24235
24482
|
'ɵɵattributeInterpolate2': ɵɵattributeInterpolate2,
|
|
@@ -24385,7 +24632,7 @@ var ɵ0$9 = function () { return ({
|
|
|
24385
24632
|
*
|
|
24386
24633
|
* This should be kept up to date with the public exports of @angular/core.
|
|
24387
24634
|
*/
|
|
24388
|
-
var angularCoreEnv = (ɵ0$
|
|
24635
|
+
var angularCoreEnv = (ɵ0$e)();
|
|
24389
24636
|
|
|
24390
24637
|
/**
|
|
24391
24638
|
* @license
|
|
@@ -25117,16 +25364,16 @@ function compilePipe(type, meta) {
|
|
|
25117
25364
|
* Use of this source code is governed by an MIT-style license that can be
|
|
25118
25365
|
* found in the LICENSE file at https://angular.io/license
|
|
25119
25366
|
*/
|
|
25120
|
-
var ɵ0$
|
|
25367
|
+
var ɵ0$f = function (dir) {
|
|
25121
25368
|
if (dir === void 0) { dir = {}; }
|
|
25122
25369
|
return dir;
|
|
25123
|
-
}, ɵ1$
|
|
25370
|
+
}, ɵ1$4 = function (type, meta) { return SWITCH_COMPILE_DIRECTIVE(type, meta); };
|
|
25124
25371
|
/**
|
|
25125
25372
|
* Type of the Directive metadata.
|
|
25126
25373
|
*
|
|
25127
25374
|
* @publicApi
|
|
25128
25375
|
*/
|
|
25129
|
-
var Directive = makeDecorator('Directive', ɵ0$
|
|
25376
|
+
var Directive = makeDecorator('Directive', ɵ0$f, undefined, undefined, ɵ1$4);
|
|
25130
25377
|
var ɵ2$1 = function (c) {
|
|
25131
25378
|
if (c === void 0) { c = {}; }
|
|
25132
25379
|
return (__assign({ changeDetection: ChangeDetectionStrategy.Default }, c));
|
|
@@ -25214,7 +25461,7 @@ var SWITCH_COMPILE_PIPE = SWITCH_COMPILE_PIPE__PRE_R3__;
|
|
|
25214
25461
|
* Use of this source code is governed by an MIT-style license that can be
|
|
25215
25462
|
* found in the LICENSE file at https://angular.io/license
|
|
25216
25463
|
*/
|
|
25217
|
-
var ɵ0$
|
|
25464
|
+
var ɵ0$g = function (ngModule) { return ngModule; }, ɵ1$5 =
|
|
25218
25465
|
/**
|
|
25219
25466
|
* Decorator that marks the following class as an NgModule, and supplies
|
|
25220
25467
|
* configuration metadata for it.
|
|
@@ -25231,7 +25478,7 @@ function (type, meta) { return SWITCH_COMPILE_NGMODULE(type, meta); };
|
|
|
25231
25478
|
* @Annotation
|
|
25232
25479
|
* @publicApi
|
|
25233
25480
|
*/
|
|
25234
|
-
var NgModule = makeDecorator('NgModule', ɵ0$
|
|
25481
|
+
var NgModule = makeDecorator('NgModule', ɵ0$g, undefined, undefined, ɵ1$5);
|
|
25235
25482
|
function preR3NgModuleCompile(moduleType, metadata) {
|
|
25236
25483
|
var imports = (metadata && metadata.imports) || [];
|
|
25237
25484
|
if (metadata && metadata.exports) {
|
|
@@ -26502,6 +26749,11 @@ var PlatformRef = /** @class */ (function () {
|
|
|
26502
26749
|
if (!exceptionHandler) {
|
|
26503
26750
|
throw new Error('No ErrorHandler. Is platform module (BrowserModule) included?');
|
|
26504
26751
|
}
|
|
26752
|
+
// If the `LOCALE_ID` provider is defined at bootstrap we set the value for runtime i18n (ivy)
|
|
26753
|
+
if (ivyEnabled) {
|
|
26754
|
+
var localeId = moduleRef.injector.get(LOCALE_ID$1, DEFAULT_LOCALE_ID);
|
|
26755
|
+
setLocaleId(localeId || DEFAULT_LOCALE_ID);
|
|
26756
|
+
}
|
|
26505
26757
|
moduleRef.onDestroy(function () { return remove(_this._modules, moduleRef); });
|
|
26506
26758
|
ngZone.runOutsideAngular(function () { return ngZone.onError.subscribe({ next: function (error) { exceptionHandler.handleError(error); } }); });
|
|
26507
26759
|
return _callAndReportToErrorHandler(exceptionHandler, ngZone, function () {
|
|
@@ -27051,7 +27303,7 @@ var SystemJsNgModuleLoader = /** @class */ (function () {
|
|
|
27051
27303
|
this._config = config || DEFAULT_CONFIG;
|
|
27052
27304
|
}
|
|
27053
27305
|
SystemJsNgModuleLoader.prototype.load = function (path) {
|
|
27054
|
-
var legacyOfflineMode = this._compiler instanceof Compiler;
|
|
27306
|
+
var legacyOfflineMode = !ivyEnabled && this._compiler instanceof Compiler;
|
|
27055
27307
|
return legacyOfflineMode ? this.loadFactory(path) : this.loadAndCompile(path);
|
|
27056
27308
|
};
|
|
27057
27309
|
SystemJsNgModuleLoader.prototype.loadAndCompile = function (path) {
|
|
@@ -27872,6 +28124,9 @@ function getDebugNode__POST_R3__(nativeNode) {
|
|
|
27872
28124
|
* @publicApi
|
|
27873
28125
|
*/
|
|
27874
28126
|
var getDebugNode = getDebugNode__PRE_R3__;
|
|
28127
|
+
function getAllDebugNodes() {
|
|
28128
|
+
return Array.from(_nativeNodeToDebugNode.values());
|
|
28129
|
+
}
|
|
27875
28130
|
function indexDebugNode(node) {
|
|
27876
28131
|
_nativeNodeToDebugNode.set(node.nativeNode, node);
|
|
27877
28132
|
}
|
|
@@ -30363,5 +30618,5 @@ var NgModuleFactory_ = /** @class */ (function (_super) {
|
|
|
30363
30618
|
* Generated bundle index. Do not edit.
|
|
30364
30619
|
*/
|
|
30365
30620
|
|
|
30366
|
-
export { APPLICATION_MODULE_PROVIDERS as ɵangular_packages_core_core_q, _iterableDiffersFactory as ɵangular_packages_core_core_n, _keyValueDiffersFactory as ɵangular_packages_core_core_o, _localeFactory as ɵangular_packages_core_core_p, zoneSchedulerFactory as ɵangular_packages_core_core_r, _appIdRandomProviderFactory as ɵangular_packages_core_core_f, DefaultIterableDifferFactory as ɵangular_packages_core_core_l, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_m, DebugElement__PRE_R3__ as ɵangular_packages_core_core_k, DebugNode__PRE_R3__ as ɵangular_packages_core_core_j, NullInjector as ɵangular_packages_core_core_b, injectInjectorOnly as ɵangular_packages_core_core_a, ReflectiveInjector_ as ɵangular_packages_core_core_c, ReflectiveDependency as ɵangular_packages_core_core_d, resolveReflectiveProviders as ɵangular_packages_core_core_e, getModuleFactory__PRE_R3__ as ɵangular_packages_core_core_i, wtfEnabled as ɵangular_packages_core_core_s, createScope as ɵangular_packages_core_core_u, detectWTF as ɵangular_packages_core_core_t, endTimeRange as ɵangular_packages_core_core_x, leave as ɵangular_packages_core_core_v, startTimeRange as ɵangular_packages_core_core_w, SCHEDULER as ɵangular_packages_core_core_ba, injectAttributeImpl as ɵangular_packages_core_core_bb, getLView as ɵangular_packages_core_core_bc, getPreviousOrParentTNode as ɵangular_packages_core_core_bd, nextContextImpl as ɵangular_packages_core_core_be, getRootContext as ɵangular_packages_core_core_bm, loadInternal as ɵangular_packages_core_core_bl, createElementRef as ɵangular_packages_core_core_g, createTemplateRef as ɵangular_packages_core_core_h, getUrlSanitizer as ɵangular_packages_core_core_bg, noSideEffects as ɵangular_packages_core_core_bk, makeParamDecorator as ɵangular_packages_core_core_bh, makePropDecorator as ɵangular_packages_core_core_bi, getClosureSafeProperty as ɵangular_packages_core_core_bn, _def as ɵangular_packages_core_core_y, DebugContext as ɵangular_packages_core_core_z, createPlatform, assertPlatform, destroyPlatform, getPlatform, PlatformRef, ApplicationRef, createPlatformFactory, NgProbeToken, enableProdMode, isDevMode, APP_ID, PACKAGE_ROOT_URL, PLATFORM_INITIALIZER, PLATFORM_ID, APP_BOOTSTRAP_LISTENER, APP_INITIALIZER, ApplicationInitStatus, DebugElement, DebugEventListener, DebugNode, asNativeElements, getDebugNode, Testability, TestabilityRegistry, setTestabilityGetter, TRANSLATIONS$1 as TRANSLATIONS, TRANSLATIONS_FORMAT, LOCALE_ID$1 as LOCALE_ID, MissingTranslationStrategy, ApplicationModule, wtfCreateScope, wtfLeave, wtfStartTimeRange, wtfEndTimeRange, Type, EventEmitter, ErrorHandler, Sanitizer, SecurityContext, Attribute, ANALYZE_FOR_ENTRY_COMPONENTS, ContentChild, ContentChildren, Query, ViewChild, ViewChildren, Component, Directive, HostBinding, HostListener, Input, Output, Pipe, NgModule, CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA, ViewEncapsulation, Version, VERSION, InjectFlags, ɵɵdefineInjectable, defineInjectable, ɵɵdefineInjector, forwardRef, resolveForwardRef, Injectable, Injector, ɵɵinject, inject, INJECTOR, ReflectiveInjector, ResolvedReflectiveFactory, ReflectiveKey, InjectionToken, Inject, Optional, Self, SkipSelf, Host, ɵ0, ɵ1, NgZone, NoopNgZone as ɵNoopNgZone, RenderComponentType, Renderer, Renderer2, RendererFactory2, RendererStyleFlags2, RootRenderer, COMPILER_OPTIONS, Compiler, CompilerFactory, ModuleWithComponentFactories, ComponentFactory, ComponentFactory as ɵComponentFactory, ComponentRef, ComponentFactoryResolver, ElementRef, NgModuleFactory, NgModuleRef, NgModuleFactoryLoader, getModuleFactory, QueryList, SystemJsNgModuleLoader, SystemJsNgModuleLoaderConfig, TemplateRef, ViewContainerRef, EmbeddedViewRef, ViewRef$1 as ViewRef, ChangeDetectionStrategy, ChangeDetectorRef, DefaultIterableDiffer, IterableDiffers, KeyValueDiffers, SimpleChange, WrappedValue, platformCore, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, devModeEqual as ɵdevModeEqual, isListLikeIterable as ɵisListLikeIterable, ChangeDetectorStatus as ɵChangeDetectorStatus, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, Console as ɵConsole, setCurrentInjector as ɵsetCurrentInjector, getInjectableDef as ɵgetInjectableDef, APP_ROOT as ɵAPP_ROOT, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, ivyEnabled as ɵivyEnabled, CodegenComponentFactoryResolver as ɵCodegenComponentFactoryResolver, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, resolveComponentResources as ɵresolveComponentResources, ReflectionCapabilities as ɵReflectionCapabilities, RenderDebugInfo as ɵRenderDebugInfo, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeStyle as ɵ_sanitizeStyle, _sanitizeUrl as ɵ_sanitizeUrl, _global as ɵglobal, looseIdentical as ɵlooseIdentical, stringify as ɵstringify, makeDecorator as ɵmakeDecorator, isObservable as ɵisObservable, isPromise as ɵisPromise, clearOverrides as ɵclearOverrides, initServicesIfNeeded as ɵinitServicesIfNeeded, overrideComponentView as ɵoverrideComponentView, overrideProvider as ɵoverrideProvider, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, getLocalePluralCase as ɵgetLocalePluralCase, findLocaleData as ɵfindLocaleData, LOCALE_DATA as ɵLOCALE_DATA, LocaleDataIndex as ɵLocaleDataIndex, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵdefineBase, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefinePipe, ɵɵdefineNgModule, detectChanges as ɵdetectChanges, renderComponent as ɵrenderComponent, ComponentFactory$1 as ɵRender3ComponentFactory, ComponentRef$1 as ɵRender3ComponentRef, ɵɵdirectiveInject, ɵɵinjectAttribute, ɵɵinjectPipeChangeDetectorRef, ɵɵgetFactoryOf, ɵɵgetInheritedFactory, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵtemplateRefExtractor, ɵɵProvidersFeature, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, LifecycleHooksFeature as ɵLifecycleHooksFeature, NgModuleRef$1 as ɵRender3NgModuleRef, markDirty as ɵmarkDirty, NgModuleFactory$1 as ɵNgModuleFactory, NO_CHANGE as ɵNO_CHANGE, ɵɵcontainer, ɵɵnextContext, ɵɵelementStart, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵelement, ɵɵlistener, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵembeddedViewStart, ɵɵprojection, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵgetCurrentView, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, ɵɵrestoreView, ɵɵcontainerRefreshStart, ɵɵcontainerRefreshEnd, ɵɵqueryRefresh, ɵɵviewQuery, ɵɵstaticViewQuery, ɵɵstaticContentQuery, ɵɵloadViewQuery, ɵɵcontentQuery, ɵɵloadContentQuery, ɵɵelementEnd, ɵɵhostProperty, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵupdateSyntheticHostBinding, ɵɵcomponentHostSyntheticListener, ɵɵprojectionDef, ɵɵreference, ɵɵenableBindings, ɵɵdisableBindings, ɵɵallocHostVars, ɵɵelementContainerStart, ɵɵelementContainerEnd, ɵɵelementContainer, ɵɵstyling, ɵɵstyleMap, ɵɵstyleSanitizer, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵstylingApply, ɵɵclassProp, ɵɵelementHostAttrs, ɵɵselect, ɵɵtextBinding, ɵɵtemplate, ɵɵembeddedViewEnd, store as ɵstore, ɵɵload, ɵɵpipe, whenRendered as ɵwhenRendered, ɵɵi18n, ɵɵi18nAttributes, ɵɵi18nExp, ɵɵi18nStart, ɵɵi18nEnd, ɵɵi18nApply, ɵɵi18nPostprocess, i18nConfigureLocalize as ɵi18nConfigureLocalize, ɵɵi18nLocalize, setLocaleId as ɵsetLocaleId, setClassMetadata as ɵsetClassMetadata, ɵɵresolveWindow, ɵɵresolveDocument, ɵɵresolveBody, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, patchComponentDefWithScope as ɵpatchComponentDefWithScope, resetCompiledComponents as ɵresetCompiledComponents, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, transitiveScopesFor as ɵtransitiveScopesFor, compilePipe as ɵcompilePipe, ɵɵsanitizeHtml, ɵɵsanitizeStyle, ɵɵdefaultStyleSanitizer, ɵɵsanitizeScript, ɵɵsanitizeUrl, ɵɵsanitizeResourceUrl, ɵɵsanitizeUrlOrResourceUrl, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, getLContext as ɵgetLContext, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_COMPONENT_DEF as ɵNG_COMPONENT_DEF, NG_DIRECTIVE_DEF as ɵNG_DIRECTIVE_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_MODULE_DEF as ɵNG_MODULE_DEF, NG_BASE_DEF as ɵNG_BASE_DEF, NG_INJECTABLE_DEF as ɵNG_INJECTABLE_DEF, NG_INJECTOR_DEF as ɵNG_INJECTOR_DEF, compileNgModuleFactory__POST_R3__ as ɵcompileNgModuleFactory__POST_R3__, isBoundToModule__POST_R3__ as ɵisBoundToModule__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_PIPE__POST_R3__ as ɵSWITCH_COMPILE_PIPE__POST_R3__, SWITCH_COMPILE_NGMODULE__POST_R3__ as ɵSWITCH_COMPILE_NGMODULE__POST_R3__, getDebugNode__POST_R3__ as ɵgetDebugNode__POST_R3__, SWITCH_COMPILE_INJECTABLE__POST_R3__ as ɵSWITCH_COMPILE_INJECTABLE__POST_R3__, SWITCH_IVY_ENABLED__POST_R3__ as ɵSWITCH_IVY_ENABLED__POST_R3__, SWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__ as ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__, Compiler_compileModuleSync__POST_R3__ as ɵCompiler_compileModuleSync__POST_R3__, Compiler_compileModuleAsync__POST_R3__ as ɵCompiler_compileModuleAsync__POST_R3__, Compiler_compileModuleAndAllComponentsSync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsSync__POST_R3__, Compiler_compileModuleAndAllComponentsAsync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsAsync__POST_R3__, SWITCH_ELEMENT_REF_FACTORY__POST_R3__ as ɵSWITCH_ELEMENT_REF_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__, SWITCH_RENDERER2_FACTORY__POST_R3__ as ɵSWITCH_RENDERER2_FACTORY__POST_R3__, getModuleFactory__POST_R3__ as ɵgetModuleFactory__POST_R3__, registerNgModuleType as ɵregisterNgModuleType, publishGlobalUtil as ɵpublishGlobalUtil, publishDefaultGlobalUtils as ɵpublishDefaultGlobalUtils, createInjector as ɵcreateInjector, INJECTOR_IMPL__POST_R3__ as ɵINJECTOR_IMPL__POST_R3__, registerModuleFactory as ɵregisterModuleFactory, EMPTY_ARRAY$3 as ɵEMPTY_ARRAY, EMPTY_MAP as ɵEMPTY_MAP, anchorDef as ɵand, createComponentFactory as ɵccf, createNgModuleFactory as ɵcmf, createRendererType2 as ɵcrt, directiveDef as ɵdid, elementDef as ɵeld, getComponentViewDefinitionFactory as ɵgetComponentViewDefinitionFactory, inlineInterpolate as ɵinlineInterpolate, interpolate as ɵinterpolate, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, nodeValue as ɵnov, pipeDef as ɵpid, providerDef as ɵprd, pureArrayDef as ɵpad, pureObjectDef as ɵpod, purePipeDef as ɵppd, queryDef as ɵqud, textDef as ɵted, unwrapValue as ɵunv, viewDef as ɵvid };
|
|
30621
|
+
export { APPLICATION_MODULE_PROVIDERS as ɵangular_packages_core_core_q, _iterableDiffersFactory as ɵangular_packages_core_core_n, _keyValueDiffersFactory as ɵangular_packages_core_core_o, _localeFactory as ɵangular_packages_core_core_p, zoneSchedulerFactory as ɵangular_packages_core_core_r, _appIdRandomProviderFactory as ɵangular_packages_core_core_f, DefaultIterableDifferFactory as ɵangular_packages_core_core_l, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_m, DebugElement__PRE_R3__ as ɵangular_packages_core_core_k, DebugNode__PRE_R3__ as ɵangular_packages_core_core_j, NullInjector as ɵangular_packages_core_core_b, injectInjectorOnly as ɵangular_packages_core_core_a, ReflectiveInjector_ as ɵangular_packages_core_core_c, ReflectiveDependency as ɵangular_packages_core_core_d, resolveReflectiveProviders as ɵangular_packages_core_core_e, getModuleFactory__PRE_R3__ as ɵangular_packages_core_core_i, wtfEnabled as ɵangular_packages_core_core_s, createScope as ɵangular_packages_core_core_u, detectWTF as ɵangular_packages_core_core_t, endTimeRange as ɵangular_packages_core_core_x, leave as ɵangular_packages_core_core_v, startTimeRange as ɵangular_packages_core_core_w, SCHEDULER as ɵangular_packages_core_core_ba, injectAttributeImpl as ɵangular_packages_core_core_bb, getLView as ɵangular_packages_core_core_bc, getPreviousOrParentTNode as ɵangular_packages_core_core_bd, nextContextImpl as ɵangular_packages_core_core_be, getRootContext as ɵangular_packages_core_core_bm, loadInternal as ɵangular_packages_core_core_bl, createElementRef as ɵangular_packages_core_core_g, createTemplateRef as ɵangular_packages_core_core_h, getUrlSanitizer as ɵangular_packages_core_core_bg, noSideEffects as ɵangular_packages_core_core_bk, makeParamDecorator as ɵangular_packages_core_core_bh, makePropDecorator as ɵangular_packages_core_core_bi, getClosureSafeProperty as ɵangular_packages_core_core_bn, _def as ɵangular_packages_core_core_y, DebugContext as ɵangular_packages_core_core_z, createPlatform, assertPlatform, destroyPlatform, getPlatform, PlatformRef, ApplicationRef, createPlatformFactory, NgProbeToken, enableProdMode, isDevMode, APP_ID, PACKAGE_ROOT_URL, PLATFORM_INITIALIZER, PLATFORM_ID, APP_BOOTSTRAP_LISTENER, APP_INITIALIZER, ApplicationInitStatus, DebugElement, DebugEventListener, DebugNode, asNativeElements, getDebugNode, Testability, TestabilityRegistry, setTestabilityGetter, TRANSLATIONS$1 as TRANSLATIONS, TRANSLATIONS_FORMAT, LOCALE_ID$1 as LOCALE_ID, MissingTranslationStrategy, ApplicationModule, wtfCreateScope, wtfLeave, wtfStartTimeRange, wtfEndTimeRange, Type, EventEmitter, ErrorHandler, Sanitizer, SecurityContext, Attribute, ANALYZE_FOR_ENTRY_COMPONENTS, ContentChild, ContentChildren, Query, ViewChild, ViewChildren, Component, Directive, HostBinding, HostListener, Input, Output, Pipe, NgModule, CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA, ViewEncapsulation, Version, VERSION, InjectFlags, ɵɵdefineInjectable, defineInjectable, ɵɵdefineInjector, forwardRef, resolveForwardRef, Injectable, Injector, ɵɵinject, inject, INJECTOR, ReflectiveInjector, ResolvedReflectiveFactory, ReflectiveKey, InjectionToken, Inject, Optional, Self, SkipSelf, Host, ɵ0, ɵ1, NgZone, NoopNgZone as ɵNoopNgZone, RenderComponentType, Renderer, Renderer2, RendererFactory2, RendererStyleFlags2, RootRenderer, COMPILER_OPTIONS, Compiler, CompilerFactory, ModuleWithComponentFactories, ComponentFactory, ComponentFactory as ɵComponentFactory, ComponentRef, ComponentFactoryResolver, ElementRef, NgModuleFactory, NgModuleRef, NgModuleFactoryLoader, getModuleFactory, QueryList, SystemJsNgModuleLoader, SystemJsNgModuleLoaderConfig, TemplateRef, ViewContainerRef, EmbeddedViewRef, ViewRef$1 as ViewRef, ChangeDetectionStrategy, ChangeDetectorRef, DefaultIterableDiffer, IterableDiffers, KeyValueDiffers, SimpleChange, WrappedValue, platformCore, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, devModeEqual$1 as ɵdevModeEqual, isListLikeIterable$1 as ɵisListLikeIterable, ChangeDetectorStatus as ɵChangeDetectorStatus, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, Console as ɵConsole, setCurrentInjector as ɵsetCurrentInjector, getInjectableDef as ɵgetInjectableDef, APP_ROOT as ɵAPP_ROOT, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, ivyEnabled as ɵivyEnabled, CodegenComponentFactoryResolver as ɵCodegenComponentFactoryResolver, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, resolveComponentResources as ɵresolveComponentResources, ReflectionCapabilities as ɵReflectionCapabilities, RenderDebugInfo as ɵRenderDebugInfo, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeStyle as ɵ_sanitizeStyle, _sanitizeUrl as ɵ_sanitizeUrl, _global as ɵglobal, looseIdentical as ɵlooseIdentical, stringify as ɵstringify, makeDecorator as ɵmakeDecorator, isObservable as ɵisObservable, isPromise as ɵisPromise, clearOverrides as ɵclearOverrides, initServicesIfNeeded as ɵinitServicesIfNeeded, overrideComponentView as ɵoverrideComponentView, overrideProvider as ɵoverrideProvider, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, getLocalePluralCase as ɵgetLocalePluralCase, findLocaleData as ɵfindLocaleData, LOCALE_DATA as ɵLOCALE_DATA, LocaleDataIndex as ɵLocaleDataIndex, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵdefineBase, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefinePipe, ɵɵdefineNgModule, detectChanges as ɵdetectChanges, renderComponent as ɵrenderComponent, ComponentFactory$1 as ɵRender3ComponentFactory, ComponentRef$1 as ɵRender3ComponentRef, ɵɵdirectiveInject, ɵɵinjectAttribute, ɵɵinjectPipeChangeDetectorRef, ɵɵgetFactoryOf, ɵɵgetInheritedFactory, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵtemplateRefExtractor, ɵɵProvidersFeature, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, LifecycleHooksFeature as ɵLifecycleHooksFeature, NgModuleRef$1 as ɵRender3NgModuleRef, markDirty as ɵmarkDirty, NgModuleFactory$1 as ɵNgModuleFactory, NO_CHANGE as ɵNO_CHANGE, ɵɵcontainer, ɵɵnextContext, ɵɵelementStart, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵelement, ɵɵlistener, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵembeddedViewStart, ɵɵprojection, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵgetCurrentView, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, ɵɵrestoreView, ɵɵcontainerRefreshStart, ɵɵcontainerRefreshEnd, ɵɵqueryRefresh, ɵɵviewQuery, ɵɵstaticViewQuery, ɵɵstaticContentQuery, ɵɵloadViewQuery, ɵɵcontentQuery, ɵɵloadContentQuery, ɵɵelementEnd, ɵɵhostProperty, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵupdateSyntheticHostBinding, ɵɵcomponentHostSyntheticListener, ɵɵprojectionDef, ɵɵreference, ɵɵenableBindings, ɵɵdisableBindings, ɵɵallocHostVars, ɵɵelementContainerStart, ɵɵelementContainerEnd, ɵɵelementContainer, ɵɵstyling, ɵɵstyleMap, ɵɵstyleSanitizer, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵstylingApply, ɵɵclassProp, ɵɵelementHostAttrs, ɵɵselect, ɵɵtextBinding, ɵɵtemplate, ɵɵembeddedViewEnd, store as ɵstore, ɵɵload, ɵɵpipe, whenRendered as ɵwhenRendered, ɵɵi18n, ɵɵi18nAttributes, ɵɵi18nExp, ɵɵi18nStart, ɵɵi18nEnd, ɵɵi18nApply, ɵɵi18nPostprocess, i18nConfigureLocalize as ɵi18nConfigureLocalize, ɵɵi18nLocalize, setLocaleId as ɵsetLocaleId, setClassMetadata as ɵsetClassMetadata, ɵɵresolveWindow, ɵɵresolveDocument, ɵɵresolveBody, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, patchComponentDefWithScope as ɵpatchComponentDefWithScope, resetCompiledComponents as ɵresetCompiledComponents, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, transitiveScopesFor as ɵtransitiveScopesFor, compilePipe as ɵcompilePipe, ɵɵsanitizeHtml, ɵɵsanitizeStyle, ɵɵdefaultStyleSanitizer, ɵɵsanitizeScript, ɵɵsanitizeUrl, ɵɵsanitizeResourceUrl, ɵɵsanitizeUrlOrResourceUrl, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, getLContext as ɵgetLContext, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_COMPONENT_DEF as ɵNG_COMPONENT_DEF, NG_DIRECTIVE_DEF as ɵNG_DIRECTIVE_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_MODULE_DEF as ɵNG_MODULE_DEF, NG_BASE_DEF as ɵNG_BASE_DEF, NG_INJECTABLE_DEF as ɵNG_INJECTABLE_DEF, NG_INJECTOR_DEF as ɵNG_INJECTOR_DEF, compileNgModuleFactory__POST_R3__ as ɵcompileNgModuleFactory__POST_R3__, isBoundToModule__POST_R3__ as ɵisBoundToModule__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_PIPE__POST_R3__ as ɵSWITCH_COMPILE_PIPE__POST_R3__, SWITCH_COMPILE_NGMODULE__POST_R3__ as ɵSWITCH_COMPILE_NGMODULE__POST_R3__, getDebugNode__POST_R3__ as ɵgetDebugNode__POST_R3__, SWITCH_COMPILE_INJECTABLE__POST_R3__ as ɵSWITCH_COMPILE_INJECTABLE__POST_R3__, SWITCH_IVY_ENABLED__POST_R3__ as ɵSWITCH_IVY_ENABLED__POST_R3__, SWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__ as ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__, Compiler_compileModuleSync__POST_R3__ as ɵCompiler_compileModuleSync__POST_R3__, Compiler_compileModuleAsync__POST_R3__ as ɵCompiler_compileModuleAsync__POST_R3__, Compiler_compileModuleAndAllComponentsSync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsSync__POST_R3__, Compiler_compileModuleAndAllComponentsAsync__POST_R3__ as ɵCompiler_compileModuleAndAllComponentsAsync__POST_R3__, SWITCH_ELEMENT_REF_FACTORY__POST_R3__ as ɵSWITCH_ELEMENT_REF_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__, SWITCH_RENDERER2_FACTORY__POST_R3__ as ɵSWITCH_RENDERER2_FACTORY__POST_R3__, getModuleFactory__POST_R3__ as ɵgetModuleFactory__POST_R3__, registerNgModuleType as ɵregisterNgModuleType, publishGlobalUtil as ɵpublishGlobalUtil, publishDefaultGlobalUtils as ɵpublishDefaultGlobalUtils, createInjector as ɵcreateInjector, INJECTOR_IMPL__POST_R3__ as ɵINJECTOR_IMPL__POST_R3__, registerModuleFactory as ɵregisterModuleFactory, EMPTY_ARRAY$3 as ɵEMPTY_ARRAY, EMPTY_MAP as ɵEMPTY_MAP, anchorDef as ɵand, createComponentFactory as ɵccf, createNgModuleFactory as ɵcmf, createRendererType2 as ɵcrt, directiveDef as ɵdid, elementDef as ɵeld, getComponentViewDefinitionFactory as ɵgetComponentViewDefinitionFactory, inlineInterpolate as ɵinlineInterpolate, interpolate as ɵinterpolate, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, nodeValue as ɵnov, pipeDef as ɵpid, providerDef as ɵprd, pureArrayDef as ɵpad, pureObjectDef as ɵpod, purePipeDef as ɵppd, queryDef as ɵqud, textDef as ɵted, unwrapValue as ɵunv, viewDef as ɵvid };
|
|
30367
30622
|
//# sourceMappingURL=core.js.map
|