@angular/core 19.0.0-next.7 → 19.0.0-next.8
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/LICENSE +21 -0
- package/fesm2022/core.mjs +274 -147
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +4 -4
- package/index.d.ts +67 -52
- package/package.json +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/{checker-637eee78.js → checker-e68dd7ce.js} +15 -5
- package/schematics/bundles/{compiler_host-1e62b899.js → compiler_host-9a4d0c2b.js} +2 -2
- package/schematics/bundles/control-flow-migration.js +3 -3
- package/schematics/bundles/explicit-standalone-flag.js +5 -5
- package/schematics/bundles/group_replacements-472b2387.js +31445 -0
- package/schematics/bundles/{imports-44987700.js → imports-4ac08251.js} +1 -1
- package/schematics/bundles/inject-migration.js +24 -8
- package/schematics/bundles/{leading_space-6e7a8ec6.js → leading_space-d190b83b.js} +1 -1
- package/schematics/bundles/{nodes-b12e919a.js → nodes-0e7d45ca.js} +2 -2
- package/schematics/bundles/pending-tasks.js +5 -5
- package/schematics/bundles/{program-893e3fe7.js → program-105283c5.js} +66 -24
- package/schematics/bundles/{project_tsconfig_paths-6c9cde78.js → project_tsconfig_paths-e9ccccbf.js} +1 -1
- package/schematics/bundles/route-lazy-loading.js +4 -4
- package/schematics/bundles/signal-input-migration.js +371 -31688
- package/schematics/bundles/signal-queries-migration.js +905 -0
- package/schematics/bundles/standalone-migration.js +8 -8
- package/schematics/collection.json +6 -0
- package/schematics/ng-generate/signal-queries-migration/schema.json +19 -0
- package/testing/index.d.ts +1 -1
package/fesm2022/core.mjs
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.0.0-next.
|
|
2
|
+
* @license Angular v19.0.0-next.8
|
|
3
3
|
* (c) 2010-2024 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, consumerDestroy as consumerDestroy$1, REACTIVE_NODE as REACTIVE_NODE$1, consumerBeforeComputation as consumerBeforeComputation$1, consumerAfterComputation as consumerAfterComputation$1, consumerPollProducersForChange as consumerPollProducersForChange$1, createSignal as createSignal$1, signalUpdateFn as signalUpdateFn$1, createComputed as createComputed$1, setThrowInvalidWriteToSignalError as setThrowInvalidWriteToSignalError$1, createWatch as createWatch$1, isInNotificationPhase as isInNotificationPhase$1 } from '@angular/core/primitives/signals';
|
|
8
|
+
export { SIGNAL as ɵSIGNAL } from '@angular/core/primitives/signals';
|
|
8
9
|
import { BehaviorSubject, Subject, Subscription } from 'rxjs';
|
|
9
10
|
import { map, first } from 'rxjs/operators';
|
|
10
|
-
import { Attribute as Attribute$1,
|
|
11
|
+
import { Attribute as Attribute$1, EventContract, EventContractContainer, getAppScopedQueuedEventInfos, clearAppScopedEarlyEventContract, EventDispatcher, registerDispatcher, isEarlyEventType, isCaptureEventType } from '@angular/core/primitives/event-dispatch';
|
|
11
12
|
|
|
12
13
|
/**
|
|
13
14
|
* Base URL for the error details page.
|
|
@@ -2409,6 +2410,7 @@ function ɵɵdefineComponent(componentDefinition) {
|
|
|
2409
2410
|
pipeDefs: null, // assigned in noSideEffects
|
|
2410
2411
|
dependencies: (baseDef.standalone && componentDefinition.dependencies) || null,
|
|
2411
2412
|
getStandaloneInjector: null,
|
|
2413
|
+
getExternalStyles: null,
|
|
2412
2414
|
signals: componentDefinition.signals ?? false,
|
|
2413
2415
|
data: componentDefinition.data || {},
|
|
2414
2416
|
encapsulation: componentDefinition.encapsulation || ViewEncapsulation$1.Emulated,
|
|
@@ -7962,6 +7964,10 @@ function unregisterLView(lView) {
|
|
|
7962
7964
|
ngDevMode && assertNumber(lView[ID], 'Cannot stop tracking an LView that does not have an ID');
|
|
7963
7965
|
TRACKED_LVIEWS.delete(lView[ID]);
|
|
7964
7966
|
}
|
|
7967
|
+
/** Gets the currently-tracked views. */
|
|
7968
|
+
function getTrackedLViews() {
|
|
7969
|
+
return TRACKED_LVIEWS;
|
|
7970
|
+
}
|
|
7965
7971
|
|
|
7966
7972
|
/**
|
|
7967
7973
|
* The internal view context which is specific to a given DOM element, directive or
|
|
@@ -9469,10 +9475,6 @@ const IS_I18N_HYDRATION_ENABLED = new InjectionToken(typeof ngDevMode === 'undef
|
|
|
9469
9475
|
*/
|
|
9470
9476
|
const IS_EVENT_REPLAY_ENABLED = new InjectionToken(typeof ngDevMode === 'undefined' || !!ngDevMode ? 'IS_EVENT_REPLAY_ENABLED' : '');
|
|
9471
9477
|
const EVENT_REPLAY_ENABLED_DEFAULT = false;
|
|
9472
|
-
/**
|
|
9473
|
-
* Internal token that indicates whether global event delegation support is enabled.
|
|
9474
|
-
*/
|
|
9475
|
-
const IS_GLOBAL_EVENT_DELEGATION_ENABLED = new InjectionToken(typeof ngDevMode === 'undefined' || !!ngDevMode ? 'IS_GLOBAL_EVENT_DELEGATION_ENABLED' : '');
|
|
9476
9478
|
|
|
9477
9479
|
/**
|
|
9478
9480
|
* @fileoverview
|
|
@@ -13050,20 +13052,27 @@ function configureViewWithDirective(tView, tNode, lView, directiveIndex, def) {
|
|
|
13050
13052
|
lView[directiveIndex] = nodeInjectorFactory;
|
|
13051
13053
|
registerHostBindingOpCodes(tView, tNode, directiveIndex, allocExpando(tView, lView, def.hostVars, NO_CHANGE), def);
|
|
13052
13054
|
}
|
|
13055
|
+
/**
|
|
13056
|
+
* Gets the initial set of LView flags based on the component definition that the LView represents.
|
|
13057
|
+
* @param def Component definition from which to determine the flags.
|
|
13058
|
+
*/
|
|
13059
|
+
function getInitialLViewFlagsFromDef(def) {
|
|
13060
|
+
let flags = 16 /* LViewFlags.CheckAlways */;
|
|
13061
|
+
if (def.signals) {
|
|
13062
|
+
flags = 4096 /* LViewFlags.SignalView */;
|
|
13063
|
+
}
|
|
13064
|
+
else if (def.onPush) {
|
|
13065
|
+
flags = 64 /* LViewFlags.Dirty */;
|
|
13066
|
+
}
|
|
13067
|
+
return flags;
|
|
13068
|
+
}
|
|
13053
13069
|
function addComponentLogic(lView, hostTNode, def) {
|
|
13054
13070
|
const native = getNativeByTNode(hostTNode, lView);
|
|
13055
13071
|
const tView = getOrCreateComponentTView(def);
|
|
13056
13072
|
// Only component views should be added to the view tree directly. Embedded views are
|
|
13057
13073
|
// accessed through their containers because they may be removed / re-added later.
|
|
13058
13074
|
const rendererFactory = lView[ENVIRONMENT].rendererFactory;
|
|
13059
|
-
|
|
13060
|
-
if (def.signals) {
|
|
13061
|
-
lViewFlags = 4096 /* LViewFlags.SignalView */;
|
|
13062
|
-
}
|
|
13063
|
-
else if (def.onPush) {
|
|
13064
|
-
lViewFlags = 64 /* LViewFlags.Dirty */;
|
|
13065
|
-
}
|
|
13066
|
-
const componentView = addToViewTree(lView, createLView(lView, tView, null, lViewFlags, native, hostTNode, null, rendererFactory.createRenderer(native, def), null, null, null));
|
|
13075
|
+
const componentView = addToEndOfViewTree(lView, createLView(lView, tView, null, getInitialLViewFlagsFromDef(def), native, hostTNode, null, rendererFactory.createRenderer(native, def), null, null, null));
|
|
13067
13076
|
// Component view will always be created before any injected LContainers,
|
|
13068
13077
|
// so this is a regular element, wrap it with the component view
|
|
13069
13078
|
lView[hostTNode.index] = componentView;
|
|
@@ -13232,7 +13241,7 @@ function refreshContentQueries(tView, lView) {
|
|
|
13232
13241
|
* @param lViewOrLContainer The LView or LContainer to add to the view tree
|
|
13233
13242
|
* @returns The state passed in
|
|
13234
13243
|
*/
|
|
13235
|
-
function
|
|
13244
|
+
function addToEndOfViewTree(lView, lViewOrLContainer) {
|
|
13236
13245
|
// TODO(benlesh/misko): This implementation is incorrect, because it always adds the LContainer
|
|
13237
13246
|
// to the end of the queue, which means if the developer retrieves the LContainers from RNodes out
|
|
13238
13247
|
// of order, the change detection will run out of order, as the act of retrieving the the
|
|
@@ -16961,18 +16970,11 @@ function createRootComponentView(tNode, hostRNode, rootComponentDef, rootDirecti
|
|
|
16961
16970
|
hydrationInfo = retrieveHydrationInfo(hostRNode, rootView[INJECTOR]);
|
|
16962
16971
|
}
|
|
16963
16972
|
const viewRenderer = environment.rendererFactory.createRenderer(hostRNode, rootComponentDef);
|
|
16964
|
-
|
|
16965
|
-
if (rootComponentDef.signals) {
|
|
16966
|
-
lViewFlags = 4096 /* LViewFlags.SignalView */;
|
|
16967
|
-
}
|
|
16968
|
-
else if (rootComponentDef.onPush) {
|
|
16969
|
-
lViewFlags = 64 /* LViewFlags.Dirty */;
|
|
16970
|
-
}
|
|
16971
|
-
const componentView = createLView(rootView, getOrCreateComponentTView(rootComponentDef), null, lViewFlags, rootView[tNode.index], tNode, environment, viewRenderer, null, null, hydrationInfo);
|
|
16973
|
+
const componentView = createLView(rootView, getOrCreateComponentTView(rootComponentDef), null, getInitialLViewFlagsFromDef(rootComponentDef), rootView[tNode.index], tNode, environment, viewRenderer, null, null, hydrationInfo);
|
|
16972
16974
|
if (tView.firstCreatePass) {
|
|
16973
16975
|
markAsComponentHost(tView, tNode, rootDirectives.length - 1);
|
|
16974
16976
|
}
|
|
16975
|
-
|
|
16977
|
+
addToEndOfViewTree(rootView, componentView);
|
|
16976
16978
|
// Store component view at node index, with node as the HOST
|
|
16977
16979
|
return (rootView[tNode.index] = componentView);
|
|
16978
16980
|
}
|
|
@@ -17027,7 +17029,7 @@ function createRootComponent(componentView, rootComponentDef, rootDirectives, ho
|
|
|
17027
17029
|
function setRootNodeAttributes(hostRenderer, componentDef, hostRNode, rootSelectorOrNode) {
|
|
17028
17030
|
if (rootSelectorOrNode) {
|
|
17029
17031
|
// The placeholder will be replaced with the actual version at build time.
|
|
17030
|
-
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.0.0-next.
|
|
17032
|
+
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.0.0-next.8']);
|
|
17031
17033
|
}
|
|
17032
17034
|
else {
|
|
17033
17035
|
// If host element is created as a part of this function call (i.e. `rootSelectorOrNode`
|
|
@@ -17376,7 +17378,7 @@ function createContainerRef(hostTNode, hostLView) {
|
|
|
17376
17378
|
// `_locateOrCreateAnchorNode`).
|
|
17377
17379
|
lContainer = createLContainer(slotValue, hostLView, null, hostTNode);
|
|
17378
17380
|
hostLView[hostTNode.index] = lContainer;
|
|
17379
|
-
|
|
17381
|
+
addToEndOfViewTree(hostLView, lContainer);
|
|
17380
17382
|
}
|
|
17381
17383
|
_locateOrCreateAnchorNode(lContainer, hostLView, hostTNode, slotValue);
|
|
17382
17384
|
return new R3ViewContainerRef(lContainer, hostTNode, hostLView);
|
|
@@ -19372,7 +19374,7 @@ function declareTemplate(declarationLView, declarationTView, index, templateFn,
|
|
|
19372
19374
|
attachPatchData(comment, declarationLView);
|
|
19373
19375
|
const lContainer = createLContainer(comment, declarationLView, comment, tNode);
|
|
19374
19376
|
declarationLView[adjustedIndex] = lContainer;
|
|
19375
|
-
|
|
19377
|
+
addToEndOfViewTree(declarationLView, lContainer);
|
|
19376
19378
|
// If hydration is enabled, looks up dehydrated views in the DOM
|
|
19377
19379
|
// using hydration annotation info and stores those views on LContainer.
|
|
19378
19380
|
// In client-only mode, this function is a noop.
|
|
@@ -19777,7 +19779,7 @@ class AfterRenderSequence {
|
|
|
19777
19779
|
* one.
|
|
19778
19780
|
*/
|
|
19779
19781
|
this.pipelinedValue = undefined;
|
|
19780
|
-
this.unregisterOnDestroy = destroyRef
|
|
19782
|
+
this.unregisterOnDestroy = destroyRef?.onDestroy(() => this.destroy());
|
|
19781
19783
|
}
|
|
19782
19784
|
afterRun() {
|
|
19783
19785
|
this.erroredOrDestroyed = false;
|
|
@@ -19785,7 +19787,7 @@ class AfterRenderSequence {
|
|
|
19785
19787
|
}
|
|
19786
19788
|
destroy() {
|
|
19787
19789
|
this.impl.unregister(this);
|
|
19788
|
-
this.unregisterOnDestroy();
|
|
19790
|
+
this.unregisterOnDestroy?.();
|
|
19789
19791
|
}
|
|
19790
19792
|
}
|
|
19791
19793
|
|
|
@@ -19834,7 +19836,8 @@ function afterRenderImpl(callbackOrSpec, injector, options, once) {
|
|
|
19834
19836
|
// tree-shaken if `afterRender` and `afterNextRender` aren't used.
|
|
19835
19837
|
manager.impl ??= injector.get(AfterRenderImpl);
|
|
19836
19838
|
const hooks = options?.phase ?? AfterRenderPhase.MixedReadWrite;
|
|
19837
|
-
const
|
|
19839
|
+
const destroyRef = options?.manualCleanup !== true ? injector.get(DestroyRef) : null;
|
|
19840
|
+
const sequence = new AfterRenderSequence(manager.impl, getHooks(callbackOrSpec, hooks), once, destroyRef);
|
|
19838
19841
|
manager.impl.register(sequence);
|
|
19839
19842
|
return sequence;
|
|
19840
19843
|
}
|
|
@@ -29038,6 +29041,29 @@ function ɵɵStandaloneFeature(definition) {
|
|
|
29038
29041
|
};
|
|
29039
29042
|
}
|
|
29040
29043
|
|
|
29044
|
+
/**
|
|
29045
|
+
* A feature that adds support for external runtime styles for a component.
|
|
29046
|
+
* An external runtime style is a URL to a CSS stylesheet that contains the styles
|
|
29047
|
+
* for a given component. For browsers, this URL will be used in an appended `link` element
|
|
29048
|
+
* when the component is rendered. This feature is typically used for Hot Module Replacement
|
|
29049
|
+
* (HMR) of component stylesheets by leveraging preexisting global stylesheet HMR available
|
|
29050
|
+
* in most development servers.
|
|
29051
|
+
*
|
|
29052
|
+
* @codeGenApi
|
|
29053
|
+
*/
|
|
29054
|
+
function ɵɵExternalStylesFeature(styleUrls) {
|
|
29055
|
+
return (definition) => {
|
|
29056
|
+
if (styleUrls.length < 1) {
|
|
29057
|
+
return;
|
|
29058
|
+
}
|
|
29059
|
+
definition.getExternalStyles = (encapsulationId) => {
|
|
29060
|
+
// Add encapsulation ID search parameter `component` to support external style encapsulation
|
|
29061
|
+
const urls = styleUrls.map((value) => value + '?ngcomp' + (encapsulationId ? '=' + encodeURIComponent(encapsulationId) : ''));
|
|
29062
|
+
return urls;
|
|
29063
|
+
};
|
|
29064
|
+
};
|
|
29065
|
+
}
|
|
29066
|
+
|
|
29041
29067
|
/**
|
|
29042
29068
|
* Generated next to NgModules to monkey-patch directive and pipe references onto a component's
|
|
29043
29069
|
* definition, when generating a direct reference in the component file would otherwise create an
|
|
@@ -29769,6 +29795,155 @@ function ɵsetClassDebugInfo(type, debugInfo) {
|
|
|
29769
29795
|
}
|
|
29770
29796
|
}
|
|
29771
29797
|
|
|
29798
|
+
/*!
|
|
29799
|
+
* @license
|
|
29800
|
+
* Copyright Google LLC All Rights Reserved.
|
|
29801
|
+
*
|
|
29802
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
29803
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
29804
|
+
*/
|
|
29805
|
+
/**
|
|
29806
|
+
* Replaces the metadata of a component type and re-renders all live instances of the component.
|
|
29807
|
+
* @param type Class whose metadata will be replaced.
|
|
29808
|
+
* @param applyMetadata Callback that will apply a new set of metadata on the `type` when invoked.
|
|
29809
|
+
* @codeGenApi
|
|
29810
|
+
*/
|
|
29811
|
+
function ɵɵreplaceMetadata(type, applyMetadata) {
|
|
29812
|
+
ngDevMode && assertComponentDef(type);
|
|
29813
|
+
const oldDef = getComponentDef(type);
|
|
29814
|
+
// The reason `applyMetadata` is a callback that is invoked (almost) immediately is because
|
|
29815
|
+
// the compiler usually produces more code than just the component definition, e.g. there
|
|
29816
|
+
// can be functions for embedded views, the variables for the constant pool and `setClassMetadata`
|
|
29817
|
+
// calls. The callback allows us to keep them isolate from the rest of the app and to invoke
|
|
29818
|
+
// them at the right time.
|
|
29819
|
+
applyMetadata();
|
|
29820
|
+
// If a `tView` hasn't been created yet, it means that this component hasn't been instantianted
|
|
29821
|
+
// before. In this case there's nothing left for us to do aside from patching it in.
|
|
29822
|
+
if (oldDef.tView) {
|
|
29823
|
+
const trackedViews = getTrackedLViews().values();
|
|
29824
|
+
for (const root of trackedViews) {
|
|
29825
|
+
// Note: we have the additional check, because `IsRoot` can also indicate
|
|
29826
|
+
// a component created through something like `createComponent`.
|
|
29827
|
+
if (root[FLAGS] & 512 /* LViewFlags.IsRoot */ && root[PARENT] === null) {
|
|
29828
|
+
recreateMatchingLViews(oldDef, root);
|
|
29829
|
+
}
|
|
29830
|
+
}
|
|
29831
|
+
}
|
|
29832
|
+
}
|
|
29833
|
+
/**
|
|
29834
|
+
* Finds all LViews matching a specific component definition and recreates them.
|
|
29835
|
+
* @param def Component definition to search for.
|
|
29836
|
+
* @param rootLView View from which to start the search.
|
|
29837
|
+
*/
|
|
29838
|
+
function recreateMatchingLViews(def, rootLView) {
|
|
29839
|
+
ngDevMode &&
|
|
29840
|
+
assertDefined(def.tView, 'Expected a component definition that has been instantiated at least once');
|
|
29841
|
+
const tView = rootLView[TVIEW];
|
|
29842
|
+
// Use `tView` to match the LView since `instanceof` can
|
|
29843
|
+
// produce false positives when using inheritance.
|
|
29844
|
+
if (tView === def.tView) {
|
|
29845
|
+
ngDevMode && assertComponentDef(def.type);
|
|
29846
|
+
recreateLView(getComponentDef(def.type), rootLView);
|
|
29847
|
+
return;
|
|
29848
|
+
}
|
|
29849
|
+
for (let i = HEADER_OFFSET; i < tView.bindingStartIndex; i++) {
|
|
29850
|
+
const current = rootLView[i];
|
|
29851
|
+
if (isLContainer(current)) {
|
|
29852
|
+
for (let i = CONTAINER_HEADER_OFFSET; i < current.length; i++) {
|
|
29853
|
+
recreateMatchingLViews(def, current[i]);
|
|
29854
|
+
}
|
|
29855
|
+
}
|
|
29856
|
+
else if (isLView(current)) {
|
|
29857
|
+
recreateMatchingLViews(def, current);
|
|
29858
|
+
}
|
|
29859
|
+
}
|
|
29860
|
+
}
|
|
29861
|
+
/**
|
|
29862
|
+
* Recreates an LView in-place from a new component definition.
|
|
29863
|
+
* @param def Definition from which to recreate the view.
|
|
29864
|
+
* @param lView View to be recreated.
|
|
29865
|
+
*/
|
|
29866
|
+
function recreateLView(def, lView) {
|
|
29867
|
+
const instance = lView[CONTEXT];
|
|
29868
|
+
const host = lView[HOST];
|
|
29869
|
+
// In theory the parent can also be an LContainer, but it appears like that's
|
|
29870
|
+
// only the case for embedded views which we won't be replacing here.
|
|
29871
|
+
const parentLView = lView[PARENT];
|
|
29872
|
+
ngDevMode && assertLView(parentLView);
|
|
29873
|
+
const tNode = lView[T_HOST];
|
|
29874
|
+
ngDevMode && assertTNodeType(tNode, 2 /* TNodeType.Element */);
|
|
29875
|
+
// Recreate the TView since the template might've changed.
|
|
29876
|
+
const newTView = getOrCreateComponentTView(def);
|
|
29877
|
+
// Create a new LView from the new TView, but reusing the existing TNode and DOM node.
|
|
29878
|
+
const newLView = createLView(parentLView, newTView, instance, getInitialLViewFlagsFromDef(def), host, tNode, null, lView[ENVIRONMENT].rendererFactory.createRenderer(host, def), null, null, null);
|
|
29879
|
+
// Detach the LView from its current place in the tree so we don't
|
|
29880
|
+
// start traversing any siblings and modifying their structure.
|
|
29881
|
+
replaceLViewInTree(parentLView, lView, newLView, tNode.index);
|
|
29882
|
+
// Destroy the detached LView.
|
|
29883
|
+
destroyLView(lView[TVIEW], lView);
|
|
29884
|
+
// Remove the nodes associated with the destroyed LView. This removes the
|
|
29885
|
+
// descendants, but not the host which we want to stay in place.
|
|
29886
|
+
removeViewFromDOM(lView[TVIEW], lView);
|
|
29887
|
+
// Reset the content projection state of the TNode before the first render.
|
|
29888
|
+
// Note that this has to happen after the LView has been destroyed or we
|
|
29889
|
+
// risk some projected nodes not being removed correctly.
|
|
29890
|
+
resetProjectionState(tNode);
|
|
29891
|
+
// Creation pass for the new view.
|
|
29892
|
+
renderView(newTView, newLView, instance);
|
|
29893
|
+
// Update pass for the new view.
|
|
29894
|
+
refreshView(newTView, newLView, newTView.template, instance);
|
|
29895
|
+
}
|
|
29896
|
+
/**
|
|
29897
|
+
* Replaces one LView in the tree with another one.
|
|
29898
|
+
* @param parentLView Parent of the LView being replaced.
|
|
29899
|
+
* @param oldLView LView being replaced.
|
|
29900
|
+
* @param newLView Replacement LView to be inserted.
|
|
29901
|
+
* @param index Index at which the LView should be inserted.
|
|
29902
|
+
*/
|
|
29903
|
+
function replaceLViewInTree(parentLView, oldLView, newLView, index) {
|
|
29904
|
+
// Update the sibling whose `NEXT` pointer refers to the old view.
|
|
29905
|
+
for (let i = HEADER_OFFSET; i < parentLView[TVIEW].bindingStartIndex; i++) {
|
|
29906
|
+
const current = parentLView[i];
|
|
29907
|
+
if ((isLView(current) || isLContainer(current)) && current[NEXT] === oldLView) {
|
|
29908
|
+
current[NEXT] = newLView;
|
|
29909
|
+
break;
|
|
29910
|
+
}
|
|
29911
|
+
}
|
|
29912
|
+
// Set the new view as the head, if the old view was first.
|
|
29913
|
+
if (parentLView[CHILD_HEAD] === oldLView) {
|
|
29914
|
+
parentLView[CHILD_HEAD] = newLView;
|
|
29915
|
+
}
|
|
29916
|
+
// Set the new view as the tail, if the old view was last.
|
|
29917
|
+
if (parentLView[CHILD_TAIL] === oldLView) {
|
|
29918
|
+
parentLView[CHILD_TAIL] = newLView;
|
|
29919
|
+
}
|
|
29920
|
+
// Update the `NEXT` pointer to the same as the old view.
|
|
29921
|
+
newLView[NEXT] = oldLView[NEXT];
|
|
29922
|
+
// Clear out the `NEXT` of the old view.
|
|
29923
|
+
oldLView[NEXT] = null;
|
|
29924
|
+
// Insert the new LView at the correct index.
|
|
29925
|
+
parentLView[index] = newLView;
|
|
29926
|
+
}
|
|
29927
|
+
/**
|
|
29928
|
+
* Child nodes mutate the `projection` state of their parent node as they're being projected.
|
|
29929
|
+
* This function resets the `project` back to its initial state.
|
|
29930
|
+
* @param tNode
|
|
29931
|
+
*/
|
|
29932
|
+
function resetProjectionState(tNode) {
|
|
29933
|
+
// The `projection` is mutated by child nodes as they're being projected. We need to
|
|
29934
|
+
// reset it to the initial state so projection works after the template is swapped out.
|
|
29935
|
+
if (tNode.projection !== null) {
|
|
29936
|
+
for (const current of tNode.projection) {
|
|
29937
|
+
if (isTNodeShape(current)) {
|
|
29938
|
+
// Reset `projectionNext` since it can affect the traversal order during projection.
|
|
29939
|
+
current.projectionNext = null;
|
|
29940
|
+
current.flags &= ~2 /* TNodeFlags.isProjected */;
|
|
29941
|
+
}
|
|
29942
|
+
}
|
|
29943
|
+
tNode.projection = null;
|
|
29944
|
+
}
|
|
29945
|
+
}
|
|
29946
|
+
|
|
29772
29947
|
/**
|
|
29773
29948
|
* A mapping of the @angular/core API surface used in generated expressions to the actual symbols.
|
|
29774
29949
|
*
|
|
@@ -29806,6 +29981,7 @@ const angularCoreEnv = (() => ({
|
|
|
29806
29981
|
'ɵɵInheritDefinitionFeature': ɵɵInheritDefinitionFeature,
|
|
29807
29982
|
'ɵɵInputTransformsFeature': ɵɵInputTransformsFeature,
|
|
29808
29983
|
'ɵɵStandaloneFeature': ɵɵStandaloneFeature,
|
|
29984
|
+
'ɵɵExternalStylesFeature': ɵɵExternalStylesFeature,
|
|
29809
29985
|
'ɵɵnextContext': ɵɵnextContext,
|
|
29810
29986
|
'ɵɵnamespaceHTML': ɵɵnamespaceHTML,
|
|
29811
29987
|
'ɵɵnamespaceMathML': ɵɵnamespaceMathML,
|
|
@@ -29967,6 +30143,7 @@ const angularCoreEnv = (() => ({
|
|
|
29967
30143
|
'ɵɵtwoWayProperty': ɵɵtwoWayProperty,
|
|
29968
30144
|
'ɵɵtwoWayBindingSet': ɵɵtwoWayBindingSet,
|
|
29969
30145
|
'ɵɵtwoWayListener': ɵɵtwoWayListener,
|
|
30146
|
+
'ɵɵreplaceMetadata': ɵɵreplaceMetadata,
|
|
29970
30147
|
}))();
|
|
29971
30148
|
|
|
29972
30149
|
let jitOptions = null;
|
|
@@ -30683,6 +30860,9 @@ function compileComponent(type, metadata) {
|
|
|
30683
30860
|
}
|
|
30684
30861
|
return ngComponentDef;
|
|
30685
30862
|
},
|
|
30863
|
+
set: (def) => {
|
|
30864
|
+
ngComponentDef = def;
|
|
30865
|
+
},
|
|
30686
30866
|
// Make the property configurable in dev mode to allow overriding in tests
|
|
30687
30867
|
configurable: !!ngDevMode,
|
|
30688
30868
|
});
|
|
@@ -31134,7 +31314,7 @@ class Version {
|
|
|
31134
31314
|
/**
|
|
31135
31315
|
* @publicApi
|
|
31136
31316
|
*/
|
|
31137
|
-
const VERSION = new Version('19.0.0-next.
|
|
31317
|
+
const VERSION = new Version('19.0.0-next.8');
|
|
31138
31318
|
|
|
31139
31319
|
/*
|
|
31140
31320
|
* This file exists to support compilation of @angular/core in Ivy mode.
|
|
@@ -34081,12 +34261,10 @@ class ImagePerformanceWarning {
|
|
|
34081
34261
|
let lcpElementFound, lcpElementLoadedCorrectly = false;
|
|
34082
34262
|
images.forEach((image) => {
|
|
34083
34263
|
if (!this.options?.disableImageSizeWarning) {
|
|
34084
|
-
|
|
34085
|
-
|
|
34086
|
-
|
|
34087
|
-
|
|
34088
|
-
logOversizedImageWarning(image.src);
|
|
34089
|
-
}
|
|
34264
|
+
// Image elements using the NgOptimizedImage directive are excluded,
|
|
34265
|
+
// as that directive has its own version of this check.
|
|
34266
|
+
if (!image.getAttribute('ng-img') && this.isOversized(image)) {
|
|
34267
|
+
logOversizedImageWarning(image.src);
|
|
34090
34268
|
}
|
|
34091
34269
|
}
|
|
34092
34270
|
if (!this.options?.disableImageLazyLoadWarning && this.lcpImageUrl) {
|
|
@@ -34113,6 +34291,24 @@ class ImagePerformanceWarning {
|
|
|
34113
34291
|
if (!this.window) {
|
|
34114
34292
|
return false;
|
|
34115
34293
|
}
|
|
34294
|
+
// The `isOversized` check may not be applicable or may require adjustments
|
|
34295
|
+
// for several types of image formats or scenarios. Currently, we specify only
|
|
34296
|
+
// `svg`, but this may also include `gif` since their quality isn’t tied to
|
|
34297
|
+
// dimensions in the same way as raster images.
|
|
34298
|
+
const nonOversizedImageExtentions = [
|
|
34299
|
+
// SVG images are vector-based, which means they can scale
|
|
34300
|
+
// to any size without losing quality.
|
|
34301
|
+
'.svg',
|
|
34302
|
+
];
|
|
34303
|
+
// Convert it to lowercase because this may have uppercase
|
|
34304
|
+
// extensions, such as `IMAGE.SVG`.
|
|
34305
|
+
// We fallback to an empty string because `src` may be `undefined`
|
|
34306
|
+
// if it is explicitly set to `null` by some third-party code
|
|
34307
|
+
// (e.g., `image.src = null`).
|
|
34308
|
+
const imageSource = (image.src || '').toLowerCase();
|
|
34309
|
+
if (nonOversizedImageExtentions.some((extension) => imageSource.endsWith(extension))) {
|
|
34310
|
+
return false;
|
|
34311
|
+
}
|
|
34116
34312
|
const computedStyle = this.window.getComputedStyle(image);
|
|
34117
34313
|
let renderedWidth = parseFloat(computedStyle.getPropertyValue('width'));
|
|
34118
34314
|
let renderedHeight = parseFloat(computedStyle.getPropertyValue('height'));
|
|
@@ -34124,6 +34320,8 @@ class ImagePerformanceWarning {
|
|
|
34124
34320
|
return false;
|
|
34125
34321
|
}
|
|
34126
34322
|
if (boxSizing === 'border-box') {
|
|
34323
|
+
// If the image `box-sizing` is set to `border-box`, we adjust the rendered
|
|
34324
|
+
// dimensions by subtracting padding values.
|
|
34127
34325
|
const paddingTop = computedStyle.getPropertyValue('padding-top');
|
|
34128
34326
|
const paddingRight = computedStyle.getPropertyValue('padding-right');
|
|
34129
34327
|
const paddingBottom = computedStyle.getPropertyValue('padding-bottom');
|
|
@@ -37131,7 +37329,6 @@ function getDeferBlocks(lView, deferBlocks) {
|
|
|
37131
37329
|
}
|
|
37132
37330
|
}
|
|
37133
37331
|
|
|
37134
|
-
// tslint:disable:no-duplicate-imports
|
|
37135
37332
|
function invokeRegisteredListeners(event) {
|
|
37136
37333
|
const handlerFns = event.currentTarget?.__jsaction_fns?.get(event.type);
|
|
37137
37334
|
if (!handlerFns) {
|
|
@@ -37165,71 +37362,16 @@ const JSACTION_EVENT_CONTRACT = new InjectionToken(ngDevMode ? 'EVENT_CONTRACT_D
|
|
|
37165
37362
|
providedIn: 'root',
|
|
37166
37363
|
factory: () => ({}),
|
|
37167
37364
|
});
|
|
37168
|
-
const GLOBAL_EVENT_DELEGATION = new InjectionToken(ngDevMode ? 'GLOBAL_EVENT_DELEGATION' : '');
|
|
37169
|
-
/**
|
|
37170
|
-
* This class is the delegate for `EventDelegationPlugin`. It represents the
|
|
37171
|
-
* noop version of this class, with the enabled version set when
|
|
37172
|
-
* `provideGlobalEventDelegation` is called.
|
|
37173
|
-
*/
|
|
37174
|
-
class GlobalEventDelegation {
|
|
37175
|
-
constructor() {
|
|
37176
|
-
this.eventContractDetails = inject(JSACTION_EVENT_CONTRACT);
|
|
37177
|
-
}
|
|
37178
|
-
ngOnDestroy() {
|
|
37179
|
-
this.eventContractDetails.instance?.cleanUp();
|
|
37180
|
-
}
|
|
37181
|
-
supports(eventType) {
|
|
37182
|
-
return isEarlyEventType(eventType);
|
|
37183
|
-
}
|
|
37184
|
-
addEventListener(element, eventType, handler) {
|
|
37185
|
-
// Note: contrary to the type, Window and Document can be passed in
|
|
37186
|
-
// as well.
|
|
37187
|
-
if (element.nodeType === Node.ELEMENT_NODE) {
|
|
37188
|
-
this.eventContractDetails.instance.addEvent(eventType);
|
|
37189
|
-
getActionCache(element)[eventType] = '';
|
|
37190
|
-
sharedStashFunction(element, eventType, handler);
|
|
37191
|
-
}
|
|
37192
|
-
else {
|
|
37193
|
-
element.addEventListener(eventType, handler);
|
|
37194
|
-
}
|
|
37195
|
-
return () => this.removeEventListener(element, eventType, handler);
|
|
37196
|
-
}
|
|
37197
|
-
removeEventListener(element, eventType, callback) {
|
|
37198
|
-
if (element.nodeType === Node.ELEMENT_NODE) {
|
|
37199
|
-
getActionCache(element)[eventType] = undefined;
|
|
37200
|
-
}
|
|
37201
|
-
else {
|
|
37202
|
-
element.removeEventListener(eventType, callback);
|
|
37203
|
-
}
|
|
37204
|
-
}
|
|
37205
|
-
static { this.ɵfac = function GlobalEventDelegation_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || GlobalEventDelegation)(); }; }
|
|
37206
|
-
static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: GlobalEventDelegation, factory: GlobalEventDelegation.ɵfac }); }
|
|
37207
|
-
}
|
|
37208
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(GlobalEventDelegation, [{
|
|
37209
|
-
type: Injectable
|
|
37210
|
-
}], null, null); })();
|
|
37211
|
-
const initGlobalEventDelegation = (eventContractDetails, injector) => {
|
|
37212
|
-
if (injector.get(IS_EVENT_REPLAY_ENABLED, EVENT_REPLAY_ENABLED_DEFAULT)) {
|
|
37213
|
-
return;
|
|
37214
|
-
}
|
|
37215
|
-
const eventContract = (eventContractDetails.instance = new EventContract(new EventContractContainer(document.body)));
|
|
37216
|
-
const dispatcher = new EventDispatcher(invokeRegisteredListeners, /** clickModSupport */ false);
|
|
37217
|
-
registerDispatcher(eventContract, dispatcher);
|
|
37218
|
-
};
|
|
37219
37365
|
|
|
37220
37366
|
/**
|
|
37221
37367
|
* A set of DOM elements with `jsaction` attributes.
|
|
37222
37368
|
*/
|
|
37223
37369
|
const jsactionSet = new Set();
|
|
37224
|
-
function isGlobalEventDelegationEnabled(injector) {
|
|
37225
|
-
return injector.get(IS_GLOBAL_EVENT_DELEGATION_ENABLED, false);
|
|
37226
|
-
}
|
|
37227
37370
|
/**
|
|
37228
37371
|
* Determines whether Event Replay feature should be activated on the client.
|
|
37229
37372
|
*/
|
|
37230
37373
|
function shouldEnableEventReplay(injector) {
|
|
37231
|
-
return
|
|
37232
|
-
!isGlobalEventDelegationEnabled(injector));
|
|
37374
|
+
return injector.get(IS_EVENT_REPLAY_ENABLED, EVENT_REPLAY_ENABLED_DEFAULT);
|
|
37233
37375
|
}
|
|
37234
37376
|
/**
|
|
37235
37377
|
* Returns a set of providers required to setup support for event replay.
|
|
@@ -37984,6 +38126,19 @@ function whenStableWithTimeout(appRef, injector) {
|
|
|
37984
38126
|
}
|
|
37985
38127
|
return whenStablePromise;
|
|
37986
38128
|
}
|
|
38129
|
+
/**
|
|
38130
|
+
* Defines a name of an attribute that is added to the <body> tag
|
|
38131
|
+
* in the `index.html` file in case a given route was configured
|
|
38132
|
+
* with `RenderMode.Client`. 'cm' is an abbreviation for "Client Mode".
|
|
38133
|
+
*/
|
|
38134
|
+
const CLIENT_RENDER_MODE_FLAG = 'ngcm';
|
|
38135
|
+
/**
|
|
38136
|
+
* Checks whether the `RenderMode.Client` was defined for the current route.
|
|
38137
|
+
*/
|
|
38138
|
+
function isClientRenderModeEnabled() {
|
|
38139
|
+
const doc = getDocument();
|
|
38140
|
+
return isPlatformBrowser() && doc.body.hasAttribute(CLIENT_RENDER_MODE_FLAG);
|
|
38141
|
+
}
|
|
37987
38142
|
/**
|
|
37988
38143
|
* Returns a set of providers required to setup hydration support
|
|
37989
38144
|
* for an application that is server side rendered. This function is
|
|
@@ -38005,16 +38160,6 @@ function withDomHydration() {
|
|
|
38005
38160
|
// hydration annotations. Otherwise, keep hydration disabled.
|
|
38006
38161
|
const transferState = inject(TransferState, { optional: true });
|
|
38007
38162
|
isEnabled = !!transferState?.get(NGH_DATA_KEY, null);
|
|
38008
|
-
if (!isEnabled && typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
38009
|
-
const console = inject(Console);
|
|
38010
|
-
const message = formatRuntimeError(-505 /* RuntimeErrorCode.MISSING_HYDRATION_ANNOTATIONS */, 'Angular hydration was requested on the client, but there was no ' +
|
|
38011
|
-
'serialized information present in the server response, ' +
|
|
38012
|
-
'thus hydration was not enabled. ' +
|
|
38013
|
-
'Make sure the `provideClientHydration()` is included into the list ' +
|
|
38014
|
-
'of providers in the server part of the application configuration.');
|
|
38015
|
-
// tslint:disable-next-line:no-console
|
|
38016
|
-
console.warn(message);
|
|
38017
|
-
}
|
|
38018
38163
|
}
|
|
38019
38164
|
if (isEnabled) {
|
|
38020
38165
|
performanceMarkFeature('NgHydration');
|
|
@@ -38028,15 +38173,27 @@ function withDomHydration() {
|
|
|
38028
38173
|
// i18n support is enabled by calling withI18nSupport(), but there's
|
|
38029
38174
|
// no way to turn it off (e.g. for tests), so we turn it off by default.
|
|
38030
38175
|
setIsI18nHydrationSupportEnabled(false);
|
|
38031
|
-
|
|
38032
|
-
|
|
38033
|
-
|
|
38034
|
-
|
|
38035
|
-
|
|
38036
|
-
|
|
38176
|
+
if (!isPlatformBrowser()) {
|
|
38177
|
+
// Since this function is used across both server and client,
|
|
38178
|
+
// make sure that the runtime code is only added when invoked
|
|
38179
|
+
// on the client (see the `enableHydrationRuntimeSupport` function
|
|
38180
|
+
// call below).
|
|
38181
|
+
return;
|
|
38182
|
+
}
|
|
38183
|
+
if (inject(IS_HYDRATION_DOM_REUSE_ENABLED)) {
|
|
38037
38184
|
verifySsrContentsIntegrity();
|
|
38038
38185
|
enableHydrationRuntimeSupport();
|
|
38039
38186
|
}
|
|
38187
|
+
else if (typeof ngDevMode !== 'undefined' && ngDevMode && !isClientRenderModeEnabled()) {
|
|
38188
|
+
const console = inject(Console);
|
|
38189
|
+
const message = formatRuntimeError(-505 /* RuntimeErrorCode.MISSING_HYDRATION_ANNOTATIONS */, 'Angular hydration was requested on the client, but there was no ' +
|
|
38190
|
+
'serialized information present in the server response, ' +
|
|
38191
|
+
'thus hydration was not enabled. ' +
|
|
38192
|
+
'Make sure the `provideClientHydration()` is included into the list ' +
|
|
38193
|
+
'of providers in the server part of the application configuration.');
|
|
38194
|
+
// tslint:disable-next-line:no-console
|
|
38195
|
+
console.warn(message);
|
|
38196
|
+
}
|
|
38040
38197
|
},
|
|
38041
38198
|
multi: true,
|
|
38042
38199
|
},
|
|
@@ -38086,14 +38243,16 @@ function withI18nSupport() {
|
|
|
38086
38243
|
return [
|
|
38087
38244
|
{
|
|
38088
38245
|
provide: IS_I18N_HYDRATION_ENABLED,
|
|
38089
|
-
|
|
38246
|
+
useFactory: () => inject(IS_HYDRATION_DOM_REUSE_ENABLED),
|
|
38090
38247
|
},
|
|
38091
38248
|
{
|
|
38092
38249
|
provide: ENVIRONMENT_INITIALIZER,
|
|
38093
38250
|
useValue: () => {
|
|
38094
|
-
|
|
38095
|
-
|
|
38096
|
-
|
|
38251
|
+
if (inject(IS_HYDRATION_DOM_REUSE_ENABLED)) {
|
|
38252
|
+
enableI18nHydrationRuntimeSupport();
|
|
38253
|
+
setIsI18nHydrationSupportEnabled(true);
|
|
38254
|
+
performanceMarkFeature('NgI18nHydration');
|
|
38255
|
+
}
|
|
38097
38256
|
},
|
|
38098
38257
|
multi: true,
|
|
38099
38258
|
},
|
|
@@ -38139,38 +38298,6 @@ function verifySsrContentsIntegrity() {
|
|
|
38139
38298
|
}
|
|
38140
38299
|
}
|
|
38141
38300
|
|
|
38142
|
-
/**
|
|
38143
|
-
* Returns a set of providers required to setup support for event delegation.
|
|
38144
|
-
* @param multiContract - Experimental support to provide one event contract
|
|
38145
|
-
* when there are multiple binaries on the page.
|
|
38146
|
-
*/
|
|
38147
|
-
function provideGlobalEventDelegation(multiContract = false) {
|
|
38148
|
-
return [
|
|
38149
|
-
{
|
|
38150
|
-
provide: IS_GLOBAL_EVENT_DELEGATION_ENABLED,
|
|
38151
|
-
useValue: true,
|
|
38152
|
-
},
|
|
38153
|
-
{
|
|
38154
|
-
provide: ENVIRONMENT_INITIALIZER,
|
|
38155
|
-
useValue: () => {
|
|
38156
|
-
const injector = inject(Injector);
|
|
38157
|
-
const eventContractDetails = injector.get(JSACTION_EVENT_CONTRACT);
|
|
38158
|
-
if (multiContract && window.__jsaction_contract) {
|
|
38159
|
-
eventContractDetails.instance = window.__jsaction_contract;
|
|
38160
|
-
return;
|
|
38161
|
-
}
|
|
38162
|
-
initGlobalEventDelegation(eventContractDetails, injector);
|
|
38163
|
-
window.__jsaction_contract = eventContractDetails.instance;
|
|
38164
|
-
},
|
|
38165
|
-
multi: true,
|
|
38166
|
-
},
|
|
38167
|
-
{
|
|
38168
|
-
provide: GLOBAL_EVENT_DELEGATION,
|
|
38169
|
-
useClass: GlobalEventDelegation,
|
|
38170
|
-
},
|
|
38171
|
-
];
|
|
38172
|
-
}
|
|
38173
|
-
|
|
38174
38301
|
/**
|
|
38175
38302
|
* Transforms a value (typically a string) to a boolean.
|
|
38176
38303
|
* Intended to be used as a transform function of an input.
|
|
@@ -38986,5 +39113,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
38986
39113
|
* Generated bundle index. Do not edit.
|
|
38987
39114
|
*/
|
|
38988
39115
|
|
|
38989
|
-
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, 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, 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, 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, AfterRenderManager as ɵAfterRenderManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ChangeDetectionScheduler as ɵChangeDetectionScheduler, ChangeDetectionSchedulerImpl as ɵChangeDetectionSchedulerImpl, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, EffectScheduler as ɵEffectScheduler, GLOBAL_EVENT_DELEGATION as ɵGLOBAL_EVENT_DELEGATION, 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, JSACTION_EVENT_CONTRACT as ɵJSACTION_EVENT_CONTRACT, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, MicrotaskEffectScheduler as ɵMicrotaskEffectScheduler, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, PROVIDED_NG_ZONE as ɵPROVIDED_NG_ZONE, PendingTasksInternal as ɵPendingTasks, PendingTasksInternal as ɵPendingTasksInternal, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, 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, 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, provideGlobalEventDelegation as ɵprovideGlobalEventDelegation, 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, ɵɵ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, ɵɵ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 };
|
|
39116
|
+
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, 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, 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, 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, AfterRenderManager as ɵAfterRenderManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ChangeDetectionScheduler as ɵChangeDetectionScheduler, ChangeDetectionSchedulerImpl as ɵChangeDetectionSchedulerImpl, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, EffectScheduler as ɵEffectScheduler, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, INTERNAL_APPLICATION_ERROR_HANDLER as ɵINTERNAL_APPLICATION_ERROR_HANDLER, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, JSACTION_EVENT_CONTRACT as ɵJSACTION_EVENT_CONTRACT, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, MicrotaskEffectScheduler as ɵMicrotaskEffectScheduler, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, PROVIDED_NG_ZONE as ɵPROVIDED_NG_ZONE, PendingTasksInternal as ɵPendingTasks, PendingTasksInternal as ɵPendingTasksInternal, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, 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, 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, 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, ɵɵExternalStylesFeature, 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, ɵɵ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 };
|
|
38990
39117
|
//# sourceMappingURL=core.mjs.map
|