@angular/core 19.0.0-next.7 → 19.0.0-next.9

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.
Files changed (33) hide show
  1. package/LICENSE +21 -0
  2. package/fesm2022/core.mjs +363 -156
  3. package/fesm2022/core.mjs.map +1 -1
  4. package/fesm2022/primitives/event-dispatch.mjs +1 -1
  5. package/fesm2022/primitives/signals.mjs +1 -1
  6. package/fesm2022/primitives/signals.mjs.map +1 -1
  7. package/fesm2022/rxjs-interop.mjs +1 -1
  8. package/fesm2022/testing.mjs +6 -4
  9. package/fesm2022/testing.mjs.map +1 -1
  10. package/index.d.ts +107 -69
  11. package/package.json +1 -1
  12. package/primitives/event-dispatch/index.d.ts +1 -1
  13. package/primitives/signals/index.d.ts +5 -1
  14. package/rxjs-interop/index.d.ts +1 -1
  15. package/schematics/bundles/{checker-637eee78.js → checker-3b2ea20f.js} +136 -78
  16. package/schematics/bundles/{compiler_host-1e62b899.js → compiler_host-b4ba5a28.js} +2 -2
  17. package/schematics/bundles/control-flow-migration.js +3 -3
  18. package/schematics/bundles/explicit-standalone-flag.js +5 -5
  19. package/schematics/bundles/group_replacements-e1b5cbf8.js +31571 -0
  20. package/schematics/bundles/{imports-44987700.js → imports-4ac08251.js} +1 -1
  21. package/schematics/bundles/inject-migration.js +24 -8
  22. package/schematics/bundles/{leading_space-6e7a8ec6.js → leading_space-d190b83b.js} +1 -1
  23. package/schematics/bundles/{nodes-b12e919a.js → nodes-0e7d45ca.js} +2 -2
  24. package/schematics/bundles/pending-tasks.js +5 -5
  25. package/schematics/bundles/{program-893e3fe7.js → program-6534a30a.js} +120 -32
  26. package/schematics/bundles/{project_tsconfig_paths-6c9cde78.js → project_tsconfig_paths-e9ccccbf.js} +1 -1
  27. package/schematics/bundles/route-lazy-loading.js +4 -4
  28. package/schematics/bundles/signal-input-migration.js +386 -31727
  29. package/schematics/bundles/signal-queries-migration.js +924 -0
  30. package/schematics/bundles/standalone-migration.js +8 -8
  31. package/schematics/collection.json +6 -0
  32. package/schematics/ng-generate/signal-queries-migration/schema.json +19 -0
  33. package/testing/index.d.ts +3 -1
package/fesm2022/core.mjs CHANGED
@@ -1,13 +1,14 @@
1
1
  /**
2
- * @license Angular v19.0.0-next.7
2
+ * @license Angular v19.0.0-next.9
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, isEarlyEventType, getActionCache, EventContract, EventContractContainer, EventDispatcher, registerDispatcher, getAppScopedQueuedEventInfos, clearAppScopedEarlyEventContract, isCaptureEventType } from '@angular/core/primitives/event-dispatch';
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
- let lViewFlags = 16 /* LViewFlags.CheckAlways */;
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 addToViewTree(lView, lViewOrLContainer) {
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
@@ -16509,7 +16518,7 @@ class DepsTracker {
16509
16518
  }
16510
16519
  else {
16511
16520
  // The standalone thing is neither a component nor a directive nor a pipe ... (what?)
16512
- throw new RuntimeError(1000 /* RuntimeErrorCode.RUNTIME_DEPS_INVALID_IMPORTED_TYPE */, 'The standalone imported type is neither a component nor a directive nor a pipe');
16521
+ throw new RuntimeError(980 /* RuntimeErrorCode.RUNTIME_DEPS_INVALID_IMPORTED_TYPE */, 'The standalone imported type is neither a component nor a directive nor a pipe');
16513
16522
  }
16514
16523
  }
16515
16524
  else {
@@ -16763,7 +16772,7 @@ class ComponentFactory extends ComponentFactory$1 {
16763
16772
  (typeof ngJitMode === 'undefined' || ngJitMode) &&
16764
16773
  this.componentDef.debugInfo?.forbidOrphanRendering) {
16765
16774
  if (depsTracker.isOrphanComponent(this.componentType)) {
16766
- throw new RuntimeError(1001 /* RuntimeErrorCode.RUNTIME_DEPS_ORPHAN_COMPONENT */, `Orphan component found! Trying to render the component ${debugStringifyTypeForError(this.componentType)} without first loading the NgModule that declares it. It is recommended to make this component standalone in order to avoid this error. If this is not possible now, import the component's NgModule in the appropriate NgModule, or the standalone component in which you are trying to render this component. If this is a lazy import, load the NgModule lazily as well and use its module injector.`);
16775
+ throw new RuntimeError(981 /* RuntimeErrorCode.RUNTIME_DEPS_ORPHAN_COMPONENT */, `Orphan component found! Trying to render the component ${debugStringifyTypeForError(this.componentType)} without first loading the NgModule that declares it. It is recommended to make this component standalone in order to avoid this error. If this is not possible now, import the component's NgModule in the appropriate NgModule, or the standalone component in which you are trying to render this component. If this is a lazy import, load the NgModule lazily as well and use its module injector.`);
16767
16776
  }
16768
16777
  }
16769
16778
  environmentInjector = environmentInjector || this.ngModule;
@@ -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
- let lViewFlags = 16 /* LViewFlags.CheckAlways */;
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
- addToViewTree(rootView, componentView);
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.7']);
17032
+ setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.0.0-next.9']);
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
- addToViewTree(hostLView, lContainer);
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
- addToViewTree(declarationLView, lContainer);
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.
@@ -19719,6 +19721,9 @@ class AfterRenderImpl {
19719
19721
  sequence.afterRun();
19720
19722
  if (sequence.once) {
19721
19723
  this.sequences.delete(sequence);
19724
+ // Destroy the sequence so its on destroy callbacks can be cleaned up
19725
+ // immediately, instead of waiting until the injector is destroyed.
19726
+ sequence.destroy();
19722
19727
  }
19723
19728
  }
19724
19729
  for (const sequence of this.deferredRegistrations) {
@@ -19777,7 +19782,7 @@ class AfterRenderSequence {
19777
19782
  * one.
19778
19783
  */
19779
19784
  this.pipelinedValue = undefined;
19780
- this.unregisterOnDestroy = destroyRef.onDestroy(() => this.destroy());
19785
+ this.unregisterOnDestroy = destroyRef?.onDestroy(() => this.destroy());
19781
19786
  }
19782
19787
  afterRun() {
19783
19788
  this.erroredOrDestroyed = false;
@@ -19785,7 +19790,7 @@ class AfterRenderSequence {
19785
19790
  }
19786
19791
  destroy() {
19787
19792
  this.impl.unregister(this);
19788
- this.unregisterOnDestroy();
19793
+ this.unregisterOnDestroy?.();
19789
19794
  }
19790
19795
  }
19791
19796
 
@@ -19834,7 +19839,8 @@ function afterRenderImpl(callbackOrSpec, injector, options, once) {
19834
19839
  // tree-shaken if `afterRender` and `afterNextRender` aren't used.
19835
19840
  manager.impl ??= injector.get(AfterRenderImpl);
19836
19841
  const hooks = options?.phase ?? AfterRenderPhase.MixedReadWrite;
19837
- const sequence = new AfterRenderSequence(manager.impl, getHooks(callbackOrSpec, hooks), once, injector.get(DestroyRef));
19842
+ const destroyRef = options?.manualCleanup !== true ? injector.get(DestroyRef) : null;
19843
+ const sequence = new AfterRenderSequence(manager.impl, getHooks(callbackOrSpec, hooks), once, destroyRef);
19838
19844
  manager.impl.register(sequence);
19839
19845
  return sequence;
19840
19846
  }
@@ -29038,6 +29044,29 @@ function ɵɵStandaloneFeature(definition) {
29038
29044
  };
29039
29045
  }
29040
29046
 
29047
+ /**
29048
+ * A feature that adds support for external runtime styles for a component.
29049
+ * An external runtime style is a URL to a CSS stylesheet that contains the styles
29050
+ * for a given component. For browsers, this URL will be used in an appended `link` element
29051
+ * when the component is rendered. This feature is typically used for Hot Module Replacement
29052
+ * (HMR) of component stylesheets by leveraging preexisting global stylesheet HMR available
29053
+ * in most development servers.
29054
+ *
29055
+ * @codeGenApi
29056
+ */
29057
+ function ɵɵExternalStylesFeature(styleUrls) {
29058
+ return (definition) => {
29059
+ if (styleUrls.length < 1) {
29060
+ return;
29061
+ }
29062
+ definition.getExternalStyles = (encapsulationId) => {
29063
+ // Add encapsulation ID search parameter `component` to support external style encapsulation
29064
+ const urls = styleUrls.map((value) => value + '?ngcomp' + (encapsulationId ? '=' + encodeURIComponent(encapsulationId) : ''));
29065
+ return urls;
29066
+ };
29067
+ };
29068
+ }
29069
+
29041
29070
  /**
29042
29071
  * Generated next to NgModules to monkey-patch directive and pipe references onto a component's
29043
29072
  * definition, when generating a direct reference in the component file would otherwise create an
@@ -29769,6 +29798,155 @@ function ɵsetClassDebugInfo(type, debugInfo) {
29769
29798
  }
29770
29799
  }
29771
29800
 
29801
+ /*!
29802
+ * @license
29803
+ * Copyright Google LLC All Rights Reserved.
29804
+ *
29805
+ * Use of this source code is governed by an MIT-style license that can be
29806
+ * found in the LICENSE file at https://angular.dev/license
29807
+ */
29808
+ /**
29809
+ * Replaces the metadata of a component type and re-renders all live instances of the component.
29810
+ * @param type Class whose metadata will be replaced.
29811
+ * @param applyMetadata Callback that will apply a new set of metadata on the `type` when invoked.
29812
+ * @codeGenApi
29813
+ */
29814
+ function ɵɵreplaceMetadata(type, applyMetadata) {
29815
+ ngDevMode && assertComponentDef(type);
29816
+ const oldDef = getComponentDef(type);
29817
+ // The reason `applyMetadata` is a callback that is invoked (almost) immediately is because
29818
+ // the compiler usually produces more code than just the component definition, e.g. there
29819
+ // can be functions for embedded views, the variables for the constant pool and `setClassMetadata`
29820
+ // calls. The callback allows us to keep them isolate from the rest of the app and to invoke
29821
+ // them at the right time.
29822
+ applyMetadata();
29823
+ // If a `tView` hasn't been created yet, it means that this component hasn't been instantianted
29824
+ // before. In this case there's nothing left for us to do aside from patching it in.
29825
+ if (oldDef.tView) {
29826
+ const trackedViews = getTrackedLViews().values();
29827
+ for (const root of trackedViews) {
29828
+ // Note: we have the additional check, because `IsRoot` can also indicate
29829
+ // a component created through something like `createComponent`.
29830
+ if (root[FLAGS] & 512 /* LViewFlags.IsRoot */ && root[PARENT] === null) {
29831
+ recreateMatchingLViews(oldDef, root);
29832
+ }
29833
+ }
29834
+ }
29835
+ }
29836
+ /**
29837
+ * Finds all LViews matching a specific component definition and recreates them.
29838
+ * @param def Component definition to search for.
29839
+ * @param rootLView View from which to start the search.
29840
+ */
29841
+ function recreateMatchingLViews(def, rootLView) {
29842
+ ngDevMode &&
29843
+ assertDefined(def.tView, 'Expected a component definition that has been instantiated at least once');
29844
+ const tView = rootLView[TVIEW];
29845
+ // Use `tView` to match the LView since `instanceof` can
29846
+ // produce false positives when using inheritance.
29847
+ if (tView === def.tView) {
29848
+ ngDevMode && assertComponentDef(def.type);
29849
+ recreateLView(getComponentDef(def.type), rootLView);
29850
+ return;
29851
+ }
29852
+ for (let i = HEADER_OFFSET; i < tView.bindingStartIndex; i++) {
29853
+ const current = rootLView[i];
29854
+ if (isLContainer(current)) {
29855
+ for (let i = CONTAINER_HEADER_OFFSET; i < current.length; i++) {
29856
+ recreateMatchingLViews(def, current[i]);
29857
+ }
29858
+ }
29859
+ else if (isLView(current)) {
29860
+ recreateMatchingLViews(def, current);
29861
+ }
29862
+ }
29863
+ }
29864
+ /**
29865
+ * Recreates an LView in-place from a new component definition.
29866
+ * @param def Definition from which to recreate the view.
29867
+ * @param lView View to be recreated.
29868
+ */
29869
+ function recreateLView(def, lView) {
29870
+ const instance = lView[CONTEXT];
29871
+ const host = lView[HOST];
29872
+ // In theory the parent can also be an LContainer, but it appears like that's
29873
+ // only the case for embedded views which we won't be replacing here.
29874
+ const parentLView = lView[PARENT];
29875
+ ngDevMode && assertLView(parentLView);
29876
+ const tNode = lView[T_HOST];
29877
+ ngDevMode && assertTNodeType(tNode, 2 /* TNodeType.Element */);
29878
+ // Recreate the TView since the template might've changed.
29879
+ const newTView = getOrCreateComponentTView(def);
29880
+ // Create a new LView from the new TView, but reusing the existing TNode and DOM node.
29881
+ const newLView = createLView(parentLView, newTView, instance, getInitialLViewFlagsFromDef(def), host, tNode, null, lView[ENVIRONMENT].rendererFactory.createRenderer(host, def), null, null, null);
29882
+ // Detach the LView from its current place in the tree so we don't
29883
+ // start traversing any siblings and modifying their structure.
29884
+ replaceLViewInTree(parentLView, lView, newLView, tNode.index);
29885
+ // Destroy the detached LView.
29886
+ destroyLView(lView[TVIEW], lView);
29887
+ // Remove the nodes associated with the destroyed LView. This removes the
29888
+ // descendants, but not the host which we want to stay in place.
29889
+ removeViewFromDOM(lView[TVIEW], lView);
29890
+ // Reset the content projection state of the TNode before the first render.
29891
+ // Note that this has to happen after the LView has been destroyed or we
29892
+ // risk some projected nodes not being removed correctly.
29893
+ resetProjectionState(tNode);
29894
+ // Creation pass for the new view.
29895
+ renderView(newTView, newLView, instance);
29896
+ // Update pass for the new view.
29897
+ refreshView(newTView, newLView, newTView.template, instance);
29898
+ }
29899
+ /**
29900
+ * Replaces one LView in the tree with another one.
29901
+ * @param parentLView Parent of the LView being replaced.
29902
+ * @param oldLView LView being replaced.
29903
+ * @param newLView Replacement LView to be inserted.
29904
+ * @param index Index at which the LView should be inserted.
29905
+ */
29906
+ function replaceLViewInTree(parentLView, oldLView, newLView, index) {
29907
+ // Update the sibling whose `NEXT` pointer refers to the old view.
29908
+ for (let i = HEADER_OFFSET; i < parentLView[TVIEW].bindingStartIndex; i++) {
29909
+ const current = parentLView[i];
29910
+ if ((isLView(current) || isLContainer(current)) && current[NEXT] === oldLView) {
29911
+ current[NEXT] = newLView;
29912
+ break;
29913
+ }
29914
+ }
29915
+ // Set the new view as the head, if the old view was first.
29916
+ if (parentLView[CHILD_HEAD] === oldLView) {
29917
+ parentLView[CHILD_HEAD] = newLView;
29918
+ }
29919
+ // Set the new view as the tail, if the old view was last.
29920
+ if (parentLView[CHILD_TAIL] === oldLView) {
29921
+ parentLView[CHILD_TAIL] = newLView;
29922
+ }
29923
+ // Update the `NEXT` pointer to the same as the old view.
29924
+ newLView[NEXT] = oldLView[NEXT];
29925
+ // Clear out the `NEXT` of the old view.
29926
+ oldLView[NEXT] = null;
29927
+ // Insert the new LView at the correct index.
29928
+ parentLView[index] = newLView;
29929
+ }
29930
+ /**
29931
+ * Child nodes mutate the `projection` state of their parent node as they're being projected.
29932
+ * This function resets the `project` back to its initial state.
29933
+ * @param tNode
29934
+ */
29935
+ function resetProjectionState(tNode) {
29936
+ // The `projection` is mutated by child nodes as they're being projected. We need to
29937
+ // reset it to the initial state so projection works after the template is swapped out.
29938
+ if (tNode.projection !== null) {
29939
+ for (const current of tNode.projection) {
29940
+ if (isTNodeShape(current)) {
29941
+ // Reset `projectionNext` since it can affect the traversal order during projection.
29942
+ current.projectionNext = null;
29943
+ current.flags &= ~2 /* TNodeFlags.isProjected */;
29944
+ }
29945
+ }
29946
+ tNode.projection = null;
29947
+ }
29948
+ }
29949
+
29772
29950
  /**
29773
29951
  * A mapping of the @angular/core API surface used in generated expressions to the actual symbols.
29774
29952
  *
@@ -29806,6 +29984,7 @@ const angularCoreEnv = (() => ({
29806
29984
  'ɵɵInheritDefinitionFeature': ɵɵInheritDefinitionFeature,
29807
29985
  'ɵɵInputTransformsFeature': ɵɵInputTransformsFeature,
29808
29986
  'ɵɵStandaloneFeature': ɵɵStandaloneFeature,
29987
+ 'ɵɵExternalStylesFeature': ɵɵExternalStylesFeature,
29809
29988
  'ɵɵnextContext': ɵɵnextContext,
29810
29989
  'ɵɵnamespaceHTML': ɵɵnamespaceHTML,
29811
29990
  'ɵɵnamespaceMathML': ɵɵnamespaceMathML,
@@ -29967,6 +30146,7 @@ const angularCoreEnv = (() => ({
29967
30146
  'ɵɵtwoWayProperty': ɵɵtwoWayProperty,
29968
30147
  'ɵɵtwoWayBindingSet': ɵɵtwoWayBindingSet,
29969
30148
  'ɵɵtwoWayListener': ɵɵtwoWayListener,
30149
+ 'ɵɵreplaceMetadata': ɵɵreplaceMetadata,
29970
30150
  }))();
29971
30151
 
29972
30152
  let jitOptions = null;
@@ -30683,6 +30863,9 @@ function compileComponent(type, metadata) {
30683
30863
  }
30684
30864
  return ngComponentDef;
30685
30865
  },
30866
+ set: (def) => {
30867
+ ngComponentDef = def;
30868
+ },
30686
30869
  // Make the property configurable in dev mode to allow overriding in tests
30687
30870
  configurable: !!ngDevMode,
30688
30871
  });
@@ -31134,7 +31317,7 @@ class Version {
31134
31317
  /**
31135
31318
  * @publicApi
31136
31319
  */
31137
- const VERSION = new Version('19.0.0-next.7');
31320
+ const VERSION = new Version('19.0.0-next.9');
31138
31321
 
31139
31322
  /*
31140
31323
  * This file exists to support compilation of @angular/core in Ivy mode.
@@ -32045,6 +32228,16 @@ function publishDefaultGlobalUtils$1() {
32045
32228
  * used from the browser console when an application is not in production.
32046
32229
  */
32047
32230
  function publishGlobalUtil(name, fn) {
32231
+ publishUtil(name, fn);
32232
+ }
32233
+ /**
32234
+ * Publishes the given function to `window.ng` from package other than @angular/core
32235
+ * So that it can be used from the browser console when an application is not in production.
32236
+ */
32237
+ function publishExternalGlobalUtil(name, fn) {
32238
+ publishUtil(name, fn);
32239
+ }
32240
+ function publishUtil(name, fn) {
32048
32241
  if (typeof COMPILED === 'undefined' || !COMPILED) {
32049
32242
  // Note: we can't export `ng` when using closure enhanced optimization as:
32050
32243
  // - closure declares globals itself for minified names, which sometimes clobber our `ng` global
@@ -32604,9 +32797,7 @@ function publishDefaultGlobalUtils() {
32604
32797
  */
32605
32798
  function publishSignalConfiguration() {
32606
32799
  setThrowInvalidWriteToSignalError$1(() => {
32607
- throw new RuntimeError(600 /* RuntimeErrorCode.SIGNAL_WRITE_FROM_ILLEGAL_CONTEXT */, ngDevMode &&
32608
- 'Writing to signals is not allowed in a `computed` or an `effect` by default. ' +
32609
- 'Use `allowSignalWrites` in the `CreateEffectOptions` to enable this inside effects.');
32800
+ throw new RuntimeError(600 /* RuntimeErrorCode.SIGNAL_WRITE_FROM_ILLEGAL_CONTEXT */, ngDevMode && 'Writing to signals is not allowed in a `computed`.');
32610
32801
  });
32611
32802
  }
32612
32803
  function isBoundToModule(cf) {
@@ -34081,12 +34272,10 @@ class ImagePerformanceWarning {
34081
34272
  let lcpElementFound, lcpElementLoadedCorrectly = false;
34082
34273
  images.forEach((image) => {
34083
34274
  if (!this.options?.disableImageSizeWarning) {
34084
- for (const image of images) {
34085
- // Image elements using the NgOptimizedImage directive are excluded,
34086
- // as that directive has its own version of this check.
34087
- if (!image.getAttribute('ng-img') && this.isOversized(image)) {
34088
- logOversizedImageWarning(image.src);
34089
- }
34275
+ // Image elements using the NgOptimizedImage directive are excluded,
34276
+ // as that directive has its own version of this check.
34277
+ if (!image.getAttribute('ng-img') && this.isOversized(image)) {
34278
+ logOversizedImageWarning(image.src);
34090
34279
  }
34091
34280
  }
34092
34281
  if (!this.options?.disableImageLazyLoadWarning && this.lcpImageUrl) {
@@ -34113,6 +34302,24 @@ class ImagePerformanceWarning {
34113
34302
  if (!this.window) {
34114
34303
  return false;
34115
34304
  }
34305
+ // The `isOversized` check may not be applicable or may require adjustments
34306
+ // for several types of image formats or scenarios. Currently, we specify only
34307
+ // `svg`, but this may also include `gif` since their quality isn’t tied to
34308
+ // dimensions in the same way as raster images.
34309
+ const nonOversizedImageExtentions = [
34310
+ // SVG images are vector-based, which means they can scale
34311
+ // to any size without losing quality.
34312
+ '.svg',
34313
+ ];
34314
+ // Convert it to lowercase because this may have uppercase
34315
+ // extensions, such as `IMAGE.SVG`.
34316
+ // We fallback to an empty string because `src` may be `undefined`
34317
+ // if it is explicitly set to `null` by some third-party code
34318
+ // (e.g., `image.src = null`).
34319
+ const imageSource = (image.src || '').toLowerCase();
34320
+ if (nonOversizedImageExtentions.some((extension) => imageSource.endsWith(extension))) {
34321
+ return false;
34322
+ }
34116
34323
  const computedStyle = this.window.getComputedStyle(image);
34117
34324
  let renderedWidth = parseFloat(computedStyle.getPropertyValue('width'));
34118
34325
  let renderedHeight = parseFloat(computedStyle.getPropertyValue('height'));
@@ -34124,6 +34331,8 @@ class ImagePerformanceWarning {
34124
34331
  return false;
34125
34332
  }
34126
34333
  if (boxSizing === 'border-box') {
34334
+ // If the image `box-sizing` is set to `border-box`, we adjust the rendered
34335
+ // dimensions by subtracting padding values.
34127
34336
  const paddingTop = computedStyle.getPropertyValue('padding-top');
34128
34337
  const paddingRight = computedStyle.getPropertyValue('padding-right');
34129
34338
  const paddingBottom = computedStyle.getPropertyValue('padding-bottom');
@@ -34171,7 +34380,7 @@ function logOversizedImageWarning(src) {
34171
34380
  const PLATFORM_DESTROY_LISTENERS = new InjectionToken(ngDevMode ? 'PlatformDestroyListeners' : '');
34172
34381
 
34173
34382
  function isApplicationBootstrapConfig(config) {
34174
- return !!config.platformInjector;
34383
+ return !config.moduleRef;
34175
34384
  }
34176
34385
  function bootstrap(config) {
34177
34386
  const envInjector = isApplicationBootstrapConfig(config)
@@ -34206,9 +34415,9 @@ function bootstrap(config) {
34206
34415
  },
34207
34416
  });
34208
34417
  });
34418
+ // If the whole platform is destroyed, invoke the `destroy` method
34419
+ // for all bootstrapped applications as well.
34209
34420
  if (isApplicationBootstrapConfig(config)) {
34210
- // If the whole platform is destroyed, invoke the `destroy` method
34211
- // for all bootstrapped applications as well.
34212
34421
  const destroyListener = () => envInjector.destroy();
34213
34422
  const onPlatformDestroyListeners = config.platformInjector.get(PLATFORM_DESTROY_LISTENERS);
34214
34423
  onPlatformDestroyListeners.add(destroyListener);
@@ -34218,9 +34427,13 @@ function bootstrap(config) {
34218
34427
  });
34219
34428
  }
34220
34429
  else {
34430
+ const destroyListener = () => config.moduleRef.destroy();
34431
+ const onPlatformDestroyListeners = config.platformInjector.get(PLATFORM_DESTROY_LISTENERS);
34432
+ onPlatformDestroyListeners.add(destroyListener);
34221
34433
  config.moduleRef.onDestroy(() => {
34222
34434
  remove(config.allPlatformModules, config.moduleRef);
34223
34435
  onErrorSubscription.unsubscribe();
34436
+ onPlatformDestroyListeners.delete(destroyListener);
34224
34437
  });
34225
34438
  }
34226
34439
  return _callAndReportToErrorHandler(exceptionHandler, ngZone, () => {
@@ -34307,7 +34520,11 @@ class PlatformRef {
34307
34520
  { provide: ChangeDetectionScheduler, useExisting: ChangeDetectionSchedulerImpl },
34308
34521
  ];
34309
34522
  const moduleRef = createNgModuleRefWithProviders(moduleFactory.moduleType, this.injector, allAppProviders);
34310
- return bootstrap({ moduleRef, allPlatformModules: this._modules });
34523
+ return bootstrap({
34524
+ moduleRef,
34525
+ allPlatformModules: this._modules,
34526
+ platformInjector: this.injector,
34527
+ });
34311
34528
  }
34312
34529
  /**
34313
34530
  * Creates an instance of an `@NgModule` for a given platform.
@@ -37131,7 +37348,6 @@ function getDeferBlocks(lView, deferBlocks) {
37131
37348
  }
37132
37349
  }
37133
37350
 
37134
- // tslint:disable:no-duplicate-imports
37135
37351
  function invokeRegisteredListeners(event) {
37136
37352
  const handlerFns = event.currentTarget?.__jsaction_fns?.get(event.type);
37137
37353
  if (!handlerFns) {
@@ -37165,71 +37381,16 @@ const JSACTION_EVENT_CONTRACT = new InjectionToken(ngDevMode ? 'EVENT_CONTRACT_D
37165
37381
  providedIn: 'root',
37166
37382
  factory: () => ({}),
37167
37383
  });
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
37384
 
37220
37385
  /**
37221
37386
  * A set of DOM elements with `jsaction` attributes.
37222
37387
  */
37223
37388
  const jsactionSet = new Set();
37224
- function isGlobalEventDelegationEnabled(injector) {
37225
- return injector.get(IS_GLOBAL_EVENT_DELEGATION_ENABLED, false);
37226
- }
37227
37389
  /**
37228
37390
  * Determines whether Event Replay feature should be activated on the client.
37229
37391
  */
37230
37392
  function shouldEnableEventReplay(injector) {
37231
- return (injector.get(IS_EVENT_REPLAY_ENABLED, EVENT_REPLAY_ENABLED_DEFAULT) &&
37232
- !isGlobalEventDelegationEnabled(injector));
37393
+ return injector.get(IS_EVENT_REPLAY_ENABLED, EVENT_REPLAY_ENABLED_DEFAULT);
37233
37394
  }
37234
37395
  /**
37235
37396
  * Returns a set of providers required to setup support for event replay.
@@ -37984,6 +38145,19 @@ function whenStableWithTimeout(appRef, injector) {
37984
38145
  }
37985
38146
  return whenStablePromise;
37986
38147
  }
38148
+ /**
38149
+ * Defines a name of an attribute that is added to the <body> tag
38150
+ * in the `index.html` file in case a given route was configured
38151
+ * with `RenderMode.Client`. 'cm' is an abbreviation for "Client Mode".
38152
+ */
38153
+ const CLIENT_RENDER_MODE_FLAG = 'ngcm';
38154
+ /**
38155
+ * Checks whether the `RenderMode.Client` was defined for the current route.
38156
+ */
38157
+ function isClientRenderModeEnabled() {
38158
+ const doc = getDocument();
38159
+ return isPlatformBrowser() && doc.body.hasAttribute(CLIENT_RENDER_MODE_FLAG);
38160
+ }
37987
38161
  /**
37988
38162
  * Returns a set of providers required to setup hydration support
37989
38163
  * for an application that is server side rendered. This function is
@@ -38005,16 +38179,6 @@ function withDomHydration() {
38005
38179
  // hydration annotations. Otherwise, keep hydration disabled.
38006
38180
  const transferState = inject(TransferState, { optional: true });
38007
38181
  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
38182
  }
38019
38183
  if (isEnabled) {
38020
38184
  performanceMarkFeature('NgHydration');
@@ -38028,15 +38192,27 @@ function withDomHydration() {
38028
38192
  // i18n support is enabled by calling withI18nSupport(), but there's
38029
38193
  // no way to turn it off (e.g. for tests), so we turn it off by default.
38030
38194
  setIsI18nHydrationSupportEnabled(false);
38031
- // Since this function is used across both server and client,
38032
- // make sure that the runtime code is only added when invoked
38033
- // on the client. Moving forward, the `isPlatformBrowser` check should
38034
- // be replaced with a tree-shakable alternative (e.g. `isServer`
38035
- // flag).
38036
- if (isPlatformBrowser() && inject(IS_HYDRATION_DOM_REUSE_ENABLED)) {
38195
+ if (!isPlatformBrowser()) {
38196
+ // Since this function is used across both server and client,
38197
+ // make sure that the runtime code is only added when invoked
38198
+ // on the client (see the `enableHydrationRuntimeSupport` function
38199
+ // call below).
38200
+ return;
38201
+ }
38202
+ if (inject(IS_HYDRATION_DOM_REUSE_ENABLED)) {
38037
38203
  verifySsrContentsIntegrity();
38038
38204
  enableHydrationRuntimeSupport();
38039
38205
  }
38206
+ else if (typeof ngDevMode !== 'undefined' && ngDevMode && !isClientRenderModeEnabled()) {
38207
+ const console = inject(Console);
38208
+ const message = formatRuntimeError(-505 /* RuntimeErrorCode.MISSING_HYDRATION_ANNOTATIONS */, 'Angular hydration was requested on the client, but there was no ' +
38209
+ 'serialized information present in the server response, ' +
38210
+ 'thus hydration was not enabled. ' +
38211
+ 'Make sure the `provideClientHydration()` is included into the list ' +
38212
+ 'of providers in the server part of the application configuration.');
38213
+ // tslint:disable-next-line:no-console
38214
+ console.warn(message);
38215
+ }
38040
38216
  },
38041
38217
  multi: true,
38042
38218
  },
@@ -38086,14 +38262,16 @@ function withI18nSupport() {
38086
38262
  return [
38087
38263
  {
38088
38264
  provide: IS_I18N_HYDRATION_ENABLED,
38089
- useValue: true,
38265
+ useFactory: () => inject(IS_HYDRATION_DOM_REUSE_ENABLED),
38090
38266
  },
38091
38267
  {
38092
38268
  provide: ENVIRONMENT_INITIALIZER,
38093
38269
  useValue: () => {
38094
- enableI18nHydrationRuntimeSupport();
38095
- setIsI18nHydrationSupportEnabled(true);
38096
- performanceMarkFeature('NgI18nHydration');
38270
+ if (inject(IS_HYDRATION_DOM_REUSE_ENABLED)) {
38271
+ enableI18nHydrationRuntimeSupport();
38272
+ setIsI18nHydrationSupportEnabled(true);
38273
+ performanceMarkFeature('NgI18nHydration');
38274
+ }
38097
38275
  },
38098
38276
  multi: true,
38099
38277
  },
@@ -38139,38 +38317,6 @@ function verifySsrContentsIntegrity() {
38139
38317
  }
38140
38318
  }
38141
38319
 
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
38320
  /**
38175
38321
  * Transforms a value (typically a string) to a boolean.
38176
38322
  * Intended to be used as a transform function of an input.
@@ -38207,6 +38353,64 @@ function numberAttribute(value, fallbackValue = NaN) {
38207
38353
  return isNumberValue ? Number(value) : fallbackValue;
38208
38354
  }
38209
38355
 
38356
+ const PERFORMANCE_MARK_PREFIX = '🅰️';
38357
+ let enablePerfLogging = false;
38358
+ /**
38359
+ * Function that will start measuring against the performance API
38360
+ * Should be used in pair with stopMeasuring
38361
+ */
38362
+ function startMeasuring(label) {
38363
+ if (!enablePerfLogging) {
38364
+ return;
38365
+ }
38366
+ const { startLabel } = labels(label);
38367
+ /* tslint:disable:ban */
38368
+ performance.mark(startLabel);
38369
+ /* tslint:enable:ban */
38370
+ }
38371
+ /**
38372
+ * Function that will stop measuring against the performance API
38373
+ * Should be used in pair with stopMeasuring
38374
+ */
38375
+ function stopMeasuring(label) {
38376
+ if (!enablePerfLogging) {
38377
+ return;
38378
+ }
38379
+ const { startLabel, labelName, endLabel } = labels(label);
38380
+ /* tslint:disable:ban */
38381
+ performance.mark(endLabel);
38382
+ performance.measure(labelName, startLabel, endLabel);
38383
+ performance.clearMarks(startLabel);
38384
+ performance.clearMarks(endLabel);
38385
+ /* tslint:enable:ban */
38386
+ }
38387
+ function labels(label) {
38388
+ const labelName = `${PERFORMANCE_MARK_PREFIX}:${label}`;
38389
+ return {
38390
+ labelName,
38391
+ startLabel: `start:${labelName}`,
38392
+ endLabel: `end:${labelName}`,
38393
+ };
38394
+ }
38395
+ let warningLogged = false;
38396
+ /**
38397
+ * This enables an internal performance profiler
38398
+ *
38399
+ * It should not be imported in application code
38400
+ */
38401
+ function enableProfiling() {
38402
+ if (!warningLogged &&
38403
+ (typeof performance === 'undefined' || !performance.mark || !performance.measure)) {
38404
+ warningLogged = true;
38405
+ console.warn('Performance API is not supported on this platform');
38406
+ return;
38407
+ }
38408
+ enablePerfLogging = true;
38409
+ }
38410
+ function disableProfiling() {
38411
+ enablePerfLogging = false;
38412
+ }
38413
+
38210
38414
  /**
38211
38415
  * Compiles a partial directive declaration object into a full directive definition object.
38212
38416
  *
@@ -38779,6 +38983,9 @@ class AfterRenderEffectSequence extends AfterRenderSequence {
38779
38983
  }
38780
38984
  }
38781
38985
  }
38986
+ /**
38987
+ * @experimental
38988
+ */
38782
38989
  function afterRenderEffect(callbackOrSpec, options) {
38783
38990
  ngDevMode &&
38784
38991
  assertNotInReactiveContext(afterRenderEffect, 'Call `afterRenderEffect` outside of a reactive context. For example, create the render ' +
@@ -38986,5 +39193,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
38986
39193
  * Generated bundle index. Do not edit.
38987
39194
  */
38988
39195
 
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 };
39196
+ 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, PERFORMANCE_MARK_PREFIX as ɵPERFORMANCE_MARK_PREFIX, 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, disableProfiling as ɵdisableProfiling, enableProfiling as ɵenableProfiling, 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, 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, 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
39197
  //# sourceMappingURL=core.mjs.map