@angular/core 14.0.0-next.3 → 14.0.0-next.4
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/core.d.ts +27 -11
- package/esm2020/src/application_init.mjs +4 -3
- package/esm2020/src/application_module.mjs +5 -95
- package/esm2020/src/application_ref.mjs +4 -3
- package/esm2020/src/application_tokens.mjs +5 -2
- package/esm2020/src/core_render3_private_export.mjs +2 -1
- package/esm2020/src/debug/debug_node.mjs +11 -10
- package/esm2020/src/i18n/tokens.mjs +39 -3
- package/esm2020/src/linker/compiler.mjs +4 -3
- package/esm2020/src/render3/component_ref.mjs +1 -11
- package/esm2020/src/render3/context_discovery.mjs +28 -30
- package/esm2020/src/render3/instructions/lview_debug.mjs +5 -2
- package/esm2020/src/render3/instructions/shared.mjs +9 -4
- package/esm2020/src/render3/interfaces/context.mjs +35 -2
- package/esm2020/src/render3/interfaces/lview_tracking.mjs +30 -0
- package/esm2020/src/render3/interfaces/view.mjs +3 -2
- package/esm2020/src/render3/node_manipulation.mjs +4 -1
- package/esm2020/src/render3/util/discovery_utils.mjs +33 -22
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/fesm2015/core.mjs +200 -170
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +1 -1
- package/fesm2020/core.mjs +200 -163
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +1 -1
- package/package.json +1 -1
- package/schematics/migrations/entry-components/util.js +2 -2
- package/schematics/utils/import_manager.js +13 -12
- package/schematics/utils/typescript/imports.js +6 -5
- package/testing/testing.d.ts +1 -1
package/fesm2015/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.0-next.
|
|
2
|
+
* @license Angular v14.0.0-next.4
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1210,6 +1210,7 @@ const DECLARATION_COMPONENT_VIEW = 16;
|
|
|
1210
1210
|
const DECLARATION_LCONTAINER = 17;
|
|
1211
1211
|
const PREORDER_HOOK_FLAGS = 18;
|
|
1212
1212
|
const QUERIES = 19;
|
|
1213
|
+
const ID = 20;
|
|
1213
1214
|
/**
|
|
1214
1215
|
* Size of LView's header. Necessary to adjust for it when setting slots.
|
|
1215
1216
|
*
|
|
@@ -1217,7 +1218,7 @@ const QUERIES = 19;
|
|
|
1217
1218
|
* instruction index into `LView` index. All other indexes should be in the `LView` index space and
|
|
1218
1219
|
* there should be no need to refer to `HEADER_OFFSET` anywhere else.
|
|
1219
1220
|
*/
|
|
1220
|
-
const HEADER_OFFSET =
|
|
1221
|
+
const HEADER_OFFSET = 21;
|
|
1221
1222
|
/**
|
|
1222
1223
|
* Converts `TViewType` into human readable text.
|
|
1223
1224
|
* Make sure this matches with `TViewType`
|
|
@@ -6155,6 +6156,75 @@ function getSanitizer() {
|
|
|
6155
6156
|
return lView && lView[SANITIZER];
|
|
6156
6157
|
}
|
|
6157
6158
|
|
|
6159
|
+
/**
|
|
6160
|
+
* @license
|
|
6161
|
+
* Copyright Google LLC All Rights Reserved.
|
|
6162
|
+
*
|
|
6163
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
6164
|
+
* found in the LICENSE file at https://angular.io/license
|
|
6165
|
+
*/
|
|
6166
|
+
// Keeps track of the currently-active LViews.
|
|
6167
|
+
const TRACKED_LVIEWS = new Map();
|
|
6168
|
+
// Used for generating unique IDs for LViews.
|
|
6169
|
+
let uniqueIdCounter = 0;
|
|
6170
|
+
/** Starts tracking an LView and returns a unique ID that can be used for future lookups. */
|
|
6171
|
+
function registerLView(lView) {
|
|
6172
|
+
const id = uniqueIdCounter++;
|
|
6173
|
+
TRACKED_LVIEWS.set(id, lView);
|
|
6174
|
+
return id;
|
|
6175
|
+
}
|
|
6176
|
+
/** Gets an LView by its unique ID. */
|
|
6177
|
+
function getLViewById(id) {
|
|
6178
|
+
ngDevMode && assertNumber(id, 'ID used for LView lookup must be a number');
|
|
6179
|
+
return TRACKED_LVIEWS.get(id) || null;
|
|
6180
|
+
}
|
|
6181
|
+
/** Stops tracking an LView. */
|
|
6182
|
+
function unregisterLView(lView) {
|
|
6183
|
+
ngDevMode && assertNumber(lView[ID], 'Cannot stop tracking an LView that does not have an ID');
|
|
6184
|
+
TRACKED_LVIEWS.delete(lView[ID]);
|
|
6185
|
+
}
|
|
6186
|
+
|
|
6187
|
+
/**
|
|
6188
|
+
* @license
|
|
6189
|
+
* Copyright Google LLC All Rights Reserved.
|
|
6190
|
+
*
|
|
6191
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
6192
|
+
* found in the LICENSE file at https://angular.io/license
|
|
6193
|
+
*/
|
|
6194
|
+
/**
|
|
6195
|
+
* The internal view context which is specific to a given DOM element, directive or
|
|
6196
|
+
* component instance. Each value in here (besides the LView and element node details)
|
|
6197
|
+
* can be present, null or undefined. If undefined then it implies the value has not been
|
|
6198
|
+
* looked up yet, otherwise, if null, then a lookup was executed and nothing was found.
|
|
6199
|
+
*
|
|
6200
|
+
* Each value will get filled when the respective value is examined within the getContext
|
|
6201
|
+
* function. The component, element and each directive instance will share the same instance
|
|
6202
|
+
* of the context.
|
|
6203
|
+
*/
|
|
6204
|
+
class LContext {
|
|
6205
|
+
constructor(
|
|
6206
|
+
/**
|
|
6207
|
+
* ID of the component's parent view data.
|
|
6208
|
+
*/
|
|
6209
|
+
lViewId,
|
|
6210
|
+
/**
|
|
6211
|
+
* The index instance of the node.
|
|
6212
|
+
*/
|
|
6213
|
+
nodeIndex,
|
|
6214
|
+
/**
|
|
6215
|
+
* The instance of the DOM node that is attached to the lNode.
|
|
6216
|
+
*/
|
|
6217
|
+
native) {
|
|
6218
|
+
this.lViewId = lViewId;
|
|
6219
|
+
this.nodeIndex = nodeIndex;
|
|
6220
|
+
this.native = native;
|
|
6221
|
+
}
|
|
6222
|
+
/** Component's parent view data. */
|
|
6223
|
+
get lView() {
|
|
6224
|
+
return getLViewById(this.lViewId);
|
|
6225
|
+
}
|
|
6226
|
+
}
|
|
6227
|
+
|
|
6158
6228
|
/**
|
|
6159
6229
|
* @license
|
|
6160
6230
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -6187,7 +6257,7 @@ function getLContext(target) {
|
|
|
6187
6257
|
if (mpValue) {
|
|
6188
6258
|
// only when it's an array is it considered an LView instance
|
|
6189
6259
|
// ... otherwise it's an already constructed LContext instance
|
|
6190
|
-
if (
|
|
6260
|
+
if (isLView(mpValue)) {
|
|
6191
6261
|
const lView = mpValue;
|
|
6192
6262
|
let nodeIndex;
|
|
6193
6263
|
let component = undefined;
|
|
@@ -6246,13 +6316,7 @@ function getLContext(target) {
|
|
|
6246
6316
|
while (parent = parent.parentNode) {
|
|
6247
6317
|
const parentContext = readPatchedData(parent);
|
|
6248
6318
|
if (parentContext) {
|
|
6249
|
-
|
|
6250
|
-
if (Array.isArray(parentContext)) {
|
|
6251
|
-
lView = parentContext;
|
|
6252
|
-
}
|
|
6253
|
-
else {
|
|
6254
|
-
lView = parentContext.lView;
|
|
6255
|
-
}
|
|
6319
|
+
const lView = Array.isArray(parentContext) ? parentContext : parentContext.lView;
|
|
6256
6320
|
// the edge of the app was also reached here through another means
|
|
6257
6321
|
// (maybe because the DOM was changed manually).
|
|
6258
6322
|
if (!lView) {
|
|
@@ -6275,14 +6339,7 @@ function getLContext(target) {
|
|
|
6275
6339
|
* Creates an empty instance of a `LContext` context
|
|
6276
6340
|
*/
|
|
6277
6341
|
function createLContext(lView, nodeIndex, native) {
|
|
6278
|
-
return
|
|
6279
|
-
lView,
|
|
6280
|
-
nodeIndex,
|
|
6281
|
-
native,
|
|
6282
|
-
component: undefined,
|
|
6283
|
-
directives: undefined,
|
|
6284
|
-
localRefs: undefined,
|
|
6285
|
-
};
|
|
6342
|
+
return new LContext(lView[ID], nodeIndex, native);
|
|
6286
6343
|
}
|
|
6287
6344
|
/**
|
|
6288
6345
|
* Takes a component instance and returns the view for that component.
|
|
@@ -6291,21 +6348,24 @@ function createLContext(lView, nodeIndex, native) {
|
|
|
6291
6348
|
* @returns The component's view
|
|
6292
6349
|
*/
|
|
6293
6350
|
function getComponentViewByInstance(componentInstance) {
|
|
6294
|
-
let
|
|
6295
|
-
let
|
|
6296
|
-
if (
|
|
6297
|
-
const
|
|
6298
|
-
|
|
6299
|
-
|
|
6351
|
+
let patchedData = readPatchedData(componentInstance);
|
|
6352
|
+
let lView;
|
|
6353
|
+
if (isLView(patchedData)) {
|
|
6354
|
+
const contextLView = patchedData;
|
|
6355
|
+
const nodeIndex = findViaComponent(contextLView, componentInstance);
|
|
6356
|
+
lView = getComponentLViewByIndex(nodeIndex, contextLView);
|
|
6357
|
+
const context = createLContext(contextLView, nodeIndex, lView[HOST]);
|
|
6300
6358
|
context.component = componentInstance;
|
|
6301
6359
|
attachPatchData(componentInstance, context);
|
|
6302
6360
|
attachPatchData(context.native, context);
|
|
6303
6361
|
}
|
|
6304
6362
|
else {
|
|
6305
|
-
const context =
|
|
6306
|
-
|
|
6363
|
+
const context = patchedData;
|
|
6364
|
+
const contextLView = context.lView;
|
|
6365
|
+
ngDevMode && assertLView(contextLView);
|
|
6366
|
+
lView = getComponentLViewByIndex(context.nodeIndex, contextLView);
|
|
6307
6367
|
}
|
|
6308
|
-
return
|
|
6368
|
+
return lView;
|
|
6309
6369
|
}
|
|
6310
6370
|
/**
|
|
6311
6371
|
* This property will be monkey-patched on elements, components and directives.
|
|
@@ -6317,7 +6377,10 @@ const MONKEY_PATCH_KEY_NAME = '__ngContext__';
|
|
|
6317
6377
|
*/
|
|
6318
6378
|
function attachPatchData(target, data) {
|
|
6319
6379
|
ngDevMode && assertDefined(target, 'Target expected');
|
|
6320
|
-
|
|
6380
|
+
// Only attach the ID of the view in order to avoid memory leaks (see #41047). We only do this
|
|
6381
|
+
// for `LView`, because we have control over when an `LView` is created and destroyed, whereas
|
|
6382
|
+
// we can't know when to remove an `LContext`.
|
|
6383
|
+
target[MONKEY_PATCH_KEY_NAME] = isLView(data) ? data[ID] : data;
|
|
6321
6384
|
}
|
|
6322
6385
|
/**
|
|
6323
6386
|
* Returns the monkey-patch value data present on the target (which could be
|
|
@@ -6325,12 +6388,13 @@ function attachPatchData(target, data) {
|
|
|
6325
6388
|
*/
|
|
6326
6389
|
function readPatchedData(target) {
|
|
6327
6390
|
ngDevMode && assertDefined(target, 'Target expected');
|
|
6328
|
-
|
|
6391
|
+
const data = target[MONKEY_PATCH_KEY_NAME];
|
|
6392
|
+
return (typeof data === 'number') ? getLViewById(data) : data || null;
|
|
6329
6393
|
}
|
|
6330
6394
|
function readPatchedLView(target) {
|
|
6331
6395
|
const value = readPatchedData(target);
|
|
6332
6396
|
if (value) {
|
|
6333
|
-
return
|
|
6397
|
+
return isLView(value) ? value : value.lView;
|
|
6334
6398
|
}
|
|
6335
6399
|
return null;
|
|
6336
6400
|
}
|
|
@@ -7277,6 +7341,8 @@ function cleanUpView(tView, lView) {
|
|
|
7277
7341
|
lQueries.detachView(tView);
|
|
7278
7342
|
}
|
|
7279
7343
|
}
|
|
7344
|
+
// Unregister the view once everything else has been cleaned up.
|
|
7345
|
+
unregisterLView(lView);
|
|
7280
7346
|
}
|
|
7281
7347
|
}
|
|
7282
7348
|
/** Removes listeners and unsubscribes from output subscriptions */
|
|
@@ -9057,6 +9123,9 @@ class LViewDebug {
|
|
|
9057
9123
|
get tHost() {
|
|
9058
9124
|
return this._raw_lView[T_HOST];
|
|
9059
9125
|
}
|
|
9126
|
+
get id() {
|
|
9127
|
+
return this._raw_lView[ID];
|
|
9128
|
+
}
|
|
9060
9129
|
get decls() {
|
|
9061
9130
|
return toLViewRange(this.tView, this._raw_lView, HEADER_OFFSET, this.tView.bindingStartIndex);
|
|
9062
9131
|
}
|
|
@@ -9301,6 +9370,7 @@ function createLView(parentLView, tView, context, flags, host, tHostNode, render
|
|
|
9301
9370
|
lView[SANITIZER] = sanitizer || parentLView && parentLView[SANITIZER] || null;
|
|
9302
9371
|
lView[INJECTOR$1] = injector || parentLView && parentLView[INJECTOR$1] || null;
|
|
9303
9372
|
lView[T_HOST] = tHostNode;
|
|
9373
|
+
lView[ID] = registerLView(lView);
|
|
9304
9374
|
ngDevMode &&
|
|
9305
9375
|
assertEqual(tView.type == 2 /* Embedded */ ? parentLView !== null : true, true, 'Embedded views must have parentLView');
|
|
9306
9376
|
lView[DECLARATION_COMPONENT_VIEW] =
|
|
@@ -10825,8 +10895,11 @@ function tickRootContext(rootContext) {
|
|
|
10825
10895
|
for (let i = 0; i < rootContext.components.length; i++) {
|
|
10826
10896
|
const rootComponent = rootContext.components[i];
|
|
10827
10897
|
const lView = readPatchedLView(rootComponent);
|
|
10828
|
-
|
|
10829
|
-
|
|
10898
|
+
// We might not have an `LView` if the component was destroyed.
|
|
10899
|
+
if (lView !== null) {
|
|
10900
|
+
const tView = lView[TVIEW];
|
|
10901
|
+
renderComponentOrTemplate(tView, lView, tView.template, rootComponent);
|
|
10902
|
+
}
|
|
10830
10903
|
}
|
|
10831
10904
|
}
|
|
10832
10905
|
function detectChangesInternal(tView, lView, context) {
|
|
@@ -11685,12 +11758,16 @@ Injector.__NG_ELEMENT_ID__ = -1 /* Injector */;
|
|
|
11685
11758
|
* @globalApi ng
|
|
11686
11759
|
*/
|
|
11687
11760
|
function getComponent$1(element) {
|
|
11688
|
-
assertDomElement(element);
|
|
11761
|
+
ngDevMode && assertDomElement(element);
|
|
11689
11762
|
const context = getLContext(element);
|
|
11690
11763
|
if (context === null)
|
|
11691
11764
|
return null;
|
|
11692
11765
|
if (context.component === undefined) {
|
|
11693
|
-
|
|
11766
|
+
const lView = context.lView;
|
|
11767
|
+
if (lView === null) {
|
|
11768
|
+
return null;
|
|
11769
|
+
}
|
|
11770
|
+
context.component = getComponentAtNodeIndex(context.nodeIndex, lView);
|
|
11694
11771
|
}
|
|
11695
11772
|
return context.component;
|
|
11696
11773
|
}
|
|
@@ -11709,7 +11786,8 @@ function getComponent$1(element) {
|
|
|
11709
11786
|
function getContext(element) {
|
|
11710
11787
|
assertDomElement(element);
|
|
11711
11788
|
const context = getLContext(element);
|
|
11712
|
-
|
|
11789
|
+
const lView = context ? context.lView : null;
|
|
11790
|
+
return lView === null ? null : lView[CONTEXT];
|
|
11713
11791
|
}
|
|
11714
11792
|
/**
|
|
11715
11793
|
* Retrieves the component instance whose view contains the DOM element.
|
|
@@ -11728,11 +11806,10 @@ function getContext(element) {
|
|
|
11728
11806
|
*/
|
|
11729
11807
|
function getOwningComponent(elementOrDir) {
|
|
11730
11808
|
const context = getLContext(elementOrDir);
|
|
11731
|
-
|
|
11809
|
+
let lView = context ? context.lView : null;
|
|
11810
|
+
if (lView === null)
|
|
11732
11811
|
return null;
|
|
11733
|
-
let lView = context.lView;
|
|
11734
11812
|
let parent;
|
|
11735
|
-
ngDevMode && assertLView(lView);
|
|
11736
11813
|
while (lView[TVIEW].type === 2 /* Embedded */ && (parent = getLViewParent(lView))) {
|
|
11737
11814
|
lView = parent;
|
|
11738
11815
|
}
|
|
@@ -11750,7 +11827,8 @@ function getOwningComponent(elementOrDir) {
|
|
|
11750
11827
|
* @globalApi ng
|
|
11751
11828
|
*/
|
|
11752
11829
|
function getRootComponents(elementOrDir) {
|
|
11753
|
-
|
|
11830
|
+
const lView = readPatchedLView(elementOrDir);
|
|
11831
|
+
return lView !== null ? [...getRootContext(lView).components] : [];
|
|
11754
11832
|
}
|
|
11755
11833
|
/**
|
|
11756
11834
|
* Retrieves an `Injector` associated with an element, component or directive instance.
|
|
@@ -11764,10 +11842,11 @@ function getRootComponents(elementOrDir) {
|
|
|
11764
11842
|
*/
|
|
11765
11843
|
function getInjector(elementOrDir) {
|
|
11766
11844
|
const context = getLContext(elementOrDir);
|
|
11767
|
-
|
|
11845
|
+
const lView = context ? context.lView : null;
|
|
11846
|
+
if (lView === null)
|
|
11768
11847
|
return Injector.NULL;
|
|
11769
|
-
const tNode =
|
|
11770
|
-
return new NodeInjector(tNode,
|
|
11848
|
+
const tNode = lView[TVIEW].data[context.nodeIndex];
|
|
11849
|
+
return new NodeInjector(tNode, lView);
|
|
11771
11850
|
}
|
|
11772
11851
|
/**
|
|
11773
11852
|
* Retrieve a set of injection tokens at a given DOM node.
|
|
@@ -11776,9 +11855,9 @@ function getInjector(elementOrDir) {
|
|
|
11776
11855
|
*/
|
|
11777
11856
|
function getInjectionTokens(element) {
|
|
11778
11857
|
const context = getLContext(element);
|
|
11779
|
-
|
|
11858
|
+
const lView = context ? context.lView : null;
|
|
11859
|
+
if (lView === null)
|
|
11780
11860
|
return [];
|
|
11781
|
-
const lView = context.lView;
|
|
11782
11861
|
const tView = lView[TVIEW];
|
|
11783
11862
|
const tNode = tView.data[context.nodeIndex];
|
|
11784
11863
|
const providerTokens = [];
|
|
@@ -11828,10 +11907,10 @@ function getDirectives(node) {
|
|
|
11828
11907
|
return [];
|
|
11829
11908
|
}
|
|
11830
11909
|
const context = getLContext(node);
|
|
11831
|
-
|
|
11910
|
+
const lView = context ? context.lView : null;
|
|
11911
|
+
if (lView === null) {
|
|
11832
11912
|
return [];
|
|
11833
11913
|
}
|
|
11834
|
-
const lView = context.lView;
|
|
11835
11914
|
const tView = lView[TVIEW];
|
|
11836
11915
|
const nodeIndex = context.nodeIndex;
|
|
11837
11916
|
if (!(tView === null || tView === void 0 ? void 0 : tView.data[nodeIndex])) {
|
|
@@ -11891,7 +11970,11 @@ function getLocalRefs(target) {
|
|
|
11891
11970
|
if (context === null)
|
|
11892
11971
|
return {};
|
|
11893
11972
|
if (context.localRefs === undefined) {
|
|
11894
|
-
|
|
11973
|
+
const lView = context.lView;
|
|
11974
|
+
if (lView === null) {
|
|
11975
|
+
return {};
|
|
11976
|
+
}
|
|
11977
|
+
context.localRefs = discoverLocalRefs(lView, context.nodeIndex);
|
|
11895
11978
|
}
|
|
11896
11979
|
return context.localRefs || {};
|
|
11897
11980
|
}
|
|
@@ -11955,11 +12038,11 @@ function getRenderedText(component) {
|
|
|
11955
12038
|
* @globalApi ng
|
|
11956
12039
|
*/
|
|
11957
12040
|
function getListeners(element) {
|
|
11958
|
-
assertDomElement(element);
|
|
12041
|
+
ngDevMode && assertDomElement(element);
|
|
11959
12042
|
const lContext = getLContext(element);
|
|
11960
|
-
|
|
12043
|
+
const lView = lContext === null ? null : lContext.lView;
|
|
12044
|
+
if (lView === null)
|
|
11961
12045
|
return [];
|
|
11962
|
-
const lView = lContext.lView;
|
|
11963
12046
|
const tView = lView[TVIEW];
|
|
11964
12047
|
const lCleanup = lView[CLEANUP];
|
|
11965
12048
|
const tCleanup = tView.cleanup;
|
|
@@ -12010,10 +12093,10 @@ function getDebugNode$1(element) {
|
|
|
12010
12093
|
throw new Error('Expecting instance of DOM Element');
|
|
12011
12094
|
}
|
|
12012
12095
|
const lContext = getLContext(element);
|
|
12013
|
-
|
|
12096
|
+
const lView = lContext ? lContext.lView : null;
|
|
12097
|
+
if (lView === null) {
|
|
12014
12098
|
return null;
|
|
12015
12099
|
}
|
|
12016
|
-
const lView = lContext.lView;
|
|
12017
12100
|
const nodeIndex = lContext.nodeIndex;
|
|
12018
12101
|
if (nodeIndex !== -1) {
|
|
12019
12102
|
const valueInLView = lView[nodeIndex];
|
|
@@ -12038,6 +12121,7 @@ function getComponentLView(target) {
|
|
|
12038
12121
|
const lContext = getLContext(target);
|
|
12039
12122
|
const nodeIndx = lContext.nodeIndex;
|
|
12040
12123
|
const lView = lContext.lView;
|
|
12124
|
+
ngDevMode && assertLView(lView);
|
|
12041
12125
|
const componentLView = lView[nodeIndx];
|
|
12042
12126
|
ngDevMode && assertLView(componentLView);
|
|
12043
12127
|
return componentLView;
|
|
@@ -21088,7 +21172,7 @@ class Version {
|
|
|
21088
21172
|
/**
|
|
21089
21173
|
* @publicApi
|
|
21090
21174
|
*/
|
|
21091
|
-
const VERSION = new Version('14.0.0-next.
|
|
21175
|
+
const VERSION = new Version('14.0.0-next.4');
|
|
21092
21176
|
|
|
21093
21177
|
/**
|
|
21094
21178
|
* @license
|
|
@@ -21493,14 +21577,6 @@ function getNamespace(elementName) {
|
|
|
21493
21577
|
const name = elementName.toLowerCase();
|
|
21494
21578
|
return name === 'svg' ? SVG_NAMESPACE : (name === 'math' ? MATH_ML_NAMESPACE : null);
|
|
21495
21579
|
}
|
|
21496
|
-
/**
|
|
21497
|
-
* A change detection scheduler token for {@link RootContext}. This token is the default value used
|
|
21498
|
-
* for the default `RootContext` found in the {@link ROOT_CONTEXT} token.
|
|
21499
|
-
*/
|
|
21500
|
-
const SCHEDULER = new InjectionToken('SCHEDULER_TOKEN', {
|
|
21501
|
-
providedIn: 'root',
|
|
21502
|
-
factory: () => defaultScheduler,
|
|
21503
|
-
});
|
|
21504
21580
|
function createChainedInjector(rootViewInjector, moduleInjector) {
|
|
21505
21581
|
return {
|
|
21506
21582
|
get: (token, notFoundValue, flags) => {
|
|
@@ -24810,10 +24886,11 @@ class ApplicationInitStatus {
|
|
|
24810
24886
|
}
|
|
24811
24887
|
}
|
|
24812
24888
|
ApplicationInitStatus.ɵfac = function ApplicationInitStatus_Factory(t) { return new (t || ApplicationInitStatus)(ɵɵinject(APP_INITIALIZER, 8)); };
|
|
24813
|
-
ApplicationInitStatus.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: ApplicationInitStatus, factory: ApplicationInitStatus.ɵfac });
|
|
24889
|
+
ApplicationInitStatus.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: ApplicationInitStatus, factory: ApplicationInitStatus.ɵfac, providedIn: 'root' });
|
|
24814
24890
|
(function () {
|
|
24815
24891
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ApplicationInitStatus, [{
|
|
24816
|
-
type: Injectable
|
|
24892
|
+
type: Injectable,
|
|
24893
|
+
args: [{ providedIn: 'root' }]
|
|
24817
24894
|
}], function () {
|
|
24818
24895
|
return [{ type: undefined, decorators: [{
|
|
24819
24896
|
type: Inject,
|
|
@@ -24842,7 +24919,10 @@ ApplicationInitStatus.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: Appli
|
|
|
24842
24919
|
*
|
|
24843
24920
|
* @publicApi
|
|
24844
24921
|
*/
|
|
24845
|
-
const APP_ID = new InjectionToken('AppId'
|
|
24922
|
+
const APP_ID = new InjectionToken('AppId', {
|
|
24923
|
+
providedIn: 'root',
|
|
24924
|
+
factory: _appIdRandomProviderFactory,
|
|
24925
|
+
});
|
|
24846
24926
|
function _appIdRandomProviderFactory() {
|
|
24847
24927
|
return `${_randomChar()}${_randomChar()}${_randomChar()}`;
|
|
24848
24928
|
}
|
|
@@ -24928,6 +25008,33 @@ Console.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: Console, factory: C
|
|
|
24928
25008
|
* Use of this source code is governed by an MIT-style license that can be
|
|
24929
25009
|
* found in the LICENSE file at https://angular.io/license
|
|
24930
25010
|
*/
|
|
25011
|
+
/**
|
|
25012
|
+
* Work out the locale from the potential global properties.
|
|
25013
|
+
*
|
|
25014
|
+
* * Closure Compiler: use `goog.getLocale()`.
|
|
25015
|
+
* * Ivy enabled: use `$localize.locale`
|
|
25016
|
+
*/
|
|
25017
|
+
function getGlobalLocale() {
|
|
25018
|
+
if (typeof ngI18nClosureMode !== 'undefined' && ngI18nClosureMode &&
|
|
25019
|
+
typeof goog !== 'undefined' && goog.getLocale() !== 'en') {
|
|
25020
|
+
// * The default `goog.getLocale()` value is `en`, while Angular used `en-US`.
|
|
25021
|
+
// * In order to preserve backwards compatibility, we use Angular default value over
|
|
25022
|
+
// Closure Compiler's one.
|
|
25023
|
+
return goog.getLocale();
|
|
25024
|
+
}
|
|
25025
|
+
else {
|
|
25026
|
+
// KEEP `typeof $localize !== 'undefined' && $localize.locale` IN SYNC WITH THE LOCALIZE
|
|
25027
|
+
// COMPILE-TIME INLINER.
|
|
25028
|
+
//
|
|
25029
|
+
// * During compile time inlining of translations the expression will be replaced
|
|
25030
|
+
// with a string literal that is the current locale. Other forms of this expression are not
|
|
25031
|
+
// guaranteed to be replaced.
|
|
25032
|
+
//
|
|
25033
|
+
// * During runtime translation evaluation, the developer is required to set `$localize.locale`
|
|
25034
|
+
// if required, or just to provide their own `LOCALE_ID` provider.
|
|
25035
|
+
return (typeof $localize !== 'undefined' && $localize.locale) || DEFAULT_LOCALE_ID;
|
|
25036
|
+
}
|
|
25037
|
+
}
|
|
24931
25038
|
/**
|
|
24932
25039
|
* Provide this token to set the locale of your application.
|
|
24933
25040
|
* It is used for i18n extraction, by i18n pipes (DatePipe, I18nPluralPipe, CurrencyPipe,
|
|
@@ -24950,7 +25057,10 @@ Console.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: Console, factory: C
|
|
|
24950
25057
|
*
|
|
24951
25058
|
* @publicApi
|
|
24952
25059
|
*/
|
|
24953
|
-
const LOCALE_ID = new InjectionToken('LocaleId'
|
|
25060
|
+
const LOCALE_ID = new InjectionToken('LocaleId', {
|
|
25061
|
+
providedIn: 'root',
|
|
25062
|
+
factory: () => inject(LOCALE_ID, InjectFlags.Optional | InjectFlags.SkipSelf) || getGlobalLocale(),
|
|
25063
|
+
});
|
|
24954
25064
|
/**
|
|
24955
25065
|
* Provide this token to set the default currency code your application uses for
|
|
24956
25066
|
* CurrencyPipe when there is no currency code passed into it. This is only used by
|
|
@@ -24989,7 +25099,10 @@ const LOCALE_ID = new InjectionToken('LocaleId');
|
|
|
24989
25099
|
*
|
|
24990
25100
|
* @publicApi
|
|
24991
25101
|
*/
|
|
24992
|
-
const DEFAULT_CURRENCY_CODE = new InjectionToken('DefaultCurrencyCode'
|
|
25102
|
+
const DEFAULT_CURRENCY_CODE = new InjectionToken('DefaultCurrencyCode', {
|
|
25103
|
+
providedIn: 'root',
|
|
25104
|
+
factory: () => USD_CURRENCY_CODE,
|
|
25105
|
+
});
|
|
24993
25106
|
/**
|
|
24994
25107
|
* Use this token at bootstrap to provide the content of your translation file (`xtb`,
|
|
24995
25108
|
* `xlf` or `xlf2`) when you want to translate your application in another language.
|
|
@@ -25156,10 +25269,11 @@ class Compiler {
|
|
|
25156
25269
|
}
|
|
25157
25270
|
}
|
|
25158
25271
|
Compiler.ɵfac = function Compiler_Factory(t) { return new (t || Compiler)(); };
|
|
25159
|
-
Compiler.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: Compiler, factory: Compiler.ɵfac });
|
|
25272
|
+
Compiler.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: Compiler, factory: Compiler.ɵfac, providedIn: 'root' });
|
|
25160
25273
|
(function () {
|
|
25161
25274
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(Compiler, [{
|
|
25162
|
-
type: Injectable
|
|
25275
|
+
type: Injectable,
|
|
25276
|
+
args: [{ providedIn: 'root' }]
|
|
25163
25277
|
}], null, null);
|
|
25164
25278
|
})();
|
|
25165
25279
|
/**
|
|
@@ -26527,10 +26641,11 @@ class ApplicationRef {
|
|
|
26527
26641
|
}
|
|
26528
26642
|
}
|
|
26529
26643
|
ApplicationRef.ɵfac = function ApplicationRef_Factory(t) { return new (t || ApplicationRef)(ɵɵinject(NgZone), ɵɵinject(Injector), ɵɵinject(ErrorHandler), ɵɵinject(ComponentFactoryResolver$1), ɵɵinject(ApplicationInitStatus)); };
|
|
26530
|
-
ApplicationRef.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: ApplicationRef, factory: ApplicationRef.ɵfac });
|
|
26644
|
+
ApplicationRef.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: ApplicationRef, factory: ApplicationRef.ɵfac, providedIn: 'root' });
|
|
26531
26645
|
(function () {
|
|
26532
26646
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ApplicationRef, [{
|
|
26533
|
-
type: Injectable
|
|
26647
|
+
type: Injectable,
|
|
26648
|
+
args: [{ providedIn: 'root' }]
|
|
26534
26649
|
}], function () { return [{ type: NgZone }, { type: Injector }, { type: ErrorHandler }, { type: ComponentFactoryResolver$1 }, { type: ApplicationInitStatus }]; }, null);
|
|
26535
26650
|
})();
|
|
26536
26651
|
function remove(list, el) {
|
|
@@ -26937,8 +27052,8 @@ class DebugElement extends DebugNode {
|
|
|
26937
27052
|
*/
|
|
26938
27053
|
get name() {
|
|
26939
27054
|
const context = getLContext(this.nativeNode);
|
|
26940
|
-
|
|
26941
|
-
|
|
27055
|
+
const lView = context ? context.lView : null;
|
|
27056
|
+
if (lView !== null) {
|
|
26942
27057
|
const tData = lView[TVIEW].data;
|
|
26943
27058
|
const tNode = tData[context.nodeIndex];
|
|
26944
27059
|
return tNode.value;
|
|
@@ -26961,10 +27076,10 @@ class DebugElement extends DebugNode {
|
|
|
26961
27076
|
*/
|
|
26962
27077
|
get properties() {
|
|
26963
27078
|
const context = getLContext(this.nativeNode);
|
|
26964
|
-
|
|
27079
|
+
const lView = context ? context.lView : null;
|
|
27080
|
+
if (lView === null) {
|
|
26965
27081
|
return {};
|
|
26966
27082
|
}
|
|
26967
|
-
const lView = context.lView;
|
|
26968
27083
|
const tData = lView[TVIEW].data;
|
|
26969
27084
|
const tNode = tData[context.nodeIndex];
|
|
26970
27085
|
const properties = {};
|
|
@@ -26985,10 +27100,10 @@ class DebugElement extends DebugNode {
|
|
|
26985
27100
|
return attributes;
|
|
26986
27101
|
}
|
|
26987
27102
|
const context = getLContext(element);
|
|
26988
|
-
|
|
27103
|
+
const lView = context ? context.lView : null;
|
|
27104
|
+
if (lView === null) {
|
|
26989
27105
|
return {};
|
|
26990
27106
|
}
|
|
26991
|
-
const lView = context.lView;
|
|
26992
27107
|
const tNodeAttrs = lView[TVIEW].data[context.nodeIndex].attrs;
|
|
26993
27108
|
const lowercaseTNodeAttrs = [];
|
|
26994
27109
|
// For debug nodes we take the element's attribute directly from the DOM since it allows us
|
|
@@ -27182,9 +27297,10 @@ function isPrimitiveValue(value) {
|
|
|
27182
27297
|
}
|
|
27183
27298
|
function _queryAll(parentElement, predicate, matches, elementsOnly) {
|
|
27184
27299
|
const context = getLContext(parentElement.nativeNode);
|
|
27185
|
-
|
|
27186
|
-
|
|
27187
|
-
|
|
27300
|
+
const lView = context ? context.lView : null;
|
|
27301
|
+
if (lView !== null) {
|
|
27302
|
+
const parentTNode = lView[TVIEW].data[context.nodeIndex];
|
|
27303
|
+
_queryNodeChildren(parentTNode, lView, predicate, matches, elementsOnly, parentElement.nativeNode);
|
|
27188
27304
|
}
|
|
27189
27305
|
else {
|
|
27190
27306
|
// If the context is null, then `parentElement` was either created with Renderer2 or native DOM
|
|
@@ -28529,94 +28645,9 @@ const _CORE_PLATFORM_PROVIDERS = [
|
|
|
28529
28645
|
const platformCore = createPlatformFactory(null, 'core', _CORE_PLATFORM_PROVIDERS);
|
|
28530
28646
|
|
|
28531
28647
|
/**
|
|
28532
|
-
* @license
|
|
28533
|
-
* Copyright Google LLC All Rights Reserved.
|
|
28534
|
-
*
|
|
28535
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
28536
|
-
* found in the LICENSE file at https://angular.io/license
|
|
28537
|
-
*/
|
|
28538
|
-
function _localeFactory(locale) {
|
|
28539
|
-
return locale || getGlobalLocale();
|
|
28540
|
-
}
|
|
28541
|
-
/**
|
|
28542
|
-
* Work out the locale from the potential global properties.
|
|
28543
|
-
*
|
|
28544
|
-
* * Closure Compiler: use `goog.getLocale()`.
|
|
28545
|
-
* * Ivy enabled: use `$localize.locale`
|
|
28546
|
-
*/
|
|
28547
|
-
function getGlobalLocale() {
|
|
28548
|
-
if (typeof ngI18nClosureMode !== 'undefined' && ngI18nClosureMode &&
|
|
28549
|
-
typeof goog !== 'undefined' && goog.getLocale() !== 'en') {
|
|
28550
|
-
// * The default `goog.getLocale()` value is `en`, while Angular used `en-US`.
|
|
28551
|
-
// * In order to preserve backwards compatibility, we use Angular default value over
|
|
28552
|
-
// Closure Compiler's one.
|
|
28553
|
-
return goog.getLocale();
|
|
28554
|
-
}
|
|
28555
|
-
else {
|
|
28556
|
-
// KEEP `typeof $localize !== 'undefined' && $localize.locale` IN SYNC WITH THE LOCALIZE
|
|
28557
|
-
// COMPILE-TIME INLINER.
|
|
28558
|
-
//
|
|
28559
|
-
// * During compile time inlining of translations the expression will be replaced
|
|
28560
|
-
// with a string literal that is the current locale. Other forms of this expression are not
|
|
28561
|
-
// guaranteed to be replaced.
|
|
28562
|
-
//
|
|
28563
|
-
// * During runtime translation evaluation, the developer is required to set `$localize.locale`
|
|
28564
|
-
// if required, or just to provide their own `LOCALE_ID` provider.
|
|
28565
|
-
return (typeof $localize !== 'undefined' && $localize.locale) || DEFAULT_LOCALE_ID;
|
|
28566
|
-
}
|
|
28567
|
-
}
|
|
28568
|
-
/**
|
|
28569
|
-
* A built-in [dependency injection token](guide/glossary#di-token)
|
|
28570
|
-
* that is used to configure the root injector for bootstrapping.
|
|
28571
|
-
*/
|
|
28572
|
-
const APPLICATION_MODULE_PROVIDERS = [
|
|
28573
|
-
{
|
|
28574
|
-
provide: ApplicationRef,
|
|
28575
|
-
useClass: ApplicationRef,
|
|
28576
|
-
deps: [NgZone, Injector, ErrorHandler, ComponentFactoryResolver$1, ApplicationInitStatus]
|
|
28577
|
-
},
|
|
28578
|
-
{ provide: SCHEDULER, deps: [NgZone], useFactory: zoneSchedulerFactory },
|
|
28579
|
-
{
|
|
28580
|
-
provide: ApplicationInitStatus,
|
|
28581
|
-
useClass: ApplicationInitStatus,
|
|
28582
|
-
deps: [[new Optional(), APP_INITIALIZER]]
|
|
28583
|
-
},
|
|
28584
|
-
{ provide: Compiler, useClass: Compiler, deps: [] },
|
|
28585
|
-
APP_ID_RANDOM_PROVIDER,
|
|
28586
|
-
{
|
|
28587
|
-
provide: LOCALE_ID,
|
|
28588
|
-
useFactory: _localeFactory,
|
|
28589
|
-
deps: [[new Inject(LOCALE_ID), new Optional(), new SkipSelf()]]
|
|
28590
|
-
},
|
|
28591
|
-
{ provide: DEFAULT_CURRENCY_CODE, useValue: USD_CURRENCY_CODE },
|
|
28592
|
-
];
|
|
28593
|
-
/**
|
|
28594
|
-
* Schedule work at next available slot.
|
|
28595
|
-
*
|
|
28596
|
-
* In Ivy this is just `requestAnimationFrame`. For compatibility reasons when bootstrapped
|
|
28597
|
-
* using `platformRef.bootstrap` we need to use `NgZone.onStable` as the scheduling mechanism.
|
|
28598
|
-
* This overrides the scheduling mechanism in Ivy to `NgZone.onStable`.
|
|
28599
|
-
*
|
|
28600
|
-
* @param ngZone NgZone to use for scheduling.
|
|
28601
|
-
*/
|
|
28602
|
-
function zoneSchedulerFactory(ngZone) {
|
|
28603
|
-
let queue = [];
|
|
28604
|
-
ngZone.onStable.subscribe(() => {
|
|
28605
|
-
while (queue.length) {
|
|
28606
|
-
queue.pop()();
|
|
28607
|
-
}
|
|
28608
|
-
});
|
|
28609
|
-
return function (fn) {
|
|
28610
|
-
queue.push(fn);
|
|
28611
|
-
};
|
|
28612
|
-
}
|
|
28613
|
-
/**
|
|
28614
|
-
* Configures the root injector for an app with
|
|
28615
|
-
* providers of `@angular/core` dependencies that `ApplicationRef` needs
|
|
28616
|
-
* to bootstrap components.
|
|
28617
|
-
*
|
|
28618
28648
|
* Re-exported by `BrowserModule`, which is included automatically in the root
|
|
28619
|
-
* `AppModule` when you create a new app with the CLI `new` command.
|
|
28649
|
+
* `AppModule` when you create a new app with the CLI `new` command. Eagerly injects
|
|
28650
|
+
* `ApplicationRef` to instantiate it.
|
|
28620
28651
|
*
|
|
28621
28652
|
* @publicApi
|
|
28622
28653
|
*/
|
|
@@ -28626,11 +28657,10 @@ class ApplicationModule {
|
|
|
28626
28657
|
}
|
|
28627
28658
|
ApplicationModule.ɵfac = function ApplicationModule_Factory(t) { return new (t || ApplicationModule)(ɵɵinject(ApplicationRef)); };
|
|
28628
28659
|
ApplicationModule.ɵmod = /*@__PURE__*/ ɵɵdefineNgModule({ type: ApplicationModule });
|
|
28629
|
-
ApplicationModule.ɵinj = /*@__PURE__*/ ɵɵdefineInjector({
|
|
28660
|
+
ApplicationModule.ɵinj = /*@__PURE__*/ ɵɵdefineInjector({});
|
|
28630
28661
|
(function () {
|
|
28631
28662
|
(typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ApplicationModule, [{
|
|
28632
|
-
type: NgModule
|
|
28633
|
-
args: [{ providers: APPLICATION_MODULE_PROVIDERS }]
|
|
28663
|
+
type: NgModule
|
|
28634
28664
|
}], function () { return [{ type: ApplicationRef }]; }, null);
|
|
28635
28665
|
})();
|
|
28636
28666
|
|
|
@@ -28804,5 +28834,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
28804
28834
|
* Generated bundle index. Do not edit.
|
|
28805
28835
|
*/
|
|
28806
28836
|
|
|
28807
|
-
export { ANALYZE_FOR_ENTRY_COMPONENTS, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ElementRef, EmbeddedViewRef, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as 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, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, asNativeElements, assertPlatform, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, inject, isDevMode, platformCore, resolveForwardRef, setTestabilityGetter, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, 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 as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, ViewRef$1 as ɵViewRef, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, coerceToBoolean as ɵcoerceToBoolean, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getDebugNode as ɵgetDebugNode, getDebugNodeR2 as ɵgetDebugNodeR2, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, registerNgModuleType as ɵregisterNgModuleType, renderComponent 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, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, 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 };
|
|
28837
|
+
export { ANALYZE_FOR_ENTRY_COMPONENTS, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, Directive, ElementRef, EmbeddedViewRef, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as 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, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, asNativeElements, assertPlatform, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, inject, isDevMode, platformCore, resolveForwardRef, setTestabilityGetter, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, LContext as ɵLContext, 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 as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, ViewRef$1 as ɵViewRef, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, coerceToBoolean as ɵcoerceToBoolean, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getDebugNode as ɵgetDebugNode, getDebugNodeR2 as ɵgetDebugNodeR2, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator, markDirty as ɵmarkDirty, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, registerNgModuleType as ɵregisterNgModuleType, renderComponent 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, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, 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 };
|
|
28808
28838
|
//# sourceMappingURL=core.mjs.map
|