@angular/core 18.1.0-next.2 → 18.1.0-next.3
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/esm2022/rxjs-interop/src/to_signal.mjs +7 -3
- package/esm2022/src/authoring/model/model_signal.mjs +2 -3
- package/esm2022/src/change_detection/scheduling/zoneless_scheduling_impl.mjs +2 -2
- package/esm2022/src/core_render3_private_export.mjs +2 -2
- package/esm2022/src/defer/instructions.mjs +2 -10
- package/esm2022/src/errors.mjs +1 -1
- package/esm2022/src/hydration/event_replay.mjs +32 -14
- package/esm2022/src/linker/component_factory.mjs +1 -1
- package/esm2022/src/render3/after_render_hooks.mjs +2 -2
- package/esm2022/src/render3/chained_injector.mjs +34 -0
- package/esm2022/src/render3/component.mjs +1 -1
- package/esm2022/src/render3/component_ref.mjs +23 -35
- package/esm2022/src/render3/index.mjs +2 -2
- package/esm2022/src/render3/instructions/all.mjs +2 -1
- package/esm2022/src/render3/instructions/let_declaration.mjs +39 -0
- package/esm2022/src/render3/jit/environment.mjs +4 -1
- package/esm2022/src/render3/util/injector_discovery_utils.mjs +14 -5
- package/esm2022/src/render3/util/injector_utils.mjs +10 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +160 -79
- 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 +7 -3
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/index.d.ts +39 -9
- 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 +13 -6
- package/schematics/migrations/after-render-phase/bundle.js +64 -43
- package/schematics/migrations/after-render-phase/bundle.js.map +2 -2
- package/schematics/migrations/http-providers/bundle.js +15 -15
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +422 -218
- package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +4 -4
- package/schematics/ng-generate/control-flow-migration/bundle.js +437 -226
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
- package/schematics/ng-generate/standalone-migration/bundle.js +711 -505
- package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
- package/testing/index.d.ts +1 -1
package/fesm2022/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v18.1.0-next.
|
|
2
|
+
* @license Angular v18.1.0-next.3
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -5403,6 +5403,50 @@ function assertPureTNodeType(type) {
|
|
|
5403
5403
|
}
|
|
5404
5404
|
}
|
|
5405
5405
|
|
|
5406
|
+
// This default value is when checking the hierarchy for a token.
|
|
5407
|
+
//
|
|
5408
|
+
// It means both:
|
|
5409
|
+
// - the token is not provided by the current injector,
|
|
5410
|
+
// - only the element injectors should be checked (ie do not check module injectors
|
|
5411
|
+
//
|
|
5412
|
+
// mod1
|
|
5413
|
+
// /
|
|
5414
|
+
// el1 mod2
|
|
5415
|
+
// \ /
|
|
5416
|
+
// el2
|
|
5417
|
+
//
|
|
5418
|
+
// When requesting el2.injector.get(token), we should check in the following order and return the
|
|
5419
|
+
// first found value:
|
|
5420
|
+
// - el2.injector.get(token, default)
|
|
5421
|
+
// - el1.injector.get(token, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR) -> do not check the module
|
|
5422
|
+
// - mod2.injector.get(token, default)
|
|
5423
|
+
const NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR = {};
|
|
5424
|
+
|
|
5425
|
+
/**
|
|
5426
|
+
* Injector that looks up a value using a specific injector, before falling back to the module
|
|
5427
|
+
* injector. Used primarily when creating components or embedded views dynamically.
|
|
5428
|
+
*/
|
|
5429
|
+
class ChainedInjector {
|
|
5430
|
+
constructor(injector, parentInjector) {
|
|
5431
|
+
this.injector = injector;
|
|
5432
|
+
this.parentInjector = parentInjector;
|
|
5433
|
+
}
|
|
5434
|
+
get(token, notFoundValue, flags) {
|
|
5435
|
+
flags = convertToBitFlags(flags);
|
|
5436
|
+
const value = this.injector.get(token, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, flags);
|
|
5437
|
+
if (value !== NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR ||
|
|
5438
|
+
notFoundValue === NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR) {
|
|
5439
|
+
// Return the value from the root element injector when
|
|
5440
|
+
// - it provides it
|
|
5441
|
+
// (value !== NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR)
|
|
5442
|
+
// - the module injector should not be checked
|
|
5443
|
+
// (notFoundValue === NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR)
|
|
5444
|
+
return value;
|
|
5445
|
+
}
|
|
5446
|
+
return this.parentInjector.get(token, notFoundValue, flags);
|
|
5447
|
+
}
|
|
5448
|
+
}
|
|
5449
|
+
|
|
5406
5450
|
/// Parent Injector Utils ///////////////////////////////////////////////////////////////
|
|
5407
5451
|
function hasParentInjector(parentLocation) {
|
|
5408
5452
|
return parentLocation !== NO_PARENT_INJECTOR;
|
|
@@ -5441,6 +5485,14 @@ function getParentInjectorView(location, startView) {
|
|
|
5441
5485
|
}
|
|
5442
5486
|
return parentView;
|
|
5443
5487
|
}
|
|
5488
|
+
/**
|
|
5489
|
+
* Detects whether an injector is an instance of a `ChainedInjector`,
|
|
5490
|
+
* created based on the `OutletInjector`.
|
|
5491
|
+
*/
|
|
5492
|
+
function isRouterOutletInjector(currentInjector) {
|
|
5493
|
+
return (currentInjector instanceof ChainedInjector &&
|
|
5494
|
+
typeof currentInjector.injector.__ngOutletInjector === 'function');
|
|
5495
|
+
}
|
|
5444
5496
|
|
|
5445
5497
|
/**
|
|
5446
5498
|
* Defines if the call to `inject` should include `viewProviders` in its resolution.
|
|
@@ -15451,25 +15503,6 @@ class Sanitizer {
|
|
|
15451
15503
|
}); }
|
|
15452
15504
|
}
|
|
15453
15505
|
|
|
15454
|
-
// This default value is when checking the hierarchy for a token.
|
|
15455
|
-
//
|
|
15456
|
-
// It means both:
|
|
15457
|
-
// - the token is not provided by the current injector,
|
|
15458
|
-
// - only the element injectors should be checked (ie do not check module injectors
|
|
15459
|
-
//
|
|
15460
|
-
// mod1
|
|
15461
|
-
// /
|
|
15462
|
-
// el1 mod2
|
|
15463
|
-
// \ /
|
|
15464
|
-
// el2
|
|
15465
|
-
//
|
|
15466
|
-
// When requesting el2.injector.get(token), we should check in the following order and return the
|
|
15467
|
-
// first found value:
|
|
15468
|
-
// - el2.injector.get(token, default)
|
|
15469
|
-
// - el1.injector.get(token, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR) -> do not check the module
|
|
15470
|
-
// - mod2.injector.get(token, default)
|
|
15471
|
-
const NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR = {};
|
|
15472
|
-
|
|
15473
15506
|
/**
|
|
15474
15507
|
* Asserts that the current stack frame is not within a reactive context. Useful
|
|
15475
15508
|
* to disallow certain code from running inside a reactive context (see {@link toSignal}).
|
|
@@ -16031,7 +16064,7 @@ function getNgZone(ngZoneToUse = 'zone.js', options) {
|
|
|
16031
16064
|
* or library.
|
|
16032
16065
|
*
|
|
16033
16066
|
* @deprecated Specify the phase for your callback to run in by passing a spec-object as the first
|
|
16034
|
-
* parameter to `afterRender` or `afterNextRender`
|
|
16067
|
+
* parameter to `afterRender` or `afterNextRender` instead of a function.
|
|
16035
16068
|
*/
|
|
16036
16069
|
var AfterRenderPhase;
|
|
16037
16070
|
(function (AfterRenderPhase) {
|
|
@@ -16644,7 +16677,7 @@ class ComponentFactoryResolver extends ComponentFactoryResolver$1 {
|
|
|
16644
16677
|
return new ComponentFactory(componentDef, this.ngModule);
|
|
16645
16678
|
}
|
|
16646
16679
|
}
|
|
16647
|
-
function toRefArray(map) {
|
|
16680
|
+
function toRefArray(map, isInputMap) {
|
|
16648
16681
|
const array = [];
|
|
16649
16682
|
for (const publicName in map) {
|
|
16650
16683
|
if (!map.hasOwnProperty(publicName)) {
|
|
@@ -16654,10 +16687,22 @@ function toRefArray(map) {
|
|
|
16654
16687
|
if (value === undefined) {
|
|
16655
16688
|
continue;
|
|
16656
16689
|
}
|
|
16657
|
-
|
|
16658
|
-
|
|
16659
|
-
|
|
16660
|
-
|
|
16690
|
+
const isArray = Array.isArray(value);
|
|
16691
|
+
const propName = isArray ? value[0] : value;
|
|
16692
|
+
const flags = isArray ? value[1] : InputFlags.None;
|
|
16693
|
+
if (isInputMap) {
|
|
16694
|
+
array.push({
|
|
16695
|
+
propName: propName,
|
|
16696
|
+
templateName: publicName,
|
|
16697
|
+
isSignal: (flags & InputFlags.SignalBased) !== 0,
|
|
16698
|
+
});
|
|
16699
|
+
}
|
|
16700
|
+
else {
|
|
16701
|
+
array.push({
|
|
16702
|
+
propName: propName,
|
|
16703
|
+
templateName: publicName,
|
|
16704
|
+
});
|
|
16705
|
+
}
|
|
16661
16706
|
}
|
|
16662
16707
|
return array;
|
|
16663
16708
|
}
|
|
@@ -16665,30 +16710,6 @@ function getNamespace(elementName) {
|
|
|
16665
16710
|
const name = elementName.toLowerCase();
|
|
16666
16711
|
return name === 'svg' ? SVG_NAMESPACE : name === 'math' ? MATH_ML_NAMESPACE : null;
|
|
16667
16712
|
}
|
|
16668
|
-
/**
|
|
16669
|
-
* Injector that looks up a value using a specific injector, before falling back to the module
|
|
16670
|
-
* injector. Used primarily when creating components or embedded views dynamically.
|
|
16671
|
-
*/
|
|
16672
|
-
class ChainedInjector {
|
|
16673
|
-
constructor(injector, parentInjector) {
|
|
16674
|
-
this.injector = injector;
|
|
16675
|
-
this.parentInjector = parentInjector;
|
|
16676
|
-
}
|
|
16677
|
-
get(token, notFoundValue, flags) {
|
|
16678
|
-
flags = convertToBitFlags(flags);
|
|
16679
|
-
const value = this.injector.get(token, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, flags);
|
|
16680
|
-
if (value !== NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR ||
|
|
16681
|
-
notFoundValue === NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR) {
|
|
16682
|
-
// Return the value from the root element injector when
|
|
16683
|
-
// - it provides it
|
|
16684
|
-
// (value !== NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR)
|
|
16685
|
-
// - the module injector should not be checked
|
|
16686
|
-
// (notFoundValue === NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR)
|
|
16687
|
-
return value;
|
|
16688
|
-
}
|
|
16689
|
-
return this.parentInjector.get(token, notFoundValue, flags);
|
|
16690
|
-
}
|
|
16691
|
-
}
|
|
16692
16713
|
/**
|
|
16693
16714
|
* ComponentFactory interface implementation.
|
|
16694
16715
|
*/
|
|
@@ -16696,7 +16717,7 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
16696
16717
|
get inputs() {
|
|
16697
16718
|
const componentDef = this.componentDef;
|
|
16698
16719
|
const inputTransforms = componentDef.inputTransforms;
|
|
16699
|
-
const refArray = toRefArray(componentDef.inputs);
|
|
16720
|
+
const refArray = toRefArray(componentDef.inputs, true);
|
|
16700
16721
|
if (inputTransforms !== null) {
|
|
16701
16722
|
for (const input of refArray) {
|
|
16702
16723
|
if (inputTransforms.hasOwnProperty(input.propName)) {
|
|
@@ -16707,7 +16728,7 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
16707
16728
|
return refArray;
|
|
16708
16729
|
}
|
|
16709
16730
|
get outputs() {
|
|
16710
|
-
return toRefArray(this.componentDef.outputs);
|
|
16731
|
+
return toRefArray(this.componentDef.outputs, false);
|
|
16711
16732
|
}
|
|
16712
16733
|
/**
|
|
16713
16734
|
* @param componentDef The component definition.
|
|
@@ -16990,7 +17011,7 @@ function createRootComponent(componentView, rootComponentDef, rootDirectives, ho
|
|
|
16990
17011
|
function setRootNodeAttributes(hostRenderer, componentDef, hostRNode, rootSelectorOrNode) {
|
|
16991
17012
|
if (rootSelectorOrNode) {
|
|
16992
17013
|
// The placeholder will be replaced with the actual version at build time.
|
|
16993
|
-
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '18.1.0-next.
|
|
17014
|
+
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '18.1.0-next.3']);
|
|
16994
17015
|
}
|
|
16995
17016
|
else {
|
|
16996
17017
|
// If host element is created as a part of this function call (i.e. `rootSelectorOrNode`
|
|
@@ -18181,7 +18202,7 @@ function createModelSignal(initialValue) {
|
|
|
18181
18202
|
/** Asserts that a model's value is set. */
|
|
18182
18203
|
function assertModelSet(value) {
|
|
18183
18204
|
if (value === REQUIRED_UNSET_VALUE) {
|
|
18184
|
-
throw new RuntimeError(
|
|
18205
|
+
throw new RuntimeError(952 /* RuntimeErrorCode.REQUIRED_MODEL_NO_VALUE */, ngDevMode && 'Model is required but no value is available yet.');
|
|
18185
18206
|
}
|
|
18186
18207
|
}
|
|
18187
18208
|
|
|
@@ -20564,14 +20585,6 @@ function renderDeferBlockState(newState, tNode, lContainer, skipTimerScheduling
|
|
|
20564
20585
|
}
|
|
20565
20586
|
}
|
|
20566
20587
|
}
|
|
20567
|
-
/**
|
|
20568
|
-
* Detects whether an injector is an instance of a `ChainedInjector`,
|
|
20569
|
-
* created based on the `OutletInjector`.
|
|
20570
|
-
*/
|
|
20571
|
-
function isRouterOutletInjector(currentInjector) {
|
|
20572
|
-
return (currentInjector instanceof ChainedInjector &&
|
|
20573
|
-
typeof currentInjector.injector.__ngOutletInjector === 'function');
|
|
20574
|
-
}
|
|
20575
20588
|
/**
|
|
20576
20589
|
* Creates an instance of the `OutletInjector` using a private factory
|
|
20577
20590
|
* function available on the `OutletInjector` class.
|
|
@@ -28340,6 +28353,45 @@ function ɵɵtwoWayListener(eventName, listenerFn) {
|
|
|
28340
28353
|
return ɵɵtwoWayListener;
|
|
28341
28354
|
}
|
|
28342
28355
|
|
|
28356
|
+
/*!
|
|
28357
|
+
* @license
|
|
28358
|
+
* Copyright Google LLC All Rights Reserved.
|
|
28359
|
+
*
|
|
28360
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
28361
|
+
* found in the LICENSE file at https://angular.io/license
|
|
28362
|
+
*/
|
|
28363
|
+
/**
|
|
28364
|
+
* Declares an `@let` at a specific data slot.
|
|
28365
|
+
*
|
|
28366
|
+
* @param index Index at which to declare the `@let`.
|
|
28367
|
+
*
|
|
28368
|
+
* @codeGenApi
|
|
28369
|
+
*/
|
|
28370
|
+
function ɵɵdeclareLet(index) {
|
|
28371
|
+
// TODO(crisbeto): implement this
|
|
28372
|
+
return ɵɵdeclareLet;
|
|
28373
|
+
}
|
|
28374
|
+
/**
|
|
28375
|
+
* Instruction that stores the value of a `@let` declaration on the current view.
|
|
28376
|
+
*
|
|
28377
|
+
* @codeGenApi
|
|
28378
|
+
*/
|
|
28379
|
+
function ɵɵstoreLet(value) {
|
|
28380
|
+
// TODO(crisbeto): implement this
|
|
28381
|
+
return value;
|
|
28382
|
+
}
|
|
28383
|
+
/**
|
|
28384
|
+
* Retrieves the value of a `@let` declaration defined within the same view.
|
|
28385
|
+
*
|
|
28386
|
+
* @param index Index of the declaration within the view.
|
|
28387
|
+
*
|
|
28388
|
+
* @codeGenApi
|
|
28389
|
+
*/
|
|
28390
|
+
function ɵɵreadContextLet(index) {
|
|
28391
|
+
// TODO(crisbeto): implement this
|
|
28392
|
+
return null;
|
|
28393
|
+
}
|
|
28394
|
+
|
|
28343
28395
|
/*
|
|
28344
28396
|
* This file re-exports all symbols contained in this directory.
|
|
28345
28397
|
*
|
|
@@ -29609,6 +29661,9 @@ const angularCoreEnv = (() => ({
|
|
|
29609
29661
|
'ɵɵregisterNgModuleType': registerNgModuleType,
|
|
29610
29662
|
'ɵɵgetComponentDepsFactory': ɵɵgetComponentDepsFactory,
|
|
29611
29663
|
'ɵsetClassDebugInfo': ɵsetClassDebugInfo,
|
|
29664
|
+
'ɵɵdeclareLet': ɵɵdeclareLet,
|
|
29665
|
+
'ɵɵstoreLet': ɵɵstoreLet,
|
|
29666
|
+
'ɵɵreadContextLet': ɵɵreadContextLet,
|
|
29612
29667
|
'ɵɵsanitizeHtml': ɵɵsanitizeHtml,
|
|
29613
29668
|
'ɵɵsanitizeStyle': ɵɵsanitizeStyle,
|
|
29614
29669
|
'ɵɵsanitizeResourceUrl': ɵɵsanitizeResourceUrl,
|
|
@@ -30790,7 +30845,7 @@ class Version {
|
|
|
30790
30845
|
/**
|
|
30791
30846
|
* @publicApi
|
|
30792
30847
|
*/
|
|
30793
|
-
const VERSION = new Version('18.1.0-next.
|
|
30848
|
+
const VERSION = new Version('18.1.0-next.3');
|
|
30794
30849
|
|
|
30795
30850
|
/*
|
|
30796
30851
|
* This file exists to support compilation of @angular/core in Ivy mode.
|
|
@@ -31567,7 +31622,16 @@ function getInjectorResolutionPathHelper(injector, resolutionPath) {
|
|
|
31567
31622
|
*/
|
|
31568
31623
|
function getInjectorParent(injector) {
|
|
31569
31624
|
if (injector instanceof R3Injector) {
|
|
31570
|
-
|
|
31625
|
+
const parent = injector.parent;
|
|
31626
|
+
if (isRouterOutletInjector(parent)) {
|
|
31627
|
+
// This is a special case for a `ChainedInjector` instance, which represents
|
|
31628
|
+
// a combination of a Router's `OutletInjector` and an EnvironmentInjector,
|
|
31629
|
+
// which represents a `@defer` block. Since the `OutletInjector` doesn't store
|
|
31630
|
+
// any tokens itself, we point to the parent injector instead. See the
|
|
31631
|
+
// `OutletInjector.__ngOutletInjector` field for additional information.
|
|
31632
|
+
return parent.parentInjector;
|
|
31633
|
+
}
|
|
31634
|
+
return parent;
|
|
31571
31635
|
}
|
|
31572
31636
|
let tNode;
|
|
31573
31637
|
let lView;
|
|
@@ -31582,7 +31646,7 @@ function getInjectorParent(injector) {
|
|
|
31582
31646
|
return injector.parentInjector;
|
|
31583
31647
|
}
|
|
31584
31648
|
else {
|
|
31585
|
-
throwError('getInjectorParent only support injectors of type R3Injector, NodeInjector, NullInjector
|
|
31649
|
+
throwError('getInjectorParent only support injectors of type R3Injector, NodeInjector, NullInjector');
|
|
31586
31650
|
}
|
|
31587
31651
|
const parentLocation = getParentInjectorLocation(tNode, lView);
|
|
31588
31652
|
if (hasParentInjector(parentLocation)) {
|
|
@@ -33230,7 +33294,7 @@ class ChangeDetectionSchedulerImpl {
|
|
|
33230
33294
|
function provideExperimentalZonelessChangeDetection() {
|
|
33231
33295
|
performanceMarkFeature('NgZoneless');
|
|
33232
33296
|
if ((typeof ngDevMode === 'undefined' || ngDevMode) && typeof Zone !== 'undefined' && Zone) {
|
|
33233
|
-
const message = formatRuntimeError(914 /* RuntimeErrorCode.UNEXPECTED_ZONEJS_PRESENT_IN_ZONELESS_MODE */, `The application is using zoneless change detection, but is still loading Zone.js
|
|
33297
|
+
const message = formatRuntimeError(914 /* RuntimeErrorCode.UNEXPECTED_ZONEJS_PRESENT_IN_ZONELESS_MODE */, `The application is using zoneless change detection, but is still loading Zone.js. ` +
|
|
33234
33298
|
`Consider removing Zone.js to get the full benefits of zoneless. ` +
|
|
33235
33299
|
`In applications using the Angular CLI, Zone.js is typically included in the "polyfills" section of the angular.json file.`);
|
|
33236
33300
|
console.warn(message);
|
|
@@ -36609,6 +36673,13 @@ const jsactionSet = new Set();
|
|
|
36609
36673
|
function isGlobalEventDelegationEnabled(injector) {
|
|
36610
36674
|
return injector.get(IS_GLOBAL_EVENT_DELEGATION_ENABLED, false);
|
|
36611
36675
|
}
|
|
36676
|
+
/**
|
|
36677
|
+
* Determines whether Event Replay feature should be activated on the client.
|
|
36678
|
+
*/
|
|
36679
|
+
function shouldEnableEventReplay(injector) {
|
|
36680
|
+
return (injector.get(IS_EVENT_REPLAY_ENABLED, EVENT_REPLAY_ENABLED_DEFAULT) &&
|
|
36681
|
+
!isGlobalEventDelegationEnabled(injector));
|
|
36682
|
+
}
|
|
36612
36683
|
/**
|
|
36613
36684
|
* Returns a set of providers required to setup support for event replay.
|
|
36614
36685
|
* Requires hydration to be enabled separately.
|
|
@@ -36617,19 +36688,31 @@ function withEventReplay() {
|
|
|
36617
36688
|
return [
|
|
36618
36689
|
{
|
|
36619
36690
|
provide: IS_EVENT_REPLAY_ENABLED,
|
|
36620
|
-
|
|
36691
|
+
useFactory: () => {
|
|
36692
|
+
let isEnabled = true;
|
|
36693
|
+
if (isPlatformBrowser()) {
|
|
36694
|
+
// Note: globalThis[CONTRACT_PROPERTY] may be undefined in case Event Replay feature
|
|
36695
|
+
// is enabled, but there are no events configured in this application, in which case
|
|
36696
|
+
// we don't activate this feature, since there are no events to replay.
|
|
36697
|
+
const appId = inject(APP_ID);
|
|
36698
|
+
isEnabled = !!globalThis[CONTRACT_PROPERTY]?.[appId];
|
|
36699
|
+
}
|
|
36700
|
+
if (isEnabled) {
|
|
36701
|
+
performanceMarkFeature('NgEventReplay');
|
|
36702
|
+
}
|
|
36703
|
+
return isEnabled;
|
|
36704
|
+
},
|
|
36621
36705
|
},
|
|
36622
36706
|
{
|
|
36623
36707
|
provide: ENVIRONMENT_INITIALIZER,
|
|
36624
36708
|
useValue: () => {
|
|
36625
36709
|
const injector = inject(Injector);
|
|
36626
|
-
if (
|
|
36627
|
-
|
|
36710
|
+
if (isPlatformBrowser(injector) && shouldEnableEventReplay(injector)) {
|
|
36711
|
+
setStashFn((rEl, eventName, listenerFn) => {
|
|
36712
|
+
sharedStashFunction(rEl, eventName, listenerFn);
|
|
36713
|
+
jsactionSet.add(rEl);
|
|
36714
|
+
});
|
|
36628
36715
|
}
|
|
36629
|
-
setStashFn((rEl, eventName, listenerFn) => {
|
|
36630
|
-
sharedStashFunction(rEl, eventName, listenerFn);
|
|
36631
|
-
jsactionSet.add(rEl);
|
|
36632
|
-
});
|
|
36633
36716
|
},
|
|
36634
36717
|
multi: true,
|
|
36635
36718
|
},
|
|
@@ -36640,13 +36723,13 @@ function withEventReplay() {
|
|
|
36640
36723
|
const injector = inject(Injector);
|
|
36641
36724
|
const appRef = inject(ApplicationRef);
|
|
36642
36725
|
return () => {
|
|
36726
|
+
if (!shouldEnableEventReplay(injector)) {
|
|
36727
|
+
return;
|
|
36728
|
+
}
|
|
36643
36729
|
// Kick off event replay logic once hydration for the initial part
|
|
36644
36730
|
// of the application is completed. This timing is similar to the unclaimed
|
|
36645
36731
|
// dehydrated views cleanup timing.
|
|
36646
36732
|
whenStable(appRef).then(() => {
|
|
36647
|
-
if (isGlobalEventDelegationEnabled(injector)) {
|
|
36648
|
-
return;
|
|
36649
|
-
}
|
|
36650
36733
|
const globalEventDelegation = injector.get(GlobalEventDelegation);
|
|
36651
36734
|
initEventReplay(globalEventDelegation, injector);
|
|
36652
36735
|
jsactionSet.forEach(removeListeners);
|
|
@@ -36669,8 +36752,6 @@ function getJsactionData(container) {
|
|
|
36669
36752
|
const initEventReplay = (eventDelegation, injector) => {
|
|
36670
36753
|
const appId = injector.get(APP_ID);
|
|
36671
36754
|
// This is set in packages/platform-server/src/utils.ts
|
|
36672
|
-
// Note: globalThis[CONTRACT_PROPERTY] may be undefined in case Event Replay feature
|
|
36673
|
-
// is enabled, but there are no events configured in an application.
|
|
36674
36755
|
const container = globalThis[CONTRACT_PROPERTY]?.[appId];
|
|
36675
36756
|
const earlyJsactionData = getJsactionData(container);
|
|
36676
36757
|
const eventContract = (eventDelegation.eventContract = new EventContract(new EventContractContainer(earlyJsactionData.c)));
|
|
@@ -38058,5 +38139,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
38058
38139
|
* Generated bundle index. Do not edit.
|
|
38059
38140
|
*/
|
|
38060
38141
|
|
|
38061
|
-
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, ExperimentalPendingTasks, 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, Pipe, PlatformRef, Query, QueryList, Renderer2, RendererFactory2, RendererStyleFlags2, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, afterNextRender, afterRender, 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, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, output, platformCore, provideExperimentalCheckNoChangesForDebug, provideExperimentalZonelessChangeDetection, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, viewChild, viewChildren, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderEventManager as ɵAfterRenderEventManager, 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, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, 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, PROVIDED_NG_ZONE as ɵPROVIDED_NG_ZONE, PendingTasks as ɵPendingTasks, 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, 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, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, 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, internalAfterNextRender as ɵinternalAfterNextRender, 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, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, queueStateUpdate as ɵqueueStateUpdate, 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, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, ɵunwrapWritableSignal, whenStable as ɵwhenStable, withDomHydration as ɵwithDomHydration, withEventReplay as ɵwithEventReplay, withI18nSupport as ɵwithI18nSupport, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵInputTransformsFeature, ɵɵ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, ɵɵcomponentInstance, ɵɵconditional, ɵɵcontentQuery, ɵɵcontentQuerySignal, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵ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, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵ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, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
|
|
38142
|
+
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, ExperimentalPendingTasks, 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, Pipe, PlatformRef, Query, QueryList, Renderer2, RendererFactory2, RendererStyleFlags2, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, afterNextRender, afterRender, 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, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, output, platformCore, provideExperimentalCheckNoChangesForDebug, provideExperimentalZonelessChangeDetection, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, viewChild, viewChildren, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderEventManager as ɵAfterRenderEventManager, 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, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, 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, PROVIDED_NG_ZONE as ɵPROVIDED_NG_ZONE, PendingTasks as ɵPendingTasks, 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, 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, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, 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, internalAfterNextRender as ɵinternalAfterNextRender, 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, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, queueStateUpdate as ɵqueueStateUpdate, 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, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, ɵunwrapWritableSignal, whenStable as ɵwhenStable, withDomHydration as ɵwithDomHydration, withEventReplay as ɵwithEventReplay, withI18nSupport as ɵwithI18nSupport, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵInputTransformsFeature, ɵɵ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, ɵɵcomponentInstance, ɵɵconditional, ɵɵcontentQuery, ɵɵcontentQuerySignal, ɵɵdeclareLet, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵ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, ɵɵ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 };
|
|
38062
38143
|
//# sourceMappingURL=core.mjs.map
|