@angular/core 12.0.0-rc.0 → 12.0.0
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.js.map +1 -1
- package/bundles/core.umd.js +95 -73
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +58 -46
- package/core.metadata.json +1 -1
- package/esm2015/src/core_private_export.js +2 -1
- package/esm2015/src/debug/debug_node.js +11 -10
- package/esm2015/src/di/index.js +1 -1
- package/esm2015/src/di/inject_switch.js +1 -1
- package/esm2015/src/di/injector.js +1 -1
- package/esm2015/src/di/injector_compatibility.js +1 -1
- package/esm2015/src/di/interface/provider.js +1 -1
- package/esm2015/src/di/provider_token.js +9 -0
- package/esm2015/src/di/r3_injector.js +1 -1
- package/esm2015/src/metadata/di.js +1 -1
- package/esm2015/src/render3/component_ref.js +1 -1
- package/esm2015/src/render3/di.js +1 -1
- package/esm2015/src/render3/error_code.js +1 -1
- package/esm2015/src/render3/i18n/i18n_parse.js +36 -9
- package/esm2015/src/render3/instructions/di.js +1 -1
- package/esm2015/src/render3/instructions/listener.js +9 -14
- package/esm2015/src/render3/interfaces/injector.js +1 -1
- package/esm2015/src/render3/interfaces/query.js +1 -1
- package/esm2015/src/render3/interfaces/renderer.js +1 -1
- package/esm2015/src/render3/interfaces/view.js +1 -1
- package/esm2015/src/render3/jit/module.js +5 -5
- package/esm2015/src/render3/node_manipulation.js +18 -3
- package/esm2015/src/render3/query.js +1 -1
- package/esm2015/src/render3/util/discovery_utils.js +19 -28
- package/esm2015/src/render3/util/misc_utils.js +4 -4
- package/esm2015/src/render3/view_ref.js +1 -4
- package/esm2015/src/testability/testability.js +3 -3
- package/esm2015/src/version.js +1 -1
- package/esm2015/testing/src/r3_test_bed.js +1 -1
- package/esm2015/testing/src/test_bed.js +1 -1
- package/esm2015/testing/src/test_bed_common.js +1 -1
- package/fesm2015/core.js +97 -71
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/fesm2015/testing.js.map +1 -1
- package/package.json +2 -2
- package/src/r3_symbols.d.ts +15 -6
- package/testing/testing.d.ts +20 -20
- package/testing/testing.metadata.json +1 -1
- package/testing.d.ts +1 -1
package/fesm2015/core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v12.0.0
|
|
2
|
+
* @license Angular v12.0.0
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -6685,21 +6685,21 @@ const defaultScheduler = (ɵ0$4)();
|
|
|
6685
6685
|
* @codeGenApi
|
|
6686
6686
|
*/
|
|
6687
6687
|
function ɵɵresolveWindow(element) {
|
|
6688
|
-
return
|
|
6688
|
+
return element.ownerDocument.defaultView;
|
|
6689
6689
|
}
|
|
6690
6690
|
/**
|
|
6691
6691
|
*
|
|
6692
6692
|
* @codeGenApi
|
|
6693
6693
|
*/
|
|
6694
6694
|
function ɵɵresolveDocument(element) {
|
|
6695
|
-
return
|
|
6695
|
+
return element.ownerDocument;
|
|
6696
6696
|
}
|
|
6697
6697
|
/**
|
|
6698
6698
|
*
|
|
6699
6699
|
* @codeGenApi
|
|
6700
6700
|
*/
|
|
6701
6701
|
function ɵɵresolveBody(element) {
|
|
6702
|
-
return
|
|
6702
|
+
return element.ownerDocument.body;
|
|
6703
6703
|
}
|
|
6704
6704
|
/**
|
|
6705
6705
|
* The special delimiter we use to separate property names, prefixes, and suffixes
|
|
@@ -7359,11 +7359,25 @@ function executeOnDestroys(tView, lView) {
|
|
|
7359
7359
|
const toCall = destroyHooks[i + 1];
|
|
7360
7360
|
if (Array.isArray(toCall)) {
|
|
7361
7361
|
for (let j = 0; j < toCall.length; j += 2) {
|
|
7362
|
-
|
|
7362
|
+
const callContext = context[toCall[j]];
|
|
7363
|
+
const hook = toCall[j + 1];
|
|
7364
|
+
profiler(4 /* LifecycleHookStart */, callContext, hook);
|
|
7365
|
+
try {
|
|
7366
|
+
hook.call(callContext);
|
|
7367
|
+
}
|
|
7368
|
+
finally {
|
|
7369
|
+
profiler(5 /* LifecycleHookEnd */, callContext, hook);
|
|
7370
|
+
}
|
|
7363
7371
|
}
|
|
7364
7372
|
}
|
|
7365
7373
|
else {
|
|
7366
|
-
|
|
7374
|
+
profiler(4 /* LifecycleHookStart */, context, toCall);
|
|
7375
|
+
try {
|
|
7376
|
+
toCall.call(context);
|
|
7377
|
+
}
|
|
7378
|
+
finally {
|
|
7379
|
+
profiler(5 /* LifecycleHookEnd */, context, toCall);
|
|
7380
|
+
}
|
|
7367
7381
|
}
|
|
7368
7382
|
}
|
|
7369
7383
|
}
|
|
@@ -11883,7 +11897,7 @@ function staticError(text, obj) {
|
|
|
11883
11897
|
*/
|
|
11884
11898
|
function getComponent(element) {
|
|
11885
11899
|
assertDomElement(element);
|
|
11886
|
-
const context =
|
|
11900
|
+
const context = getLContext(element);
|
|
11887
11901
|
if (context === null)
|
|
11888
11902
|
return null;
|
|
11889
11903
|
if (context.component === undefined) {
|
|
@@ -11905,7 +11919,7 @@ function getComponent(element) {
|
|
|
11905
11919
|
*/
|
|
11906
11920
|
function getContext(element) {
|
|
11907
11921
|
assertDomElement(element);
|
|
11908
|
-
const context =
|
|
11922
|
+
const context = getLContext(element);
|
|
11909
11923
|
return context === null ? null : context.lView[CONTEXT];
|
|
11910
11924
|
}
|
|
11911
11925
|
/**
|
|
@@ -11924,7 +11938,7 @@ function getContext(element) {
|
|
|
11924
11938
|
* @globalApi ng
|
|
11925
11939
|
*/
|
|
11926
11940
|
function getOwningComponent(elementOrDir) {
|
|
11927
|
-
const context =
|
|
11941
|
+
const context = getLContext(elementOrDir);
|
|
11928
11942
|
if (context === null)
|
|
11929
11943
|
return null;
|
|
11930
11944
|
let lView = context.lView;
|
|
@@ -11960,7 +11974,7 @@ function getRootComponents(elementOrDir) {
|
|
|
11960
11974
|
* @globalApi ng
|
|
11961
11975
|
*/
|
|
11962
11976
|
function getInjector(elementOrDir) {
|
|
11963
|
-
const context =
|
|
11977
|
+
const context = getLContext(elementOrDir);
|
|
11964
11978
|
if (context === null)
|
|
11965
11979
|
return Injector.NULL;
|
|
11966
11980
|
const tNode = context.lView[TVIEW].data[context.nodeIndex];
|
|
@@ -11972,7 +11986,7 @@ function getInjector(elementOrDir) {
|
|
|
11972
11986
|
* @param element Element for which the injection tokens should be retrieved.
|
|
11973
11987
|
*/
|
|
11974
11988
|
function getInjectionTokens(element) {
|
|
11975
|
-
const context =
|
|
11989
|
+
const context = getLContext(element);
|
|
11976
11990
|
if (context === null)
|
|
11977
11991
|
return [];
|
|
11978
11992
|
const lView = context.lView;
|
|
@@ -12022,7 +12036,7 @@ function getDirectives(node) {
|
|
|
12022
12036
|
if (node instanceof Text) {
|
|
12023
12037
|
return [];
|
|
12024
12038
|
}
|
|
12025
|
-
const context =
|
|
12039
|
+
const context = getLContext(node);
|
|
12026
12040
|
if (context === null) {
|
|
12027
12041
|
return [];
|
|
12028
12042
|
}
|
|
@@ -12073,14 +12087,6 @@ function getDirectiveMetadata(directiveOrComponentInstance) {
|
|
|
12073
12087
|
}
|
|
12074
12088
|
return null;
|
|
12075
12089
|
}
|
|
12076
|
-
function loadLContext(target, throwOnNotFound = true) {
|
|
12077
|
-
const context = getLContext(target);
|
|
12078
|
-
if (!context && throwOnNotFound) {
|
|
12079
|
-
throw new Error(ngDevMode ? `Unable to find context associated with ${stringifyForError(target)}` :
|
|
12080
|
-
'Invalid ng target');
|
|
12081
|
-
}
|
|
12082
|
-
return context;
|
|
12083
|
-
}
|
|
12084
12090
|
/**
|
|
12085
12091
|
* Retrieve map of local references.
|
|
12086
12092
|
*
|
|
@@ -12090,7 +12096,7 @@ function loadLContext(target, throwOnNotFound = true) {
|
|
|
12090
12096
|
* the local references.
|
|
12091
12097
|
*/
|
|
12092
12098
|
function getLocalRefs(target) {
|
|
12093
|
-
const context =
|
|
12099
|
+
const context = getLContext(target);
|
|
12094
12100
|
if (context === null)
|
|
12095
12101
|
return {};
|
|
12096
12102
|
if (context.localRefs === undefined) {
|
|
@@ -12126,11 +12132,6 @@ function getRenderedText(component) {
|
|
|
12126
12132
|
const hostElement = getHostElement(component);
|
|
12127
12133
|
return hostElement.textContent || '';
|
|
12128
12134
|
}
|
|
12129
|
-
function loadLContextFromNode(node) {
|
|
12130
|
-
if (!(node instanceof Node))
|
|
12131
|
-
throw new Error('Expecting instance of DOM Element');
|
|
12132
|
-
return loadLContext(node);
|
|
12133
|
-
}
|
|
12134
12135
|
/**
|
|
12135
12136
|
* Retrieves a list of event listeners associated with a DOM element. The list does include host
|
|
12136
12137
|
* listeners, but it does not include event listeners defined outside of the Angular context
|
|
@@ -12162,7 +12163,7 @@ function loadLContextFromNode(node) {
|
|
|
12162
12163
|
*/
|
|
12163
12164
|
function getListeners(element) {
|
|
12164
12165
|
assertDomElement(element);
|
|
12165
|
-
const lContext =
|
|
12166
|
+
const lContext = getLContext(element);
|
|
12166
12167
|
if (lContext === null)
|
|
12167
12168
|
return [];
|
|
12168
12169
|
const lView = lContext.lView;
|
|
@@ -12212,8 +12213,13 @@ function isDirectiveDefHack(obj) {
|
|
|
12212
12213
|
* @param element DOM element which is owned by an existing component's view.
|
|
12213
12214
|
*/
|
|
12214
12215
|
function getDebugNode(element) {
|
|
12215
|
-
|
|
12216
|
-
|
|
12216
|
+
if (ngDevMode && !(element instanceof Node)) {
|
|
12217
|
+
throw new Error('Expecting instance of DOM Element');
|
|
12218
|
+
}
|
|
12219
|
+
const lContext = getLContext(element);
|
|
12220
|
+
if (lContext === null) {
|
|
12221
|
+
return null;
|
|
12222
|
+
}
|
|
12217
12223
|
const lView = lContext.lView;
|
|
12218
12224
|
const nodeIndex = lContext.nodeIndex;
|
|
12219
12225
|
if (nodeIndex !== -1) {
|
|
@@ -12223,9 +12229,9 @@ function getDebugNode(element) {
|
|
|
12223
12229
|
const tNode = isLView(valueInLView) ? valueInLView[T_HOST] : getTNode(lView[TVIEW], nodeIndex);
|
|
12224
12230
|
ngDevMode &&
|
|
12225
12231
|
assertEqual(tNode.index, nodeIndex, 'Expecting that TNode at index is same as index');
|
|
12226
|
-
|
|
12232
|
+
return buildDebugNode(tNode, lView);
|
|
12227
12233
|
}
|
|
12228
|
-
return
|
|
12234
|
+
return null;
|
|
12229
12235
|
}
|
|
12230
12236
|
/**
|
|
12231
12237
|
* Retrieve the component `LView` from component/element.
|
|
@@ -12236,7 +12242,7 @@ function getDebugNode(element) {
|
|
|
12236
12242
|
* @param target DOM element or component instance for which to retrieve the LView.
|
|
12237
12243
|
*/
|
|
12238
12244
|
function getComponentLView(target) {
|
|
12239
|
-
const lContext =
|
|
12245
|
+
const lContext = getLContext(target);
|
|
12240
12246
|
const nodeIndx = lContext.nodeIndex;
|
|
12241
12247
|
const lView = lContext.lView;
|
|
12242
12248
|
const componentLView = lView[nodeIndx];
|
|
@@ -15096,11 +15102,11 @@ const isObservable = isSubscribable;
|
|
|
15096
15102
|
*
|
|
15097
15103
|
* @codeGenApi
|
|
15098
15104
|
*/
|
|
15099
|
-
function ɵɵlistener(eventName, listenerFn, useCapture
|
|
15105
|
+
function ɵɵlistener(eventName, listenerFn, useCapture, eventTargetResolver) {
|
|
15100
15106
|
const lView = getLView();
|
|
15101
15107
|
const tView = getTView();
|
|
15102
15108
|
const tNode = getCurrentTNode();
|
|
15103
|
-
listenerInternal(tView, lView, lView[RENDERER], tNode, eventName, listenerFn, useCapture, eventTargetResolver);
|
|
15109
|
+
listenerInternal(tView, lView, lView[RENDERER], tNode, eventName, listenerFn, !!useCapture, eventTargetResolver);
|
|
15104
15110
|
return ɵɵlistener;
|
|
15105
15111
|
}
|
|
15106
15112
|
/**
|
|
@@ -15124,13 +15130,13 @@ function ɵɵlistener(eventName, listenerFn, useCapture = false, eventTargetReso
|
|
|
15124
15130
|
*
|
|
15125
15131
|
* @codeGenApi
|
|
15126
15132
|
*/
|
|
15127
|
-
function ɵɵsyntheticHostListener(eventName, listenerFn
|
|
15133
|
+
function ɵɵsyntheticHostListener(eventName, listenerFn) {
|
|
15128
15134
|
const tNode = getCurrentTNode();
|
|
15129
15135
|
const lView = getLView();
|
|
15130
15136
|
const tView = getTView();
|
|
15131
15137
|
const currentDef = getCurrentDirectiveDef(tView.data);
|
|
15132
15138
|
const renderer = loadComponentRenderer(currentDef, tNode, lView);
|
|
15133
|
-
listenerInternal(tView, lView, renderer, tNode, eventName, listenerFn,
|
|
15139
|
+
listenerInternal(tView, lView, renderer, tNode, eventName, listenerFn, false);
|
|
15134
15140
|
return ɵɵsyntheticHostListener;
|
|
15135
15141
|
}
|
|
15136
15142
|
/**
|
|
@@ -15163,7 +15169,7 @@ function findExistingListener(tView, lView, eventName, tNodeIdx) {
|
|
|
15163
15169
|
}
|
|
15164
15170
|
return null;
|
|
15165
15171
|
}
|
|
15166
|
-
function listenerInternal(tView, lView, renderer, tNode, eventName, listenerFn, useCapture
|
|
15172
|
+
function listenerInternal(tView, lView, renderer, tNode, eventName, listenerFn, useCapture, eventTargetResolver) {
|
|
15167
15173
|
const isTNodeDirectiveHost = isDirectiveHost(tNode);
|
|
15168
15174
|
const firstCreatePass = tView.firstCreatePass;
|
|
15169
15175
|
const tCleanup = firstCreatePass && getOrCreateTViewCleanup(tView);
|
|
@@ -15177,11 +15183,10 @@ function listenerInternal(tView, lView, renderer, tNode, eventName, listenerFn,
|
|
|
15177
15183
|
// add native event listener - applicable to elements only
|
|
15178
15184
|
if (tNode.type & 3 /* AnyRNode */) {
|
|
15179
15185
|
const native = getNativeByTNode(tNode, lView);
|
|
15180
|
-
const
|
|
15181
|
-
const target = resolved.target || native;
|
|
15186
|
+
const target = eventTargetResolver ? eventTargetResolver(native) : native;
|
|
15182
15187
|
const lCleanupIndex = lCleanup.length;
|
|
15183
15188
|
const idxOrTargetGetter = eventTargetResolver ?
|
|
15184
|
-
(_lView) => eventTargetResolver(unwrapRNode(_lView[tNode.index]))
|
|
15189
|
+
(_lView) => eventTargetResolver(unwrapRNode(_lView[tNode.index])) :
|
|
15185
15190
|
tNode.index;
|
|
15186
15191
|
// In order to match current behavior, native DOM event listeners must be added for all
|
|
15187
15192
|
// events (including outputs).
|
|
@@ -15217,11 +15222,8 @@ function listenerInternal(tView, lView, renderer, tNode, eventName, listenerFn,
|
|
|
15217
15222
|
processOutputs = false;
|
|
15218
15223
|
}
|
|
15219
15224
|
else {
|
|
15220
|
-
// The first argument of `listen` function in Procedural Renderer is:
|
|
15221
|
-
// - either a target name (as a string) in case of global target (window, document, body)
|
|
15222
|
-
// - or element reference (in all other cases)
|
|
15223
15225
|
listenerFn = wrapListener(tNode, lView, context, listenerFn, false /** preventDefault */);
|
|
15224
|
-
const cleanupFn = renderer.listen(
|
|
15226
|
+
const cleanupFn = renderer.listen(target, eventName, listenerFn);
|
|
15225
15227
|
ngDevMode && ngDevMode.rendererAddEventListener++;
|
|
15226
15228
|
lCleanup.push(listenerFn, cleanupFn);
|
|
15227
15229
|
tCleanup && tCleanup.push(eventName, idxOrTargetGetter, lCleanupIndex, lCleanupIndex + 1);
|
|
@@ -20172,7 +20174,7 @@ function i18nStartFirstCreatePassProcessTextNode(tView, rootTNode, existingTNode
|
|
|
20172
20174
|
const hasBinding = text.match(BINDING_REGEXP);
|
|
20173
20175
|
const tNode = createTNodeAndAddOpCode(tView, rootTNode, existingTNodes, lView, createOpCodes, hasBinding ? null : text, false);
|
|
20174
20176
|
if (hasBinding) {
|
|
20175
|
-
generateBindingUpdateOpCodes(updateOpCodes, text, tNode.index);
|
|
20177
|
+
generateBindingUpdateOpCodes(updateOpCodes, text, tNode.index, null, 0, null);
|
|
20176
20178
|
}
|
|
20177
20179
|
}
|
|
20178
20180
|
/**
|
|
@@ -20200,7 +20202,9 @@ function i18nAttributesFirstPass(tView, index, values) {
|
|
|
20200
20202
|
}
|
|
20201
20203
|
// i18n attributes that hit this code path are guaranteed to have bindings, because
|
|
20202
20204
|
// the compiler treats static i18n attributes as regular attribute bindings.
|
|
20203
|
-
|
|
20205
|
+
// Since this may not be the first i18n attribute on this element we need to pass in how
|
|
20206
|
+
// many previous bindings there have already been.
|
|
20207
|
+
generateBindingUpdateOpCodes(updateOpCodes, message, previousElementIndex, attrName, countBindings(updateOpCodes), null);
|
|
20204
20208
|
}
|
|
20205
20209
|
}
|
|
20206
20210
|
tView.data[index] = updateOpCodes;
|
|
@@ -20214,8 +20218,10 @@ function i18nAttributesFirstPass(tView, index, values) {
|
|
|
20214
20218
|
* @param destinationNode Index of the destination node which will receive the binding.
|
|
20215
20219
|
* @param attrName Name of the attribute, if the string belongs to an attribute.
|
|
20216
20220
|
* @param sanitizeFn Sanitization function used to sanitize the string after update, if necessary.
|
|
20221
|
+
* @param bindingStart The lView index of the next expression that can be bound via an opCode.
|
|
20222
|
+
* @returns The mask value for these bindings
|
|
20217
20223
|
*/
|
|
20218
|
-
function generateBindingUpdateOpCodes(updateOpCodes, str, destinationNode, attrName, sanitizeFn
|
|
20224
|
+
function generateBindingUpdateOpCodes(updateOpCodes, str, destinationNode, attrName, bindingStart, sanitizeFn) {
|
|
20219
20225
|
ngDevMode &&
|
|
20220
20226
|
assertGreaterThanOrEqual(destinationNode, HEADER_OFFSET, 'Index must be in absolute LView offset');
|
|
20221
20227
|
const maskIndex = updateOpCodes.length; // Location of mask
|
|
@@ -20231,7 +20237,7 @@ function generateBindingUpdateOpCodes(updateOpCodes, str, destinationNode, attrN
|
|
|
20231
20237
|
const textValue = textParts[j];
|
|
20232
20238
|
if (j & 1) {
|
|
20233
20239
|
// Odd indexes are bindings
|
|
20234
|
-
const bindingIndex = parseInt(textValue, 10);
|
|
20240
|
+
const bindingIndex = bindingStart + parseInt(textValue, 10);
|
|
20235
20241
|
updateOpCodes.push(-1 - bindingIndex);
|
|
20236
20242
|
mask = mask | toMaskBit(bindingIndex);
|
|
20237
20243
|
}
|
|
@@ -20249,6 +20255,28 @@ function generateBindingUpdateOpCodes(updateOpCodes, str, destinationNode, attrN
|
|
|
20249
20255
|
updateOpCodes[sizeIndex] = updateOpCodes.length - startIndex;
|
|
20250
20256
|
return mask;
|
|
20251
20257
|
}
|
|
20258
|
+
/**
|
|
20259
|
+
* Count the number of bindings in the given `opCodes`.
|
|
20260
|
+
*
|
|
20261
|
+
* It could be possible to speed this up, by passing the number of bindings found back from
|
|
20262
|
+
* `generateBindingUpdateOpCodes()` to `i18nAttributesFirstPass()` but this would then require more
|
|
20263
|
+
* complexity in the code and/or transient objects to be created.
|
|
20264
|
+
*
|
|
20265
|
+
* Since this function is only called once when the template is instantiated, is trivial in the
|
|
20266
|
+
* first instance (since `opCodes` will be an empty array), and it is not common for elements to
|
|
20267
|
+
* contain multiple i18n bound attributes, it seems like this is a reasonable compromise.
|
|
20268
|
+
*/
|
|
20269
|
+
function countBindings(opCodes) {
|
|
20270
|
+
let count = 0;
|
|
20271
|
+
for (let i = 0; i < opCodes.length; i++) {
|
|
20272
|
+
const opCode = opCodes[i];
|
|
20273
|
+
// Bindings are negative numbers.
|
|
20274
|
+
if (typeof opCode === 'number' && opCode < 0) {
|
|
20275
|
+
count++;
|
|
20276
|
+
}
|
|
20277
|
+
}
|
|
20278
|
+
return count;
|
|
20279
|
+
}
|
|
20252
20280
|
/**
|
|
20253
20281
|
* Convert binding index to mask bit.
|
|
20254
20282
|
*
|
|
@@ -20500,13 +20528,13 @@ function walkIcuTree(tView, tIcu, lView, sharedUpdateOpCodes, create, remove, up
|
|
|
20500
20528
|
if (hasBinding) {
|
|
20501
20529
|
if (VALID_ATTRS.hasOwnProperty(lowerAttrName)) {
|
|
20502
20530
|
if (URI_ATTRS[lowerAttrName]) {
|
|
20503
|
-
generateBindingUpdateOpCodes(update, attr.value, newIndex, attr.name, _sanitizeUrl);
|
|
20531
|
+
generateBindingUpdateOpCodes(update, attr.value, newIndex, attr.name, 0, _sanitizeUrl);
|
|
20504
20532
|
}
|
|
20505
20533
|
else if (SRCSET_ATTRS[lowerAttrName]) {
|
|
20506
|
-
generateBindingUpdateOpCodes(update, attr.value, newIndex, attr.name, sanitizeSrcset);
|
|
20534
|
+
generateBindingUpdateOpCodes(update, attr.value, newIndex, attr.name, 0, sanitizeSrcset);
|
|
20507
20535
|
}
|
|
20508
20536
|
else {
|
|
20509
|
-
generateBindingUpdateOpCodes(update, attr.value, newIndex, attr.name);
|
|
20537
|
+
generateBindingUpdateOpCodes(update, attr.value, newIndex, attr.name, 0, null);
|
|
20510
20538
|
}
|
|
20511
20539
|
}
|
|
20512
20540
|
else {
|
|
@@ -20532,7 +20560,8 @@ function walkIcuTree(tView, tIcu, lView, sharedUpdateOpCodes, create, remove, up
|
|
|
20532
20560
|
addCreateNodeAndAppend(create, null, hasBinding ? '' : value, parentIdx, newIndex);
|
|
20533
20561
|
addRemoveNode(remove, newIndex, depth);
|
|
20534
20562
|
if (hasBinding) {
|
|
20535
|
-
bindingMask =
|
|
20563
|
+
bindingMask =
|
|
20564
|
+
generateBindingUpdateOpCodes(update, value, newIndex, null, 0, null) | bindingMask;
|
|
20536
20565
|
}
|
|
20537
20566
|
break;
|
|
20538
20567
|
case Node.COMMENT_NODE:
|
|
@@ -21424,7 +21453,7 @@ class Version {
|
|
|
21424
21453
|
/**
|
|
21425
21454
|
* @publicApi
|
|
21426
21455
|
*/
|
|
21427
|
-
const VERSION = new Version('12.0.0
|
|
21456
|
+
const VERSION = new Version('12.0.0');
|
|
21428
21457
|
|
|
21429
21458
|
/**
|
|
21430
21459
|
* @license
|
|
@@ -22614,9 +22643,6 @@ class ViewRef {
|
|
|
22614
22643
|
/**
|
|
22615
22644
|
* Marks a view and all of its ancestors dirty.
|
|
22616
22645
|
*
|
|
22617
|
-
* It also triggers change detection by calling `scheduleTick` internally, which coalesces
|
|
22618
|
-
* multiple `markForCheck` calls to into one change detection run.
|
|
22619
|
-
*
|
|
22620
22646
|
* This can be used to ensure an {@link ChangeDetectionStrategy#OnPush OnPush} component is
|
|
22621
22647
|
* checked when it needs to be re-rendered but the two normal triggers haven't marked it
|
|
22622
22648
|
* dirty (i.e. inputs haven't changed and events haven't fired in the view).
|
|
@@ -27108,11 +27134,11 @@ function getAnnotation(type, name) {
|
|
|
27108
27134
|
* NgModule the component belongs to. We keep the list of compiled components here so that the
|
|
27109
27135
|
* TestBed can reset it later.
|
|
27110
27136
|
*/
|
|
27111
|
-
let ownerNgModule = new
|
|
27112
|
-
let verifiedNgModule = new
|
|
27137
|
+
let ownerNgModule = new WeakMap();
|
|
27138
|
+
let verifiedNgModule = new WeakMap();
|
|
27113
27139
|
function resetCompiledComponents() {
|
|
27114
|
-
ownerNgModule = new
|
|
27115
|
-
verifiedNgModule = new
|
|
27140
|
+
ownerNgModule = new WeakMap();
|
|
27141
|
+
verifiedNgModule = new WeakMap();
|
|
27116
27142
|
moduleQueue.length = 0;
|
|
27117
27143
|
}
|
|
27118
27144
|
/**
|
|
@@ -28707,8 +28733,8 @@ class NoopNgZone {
|
|
|
28707
28733
|
*/
|
|
28708
28734
|
/**
|
|
28709
28735
|
* The Testability service provides testing hooks that can be accessed from
|
|
28710
|
-
* the browser
|
|
28711
|
-
*
|
|
28736
|
+
* the browser. Each bootstrapped Angular application on the page will have
|
|
28737
|
+
* an instance of Testability.
|
|
28712
28738
|
* @publicApi
|
|
28713
28739
|
*/
|
|
28714
28740
|
class Testability {
|
|
@@ -30070,14 +30096,14 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
|
|
|
30070
30096
|
return this.nativeNode.nodeType == Node.ELEMENT_NODE ? this.nativeNode : null;
|
|
30071
30097
|
}
|
|
30072
30098
|
get name() {
|
|
30073
|
-
|
|
30074
|
-
|
|
30099
|
+
const context = getLContext(this.nativeNode);
|
|
30100
|
+
if (context !== null) {
|
|
30075
30101
|
const lView = context.lView;
|
|
30076
30102
|
const tData = lView[TVIEW].data;
|
|
30077
30103
|
const tNode = tData[context.nodeIndex];
|
|
30078
30104
|
return tNode.value;
|
|
30079
30105
|
}
|
|
30080
|
-
|
|
30106
|
+
else {
|
|
30081
30107
|
return this.nativeNode.nodeName;
|
|
30082
30108
|
}
|
|
30083
30109
|
}
|
|
@@ -30094,8 +30120,8 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
|
|
|
30094
30120
|
* - attribute bindings (e.g. `[attr.role]="menu"`)
|
|
30095
30121
|
*/
|
|
30096
30122
|
get properties() {
|
|
30097
|
-
const context =
|
|
30098
|
-
if (context
|
|
30123
|
+
const context = getLContext(this.nativeNode);
|
|
30124
|
+
if (context === null) {
|
|
30099
30125
|
return {};
|
|
30100
30126
|
}
|
|
30101
30127
|
const lView = context.lView;
|
|
@@ -30115,8 +30141,8 @@ class DebugElement__POST_R3__ extends DebugNode__POST_R3__ {
|
|
|
30115
30141
|
if (!element) {
|
|
30116
30142
|
return attributes;
|
|
30117
30143
|
}
|
|
30118
|
-
const context =
|
|
30119
|
-
if (context
|
|
30144
|
+
const context = getLContext(element);
|
|
30145
|
+
if (context === null) {
|
|
30120
30146
|
return {};
|
|
30121
30147
|
}
|
|
30122
30148
|
const lView = context.lView;
|
|
@@ -30267,7 +30293,7 @@ function isPrimitiveValue(value) {
|
|
|
30267
30293
|
value === null;
|
|
30268
30294
|
}
|
|
30269
30295
|
function _queryAllR3(parentElement, predicate, matches, elementsOnly) {
|
|
30270
|
-
const context =
|
|
30296
|
+
const context = getLContext(parentElement.nativeNode);
|
|
30271
30297
|
if (context !== null) {
|
|
30272
30298
|
const parentTNode = context.lView[TVIEW].data[context.nodeIndex];
|
|
30273
30299
|
_queryNodeChildrenR3(parentTNode, context.lView, predicate, matches, elementsOnly, parentElement.nativeNode);
|
|
@@ -33086,5 +33112,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
33086
33112
|
* Generated bundle index. Do not edit.
|
|
33087
33113
|
*/
|
|
33088
33114
|
|
|
33089
|
-
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$1 as 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, 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$3 as ɵ0, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, CREATE_ATTRIBUTE_DECORATOR__POST_R3__ as ɵCREATE_ATTRIBUTE_DECORATOR__POST_R3__, 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 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, zoneSchedulerFactory as ɵangular_packages_core_core_ba, USD_CURRENCY_CODE as ɵangular_packages_core_core_bb, _def as ɵangular_packages_core_core_bc, DebugContext as ɵangular_packages_core_core_bd, NgOnChangesFeatureImpl as ɵangular_packages_core_core_be, SCHEDULER as ɵangular_packages_core_core_bf, injectAttributeImpl as ɵangular_packages_core_core_bg, getLView as ɵangular_packages_core_core_bh, getBindingRoot as ɵangular_packages_core_core_bi, nextContextImpl as ɵangular_packages_core_core_bj, pureFunction1Internal as ɵangular_packages_core_core_bl, pureFunction2Internal as ɵangular_packages_core_core_bm, pureFunction3Internal as ɵangular_packages_core_core_bn, pureFunction4Internal as ɵangular_packages_core_core_bo, pureFunctionVInternal as ɵangular_packages_core_core_bp, getUrlSanitizer as ɵangular_packages_core_core_bq, makePropDecorator as ɵangular_packages_core_core_br, makeParamDecorator as ɵangular_packages_core_core_bs, getClosureSafeProperty as ɵangular_packages_core_core_bv, NullInjector as ɵangular_packages_core_core_bw, getInjectImplementation as ɵangular_packages_core_core_bx, getNativeByTNode as ɵangular_packages_core_core_bz, attachInjectFlag as ɵangular_packages_core_core_c, getRootContext as ɵangular_packages_core_core_cb, i18nPostprocess as ɵangular_packages_core_core_cc, 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, injectRenderer2 as ɵangular_packages_core_core_h, injectElementRef as ɵangular_packages_core_core_i, createElementRef as ɵangular_packages_core_core_j, getModuleFactory__PRE_R3__ as ɵangular_packages_core_core_k, injectTemplateRef as ɵangular_packages_core_core_l, createTemplateRef as ɵangular_packages_core_core_m, injectViewContainerRef as ɵangular_packages_core_core_n, DebugNode__PRE_R3__ as ɵangular_packages_core_core_o, DebugElement__PRE_R3__ as ɵangular_packages_core_core_p, getDebugNodeR2__PRE_R3__ as ɵangular_packages_core_core_q, injectChangeDetectorRef as ɵangular_packages_core_core_r, DefaultIterableDifferFactory as ɵangular_packages_core_core_s, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_t, defaultIterableDiffersFactory as ɵangular_packages_core_core_u, defaultKeyValueDiffersFactory as ɵangular_packages_core_core_v, _iterableDiffersFactory as ɵangular_packages_core_core_w, _keyValueDiffersFactory as ɵangular_packages_core_core_x, _localeFactory as ɵangular_packages_core_core_y, APPLICATION_MODULE_PROVIDERS 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, isSubscribable as ɵisSubscribable, ivyEnabled as ɵivyEnabled, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, noSideEffects as ɵnoSideEffects, 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, FactoryTarget as ɵɵFactoryTarget, ɵɵ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, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵngDeclareFactory, ɵɵngDeclareInjectable, ɵɵngDeclareInjector, ɵɵngDeclareNgModule, ɵɵngDeclarePipe, ɵɵ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, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵ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, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵviewQuery };
|
|
33115
|
+
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$1 as 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, 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$3 as ɵ0, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, CREATE_ATTRIBUTE_DECORATOR__POST_R3__ as ɵCREATE_ATTRIBUTE_DECORATOR__POST_R3__, 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 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, RuntimeError as ɵRuntimeError, 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, zoneSchedulerFactory as ɵangular_packages_core_core_ba, USD_CURRENCY_CODE as ɵangular_packages_core_core_bb, _def as ɵangular_packages_core_core_bc, DebugContext as ɵangular_packages_core_core_bd, NgOnChangesFeatureImpl as ɵangular_packages_core_core_be, SCHEDULER as ɵangular_packages_core_core_bf, injectAttributeImpl as ɵangular_packages_core_core_bg, getLView as ɵangular_packages_core_core_bh, getBindingRoot as ɵangular_packages_core_core_bi, nextContextImpl as ɵangular_packages_core_core_bj, pureFunction1Internal as ɵangular_packages_core_core_bl, pureFunction2Internal as ɵangular_packages_core_core_bm, pureFunction3Internal as ɵangular_packages_core_core_bn, pureFunction4Internal as ɵangular_packages_core_core_bo, pureFunctionVInternal as ɵangular_packages_core_core_bp, getUrlSanitizer as ɵangular_packages_core_core_bq, makePropDecorator as ɵangular_packages_core_core_br, makeParamDecorator as ɵangular_packages_core_core_bs, getClosureSafeProperty as ɵangular_packages_core_core_bv, NullInjector as ɵangular_packages_core_core_bw, getInjectImplementation as ɵangular_packages_core_core_bx, getNativeByTNode as ɵangular_packages_core_core_bz, attachInjectFlag as ɵangular_packages_core_core_c, getRootContext as ɵangular_packages_core_core_cb, i18nPostprocess as ɵangular_packages_core_core_cc, 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, injectRenderer2 as ɵangular_packages_core_core_h, injectElementRef as ɵangular_packages_core_core_i, createElementRef as ɵangular_packages_core_core_j, getModuleFactory__PRE_R3__ as ɵangular_packages_core_core_k, injectTemplateRef as ɵangular_packages_core_core_l, createTemplateRef as ɵangular_packages_core_core_m, injectViewContainerRef as ɵangular_packages_core_core_n, DebugNode__PRE_R3__ as ɵangular_packages_core_core_o, DebugElement__PRE_R3__ as ɵangular_packages_core_core_p, getDebugNodeR2__PRE_R3__ as ɵangular_packages_core_core_q, injectChangeDetectorRef as ɵangular_packages_core_core_r, DefaultIterableDifferFactory as ɵangular_packages_core_core_s, DefaultKeyValueDifferFactory as ɵangular_packages_core_core_t, defaultIterableDiffersFactory as ɵangular_packages_core_core_u, defaultKeyValueDiffersFactory as ɵangular_packages_core_core_v, _iterableDiffersFactory as ɵangular_packages_core_core_w, _keyValueDiffersFactory as ɵangular_packages_core_core_x, _localeFactory as ɵangular_packages_core_core_y, APPLICATION_MODULE_PROVIDERS 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, isSubscribable as ɵisSubscribable, ivyEnabled as ɵivyEnabled, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, moduleDef as ɵmod, moduleProvideDef as ɵmpd, ngContentDef as ɵncd, noSideEffects as ɵnoSideEffects, 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, FactoryTarget as ɵɵFactoryTarget, ɵɵ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, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵngDeclareFactory, ɵɵngDeclareInjectable, ɵɵngDeclareInjector, ɵɵngDeclareNgModule, ɵɵngDeclarePipe, ɵɵ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, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵ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, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵviewQuery };
|
|
33090
33116
|
//# sourceMappingURL=core.js.map
|