@angular/core 19.2.0 → 19.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/core.mjs +52 -69
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/di.mjs +45 -0
- package/fesm2022/primitives/di.mjs.map +1 -0
- package/fesm2022/primitives/event-dispatch.mjs +2 -2
- package/fesm2022/primitives/signals.mjs +2 -2
- package/fesm2022/rxjs-interop.mjs +2 -2
- package/fesm2022/testing.mjs +280 -119
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +27 -30
- package/package.json +5 -1
- package/primitives/di/index.d.ts +99 -0
- package/primitives/event-dispatch/index.d.ts +2 -2
- package/primitives/signals/index.d.ts +2 -2
- package/rxjs-interop/index.d.ts +2 -2
- package/schematics/bundles/{apply_import_manager-a4e62ded.js → apply_import_manager-b8d6885d.js} +4 -4
- package/schematics/bundles/{checker-2eecc677.js → checker-89987c98.js} +11 -15
- package/schematics/bundles/cleanup-unused-imports.js +8 -8
- package/schematics/bundles/{compiler_host-f313eac9.js → compiler_host-2398e4ca.js} +3 -3
- package/schematics/bundles/control-flow-migration.js +4 -4
- package/schematics/bundles/explicit-standalone-flag.js +6 -6
- package/schematics/bundles/{imports-31a38653.js → imports-047fbbc8.js} +2 -2
- package/schematics/bundles/{index-3891dd55.js → index-10911843.js} +5 -5
- package/schematics/bundles/{index-afc3f749.js → index-e0b2e4a7.js} +5 -5
- package/schematics/bundles/inject-migration.js +8 -8
- package/schematics/bundles/{leading_space-6e7a8ec6.js → leading_space-f8944434.js} +2 -2
- package/schematics/bundles/{migrate_ts_type_references-1abf1f5f.js → migrate_ts_type_references-52508cd4.js} +7 -7
- package/schematics/bundles/{ng_decorators-6878e227.js → ng_decorators-b0d8b324.js} +3 -3
- package/schematics/bundles/{nodes-ffdce442.js → nodes-7758dbf6.js} +2 -2
- package/schematics/bundles/output-migration.js +8 -8
- package/schematics/bundles/pending-tasks.js +6 -6
- package/schematics/bundles/{program-24da9092.js → program-0e1d4f10.js} +13 -13
- package/schematics/bundles/{project_paths-64bc3947.js → project_paths-c48796dd.js} +4 -4
- package/schematics/bundles/{project_tsconfig_paths-6c9cde78.js → project_tsconfig_paths-b558633b.js} +2 -2
- package/schematics/bundles/{property_name-42030525.js → property_name-ac18447e.js} +2 -2
- package/schematics/bundles/provide-initializer.js +6 -6
- package/schematics/bundles/route-lazy-loading.js +6 -6
- package/schematics/bundles/self-closing-tags-migration.js +44 -28
- package/schematics/bundles/signal-input-migration.js +10 -10
- package/schematics/bundles/signal-queries-migration.js +10 -10
- package/schematics/bundles/signals.js +10 -10
- package/schematics/bundles/standalone-migration.js +10 -10
- package/testing/index.d.ts +25 -14
package/fesm2022/core.mjs
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.2.
|
|
3
|
-
* (c) 2010-
|
|
2
|
+
* @license Angular v19.2.1
|
|
3
|
+
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import { SIGNAL_NODE as SIGNAL_NODE$1, signalSetFn as signalSetFn$1, producerAccessed as producerAccessed$1, SIGNAL as SIGNAL$1, getActiveConsumer as getActiveConsumer$1, setActiveConsumer as setActiveConsumer$1, createSignal as createSignal$1, signalUpdateFn as signalUpdateFn$1, consumerDestroy as consumerDestroy$1, REACTIVE_NODE as REACTIVE_NODE$1, consumerBeforeComputation as consumerBeforeComputation$1, consumerAfterComputation as consumerAfterComputation$1, consumerPollProducersForChange as consumerPollProducersForChange$1, createComputed as createComputed$1, setThrowInvalidWriteToSignalError as setThrowInvalidWriteToSignalError$1, createWatch as createWatch$1, isInNotificationPhase as isInNotificationPhase$1, createLinkedSignal as createLinkedSignal$1, linkedSignalSetFn as linkedSignalSetFn$1, linkedSignalUpdateFn as linkedSignalUpdateFn$1 } from '@angular/core/primitives/signals';
|
|
8
8
|
export { SIGNAL as ɵSIGNAL } from '@angular/core/primitives/signals';
|
|
9
|
+
import * as di from '@angular/core/primitives/di';
|
|
9
10
|
import { BehaviorSubject, Subject, Subscription } from 'rxjs';
|
|
10
11
|
import { Attribute as Attribute$1, clearAppScopedEarlyEventContract, EventContract, EventContractContainer, getAppScopedQueuedEventInfos, EventDispatcher, registerDispatcher, isEarlyEventType, isCaptureEventType, EventPhase } from '@angular/core/primitives/event-dispatch';
|
|
11
12
|
import { map } from 'rxjs/operators';
|
|
@@ -1078,6 +1079,12 @@ function assertInjectImplementationNotEqual(fn) {
|
|
|
1078
1079
|
|
|
1079
1080
|
const _THROW_IF_NOT_FOUND = {};
|
|
1080
1081
|
const THROW_IF_NOT_FOUND = _THROW_IF_NOT_FOUND;
|
|
1082
|
+
function getCurrentInjector() {
|
|
1083
|
+
return di.getCurrentInjector();
|
|
1084
|
+
}
|
|
1085
|
+
function setCurrentInjector(injector) {
|
|
1086
|
+
return di.setCurrentInjector(injector);
|
|
1087
|
+
}
|
|
1081
1088
|
/*
|
|
1082
1089
|
* Name of a property (that we patch onto DI decorator), which is used as an annotation of which
|
|
1083
1090
|
* InjectFlag this decorator represents. This allows to avoid direct references to the DI decorators
|
|
@@ -1089,31 +1096,16 @@ const NG_TOKEN_PATH = 'ngTokenPath';
|
|
|
1089
1096
|
const NEW_LINE = /\n/gm;
|
|
1090
1097
|
const NO_NEW_LINE = 'ɵ';
|
|
1091
1098
|
const SOURCE = '__source';
|
|
1092
|
-
/**
|
|
1093
|
-
* Current injector value used by `inject`.
|
|
1094
|
-
* - `undefined`: it is an error to call `inject`
|
|
1095
|
-
* - `null`: `inject` can be called but there is no injector (limp-mode).
|
|
1096
|
-
* - Injector instance: Use the injector for resolution.
|
|
1097
|
-
*/
|
|
1098
|
-
let _currentInjector = undefined;
|
|
1099
|
-
function getCurrentInjector() {
|
|
1100
|
-
return _currentInjector;
|
|
1101
|
-
}
|
|
1102
|
-
function setCurrentInjector(injector) {
|
|
1103
|
-
const former = _currentInjector;
|
|
1104
|
-
_currentInjector = injector;
|
|
1105
|
-
return former;
|
|
1106
|
-
}
|
|
1107
1099
|
function injectInjectorOnly(token, flags = InjectFlags.Default) {
|
|
1108
|
-
if (
|
|
1100
|
+
if (getCurrentInjector() === undefined) {
|
|
1109
1101
|
throw new RuntimeError(-203 /* RuntimeErrorCode.MISSING_INJECTION_CONTEXT */, ngDevMode &&
|
|
1110
1102
|
`inject() must be called from an injection context such as a constructor, a factory function, a field initializer, or a function used with \`runInInjectionContext\`.`);
|
|
1111
1103
|
}
|
|
1112
|
-
else if (
|
|
1104
|
+
else if (getCurrentInjector() === null) {
|
|
1113
1105
|
return injectRootLimpMode(token, undefined, flags);
|
|
1114
1106
|
}
|
|
1115
1107
|
else {
|
|
1116
|
-
const value =
|
|
1108
|
+
const value = getCurrentInjector().get(token, flags & InjectFlags.Optional ? null : undefined, flags);
|
|
1117
1109
|
ngDevMode && emitInjectEvent(token, value, flags);
|
|
1118
1110
|
return value;
|
|
1119
1111
|
}
|
|
@@ -2312,7 +2304,7 @@ class R3Injector extends EnvironmentInjector {
|
|
|
2312
2304
|
hydrate(token, record) {
|
|
2313
2305
|
const prevConsumer = setActiveConsumer$1(null);
|
|
2314
2306
|
try {
|
|
2315
|
-
if (
|
|
2307
|
+
if (record.value === CIRCULAR) {
|
|
2316
2308
|
throwCyclicDependencyError(stringify(token));
|
|
2317
2309
|
}
|
|
2318
2310
|
else if (record.value === NOT_YET) {
|
|
@@ -4495,9 +4487,6 @@ class NodeInjectorFactory {
|
|
|
4495
4487
|
this.injectImpl = injectImplementation;
|
|
4496
4488
|
}
|
|
4497
4489
|
}
|
|
4498
|
-
function isFactory(obj) {
|
|
4499
|
-
return obj instanceof NodeInjectorFactory;
|
|
4500
|
-
}
|
|
4501
4490
|
|
|
4502
4491
|
/**
|
|
4503
4492
|
* Converts `TNodeType` into human readable text.
|
|
@@ -5435,7 +5424,7 @@ function locateDirectiveOrProvider(tNode, tView, token, canAccessViewProviders,
|
|
|
5435
5424
|
function getNodeInjectable(lView, tView, index, tNode) {
|
|
5436
5425
|
let value = lView[index];
|
|
5437
5426
|
const tData = tView.data;
|
|
5438
|
-
if (
|
|
5427
|
+
if (value instanceof NodeInjectorFactory) {
|
|
5439
5428
|
const factory = value;
|
|
5440
5429
|
if (factory.resolving) {
|
|
5441
5430
|
throwCyclicDependencyError(stringifyForError(tData[index]));
|
|
@@ -7387,8 +7376,8 @@ function isI18nInSkipHydrationBlock(parentTNode) {
|
|
|
7387
7376
|
* The strategy that the default change detector uses to detect changes.
|
|
7388
7377
|
* When set, takes effect the next time change detection is triggered.
|
|
7389
7378
|
*
|
|
7390
|
-
* @see
|
|
7391
|
-
* @see
|
|
7379
|
+
* @see {@link /api/core/ChangeDetectorRef?tab=usage-notes Change detection usage}
|
|
7380
|
+
* @see {@link /best-practices/skipping-subtrees Skipping component subtrees}
|
|
7392
7381
|
*
|
|
7393
7382
|
* @publicApi
|
|
7394
7383
|
*/
|
|
@@ -8627,7 +8616,7 @@ function performanceMarkFeature(feature) {
|
|
|
8627
8616
|
|
|
8628
8617
|
/**
|
|
8629
8618
|
* Asserts that the current stack frame is not within a reactive context. Useful
|
|
8630
|
-
* to disallow certain code from running inside a reactive context (see {@link toSignal})
|
|
8619
|
+
* to disallow certain code from running inside a reactive context (see {@link /api/core/rxjs/toSignal toSignal})
|
|
8631
8620
|
*
|
|
8632
8621
|
* @param debugFn a reference to the function making the assertion (used for the error message).
|
|
8633
8622
|
*
|
|
@@ -9469,15 +9458,6 @@ function registerDomTrigger(initialLView, tNode, triggerIndex, walkUpTimes, regi
|
|
|
9469
9458
|
}
|
|
9470
9459
|
|
|
9471
9460
|
const DEFER_BLOCK_SSR_ID_ATTRIBUTE = 'ngb';
|
|
9472
|
-
function invokeRegisteredDelegationListeners(event) {
|
|
9473
|
-
const handlerFns = event.currentTarget?.__jsaction_fns?.get(event.type);
|
|
9474
|
-
if (!handlerFns) {
|
|
9475
|
-
return;
|
|
9476
|
-
}
|
|
9477
|
-
for (const handler of handlerFns) {
|
|
9478
|
-
handler(event);
|
|
9479
|
-
}
|
|
9480
|
-
}
|
|
9481
9461
|
function setJSActionAttributes(nativeElement, eventTypes, parentDeferBlockId = null) {
|
|
9482
9462
|
// jsaction attributes specifically should be applied to elements and not comment nodes.
|
|
9483
9463
|
// Comment nodes also have no setAttribute function. So this avoids errors.
|
|
@@ -9508,8 +9488,8 @@ const sharedStashFunction = (rEl, eventType, listenerFn) => {
|
|
|
9508
9488
|
el.__jsaction_fns = eventListenerMap;
|
|
9509
9489
|
};
|
|
9510
9490
|
const sharedMapFunction = (rEl, jsActionMap) => {
|
|
9511
|
-
let blockName = rEl.getAttribute(DEFER_BLOCK_SSR_ID_ATTRIBUTE) ?? '';
|
|
9512
9491
|
const el = rEl;
|
|
9492
|
+
let blockName = el.getAttribute(DEFER_BLOCK_SSR_ID_ATTRIBUTE) ?? '';
|
|
9513
9493
|
const blockSet = jsActionMap.get(blockName) ?? new Set();
|
|
9514
9494
|
if (!blockSet.has(el)) {
|
|
9515
9495
|
blockSet.add(el);
|
|
@@ -9539,7 +9519,7 @@ const JSACTION_EVENT_CONTRACT = new InjectionToken(ngDevMode ? 'EVENT_CONTRACT_D
|
|
|
9539
9519
|
});
|
|
9540
9520
|
function invokeListeners(event, currentTarget) {
|
|
9541
9521
|
const handlerFns = currentTarget?.__jsaction_fns?.get(event.type);
|
|
9542
|
-
if (!handlerFns) {
|
|
9522
|
+
if (!handlerFns || !currentTarget?.isConnected) {
|
|
9543
9523
|
return;
|
|
9544
9524
|
}
|
|
9545
9525
|
for (const handler of handlerFns) {
|
|
@@ -10188,7 +10168,7 @@ function executeContentQueries(tView, tNode, lView) {
|
|
|
10188
10168
|
}
|
|
10189
10169
|
|
|
10190
10170
|
/**
|
|
10191
|
-
* Defines the CSS styles encapsulation policies for the {@link Component} decorator's
|
|
10171
|
+
* Defines the CSS styles encapsulation policies for the {@link /api/core/Component Component} decorator's
|
|
10192
10172
|
* `encapsulation` option.
|
|
10193
10173
|
*
|
|
10194
10174
|
* See {@link Component#encapsulation encapsulation}.
|
|
@@ -12500,7 +12480,7 @@ function writeToDirectiveInput(def, instance, publicName, value) {
|
|
|
12500
12480
|
// Usually we resolve the directive instance using `LView[someIndex]` before writing to an
|
|
12501
12481
|
// input, however if the read happens to early, the `LView[someIndex]` might actually be a
|
|
12502
12482
|
// `NodeInjectorFactory`. Check for this specific case here since it can break in subtle ways.
|
|
12503
|
-
if (
|
|
12483
|
+
if (instance instanceof NodeInjectorFactory) {
|
|
12504
12484
|
throw new Error(`ASSERTION ERROR: Cannot write input to factory for type ${def.type.name}. Directive has not been created yet.`);
|
|
12505
12485
|
}
|
|
12506
12486
|
}
|
|
@@ -14818,13 +14798,6 @@ class ViewRef$1 {
|
|
|
14818
14798
|
get context() {
|
|
14819
14799
|
return this._lView[CONTEXT];
|
|
14820
14800
|
}
|
|
14821
|
-
/**
|
|
14822
|
-
* Reports whether the given view is considered dirty according to the different marking mechanisms.
|
|
14823
|
-
*/
|
|
14824
|
-
get dirty() {
|
|
14825
|
-
return (!!(this._lView[FLAGS] &
|
|
14826
|
-
(64 /* LViewFlags.Dirty */ | 1024 /* LViewFlags.RefreshView */ | 8192 /* LViewFlags.HasChildViewsToRefresh */)) || !!this._lView[REACTIVE_TEMPLATE_CONSUMER]?.dirty);
|
|
14827
|
-
}
|
|
14828
14801
|
/**
|
|
14829
14802
|
* @deprecated Replacing the full context object is not supported. Modify the context
|
|
14830
14803
|
* directly, or consider using a `Proxy` if you need to replace the full object.
|
|
@@ -14898,9 +14871,6 @@ class ViewRef$1 {
|
|
|
14898
14871
|
markForCheck() {
|
|
14899
14872
|
markViewDirty(this._cdRefInjectingView || this._lView, 4 /* NotificationSource.MarkForCheck */);
|
|
14900
14873
|
}
|
|
14901
|
-
markForRefresh() {
|
|
14902
|
-
markViewForRefresh(this._cdRefInjectingView || this._lView);
|
|
14903
|
-
}
|
|
14904
14874
|
/**
|
|
14905
14875
|
* Detaches the view from the change detection tree.
|
|
14906
14876
|
*
|
|
@@ -15086,6 +15056,15 @@ class ViewRef$1 {
|
|
|
15086
15056
|
updateAncestorTraversalFlagsOnAttach(this._lView);
|
|
15087
15057
|
}
|
|
15088
15058
|
}
|
|
15059
|
+
/**
|
|
15060
|
+
* Reports whether the given view is considered dirty according to the different marking mechanisms.
|
|
15061
|
+
*/
|
|
15062
|
+
function isViewDirty(view) {
|
|
15063
|
+
return requiresRefreshOrTraversal(view._lView) || !!(view._lView[FLAGS] & 64 /* LViewFlags.Dirty */);
|
|
15064
|
+
}
|
|
15065
|
+
function markForRefresh(view) {
|
|
15066
|
+
markViewForRefresh(view['_cdRefInjectingView'] || view._lView);
|
|
15067
|
+
}
|
|
15089
15068
|
|
|
15090
15069
|
/**
|
|
15091
15070
|
* Represents an embedded template that can be used to instantiate embedded views.
|
|
@@ -18101,11 +18080,15 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
18101
18080
|
componentType;
|
|
18102
18081
|
ngContentSelectors;
|
|
18103
18082
|
isBoundToModule;
|
|
18083
|
+
cachedInputs = null;
|
|
18084
|
+
cachedOutputs = null;
|
|
18104
18085
|
get inputs() {
|
|
18105
|
-
|
|
18086
|
+
this.cachedInputs ??= toInputRefArray(this.componentDef.inputs);
|
|
18087
|
+
return this.cachedInputs;
|
|
18106
18088
|
}
|
|
18107
18089
|
get outputs() {
|
|
18108
|
-
|
|
18090
|
+
this.cachedOutputs ??= toOutputRefArray(this.componentDef.outputs);
|
|
18091
|
+
return this.cachedOutputs;
|
|
18109
18092
|
}
|
|
18110
18093
|
/**
|
|
18111
18094
|
* @param componentDef The component definition.
|
|
@@ -18127,7 +18110,7 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
18127
18110
|
const cmpDef = this.componentDef;
|
|
18128
18111
|
ngDevMode && verifyNotAnOrphanComponent(cmpDef);
|
|
18129
18112
|
const tAttributes = rootSelectorOrNode
|
|
18130
|
-
? ['ng-version', '19.2.
|
|
18113
|
+
? ['ng-version', '19.2.1']
|
|
18131
18114
|
: // Extract attributes and classes from the first selector only to match VE behavior.
|
|
18132
18115
|
extractAttrsAndClassesFromSelector(this.componentDef.selectors[0]);
|
|
18133
18116
|
// Create the root view. Uses empty TView and ContentTemplate.
|
|
@@ -21941,7 +21924,7 @@ function canBeHeldWeakly(value) {
|
|
|
21941
21924
|
* Marks a component for check (in case of OnPush components) and synchronously
|
|
21942
21925
|
* performs change detection on the application this component belongs to.
|
|
21943
21926
|
*
|
|
21944
|
-
* @param component Component to {@link ChangeDetectorRef#markForCheck mark for check}
|
|
21927
|
+
* @param component Component to {@link /api/core/ChangeDetectorRef#markForCheck mark for check}
|
|
21945
21928
|
*
|
|
21946
21929
|
* @publicApi
|
|
21947
21930
|
*/
|
|
@@ -23499,7 +23482,6 @@ function optionsReducer(dst, objs) {
|
|
|
23499
23482
|
* A reference to an Angular application running on a page.
|
|
23500
23483
|
*
|
|
23501
23484
|
* @usageNotes
|
|
23502
|
-
* {@a is-stable-examples}
|
|
23503
23485
|
* ### isStable examples and caveats
|
|
23504
23486
|
*
|
|
23505
23487
|
* Note two important points about `isStable`, demonstrated in the examples below:
|
|
@@ -30534,7 +30516,7 @@ function listenerInternal(tView, lView, renderer, tNode, eventName, listenerFn,
|
|
|
30534
30516
|
}
|
|
30535
30517
|
else {
|
|
30536
30518
|
listenerFn = wrapListener(tNode, lView, context, listenerFn);
|
|
30537
|
-
stashEventListener(
|
|
30519
|
+
stashEventListener(target, eventName, listenerFn);
|
|
30538
30520
|
const cleanupFn = renderer.listen(target, eventName, listenerFn);
|
|
30539
30521
|
ngDevMode && ngDevMode.rendererAddEventListener++;
|
|
30540
30522
|
lCleanup.push(listenerFn, cleanupFn);
|
|
@@ -35175,7 +35157,7 @@ class Version {
|
|
|
35175
35157
|
/**
|
|
35176
35158
|
* @publicApi
|
|
35177
35159
|
*/
|
|
35178
|
-
const VERSION = new Version('19.2.
|
|
35160
|
+
const VERSION = new Version('19.2.1');
|
|
35179
35161
|
|
|
35180
35162
|
/**
|
|
35181
35163
|
* Combination of NgModuleFactory and ComponentFactories.
|
|
@@ -35417,7 +35399,7 @@ function internalProvideZoneChangeDetection({ ngZoneFactory, ignoreChangesOutsid
|
|
|
35417
35399
|
* ```
|
|
35418
35400
|
*
|
|
35419
35401
|
* @publicApi
|
|
35420
|
-
* @see {@link bootstrapApplication}
|
|
35402
|
+
* @see {@link /api/core/bootstrapApplication bootstrapApplication}
|
|
35421
35403
|
* @see {@link NgZoneOptions}
|
|
35422
35404
|
*/
|
|
35423
35405
|
function provideZoneChangeDetection(options) {
|
|
@@ -35803,7 +35785,7 @@ class ChangeDetectionSchedulerImpl {
|
|
|
35803
35785
|
*
|
|
35804
35786
|
* @publicApi
|
|
35805
35787
|
* @experimental
|
|
35806
|
-
* @see
|
|
35788
|
+
* @see {@link /api/platform-browser/bootstrapApplication bootstrapApplication}
|
|
35807
35789
|
*/
|
|
35808
35790
|
function provideExperimentalZonelessChangeDetection() {
|
|
35809
35791
|
performanceMarkFeature('NgZoneless');
|
|
@@ -35888,11 +35870,7 @@ const LOCALE_ID = new InjectionToken(ngDevMode ? 'LocaleId' : '', {
|
|
|
35888
35870
|
*
|
|
35889
35871
|
* <div class="docs-alert docs-alert-helpful">
|
|
35890
35872
|
*
|
|
35891
|
-
*
|
|
35892
|
-
*
|
|
35893
|
-
* The default currency code is currently always `USD` but this is deprecated from v9.
|
|
35894
|
-
*
|
|
35895
|
-
* **In v10 the default currency code will be taken from the current locale.**
|
|
35873
|
+
* The default currency code is currently always `USD`.
|
|
35896
35874
|
*
|
|
35897
35875
|
* If you need the previous behavior then set it by creating a `DEFAULT_CURRENCY_CODE` provider in
|
|
35898
35876
|
* your application `NgModule`:
|
|
@@ -36737,7 +36715,7 @@ function exhaustiveCheckNoChangesInterval(interval, checkNoChangesMode) {
|
|
|
36737
36715
|
*
|
|
36738
36716
|
* By default, this is true, unless `enableProdMode` is invoked prior to calling this method or the
|
|
36739
36717
|
* application is built using the Angular CLI with the `optimization` option.
|
|
36740
|
-
* @see {@link cli/build ng build}
|
|
36718
|
+
* @see {@link /cli/build ng build}
|
|
36741
36719
|
*
|
|
36742
36720
|
* @publicApi
|
|
36743
36721
|
*/
|
|
@@ -36754,7 +36732,7 @@ function isDevMode() {
|
|
|
36754
36732
|
*
|
|
36755
36733
|
* Using this method is discouraged as the Angular CLI will set production mode when using the
|
|
36756
36734
|
* `optimization` option.
|
|
36757
|
-
* @see {@link cli/build ng build}
|
|
36735
|
+
* @see {@link /cli/build ng build}
|
|
36758
36736
|
*
|
|
36759
36737
|
* @publicApi
|
|
36760
36738
|
*/
|
|
@@ -36880,7 +36858,7 @@ function createViewRef(tNode, lView, isPipe) {
|
|
|
36880
36858
|
/**
|
|
36881
36859
|
* Represents an Angular view.
|
|
36882
36860
|
*
|
|
36883
|
-
* @see
|
|
36861
|
+
* @see {@link /api/core/ChangeDetectorRef?tab=usage-notes Change detection usage}
|
|
36884
36862
|
*
|
|
36885
36863
|
* @publicApi
|
|
36886
36864
|
*/
|
|
@@ -39359,6 +39337,11 @@ function withEventReplay() {
|
|
|
39359
39337
|
const jsActionMap = inject(JSACTION_BLOCK_ELEMENT_MAP);
|
|
39360
39338
|
if (shouldEnableEventReplay(injector)) {
|
|
39361
39339
|
setStashFn((rEl, eventName, listenerFn) => {
|
|
39340
|
+
// If a user binds to a ng-container and uses a directive that binds using a host listener,
|
|
39341
|
+
// this element could be a comment node. So we need to ensure we have an actual element
|
|
39342
|
+
// node before stashing anything.
|
|
39343
|
+
if (rEl.nodeType !== Node.ELEMENT_NODE)
|
|
39344
|
+
return;
|
|
39362
39345
|
sharedStashFunction(rEl, eventName, listenerFn);
|
|
39363
39346
|
sharedMapFunction(rEl, jsActionMap);
|
|
39364
39347
|
});
|
|
@@ -41852,5 +41835,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
41852
41835
|
* Generated bundle index. Do not edit.
|
|
41853
41836
|
*/
|
|
41854
41837
|
|
|
41855
|
-
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, 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, ResourceImpl as ɵResourceImpl, 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$1 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, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵattachSourceLocations, ɵɵ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 };
|
|
41838
|
+
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, 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, ResourceImpl as ɵResourceImpl, 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$1 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, isViewDirty as ɵisViewDirty, markForRefresh as ɵmarkForRefresh, 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, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵattachSourceLocations, ɵɵ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 };
|
|
41856
41839
|
//# sourceMappingURL=core.mjs.map
|