@angular/core 19.0.4 → 19.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/core.mjs +93 -70
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +4 -4
- package/index.d.ts +24 -2
- package/package.json +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/{checker-c58f97d2.js → checker-eced36c5.js} +45 -21
- package/schematics/bundles/{combine_units-7f681271.js → combine_units-438d7a79.js} +3 -3
- package/schematics/bundles/{compiler_host-f5d588fe.js → compiler_host-82c877de.js} +2 -2
- package/schematics/bundles/control-flow-migration.js +3 -3
- package/schematics/bundles/explicit-standalone-flag.js +5 -5
- package/schematics/bundles/{imports-31a38653.js → imports-abe29092.js} +1 -1
- package/schematics/bundles/inject-migration.js +6 -6
- package/schematics/bundles/{leading_space-6e7a8ec6.js → leading_space-d190b83b.js} +1 -1
- package/schematics/bundles/{migrate_ts_type_references-4ddf2b3b.js → migrate_ts_type_references-7e102890.js} +5 -5
- package/schematics/bundles/{nodes-88c2157f.js → nodes-a9f0b985.js} +2 -2
- package/schematics/bundles/output-migration.js +5 -5
- package/schematics/bundles/pending-tasks.js +5 -5
- package/schematics/bundles/{program-4ee751e4.js → program-c49e652e.js} +11 -11
- package/schematics/bundles/{project_tsconfig_paths-6c9cde78.js → project_tsconfig_paths-e9ccccbf.js} +1 -1
- package/schematics/bundles/provide-initializer.js +5 -5
- package/schematics/bundles/route-lazy-loading.js +4 -4
- package/schematics/bundles/signal-input-migration.js +7 -7
- package/schematics/bundles/signal-queries-migration.js +7 -7
- package/schematics/bundles/signals.js +7 -7
- package/schematics/bundles/standalone-migration.js +8 -8
- package/testing/index.d.ts +1 -1
package/fesm2022/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.0.
|
|
2
|
+
* @license Angular v19.0.5
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -273,6 +273,7 @@ function ngDevModeResetPerfCounters() {
|
|
|
273
273
|
dehydratedViewsRemoved: 0,
|
|
274
274
|
dehydratedViewsCleanupRuns: 0,
|
|
275
275
|
componentsSkippedHydration: 0,
|
|
276
|
+
deferBlocksWithIncrementalHydration: 0,
|
|
276
277
|
};
|
|
277
278
|
// Make sure to refer to ngDevMode as ['ngDevMode'] for closure.
|
|
278
279
|
const allowNgDevModeTrue = locationString.indexOf('ngDevMode=false') === -1;
|
|
@@ -6508,7 +6509,7 @@ class NgZone {
|
|
|
6508
6509
|
* Executes the `fn` function synchronously within the Angular zone as a task and returns value
|
|
6509
6510
|
* returned by the function.
|
|
6510
6511
|
*
|
|
6511
|
-
* Running functions via `
|
|
6512
|
+
* Running functions via `runTask` allows you to reenter Angular zone from a task that was executed
|
|
6512
6513
|
* outside of the Angular zone (typically started via {@link #runOutsideAngular}).
|
|
6513
6514
|
*
|
|
6514
6515
|
* Any future tasks or microtasks scheduled from within this function will continue executing from
|
|
@@ -9549,7 +9550,6 @@ function retrieveHydrationInfoImpl(rNode, injector, isRootView = false) {
|
|
|
9549
9550
|
const rootNgh = rootViewNgh ? `|${rootViewNgh}` : '';
|
|
9550
9551
|
const remainingNgh = isRootView ? componentViewNgh : rootNgh;
|
|
9551
9552
|
let data = {};
|
|
9552
|
-
let nghDeferData;
|
|
9553
9553
|
// An element might have an empty `ngh` attribute value (e.g. `<comp ngh="" />`),
|
|
9554
9554
|
// which means that no special annotations are required. Do not attempt to read
|
|
9555
9555
|
// from the TransferState in this case.
|
|
@@ -9557,7 +9557,6 @@ function retrieveHydrationInfoImpl(rNode, injector, isRootView = false) {
|
|
|
9557
9557
|
const transferState = injector.get(TransferState, null, { optional: true });
|
|
9558
9558
|
if (transferState !== null) {
|
|
9559
9559
|
const nghData = transferState.get(NGH_DATA_KEY, []);
|
|
9560
|
-
nghDeferData = transferState.get(NGH_DEFER_BLOCKS_KEY, {});
|
|
9561
9560
|
// The nghAttrValue is always a number referencing an index
|
|
9562
9561
|
// in the hydration TransferState data.
|
|
9563
9562
|
data = nghData[Number(nghAttrValue)];
|
|
@@ -9717,6 +9716,13 @@ function markRNodeAsSkippedByHydration(node) {
|
|
|
9717
9716
|
patchHydrationInfo(node, { status: HydrationStatus.Skipped });
|
|
9718
9717
|
ngDevMode.componentsSkippedHydration++;
|
|
9719
9718
|
}
|
|
9719
|
+
function countBlocksSkippedByHydration(injector) {
|
|
9720
|
+
const transferState = injector.get(TransferState);
|
|
9721
|
+
const nghDeferData = transferState.get(NGH_DEFER_BLOCKS_KEY, {});
|
|
9722
|
+
if (ngDevMode) {
|
|
9723
|
+
ngDevMode.deferBlocksWithIncrementalHydration = Object.keys(nghDeferData).length;
|
|
9724
|
+
}
|
|
9725
|
+
}
|
|
9720
9726
|
function markRNodeAsHavingHydrationMismatch(node, expectedNodeDetails = null, actualNodeDetails = null) {
|
|
9721
9727
|
if (!ngDevMode) {
|
|
9722
9728
|
throw new Error('Calling `markRNodeAsMismatchedByHydration` in prod mode ' +
|
|
@@ -16623,11 +16629,15 @@ function gatherDeferBlocksCommentNodes(doc, node) {
|
|
|
16623
16629
|
let currentNode;
|
|
16624
16630
|
const nodesByBlockId = new Map();
|
|
16625
16631
|
while ((currentNode = commentNodesIterator.nextNode())) {
|
|
16626
|
-
|
|
16627
|
-
const
|
|
16628
|
-
const
|
|
16629
|
-
if (
|
|
16630
|
-
|
|
16632
|
+
const nghPattern = 'ngh=';
|
|
16633
|
+
const content = currentNode?.textContent;
|
|
16634
|
+
const nghIdx = content?.indexOf(nghPattern) ?? -1;
|
|
16635
|
+
if (nghIdx > -1) {
|
|
16636
|
+
const nghValue = content.substring(nghIdx + nghPattern.length).trim();
|
|
16637
|
+
// Make sure the value has an expected format.
|
|
16638
|
+
ngDevMode &&
|
|
16639
|
+
assertEqual(nghValue.startsWith('d'), true, 'Invalid defer block id found in a comment node.');
|
|
16640
|
+
nodesByBlockId.set(nghValue, currentNode);
|
|
16631
16641
|
}
|
|
16632
16642
|
}
|
|
16633
16643
|
return nodesByBlockId;
|
|
@@ -18078,7 +18088,7 @@ function createRootComponent(componentView, rootComponentDef, rootDirectives, ho
|
|
|
18078
18088
|
function setRootNodeAttributes(hostRenderer, componentDef, hostRNode, rootSelectorOrNode) {
|
|
18079
18089
|
if (rootSelectorOrNode) {
|
|
18080
18090
|
// The placeholder will be replaced with the actual version at build time.
|
|
18081
|
-
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.0.
|
|
18091
|
+
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.0.5']);
|
|
18082
18092
|
}
|
|
18083
18093
|
else {
|
|
18084
18094
|
// If host element is created as a part of this function call (i.e. `rootSelectorOrNode`
|
|
@@ -21275,15 +21285,8 @@ function renderDeferBlockState(newState, tNode, lContainer, skipTimerScheduling
|
|
|
21275
21285
|
}
|
|
21276
21286
|
}
|
|
21277
21287
|
function findMatchingDehydratedViewForDeferBlock(lContainer, lDetails) {
|
|
21278
|
-
// TODO(incremental-hydration): extract into a separate util function and use in relevant places.
|
|
21279
|
-
const views = lContainer[DEHYDRATED_VIEWS];
|
|
21280
|
-
if (views === null || views.length === 0) {
|
|
21281
|
-
return null;
|
|
21282
|
-
}
|
|
21283
21288
|
// Find matching view based on serialized defer block state.
|
|
21284
|
-
|
|
21285
|
-
// dehydrated views to see if there is anything missing in this function.
|
|
21286
|
-
return (views.find((view) => view.data[DEFER_BLOCK_STATE$1] === lDetails[DEFER_BLOCK_STATE]) ?? null);
|
|
21289
|
+
return (lContainer[DEHYDRATED_VIEWS]?.find((view) => view.data[DEFER_BLOCK_STATE$1] === lDetails[DEFER_BLOCK_STATE]) ?? null);
|
|
21287
21290
|
}
|
|
21288
21291
|
/**
|
|
21289
21292
|
* Applies changes to the DOM to reflect a given state.
|
|
@@ -21315,30 +21318,22 @@ function applyDeferBlockState(newState, lDetails, lContainer, tNode, hostLView)
|
|
|
21315
21318
|
}
|
|
21316
21319
|
}
|
|
21317
21320
|
const dehydratedView = findMatchingDehydratedViewForDeferBlock(lContainer, lDetails);
|
|
21318
|
-
//
|
|
21319
|
-
//
|
|
21320
|
-
|
|
21321
|
-
|
|
21322
|
-
|
|
21323
|
-
|
|
21324
|
-
|
|
21325
|
-
|
|
21326
|
-
|
|
21327
|
-
lContainer[DEHYDRATED_VIEWS] = null;
|
|
21328
|
-
const embeddedLView = createAndRenderEmbeddedLView(hostLView, activeBlockTNode, null, {
|
|
21329
|
-
injector,
|
|
21330
|
-
dehydratedView,
|
|
21331
|
-
});
|
|
21332
|
-
addLViewToLContainer(lContainer, embeddedLView, viewIndex, shouldAddViewToDom(activeBlockTNode, dehydratedView));
|
|
21333
|
-
markViewDirty(embeddedLView, 2 /* NotificationSource.DeferBlockStateUpdate */);
|
|
21334
|
-
}
|
|
21321
|
+
// Erase dehydrated view info, so that it's not removed later
|
|
21322
|
+
// by post-hydration cleanup process.
|
|
21323
|
+
lContainer[DEHYDRATED_VIEWS] = null;
|
|
21324
|
+
const embeddedLView = createAndRenderEmbeddedLView(hostLView, activeBlockTNode, null, {
|
|
21325
|
+
injector,
|
|
21326
|
+
dehydratedView,
|
|
21327
|
+
});
|
|
21328
|
+
addLViewToLContainer(lContainer, embeddedLView, viewIndex, shouldAddViewToDom(activeBlockTNode, dehydratedView));
|
|
21329
|
+
markViewDirty(embeddedLView, 2 /* NotificationSource.DeferBlockStateUpdate */);
|
|
21335
21330
|
// TODO(incremental-hydration):
|
|
21336
21331
|
// - what if we had some views in `lContainer[DEHYDRATED_VIEWS]`, but
|
|
21337
21332
|
// we didn't find a view that matches the expected state?
|
|
21338
21333
|
// - for example, handle a situation when a block was in the "completed" state
|
|
21339
21334
|
// on the server, but the loading failing on the client. How do we reconcile and cleanup?
|
|
21340
|
-
|
|
21341
|
-
|
|
21335
|
+
if ((newState === DeferBlockState.Complete || newState === DeferBlockState.Error) &&
|
|
21336
|
+
Array.isArray(lDetails[ON_COMPLETE_FNS])) {
|
|
21342
21337
|
for (const callback of lDetails[ON_COMPLETE_FNS]) {
|
|
21343
21338
|
callback();
|
|
21344
21339
|
}
|
|
@@ -23655,9 +23650,14 @@ function detectChangesInViewIfRequired(lView, notifyErrorHandler, isFirstPass, z
|
|
|
23655
23650
|
function scheduleDelayedTrigger(scheduleFn) {
|
|
23656
23651
|
const lView = getLView();
|
|
23657
23652
|
const tNode = getCurrentTNode();
|
|
23653
|
+
renderPlaceholder(lView, tNode);
|
|
23654
|
+
// Exit early to avoid invoking `scheduleFn`, which would
|
|
23655
|
+
// add `setTimeout` call and potentially delay serialization
|
|
23656
|
+
// on the server unnecessarily.
|
|
23657
|
+
if (!shouldTriggerDeferBlock(0 /* TriggerType.Regular */, lView))
|
|
23658
|
+
return;
|
|
23658
23659
|
const injector = lView[INJECTOR];
|
|
23659
23660
|
const lDetails = getLDeferBlockDetails(lView, tNode);
|
|
23660
|
-
renderPlaceholder(lView, tNode);
|
|
23661
23661
|
const cleanupFn = scheduleFn(() => triggerDeferBlock(0 /* TriggerType.Regular */, lView, tNode), injector);
|
|
23662
23662
|
storeTriggerCleanupFn(0 /* TriggerType.Regular */, lDetails, cleanupFn);
|
|
23663
23663
|
}
|
|
@@ -23939,30 +23939,25 @@ function populateHydratingStateForQueue(registry, queue) {
|
|
|
23939
23939
|
}
|
|
23940
23940
|
// Waits for the next render cycle to complete
|
|
23941
23941
|
function nextRender(injector) {
|
|
23942
|
-
|
|
23943
|
-
const promise = new Promise((resolveFn) => {
|
|
23944
|
-
resolve = resolveFn;
|
|
23945
|
-
});
|
|
23946
|
-
afterNextRender(() => resolve(), { injector });
|
|
23947
|
-
return promise;
|
|
23942
|
+
return new Promise((resolveFn) => afterNextRender(resolveFn, { injector }));
|
|
23948
23943
|
}
|
|
23949
|
-
function triggerResourceLoadingForHydration(dehydratedBlockId, dehydratedBlockRegistry) {
|
|
23950
|
-
let resolve;
|
|
23951
|
-
const promise = new Promise((resolveFn) => (resolve = resolveFn));
|
|
23944
|
+
async function triggerResourceLoadingForHydration(dehydratedBlockId, dehydratedBlockRegistry) {
|
|
23952
23945
|
const deferBlock = dehydratedBlockRegistry.get(dehydratedBlockId);
|
|
23953
23946
|
// Since we trigger hydration for nested defer blocks in a sequence (parent -> child),
|
|
23954
23947
|
// there is a chance that a defer block may not be present at hydration time. For example,
|
|
23955
23948
|
// when a nested block was in an `@if` condition, which has changed.
|
|
23956
|
-
if (deferBlock
|
|
23957
|
-
const { tNode, lView } = deferBlock;
|
|
23958
|
-
const lDetails = getLDeferBlockDetails(lView, tNode);
|
|
23959
|
-
onDeferBlockCompletion(lDetails, () => resolve());
|
|
23960
|
-
triggerDeferBlock(2 /* TriggerType.Hydrate */, lView, tNode);
|
|
23949
|
+
if (deferBlock === null) {
|
|
23961
23950
|
// TODO(incremental-hydration): handle the cleanup for cases when
|
|
23962
23951
|
// defer block is no longer present during hydration (e.g. `@if` condition
|
|
23963
23952
|
// has changed during hydration/rendering).
|
|
23953
|
+
return;
|
|
23964
23954
|
}
|
|
23965
|
-
|
|
23955
|
+
const { tNode, lView } = deferBlock;
|
|
23956
|
+
const lDetails = getLDeferBlockDetails(lView, tNode);
|
|
23957
|
+
return new Promise((resolve) => {
|
|
23958
|
+
onDeferBlockCompletion(lDetails, resolve);
|
|
23959
|
+
triggerDeferBlock(2 /* TriggerType.Hydrate */, lView, tNode);
|
|
23960
|
+
});
|
|
23966
23961
|
}
|
|
23967
23962
|
/**
|
|
23968
23963
|
* Registers cleanup functions for a defer block when the block has finished
|
|
@@ -24436,7 +24431,7 @@ function ɵɵdeferHydrateOnTimer(delay) {
|
|
|
24436
24431
|
if (!shouldAttachTrigger(2 /* TriggerType.Hydrate */, lView, tNode))
|
|
24437
24432
|
return;
|
|
24438
24433
|
const hydrateTriggers = getHydrateTriggers(getTView(), tNode);
|
|
24439
|
-
hydrateTriggers.set(5 /* DeferBlockTrigger.Timer */, delay);
|
|
24434
|
+
hydrateTriggers.set(5 /* DeferBlockTrigger.Timer */, { delay });
|
|
24440
24435
|
if (typeof ngServerMode !== 'undefined' && ngServerMode) {
|
|
24441
24436
|
// We are on the server and SSR for defer blocks is enabled.
|
|
24442
24437
|
triggerDeferBlock(2 /* TriggerType.Hydrate */, lView, tNode);
|
|
@@ -34572,7 +34567,7 @@ class Version {
|
|
|
34572
34567
|
/**
|
|
34573
34568
|
* @publicApi
|
|
34574
34569
|
*/
|
|
34575
|
-
const VERSION = new Version('19.0.
|
|
34570
|
+
const VERSION = new Version('19.0.5');
|
|
34576
34571
|
|
|
34577
34572
|
/**
|
|
34578
34573
|
* Combination of NgModuleFactory and ComponentFactories.
|
|
@@ -35593,6 +35588,27 @@ function logOversizedImageWarning(src) {
|
|
|
35593
35588
|
*/
|
|
35594
35589
|
const PLATFORM_DESTROY_LISTENERS = new InjectionToken(ngDevMode ? 'PlatformDestroyListeners' : '');
|
|
35595
35590
|
|
|
35591
|
+
/**
|
|
35592
|
+
* InjectionToken to control root component bootstrap behavior.
|
|
35593
|
+
*
|
|
35594
|
+
* This token is primarily used in Angular's server-side rendering (SSR) scenarios,
|
|
35595
|
+
* particularly by the `@angular/ssr` package, to manage whether the root component
|
|
35596
|
+
* should be bootstrapped during the application initialization process.
|
|
35597
|
+
*
|
|
35598
|
+
* ## Purpose:
|
|
35599
|
+
* During SSR route extraction, setting this token to `false` prevents Angular from
|
|
35600
|
+
* bootstrapping the root component. This avoids unnecessary component rendering,
|
|
35601
|
+
* enabling route extraction without requiring additional APIs or triggering
|
|
35602
|
+
* component logic.
|
|
35603
|
+
*
|
|
35604
|
+
* ## Behavior:
|
|
35605
|
+
* - **`false`**: Prevents the root component from being bootstrapped.
|
|
35606
|
+
* - **`true`** (default): Proceeds with the normal root component bootstrap process.
|
|
35607
|
+
*
|
|
35608
|
+
* This mechanism ensures SSR can efficiently separate route extraction logic
|
|
35609
|
+
* from component rendering.
|
|
35610
|
+
*/
|
|
35611
|
+
const ENABLE_ROOT_COMPONENT_BOOTSTRAP = new InjectionToken(ngDevMode ? 'ENABLE_ROOT_COMPONENT_BOOTSTRAP' : '');
|
|
35596
35612
|
function isApplicationBootstrapConfig(config) {
|
|
35597
35613
|
return !config.moduleRef;
|
|
35598
35614
|
}
|
|
@@ -35657,6 +35673,14 @@ function bootstrap(config) {
|
|
|
35657
35673
|
// If the `LOCALE_ID` provider is defined at bootstrap then we set the value for ivy
|
|
35658
35674
|
const localeId = envInjector.get(LOCALE_ID, DEFAULT_LOCALE_ID);
|
|
35659
35675
|
setLocaleId(localeId || DEFAULT_LOCALE_ID);
|
|
35676
|
+
const enableRootComponentBoostrap = envInjector.get(ENABLE_ROOT_COMPONENT_BOOTSTRAP, true);
|
|
35677
|
+
if (!enableRootComponentBoostrap) {
|
|
35678
|
+
if (isApplicationBootstrapConfig(config)) {
|
|
35679
|
+
return envInjector.get(ApplicationRef);
|
|
35680
|
+
}
|
|
35681
|
+
config.allPlatformModules.push(config.moduleRef);
|
|
35682
|
+
return config.moduleRef;
|
|
35683
|
+
}
|
|
35660
35684
|
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
|
35661
35685
|
const imagePerformanceService = envInjector.get(ImagePerformanceWarning);
|
|
35662
35686
|
imagePerformanceService.start();
|
|
@@ -38967,7 +38991,6 @@ function annotateForHydration(appRef, doc) {
|
|
|
38967
38991
|
transferState.set(NGH_DATA_KEY, serializedViews);
|
|
38968
38992
|
if (deferBlocks.size > 0) {
|
|
38969
38993
|
const blocks = {};
|
|
38970
|
-
// TODO(incremental-hydration): we should probably have an object here instead of a Map?
|
|
38971
38994
|
for (const [id, info] of deferBlocks.entries()) {
|
|
38972
38995
|
blocks[id] = info;
|
|
38973
38996
|
}
|
|
@@ -39036,10 +39059,10 @@ function serializeLContainer(lContainer, tNode, lView, parentDeferBlockId, conte
|
|
|
39036
39059
|
// If this is a defer block, serialize extra info.
|
|
39037
39060
|
if (isDeferBlock(lView[TVIEW], tNode)) {
|
|
39038
39061
|
const lDetails = getLDeferBlockDetails(lView, tNode);
|
|
39039
|
-
|
|
39062
|
+
const tDetails = getTDeferBlockDetails(lView[TVIEW], tNode);
|
|
39063
|
+
if (context.isIncrementalHydrationEnabled && tDetails.hydrateTriggers !== null) {
|
|
39040
39064
|
const deferBlockId = `d${context.deferBlocks.size}`;
|
|
39041
|
-
|
|
39042
|
-
if (tDetails.hydrateTriggers?.has(7 /* DeferBlockTrigger.Never */)) {
|
|
39065
|
+
if (tDetails.hydrateTriggers.has(7 /* DeferBlockTrigger.Never */)) {
|
|
39043
39066
|
isHydrateNeverBlock = true;
|
|
39044
39067
|
}
|
|
39045
39068
|
let rootNodes = [];
|
|
@@ -39049,8 +39072,11 @@ function serializeLContainer(lContainer, tNode, lView, parentDeferBlockId, conte
|
|
|
39049
39072
|
[DEFER_PARENT_BLOCK_ID]: parentDeferBlockId,
|
|
39050
39073
|
[NUM_ROOT_NODES]: rootNodes.length,
|
|
39051
39074
|
[DEFER_BLOCK_STATE$1]: lDetails[DEFER_BLOCK_STATE],
|
|
39052
|
-
[DEFER_HYDRATE_TRIGGERS]: serializeHydrateTriggers(tDetails.hydrateTriggers),
|
|
39053
39075
|
};
|
|
39076
|
+
const serializedTriggers = serializeHydrateTriggers(tDetails.hydrateTriggers);
|
|
39077
|
+
if (serializedTriggers.length > 0) {
|
|
39078
|
+
deferBlockInfo[DEFER_HYDRATE_TRIGGERS] = serializedTriggers;
|
|
39079
|
+
}
|
|
39054
39080
|
context.deferBlocks.set(deferBlockId, deferBlockInfo);
|
|
39055
39081
|
const node = unwrapRNode(lContainer);
|
|
39056
39082
|
if (node !== undefined) {
|
|
@@ -39081,11 +39107,7 @@ function serializeLContainer(lContainer, tNode, lView, parentDeferBlockId, conte
|
|
|
39081
39107
|
serializedView[DEFER_BLOCK_STATE$1] = lDetails[DEFER_BLOCK_STATE];
|
|
39082
39108
|
}
|
|
39083
39109
|
if (!isHydrateNeverBlock) {
|
|
39084
|
-
|
|
39085
|
-
serializedView = {
|
|
39086
|
-
...serializedView,
|
|
39087
|
-
...serializeLView(lContainer[i], parentDeferBlockId, context),
|
|
39088
|
-
};
|
|
39110
|
+
Object.assign(serializedView, serializeLView(lContainer[i], parentDeferBlockId, context));
|
|
39089
39111
|
}
|
|
39090
39112
|
}
|
|
39091
39113
|
// Check if the previous view has the same shape (for example, it was
|
|
@@ -39106,9 +39128,6 @@ function serializeLContainer(lContainer, tNode, lView, parentDeferBlockId, conte
|
|
|
39106
39128
|
return views;
|
|
39107
39129
|
}
|
|
39108
39130
|
function serializeHydrateTriggers(triggerMap) {
|
|
39109
|
-
if (triggerMap === null) {
|
|
39110
|
-
return null;
|
|
39111
|
-
}
|
|
39112
39131
|
const serializableDeferBlockTrigger = new Set([
|
|
39113
39132
|
0 /* DeferBlockTrigger.Idle */,
|
|
39114
39133
|
1 /* DeferBlockTrigger.Immediate */,
|
|
@@ -39122,7 +39141,7 @@ function serializeHydrateTriggers(triggerMap) {
|
|
|
39122
39141
|
triggers.push(trigger);
|
|
39123
39142
|
}
|
|
39124
39143
|
else {
|
|
39125
|
-
triggers.push({ trigger, details });
|
|
39144
|
+
triggers.push({ trigger, delay: details.delay });
|
|
39126
39145
|
}
|
|
39127
39146
|
}
|
|
39128
39147
|
}
|
|
@@ -39540,6 +39559,9 @@ function printHydrationStats(injector) {
|
|
|
39540
39559
|
const message = `Angular hydrated ${ngDevMode.hydratedComponents} component(s) ` +
|
|
39541
39560
|
`and ${ngDevMode.hydratedNodes} node(s), ` +
|
|
39542
39561
|
`${ngDevMode.componentsSkippedHydration} component(s) were skipped. ` +
|
|
39562
|
+
(isIncrementalHydrationEnabled(injector)
|
|
39563
|
+
? `${ngDevMode.deferBlocksWithIncrementalHydration} defer block(s) were configured to use incremental hydration. `
|
|
39564
|
+
: '') +
|
|
39543
39565
|
`Learn more at https://angular.dev/guide/hydration.`;
|
|
39544
39566
|
// tslint:disable-next-line:no-console
|
|
39545
39567
|
console.log(message);
|
|
@@ -39663,6 +39685,7 @@ function withDomHydration() {
|
|
|
39663
39685
|
whenStableWithTimeout(appRef, injector).then(() => {
|
|
39664
39686
|
cleanupDehydratedViews(appRef);
|
|
39665
39687
|
if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
39688
|
+
countBlocksSkippedByHydration(injector);
|
|
39666
39689
|
printHydrationStats(injector);
|
|
39667
39690
|
}
|
|
39668
39691
|
});
|
|
@@ -41160,5 +41183,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
41160
41183
|
* Generated bundle index. Do not edit.
|
|
41161
41184
|
*/
|
|
41162
41185
|
|
|
41163
|
-
export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AfterRenderPhase, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CSP_NONCE, 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_TAG_NAME, Host, HostAttributeToken, HostBinding, HostListener, INJECTOR$1 as 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, OutputEmitterRef, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, PendingTasks, Pipe, PlatformRef, Query, QueryList, REQUEST, REQUEST_CONTEXT, RESPONSE_INIT, Renderer2, RendererFactory2, RendererStyleFlags2, ResourceStatus, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation, ViewRef, afterNextRender, afterRender, afterRenderEffect, asNativeElements, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, contentChild, contentChildren, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, linkedSignal, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, output, platformCore, provideAppInitializer, provideEnvironmentInitializer, provideExperimentalCheckNoChangesForDebug, provideExperimentalZonelessChangeDetection, providePlatformInitializer, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, resource, runInInjectionContext, setTestabilityGetter, signal, untracked, viewChild, viewChildren, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderManager as ɵAfterRenderManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ChangeDetectionScheduler as ɵChangeDetectionScheduler, ChangeDetectionSchedulerImpl as ɵChangeDetectionSchedulerImpl, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, EffectScheduler as ɵEffectScheduler, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, INTERNAL_APPLICATION_ERROR_HANDLER as ɵINTERNAL_APPLICATION_ERROR_HANDLER, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, IS_INCREMENTAL_HYDRATION_ENABLED as ɵIS_INCREMENTAL_HYDRATION_ENABLED, JSACTION_EVENT_CONTRACT as ɵJSACTION_EVENT_CONTRACT, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, MicrotaskEffectScheduler as ɵMicrotaskEffectScheduler, 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, PERFORMANCE_MARK_PREFIX as ɵPERFORMANCE_MARK_PREFIX, PROVIDED_NG_ZONE as ɵPROVIDED_NG_ZONE, PendingTasksInternal as ɵPendingTasksInternal, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, TracingAction as ɵTracingAction, TracingService as ɵTracingService, USE_RUNTIME_DEPS_TRACKER_FOR_JIT as ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, ZONELESS_ENABLED as ɵZONELESS_ENABLED, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, 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, depsTracker as ɵdepsTracker, detectChangesInViewIfRequired as ɵdetectChangesInViewIfRequired, devModeEqual as ɵdevModeEqual, disableProfiling as ɵdisableProfiling, enableProfiling as ɵenableProfiling, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getClosestComponentName as ɵgetClosestComponentName, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getOutputDestroyRef as ɵgetOutputDestroyRef, getSanitizationBypassType as ɵgetSanitizationBypassType, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalCreateApplication as ɵinternalCreateApplication, internalProvideZoneChangeDetection as ɵinternalProvideZoneChangeDetection, isBoundToModule as ɵisBoundToModule, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, microtaskEffect as ɵmicrotaskEffect, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, publishExternalGlobalUtil as ɵpublishExternalGlobalUtil, readHydrationInfo as ɵreadHydrationInfo, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setInjectorProfilerContext as ɵsetInjectorProfilerContext, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, startMeasuring as ɵstartMeasuring, stopMeasuring as ɵstopMeasuring, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, ɵunwrapWritableSignal, withDomHydration as ɵwithDomHydration, withEventReplay as ɵwithEventReplay, withI18nSupport as ɵwithI18nSupport, withIncrementalHydration as ɵwithIncrementalHydration, ɵɵCopyDefinitionFeature, ɵɵExternalStylesFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵInputTransformsFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcomponentInstance, ɵɵconditional, ɵɵcontentQuery, ɵɵcontentQuerySignal, ɵɵdeclareLet, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵdeferHydrateNever, ɵɵdeferHydrateOnHover, ɵɵdeferHydrateOnIdle, ɵɵdeferHydrateOnImmediate, ɵɵdeferHydrateOnInteraction, ɵɵdeferHydrateOnTimer, ɵɵdeferHydrateOnViewport, ɵɵdeferHydrateWhen, ɵɵdeferOnHover, ɵɵdeferOnIdle, ɵɵdeferOnImmediate, ɵɵdeferOnInteraction, ɵɵdeferOnTimer, ɵɵdeferOnViewport, ɵɵdeferPrefetchOnHover, ɵɵdeferPrefetchOnIdle, ɵɵdeferPrefetchOnImmediate, ɵɵdeferPrefetchOnInteraction, ɵɵdeferPrefetchOnTimer, ɵɵdeferPrefetchOnViewport, ɵɵdeferPrefetchWhen, ɵɵdeferWhen, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareClassMetadataAsync, ɵɵ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, ɵɵqueryAdvance, ɵɵqueryRefresh, ɵɵreadContextLet, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵreplaceMetadata, ɵɵresetView, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstoreLet, ɵɵ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, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
|
|
41186
|
+
export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AfterRenderPhase, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CSP_NONCE, 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_TAG_NAME, Host, HostAttributeToken, HostBinding, HostListener, INJECTOR$1 as 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, OutputEmitterRef, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, PendingTasks, Pipe, PlatformRef, Query, QueryList, REQUEST, REQUEST_CONTEXT, RESPONSE_INIT, Renderer2, RendererFactory2, RendererStyleFlags2, ResourceStatus, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation, ViewRef, afterNextRender, afterRender, afterRenderEffect, asNativeElements, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, contentChild, contentChildren, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, linkedSignal, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, output, platformCore, provideAppInitializer, provideEnvironmentInitializer, provideExperimentalCheckNoChangesForDebug, provideExperimentalZonelessChangeDetection, providePlatformInitializer, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, resource, runInInjectionContext, setTestabilityGetter, signal, untracked, viewChild, viewChildren, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderManager as ɵAfterRenderManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ChangeDetectionScheduler as ɵChangeDetectionScheduler, ChangeDetectionSchedulerImpl as ɵChangeDetectionSchedulerImpl, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, ENABLE_ROOT_COMPONENT_BOOTSTRAP as ɵENABLE_ROOT_COMPONENT_BOOTSTRAP, EffectScheduler as ɵEffectScheduler, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, INTERNAL_APPLICATION_ERROR_HANDLER as ɵINTERNAL_APPLICATION_ERROR_HANDLER, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, IS_INCREMENTAL_HYDRATION_ENABLED as ɵIS_INCREMENTAL_HYDRATION_ENABLED, JSACTION_EVENT_CONTRACT as ɵJSACTION_EVENT_CONTRACT, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, MicrotaskEffectScheduler as ɵMicrotaskEffectScheduler, 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, PERFORMANCE_MARK_PREFIX as ɵPERFORMANCE_MARK_PREFIX, PROVIDED_NG_ZONE as ɵPROVIDED_NG_ZONE, PendingTasksInternal as ɵPendingTasksInternal, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, TracingAction as ɵTracingAction, TracingService as ɵTracingService, USE_RUNTIME_DEPS_TRACKER_FOR_JIT as ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, ZONELESS_ENABLED as ɵZONELESS_ENABLED, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, 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, depsTracker as ɵdepsTracker, detectChangesInViewIfRequired as ɵdetectChangesInViewIfRequired, devModeEqual as ɵdevModeEqual, disableProfiling as ɵdisableProfiling, enableProfiling as ɵenableProfiling, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getClosestComponentName as ɵgetClosestComponentName, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getOutputDestroyRef as ɵgetOutputDestroyRef, getSanitizationBypassType as ɵgetSanitizationBypassType, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalCreateApplication as ɵinternalCreateApplication, internalProvideZoneChangeDetection as ɵinternalProvideZoneChangeDetection, isBoundToModule as ɵisBoundToModule, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, microtaskEffect as ɵmicrotaskEffect, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, publishExternalGlobalUtil as ɵpublishExternalGlobalUtil, readHydrationInfo as ɵreadHydrationInfo, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setInjectorProfilerContext as ɵsetInjectorProfilerContext, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, startMeasuring as ɵstartMeasuring, stopMeasuring as ɵstopMeasuring, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, ɵunwrapWritableSignal, withDomHydration as ɵwithDomHydration, withEventReplay as ɵwithEventReplay, withI18nSupport as ɵwithI18nSupport, withIncrementalHydration as ɵwithIncrementalHydration, ɵɵCopyDefinitionFeature, ɵɵExternalStylesFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵInputTransformsFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcomponentInstance, ɵɵconditional, ɵɵcontentQuery, ɵɵcontentQuerySignal, ɵɵdeclareLet, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵdeferHydrateNever, ɵɵdeferHydrateOnHover, ɵɵdeferHydrateOnIdle, ɵɵdeferHydrateOnImmediate, ɵɵdeferHydrateOnInteraction, ɵɵdeferHydrateOnTimer, ɵɵdeferHydrateOnViewport, ɵɵdeferHydrateWhen, ɵɵdeferOnHover, ɵɵdeferOnIdle, ɵɵdeferOnImmediate, ɵɵdeferOnInteraction, ɵɵdeferOnTimer, ɵɵdeferOnViewport, ɵɵdeferPrefetchOnHover, ɵɵdeferPrefetchOnIdle, ɵɵdeferPrefetchOnImmediate, ɵɵdeferPrefetchOnInteraction, ɵɵdeferPrefetchOnTimer, ɵɵdeferPrefetchOnViewport, ɵɵdeferPrefetchWhen, ɵɵdeferWhen, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareClassMetadataAsync, ɵɵ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, ɵɵqueryAdvance, ɵɵqueryRefresh, ɵɵreadContextLet, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵreplaceMetadata, ɵɵresetView, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstoreLet, ɵɵ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, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
|
|
41164
41187
|
//# sourceMappingURL=core.mjs.map
|