@angular/core 16.0.0-next.0 → 16.0.0-next.1
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/esm2020/src/application_init.mjs +3 -2
- package/esm2020/src/application_module.mjs +3 -2
- package/esm2020/src/application_ref.mjs +5 -3
- package/esm2020/src/change_detection/change_detector_ref.mjs +3 -2
- package/esm2020/src/change_detection/differs/iterable_differs.mjs +3 -2
- package/esm2020/src/change_detection/differs/keyvalue_differs.mjs +3 -2
- package/esm2020/src/console.mjs +3 -2
- package/esm2020/src/core_private_export.mjs +2 -1
- package/esm2020/src/core_render3_private_export.mjs +2 -1
- package/esm2020/src/di/injector.mjs +3 -2
- package/esm2020/src/di/r3_injector.mjs +5 -1
- package/esm2020/src/di/reflective_injector.mjs +3 -2
- package/esm2020/src/linker/compiler.mjs +3 -2
- package/esm2020/src/linker/component_factory_resolver.mjs +3 -2
- package/esm2020/src/linker/destroy_ref.mjs +41 -0
- package/esm2020/src/linker/element_ref.mjs +3 -2
- package/esm2020/src/linker/query_list.mjs +6 -7
- package/esm2020/src/linker/template_ref.mjs +3 -2
- package/esm2020/src/linker/view_container_ref.mjs +3 -2
- package/esm2020/src/linker.mjs +2 -1
- package/esm2020/src/render/api.mjs +3 -2
- package/esm2020/src/render3/features/standalone_feature.mjs +1 -1
- package/esm2020/src/render3/fields.mjs +10 -1
- package/esm2020/src/render3/hooks.mjs +3 -2
- package/esm2020/src/render3/instructions/element.mjs +10 -9
- package/esm2020/src/render3/instructions/shared.mjs +16 -17
- package/esm2020/src/render3/interfaces/definition.mjs +1 -1
- package/esm2020/src/render3/interfaces/node.mjs +1 -1
- package/esm2020/src/render3/interfaces/view.mjs +3 -2
- package/esm2020/src/render3/node_manipulation.mjs +14 -14
- package/esm2020/src/render3/util/view_utils.mjs +11 -2
- package/esm2020/src/render3/view_ref.mjs +4 -3
- package/esm2020/src/sanitization/sanitizer.mjs +3 -2
- package/esm2020/src/testability/testability.mjs +5 -3
- package/esm2020/src/transfer_state.mjs +148 -0
- package/esm2020/src/util/iterable.mjs +6 -7
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +6 -5
- package/esm2020/testing/src/ng_zone_mock.mjs +6 -5
- package/esm2020/testing/src/test_bed.mjs +3 -2
- package/fesm2015/core.mjs +243 -74
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +74 -73
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +241 -74
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +74 -73
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +122 -1
- package/package.json +3 -3
- package/schematics/migrations/relative-link-resolution/bundle.js +7 -7
- package/schematics/migrations/router-link-with-href/bundle.js +10 -10
- package/schematics/migrations/router-link-with-href/bundle.js.map +2 -2
- package/schematics/ng-generate/standalone-migration/bundle.js +1150 -1155
- package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
- package/testing/index.d.ts +1 -1
- package/esm2020/src/util/symbol.mjs +0 -30
package/fesm2020/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.0.0-next.
|
|
2
|
+
* @license Angular v16.0.0-next.1
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -974,6 +974,15 @@ const NG_FACTORY_DEF = getClosureSafeProperty({ ɵfac: getClosureSafeProperty })
|
|
|
974
974
|
*/
|
|
975
975
|
// TODO(misko): This is wrong. The NG_ELEMENT_ID should never be minified.
|
|
976
976
|
const NG_ELEMENT_ID = getClosureSafeProperty({ __NG_ELEMENT_ID__: getClosureSafeProperty });
|
|
977
|
+
/**
|
|
978
|
+
* The `NG_ENV_ID` field on a DI token indicates special processing in the `EnvironmentInjector`:
|
|
979
|
+
* getting such tokens from the `EnvironmentInjector` will bypass the standard DI resolution
|
|
980
|
+
* strategy and instead will return implementation produced by the `NG_ENV_ID` factory function.
|
|
981
|
+
*
|
|
982
|
+
* This particular retrieval of DI tokens is mostly done to eliminate circular dependencies and
|
|
983
|
+
* improve tree-shaking.
|
|
984
|
+
*/
|
|
985
|
+
const NG_ENV_ID = getClosureSafeProperty({ __NG_ENV_ID__: getClosureSafeProperty });
|
|
977
986
|
|
|
978
987
|
/** Counter used to generate unique IDs for component definitions. */
|
|
979
988
|
let componentDefCount = 0;
|
|
@@ -1290,6 +1299,7 @@ const PREORDER_HOOK_FLAGS = 18;
|
|
|
1290
1299
|
const QUERIES = 19;
|
|
1291
1300
|
const ID = 20;
|
|
1292
1301
|
const EMBEDDED_VIEW_INJECTOR = 21;
|
|
1302
|
+
const ON_DESTROY_HOOKS = 22;
|
|
1293
1303
|
/**
|
|
1294
1304
|
* Size of LView's header. Necessary to adjust for it when setting slots.
|
|
1295
1305
|
*
|
|
@@ -1297,7 +1307,7 @@ const EMBEDDED_VIEW_INJECTOR = 21;
|
|
|
1297
1307
|
* instruction index into `LView` index. All other indexes should be in the `LView` index space and
|
|
1298
1308
|
* there should be no need to refer to `HEADER_OFFSET` anywhere else.
|
|
1299
1309
|
*/
|
|
1300
|
-
const HEADER_OFFSET =
|
|
1310
|
+
const HEADER_OFFSET = 23;
|
|
1301
1311
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
1302
1312
|
// failure based on types.
|
|
1303
1313
|
const unusedValueExportToPlacateAjd$4 = 1;
|
|
@@ -1773,6 +1783,15 @@ function updateTransplantedViewCount(lContainer, amount) {
|
|
|
1773
1783
|
parent = parent[PARENT];
|
|
1774
1784
|
}
|
|
1775
1785
|
}
|
|
1786
|
+
/**
|
|
1787
|
+
* Stores a LView-specific destroy callback.
|
|
1788
|
+
*/
|
|
1789
|
+
function storeLViewOnDestroy(lView, onDestroyCallback) {
|
|
1790
|
+
if (lView[ON_DESTROY_HOOKS] === null) {
|
|
1791
|
+
lView[ON_DESTROY_HOOKS] = [];
|
|
1792
|
+
}
|
|
1793
|
+
lView[ON_DESTROY_HOOKS].push(onDestroyCallback);
|
|
1794
|
+
}
|
|
1776
1795
|
|
|
1777
1796
|
const instructionState = {
|
|
1778
1797
|
lFrame: createLFrame(null),
|
|
@@ -2450,8 +2469,9 @@ function callHooks(currentView, arr, initPhase, currentNodeIndex) {
|
|
|
2450
2469
|
}
|
|
2451
2470
|
else {
|
|
2452
2471
|
const isInitHook = arr[i] < 0;
|
|
2453
|
-
if (isInitHook)
|
|
2472
|
+
if (isInitHook) {
|
|
2454
2473
|
currentView[PREORDER_HOOK_FLAGS] += 65536 /* PreOrderHookFlags.NumberOfInitHooksCalledIncrementer */;
|
|
2474
|
+
}
|
|
2455
2475
|
if (lastNodeIndexFound < nodeIndexLimit || nodeIndexLimit == -1) {
|
|
2456
2476
|
callHook(currentView, initPhase, arr, i);
|
|
2457
2477
|
currentView[PREORDER_HOOK_FLAGS] =
|
|
@@ -5965,10 +5985,6 @@ function cleanUpView(tView, lView) {
|
|
|
5965
5985
|
function processCleanups(tView, lView) {
|
|
5966
5986
|
const tCleanup = tView.cleanup;
|
|
5967
5987
|
const lCleanup = lView[CLEANUP];
|
|
5968
|
-
// `LCleanup` contains both share information with `TCleanup` as well as instance specific
|
|
5969
|
-
// information appended at the end. We need to know where the end of the `TCleanup` information
|
|
5970
|
-
// is, and we track this with `lastLCleanupIndex`.
|
|
5971
|
-
let lastLCleanupIndex = -1;
|
|
5972
5988
|
if (tCleanup !== null) {
|
|
5973
5989
|
for (let i = 0; i < tCleanup.length - 1; i += 2) {
|
|
5974
5990
|
if (typeof tCleanup[i] === 'string') {
|
|
@@ -5978,29 +5994,33 @@ function processCleanups(tView, lView) {
|
|
|
5978
5994
|
ngDevMode && assertNumber(targetIdx, 'cleanup target must be a number');
|
|
5979
5995
|
if (targetIdx >= 0) {
|
|
5980
5996
|
// unregister
|
|
5981
|
-
lCleanup[
|
|
5997
|
+
lCleanup[targetIdx]();
|
|
5982
5998
|
}
|
|
5983
5999
|
else {
|
|
5984
6000
|
// Subscription
|
|
5985
|
-
lCleanup[
|
|
6001
|
+
lCleanup[-targetIdx].unsubscribe();
|
|
5986
6002
|
}
|
|
5987
6003
|
i += 2;
|
|
5988
6004
|
}
|
|
5989
6005
|
else {
|
|
5990
6006
|
// This is a cleanup function that is grouped with the index of its context
|
|
5991
|
-
const context = lCleanup[
|
|
6007
|
+
const context = lCleanup[tCleanup[i + 1]];
|
|
5992
6008
|
tCleanup[i].call(context);
|
|
5993
6009
|
}
|
|
5994
6010
|
}
|
|
5995
6011
|
}
|
|
5996
6012
|
if (lCleanup !== null) {
|
|
5997
|
-
for (let i = lastLCleanupIndex + 1; i < lCleanup.length; i++) {
|
|
5998
|
-
const instanceCleanupFn = lCleanup[i];
|
|
5999
|
-
ngDevMode && assertFunction(instanceCleanupFn, 'Expecting instance cleanup function.');
|
|
6000
|
-
instanceCleanupFn();
|
|
6001
|
-
}
|
|
6002
6013
|
lView[CLEANUP] = null;
|
|
6003
6014
|
}
|
|
6015
|
+
const destroyHooks = lView[ON_DESTROY_HOOKS];
|
|
6016
|
+
if (destroyHooks !== null) {
|
|
6017
|
+
for (let i = 0; i < destroyHooks.length; i++) {
|
|
6018
|
+
const destroyHooksFn = destroyHooks[i];
|
|
6019
|
+
ngDevMode && assertFunction(destroyHooksFn, 'Expecting destroy hook to be a function.');
|
|
6020
|
+
destroyHooksFn();
|
|
6021
|
+
}
|
|
6022
|
+
lView[ON_DESTROY_HOOKS] = null;
|
|
6023
|
+
}
|
|
6004
6024
|
}
|
|
6005
6025
|
/** Calls onDestroy hooks for this view */
|
|
6006
6026
|
function executeOnDestroys(tView, lView) {
|
|
@@ -7928,6 +7948,9 @@ class R3Injector extends EnvironmentInjector {
|
|
|
7928
7948
|
}
|
|
7929
7949
|
get(token, notFoundValue = THROW_IF_NOT_FOUND, flags = InjectFlags.Default) {
|
|
7930
7950
|
this.assertNotDestroyed();
|
|
7951
|
+
if (token.hasOwnProperty(NG_ENV_ID)) {
|
|
7952
|
+
return token[NG_ENV_ID](this);
|
|
7953
|
+
}
|
|
7931
7954
|
flags = convertToBitFlags(flags);
|
|
7932
7955
|
// Set the injection context.
|
|
7933
7956
|
const previousInjector = setCurrentInjector(this);
|
|
@@ -8384,7 +8407,7 @@ class Version {
|
|
|
8384
8407
|
/**
|
|
8385
8408
|
* @publicApi
|
|
8386
8409
|
*/
|
|
8387
|
-
const VERSION = new Version('16.0.0-next.
|
|
8410
|
+
const VERSION = new Version('16.0.0-next.1');
|
|
8388
8411
|
|
|
8389
8412
|
// This default value is when checking the hierarchy for a token.
|
|
8390
8413
|
//
|
|
@@ -10245,6 +10268,7 @@ function createTNodeAtIndex(tView, index, type, name, attrs) {
|
|
|
10245
10268
|
// In the case of i18n the `currentTNode` may already be linked, in which case we don't want
|
|
10246
10269
|
// to break the links which i18n created.
|
|
10247
10270
|
currentTNode.next = tNode;
|
|
10271
|
+
tNode.prev = currentTNode;
|
|
10248
10272
|
}
|
|
10249
10273
|
}
|
|
10250
10274
|
}
|
|
@@ -10635,24 +10659,24 @@ function locateHostElement(renderer, elementOrSelector, encapsulation) {
|
|
|
10635
10659
|
* On the first template pass, saves in TView:
|
|
10636
10660
|
* - Cleanup function
|
|
10637
10661
|
* - Index of context we just saved in LView.cleanupInstances
|
|
10638
|
-
*
|
|
10639
|
-
* This function can also be used to store instance specific cleanup fns. In that case the `context`
|
|
10640
|
-
* is `null` and the function is store in `LView` (rather than it `TView`).
|
|
10641
10662
|
*/
|
|
10642
10663
|
function storeCleanupWithContext(tView, lView, context, cleanupFn) {
|
|
10643
10664
|
const lCleanup = getOrCreateLViewCleanup(lView);
|
|
10644
|
-
|
|
10645
|
-
|
|
10646
|
-
|
|
10647
|
-
|
|
10648
|
-
|
|
10649
|
-
|
|
10650
|
-
|
|
10665
|
+
// Historically the `storeCleanupWithContext` was used to register both framework-level and
|
|
10666
|
+
// user-defined cleanup callbacks, but over time those two types of cleanups were separated. This
|
|
10667
|
+
// dev mode checks assures that user-level cleanup callbacks are _not_ stored in data structures
|
|
10668
|
+
// reserved for framework-specific hooks.
|
|
10669
|
+
ngDevMode &&
|
|
10670
|
+
assertDefined(context, 'Cleanup context is mandatory when registering framework-level destroy hooks');
|
|
10671
|
+
lCleanup.push(context);
|
|
10672
|
+
if (tView.firstCreatePass) {
|
|
10673
|
+
getOrCreateTViewCleanup(tView).push(cleanupFn, lCleanup.length - 1);
|
|
10651
10674
|
}
|
|
10652
10675
|
else {
|
|
10653
|
-
|
|
10654
|
-
|
|
10655
|
-
|
|
10676
|
+
// Make sure that no new framework-level cleanup functions are registered after the first
|
|
10677
|
+
// template pass is done (and TView data structures are meant to fully constructed).
|
|
10678
|
+
if (ngDevMode) {
|
|
10679
|
+
Object.freeze(getOrCreateTViewCleanup(tView));
|
|
10656
10680
|
}
|
|
10657
10681
|
}
|
|
10658
10682
|
}
|
|
@@ -10685,6 +10709,7 @@ function createTNode(tView, tParent, type, index, value, attrs) {
|
|
|
10685
10709
|
outputs: null,
|
|
10686
10710
|
tViews: null,
|
|
10687
10711
|
next: null,
|
|
10712
|
+
prev: null,
|
|
10688
10713
|
projectionNext: null,
|
|
10689
10714
|
child: null,
|
|
10690
10715
|
parent: tParent,
|
|
@@ -10894,7 +10919,6 @@ function resolveDirectives(tView, lView, tNode, localRefs) {
|
|
|
10894
10919
|
// Please make sure to have explicit type for `exportsMap`. Inferred type triggers bug in
|
|
10895
10920
|
// tsickle.
|
|
10896
10921
|
ngDevMode && assertFirstCreatePass(tView);
|
|
10897
|
-
let hasDirectives = false;
|
|
10898
10922
|
if (getBindingsEnabled()) {
|
|
10899
10923
|
const exportsMap = localRefs === null ? null : { '': -1 };
|
|
10900
10924
|
const matchResult = findDirectiveDefMatches(tView, tNode);
|
|
@@ -10907,7 +10931,6 @@ function resolveDirectives(tView, lView, tNode, localRefs) {
|
|
|
10907
10931
|
[directiveDefs, hostDirectiveDefs] = matchResult;
|
|
10908
10932
|
}
|
|
10909
10933
|
if (directiveDefs !== null) {
|
|
10910
|
-
hasDirectives = true;
|
|
10911
10934
|
initializeDirectives(tView, lView, tNode, directiveDefs, exportsMap, hostDirectiveDefs);
|
|
10912
10935
|
}
|
|
10913
10936
|
if (exportsMap)
|
|
@@ -10915,7 +10938,6 @@ function resolveDirectives(tView, lView, tNode, localRefs) {
|
|
|
10915
10938
|
}
|
|
10916
10939
|
// Merge the template attrs last so that they have the highest priority.
|
|
10917
10940
|
tNode.mergedAttrs = mergeHostAttrs(tNode.mergedAttrs, tNode.attrs);
|
|
10918
|
-
return hasDirectives;
|
|
10919
10941
|
}
|
|
10920
10942
|
/** Initializes the data structures necessary for a list of directives to be instantiated. */
|
|
10921
10943
|
function initializeDirectives(tView, lView, tNode, directives, exportsMap, hostDirectiveDefs) {
|
|
@@ -11846,7 +11868,7 @@ class ViewRef$1 {
|
|
|
11846
11868
|
destroyLView(this._lView[TVIEW], this._lView);
|
|
11847
11869
|
}
|
|
11848
11870
|
onDestroy(callback) {
|
|
11849
|
-
|
|
11871
|
+
storeLViewOnDestroy(this._lView, callback);
|
|
11850
11872
|
}
|
|
11851
11873
|
/**
|
|
11852
11874
|
* Marks a view and all of its ancestors dirty.
|
|
@@ -12781,41 +12803,19 @@ function validateMappings(bindingType, def, hostDirectiveBindings) {
|
|
|
12781
12803
|
}
|
|
12782
12804
|
}
|
|
12783
12805
|
|
|
12784
|
-
let _symbolIterator = null;
|
|
12785
|
-
function getSymbolIterator() {
|
|
12786
|
-
if (!_symbolIterator) {
|
|
12787
|
-
const Symbol = _global['Symbol'];
|
|
12788
|
-
if (Symbol && Symbol.iterator) {
|
|
12789
|
-
_symbolIterator = Symbol.iterator;
|
|
12790
|
-
}
|
|
12791
|
-
else {
|
|
12792
|
-
// es6-shim specific logic
|
|
12793
|
-
const keys = Object.getOwnPropertyNames(Map.prototype);
|
|
12794
|
-
for (let i = 0; i < keys.length; ++i) {
|
|
12795
|
-
const key = keys[i];
|
|
12796
|
-
if (key !== 'entries' && key !== 'size' &&
|
|
12797
|
-
Map.prototype[key] === Map.prototype['entries']) {
|
|
12798
|
-
_symbolIterator = key;
|
|
12799
|
-
}
|
|
12800
|
-
}
|
|
12801
|
-
}
|
|
12802
|
-
}
|
|
12803
|
-
return _symbolIterator;
|
|
12804
|
-
}
|
|
12805
|
-
|
|
12806
12806
|
function isIterable(obj) {
|
|
12807
|
-
return obj !== null && typeof obj === 'object' && obj[
|
|
12807
|
+
return obj !== null && typeof obj === 'object' && obj[Symbol.iterator] !== undefined;
|
|
12808
12808
|
}
|
|
12809
12809
|
function isListLikeIterable(obj) {
|
|
12810
12810
|
if (!isJsObject(obj))
|
|
12811
12811
|
return false;
|
|
12812
12812
|
return Array.isArray(obj) ||
|
|
12813
12813
|
(!(obj instanceof Map) && // JS Map are iterables but return entries as [k, v]
|
|
12814
|
-
|
|
12814
|
+
Symbol.iterator in obj); // JS Iterable have a Symbol.iterator prop
|
|
12815
12815
|
}
|
|
12816
12816
|
function areIterablesEqual(a, b, comparator) {
|
|
12817
|
-
const iterator1 = a[
|
|
12818
|
-
const iterator2 = b[
|
|
12817
|
+
const iterator1 = a[Symbol.iterator]();
|
|
12818
|
+
const iterator2 = b[Symbol.iterator]();
|
|
12819
12819
|
while (true) {
|
|
12820
12820
|
const item1 = iterator1.next();
|
|
12821
12821
|
const item2 = iterator2.next();
|
|
@@ -12834,7 +12834,7 @@ function iterateListLike(obj, fn) {
|
|
|
12834
12834
|
}
|
|
12835
12835
|
}
|
|
12836
12836
|
else {
|
|
12837
|
-
const iterator = obj[
|
|
12837
|
+
const iterator = obj[Symbol.iterator]();
|
|
12838
12838
|
let item;
|
|
12839
12839
|
while (!((item = iterator.next()).done)) {
|
|
12840
12840
|
fn(item.value);
|
|
@@ -13597,16 +13597,13 @@ function setDirectiveInputsWhichShadowsStyling(tView, tNode, lView, value, isCla
|
|
|
13597
13597
|
setInputsForProperty(tView, lView, inputs[property], property, value);
|
|
13598
13598
|
}
|
|
13599
13599
|
|
|
13600
|
-
function elementStartFirstCreatePass(index, tView, lView,
|
|
13600
|
+
function elementStartFirstCreatePass(index, tView, lView, name, attrsIndex, localRefsIndex) {
|
|
13601
13601
|
ngDevMode && assertFirstCreatePass(tView);
|
|
13602
13602
|
ngDevMode && ngDevMode.firstCreatePass++;
|
|
13603
13603
|
const tViewConsts = tView.consts;
|
|
13604
13604
|
const attrs = getConstant(tViewConsts, attrsIndex);
|
|
13605
13605
|
const tNode = getOrCreateTNode(tView, index, 2 /* TNodeType.Element */, name, attrs);
|
|
13606
|
-
|
|
13607
|
-
if (ngDevMode) {
|
|
13608
|
-
validateElementIsKnown(native, lView, tNode.value, tView.schemas, hasDirectives);
|
|
13609
|
-
}
|
|
13606
|
+
resolveDirectives(tView, lView, tNode, getConstant(tViewConsts, localRefsIndex));
|
|
13610
13607
|
if (tNode.attrs !== null) {
|
|
13611
13608
|
computeStaticStyling(tNode, tNode.attrs, false);
|
|
13612
13609
|
}
|
|
@@ -13641,10 +13638,14 @@ function ɵɵelementStart(index, name, attrsIndex, localRefsIndex) {
|
|
|
13641
13638
|
assertEqual(getBindingIndex(), tView.bindingStartIndex, 'elements should be created before any bindings');
|
|
13642
13639
|
ngDevMode && assertIndexInRange(lView, adjustedIndex);
|
|
13643
13640
|
const renderer = lView[RENDERER];
|
|
13644
|
-
const native = lView[adjustedIndex] = createElementNode(renderer, name, getNamespace$1());
|
|
13645
13641
|
const tNode = tView.firstCreatePass ?
|
|
13646
|
-
elementStartFirstCreatePass(adjustedIndex, tView, lView,
|
|
13642
|
+
elementStartFirstCreatePass(adjustedIndex, tView, lView, name, attrsIndex, localRefsIndex) :
|
|
13647
13643
|
tView.data[adjustedIndex];
|
|
13644
|
+
const native = lView[adjustedIndex] = createElementNode(renderer, name, getNamespace$1());
|
|
13645
|
+
const hasDirectives = isDirectiveHost(tNode);
|
|
13646
|
+
if (ngDevMode && tView.firstCreatePass) {
|
|
13647
|
+
validateElementIsKnown(native, lView, tNode.value, tView.schemas, hasDirectives);
|
|
13648
|
+
}
|
|
13648
13649
|
setCurrentTNode(tNode, true);
|
|
13649
13650
|
setupStaticAttributes(renderer, native, tNode);
|
|
13650
13651
|
if ((tNode.flags & 32 /* TNodeFlags.isDetached */) !== 32 /* TNodeFlags.isDetached */) {
|
|
@@ -13659,7 +13660,7 @@ function ɵɵelementStart(index, name, attrsIndex, localRefsIndex) {
|
|
|
13659
13660
|
attachPatchData(native, lView);
|
|
13660
13661
|
}
|
|
13661
13662
|
increaseElementDepthCount();
|
|
13662
|
-
if (
|
|
13663
|
+
if (hasDirectives) {
|
|
13663
13664
|
createDirectivesInstances(tView, lView, tNode);
|
|
13664
13665
|
executeContentQueries(tView, tNode, lView);
|
|
13665
13666
|
}
|
|
@@ -20974,7 +20975,8 @@ function _wrapInTimeout(fn) {
|
|
|
20974
20975
|
const EventEmitter = EventEmitter_;
|
|
20975
20976
|
|
|
20976
20977
|
function symbolIterator() {
|
|
20977
|
-
|
|
20978
|
+
// @ts-expect-error accessing a private member
|
|
20979
|
+
return this._results[Symbol.iterator]();
|
|
20978
20980
|
}
|
|
20979
20981
|
/**
|
|
20980
20982
|
* An unmodifiable list of items that Angular keeps up to date when the state
|
|
@@ -21026,11 +21028,10 @@ class QueryList {
|
|
|
21026
21028
|
// This function should be declared on the prototype, but doing so there will cause the class
|
|
21027
21029
|
// declaration to have side-effects and become not tree-shakable. For this reason we do it in
|
|
21028
21030
|
// the constructor.
|
|
21029
|
-
// [
|
|
21030
|
-
const symbol = getSymbolIterator();
|
|
21031
|
+
// [Symbol.iterator](): Iterator<T> { ... }
|
|
21031
21032
|
const proto = QueryList.prototype;
|
|
21032
|
-
if (!proto[
|
|
21033
|
-
proto[
|
|
21033
|
+
if (!proto[Symbol.iterator])
|
|
21034
|
+
proto[Symbol.iterator] = symbolIterator;
|
|
21034
21035
|
}
|
|
21035
21036
|
/**
|
|
21036
21037
|
* Returns the QueryList entry at `index`.
|
|
@@ -25523,6 +25524,37 @@ function enableProdMode() {
|
|
|
25523
25524
|
|
|
25524
25525
|
// Public API for render
|
|
25525
25526
|
|
|
25527
|
+
/**
|
|
25528
|
+
* `DestroyRef` lets you set callbacks to run for any cleanup or destruction behavior.
|
|
25529
|
+
* The scope of this destruction depends on where `DestroyRef` is injected. If `DestroyRef`
|
|
25530
|
+
* is injected in a component or directive, the callbacks run when that component or
|
|
25531
|
+
* directive is destroyed. Otherwise the callbacks run when a corresponding injector is destroyed.
|
|
25532
|
+
*/
|
|
25533
|
+
class DestroyRef {
|
|
25534
|
+
}
|
|
25535
|
+
/**
|
|
25536
|
+
* @internal
|
|
25537
|
+
* @nocollapse
|
|
25538
|
+
*/
|
|
25539
|
+
DestroyRef.__NG_ELEMENT_ID__ = injectDestroyRef;
|
|
25540
|
+
/**
|
|
25541
|
+
* @internal
|
|
25542
|
+
* @nocollapse
|
|
25543
|
+
*/
|
|
25544
|
+
DestroyRef.__NG_ENV_ID__ = (injector) => injector;
|
|
25545
|
+
class NodeInjectorDestroyRef extends DestroyRef {
|
|
25546
|
+
constructor(_lView) {
|
|
25547
|
+
super();
|
|
25548
|
+
this._lView = _lView;
|
|
25549
|
+
}
|
|
25550
|
+
onDestroy(callback) {
|
|
25551
|
+
storeLViewOnDestroy(this._lView, callback);
|
|
25552
|
+
}
|
|
25553
|
+
}
|
|
25554
|
+
function injectDestroyRef() {
|
|
25555
|
+
return new NodeInjectorDestroyRef(getLView());
|
|
25556
|
+
}
|
|
25557
|
+
|
|
25526
25558
|
/**
|
|
25527
25559
|
* Returns the NgModuleFactory with the given id (specified using [@NgModule.id
|
|
25528
25560
|
* field](api/core/NgModule#id)), if it exists and has been loaded. Factories for NgModules that do
|
|
@@ -27350,6 +27382,141 @@ ApplicationModule.ɵinj = /*@__PURE__*/ ɵɵdefineInjector({});
|
|
|
27350
27382
|
type: NgModule
|
|
27351
27383
|
}], function () { return [{ type: ApplicationRef }]; }, null); })();
|
|
27352
27384
|
|
|
27385
|
+
function escapeTransferStateContent(text) {
|
|
27386
|
+
const escapedText = {
|
|
27387
|
+
'&': '&a;',
|
|
27388
|
+
'"': '&q;',
|
|
27389
|
+
'\'': '&s;',
|
|
27390
|
+
'<': '&l;',
|
|
27391
|
+
'>': '&g;',
|
|
27392
|
+
};
|
|
27393
|
+
return text.replace(/[&"'<>]/g, s => escapedText[s]);
|
|
27394
|
+
}
|
|
27395
|
+
function unescapeTransferStateContent(text) {
|
|
27396
|
+
const unescapedText = {
|
|
27397
|
+
'&a;': '&',
|
|
27398
|
+
'&q;': '"',
|
|
27399
|
+
'&s;': '\'',
|
|
27400
|
+
'&l;': '<',
|
|
27401
|
+
'&g;': '>',
|
|
27402
|
+
};
|
|
27403
|
+
return text.replace(/&[^;]+;/g, s => unescapedText[s]);
|
|
27404
|
+
}
|
|
27405
|
+
/**
|
|
27406
|
+
* Create a `StateKey<T>` that can be used to store value of type T with `TransferState`.
|
|
27407
|
+
*
|
|
27408
|
+
* Example:
|
|
27409
|
+
*
|
|
27410
|
+
* ```
|
|
27411
|
+
* const COUNTER_KEY = makeStateKey<number>('counter');
|
|
27412
|
+
* let value = 10;
|
|
27413
|
+
*
|
|
27414
|
+
* transferState.set(COUNTER_KEY, value);
|
|
27415
|
+
* ```
|
|
27416
|
+
*
|
|
27417
|
+
* @publicApi
|
|
27418
|
+
*/
|
|
27419
|
+
function makeStateKey(key) {
|
|
27420
|
+
return key;
|
|
27421
|
+
}
|
|
27422
|
+
/**
|
|
27423
|
+
* A key value store that is transferred from the application on the server side to the application
|
|
27424
|
+
* on the client side.
|
|
27425
|
+
*
|
|
27426
|
+
* The `TransferState` is available as an injectable token.
|
|
27427
|
+
* On the client, just inject this token using DI and use it, it will be lazily initialized.
|
|
27428
|
+
* On the server it's already included if `renderApplication` function is used. Otherwise, import
|
|
27429
|
+
* the `ServerTransferStateModule` module to make the `TransferState` available.
|
|
27430
|
+
*
|
|
27431
|
+
* The values in the store are serialized/deserialized using JSON.stringify/JSON.parse. So only
|
|
27432
|
+
* boolean, number, string, null and non-class objects will be serialized and deserialized in a
|
|
27433
|
+
* non-lossy manner.
|
|
27434
|
+
*
|
|
27435
|
+
* @publicApi
|
|
27436
|
+
*/
|
|
27437
|
+
class TransferState {
|
|
27438
|
+
constructor() {
|
|
27439
|
+
this.store = {};
|
|
27440
|
+
this.onSerializeCallbacks = {};
|
|
27441
|
+
this.store = retrieveTransferredState(getDocument(), inject(APP_ID));
|
|
27442
|
+
}
|
|
27443
|
+
/**
|
|
27444
|
+
* Get the value corresponding to a key. Return `defaultValue` if key is not found.
|
|
27445
|
+
*/
|
|
27446
|
+
get(key, defaultValue) {
|
|
27447
|
+
return this.store[key] !== undefined ? this.store[key] : defaultValue;
|
|
27448
|
+
}
|
|
27449
|
+
/**
|
|
27450
|
+
* Set the value corresponding to a key.
|
|
27451
|
+
*/
|
|
27452
|
+
set(key, value) {
|
|
27453
|
+
this.store[key] = value;
|
|
27454
|
+
}
|
|
27455
|
+
/**
|
|
27456
|
+
* Remove a key from the store.
|
|
27457
|
+
*/
|
|
27458
|
+
remove(key) {
|
|
27459
|
+
delete this.store[key];
|
|
27460
|
+
}
|
|
27461
|
+
/**
|
|
27462
|
+
* Test whether a key exists in the store.
|
|
27463
|
+
*/
|
|
27464
|
+
hasKey(key) {
|
|
27465
|
+
return this.store.hasOwnProperty(key);
|
|
27466
|
+
}
|
|
27467
|
+
/**
|
|
27468
|
+
* Indicates whether the state is empty.
|
|
27469
|
+
*/
|
|
27470
|
+
get isEmpty() {
|
|
27471
|
+
return Object.keys(this.store).length === 0;
|
|
27472
|
+
}
|
|
27473
|
+
/**
|
|
27474
|
+
* Register a callback to provide the value for a key when `toJson` is called.
|
|
27475
|
+
*/
|
|
27476
|
+
onSerialize(key, callback) {
|
|
27477
|
+
this.onSerializeCallbacks[key] = callback;
|
|
27478
|
+
}
|
|
27479
|
+
/**
|
|
27480
|
+
* Serialize the current state of the store to JSON.
|
|
27481
|
+
*/
|
|
27482
|
+
toJson() {
|
|
27483
|
+
// Call the onSerialize callbacks and put those values into the store.
|
|
27484
|
+
for (const key in this.onSerializeCallbacks) {
|
|
27485
|
+
if (this.onSerializeCallbacks.hasOwnProperty(key)) {
|
|
27486
|
+
try {
|
|
27487
|
+
this.store[key] = this.onSerializeCallbacks[key]();
|
|
27488
|
+
}
|
|
27489
|
+
catch (e) {
|
|
27490
|
+
console.warn('Exception in onSerialize callback: ', e);
|
|
27491
|
+
}
|
|
27492
|
+
}
|
|
27493
|
+
}
|
|
27494
|
+
return JSON.stringify(this.store);
|
|
27495
|
+
}
|
|
27496
|
+
}
|
|
27497
|
+
TransferState.ɵfac = function TransferState_Factory(t) { return new (t || TransferState)(); };
|
|
27498
|
+
TransferState.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: TransferState, factory: TransferState.ɵfac, providedIn: 'root' });
|
|
27499
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(TransferState, [{
|
|
27500
|
+
type: Injectable,
|
|
27501
|
+
args: [{ providedIn: 'root' }]
|
|
27502
|
+
}], function () { return []; }, null); })();
|
|
27503
|
+
function retrieveTransferredState(doc, appId) {
|
|
27504
|
+
// Locate the script tag with the JSON data transferred from the server.
|
|
27505
|
+
// The id of the script tag is set to the Angular appId + 'state'.
|
|
27506
|
+
const script = doc.getElementById(appId + '-state');
|
|
27507
|
+
let initialState = {};
|
|
27508
|
+
if (script && script.textContent) {
|
|
27509
|
+
try {
|
|
27510
|
+
// Avoid using any here as it triggers lint errors in google3 (any is not allowed).
|
|
27511
|
+
initialState = JSON.parse(unescapeTransferStateContent(script.textContent));
|
|
27512
|
+
}
|
|
27513
|
+
catch (e) {
|
|
27514
|
+
console.warn('Exception while restoring TransferState for app ' + appId, e);
|
|
27515
|
+
}
|
|
27516
|
+
}
|
|
27517
|
+
return initialState;
|
|
27518
|
+
}
|
|
27519
|
+
|
|
27353
27520
|
/** Coerces a value (typically a string) to a boolean. */
|
|
27354
27521
|
function coerceToBoolean(value) {
|
|
27355
27522
|
return typeof value === 'boolean' ? value : (value != null && value !== 'false');
|
|
@@ -28093,5 +28260,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
28093
28260
|
* Generated bundle index. Do not edit.
|
|
28094
28261
|
*/
|
|
28095
28262
|
|
|
28096
|
-
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, ENVIRONMENT_INITIALIZER, ElementRef, EmbeddedViewRef, EnvironmentInjector, 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, computed, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, platformCore, reflectComponentType, resolveForwardRef, setTestabilityGetter, signal, untracked, 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, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, _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, convertToBitFlags as ɵconvertToBitFlags, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, 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, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalCreateApplication as ɵinternalCreateApplication, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵStandaloneFeature, ɵɵ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, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵresetView, ɵɵ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, ɵɵvalidateIframeAttribute, ɵɵviewQuery };
|
|
28263
|
+
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, DestroyRef, Directive, ENVIRONMENT_INITIALIZER, ElementRef, EmbeddedViewRef, EnvironmentInjector, 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, computed, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, platformCore, reflectComponentType, resolveForwardRef, setTestabilityGetter, signal, untracked, 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, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, TransferState as ɵTransferState, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, _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, convertToBitFlags as ɵconvertToBitFlags, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, escapeTransferStateContent as ɵescapeTransferStateContent, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, 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, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalCreateApplication as ɵinternalCreateApplication, isBoundToModule as ɵisBoundToModule, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isListLikeIterable as ɵisListLikeIterable, isNgModule as ɵisNgModule, isObservable as ɵisObservable, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator, makeStateKey as ɵmakeStateKey, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, unescapeTransferStateContent as ɵunescapeTransferStateContent, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵStandaloneFeature, ɵɵ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, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵresetView, ɵɵ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, ɵɵvalidateIframeAttribute, ɵɵviewQuery };
|
|
28097
28264
|
//# sourceMappingURL=core.mjs.map
|