@angular/core 21.0.0-next.0 → 21.0.0-next.10

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 (106) hide show
  1. package/fesm2022/_attribute-chunk.mjs +12 -0
  2. package/fesm2022/_attribute-chunk.mjs.map +1 -0
  3. package/fesm2022/_debug_node-chunk.mjs +18469 -0
  4. package/fesm2022/_debug_node-chunk.mjs.map +1 -0
  5. package/fesm2022/_effect-chunk.mjs +423 -0
  6. package/fesm2022/_effect-chunk.mjs.map +1 -0
  7. package/fesm2022/_effect-chunk2.mjs +2951 -0
  8. package/fesm2022/_effect-chunk2.mjs.map +1 -0
  9. package/fesm2022/_not_found-chunk.mjs +39 -0
  10. package/fesm2022/_not_found-chunk.mjs.map +1 -0
  11. package/fesm2022/_resource-chunk.mjs +378 -0
  12. package/fesm2022/_resource-chunk.mjs.map +1 -0
  13. package/fesm2022/_untracked-chunk.mjs +96 -0
  14. package/fesm2022/_untracked-chunk.mjs.map +1 -0
  15. package/fesm2022/_weak_ref-chunk.mjs +10 -0
  16. package/fesm2022/_weak_ref-chunk.mjs.map +1 -0
  17. package/fesm2022/core.mjs +2499 -4185
  18. package/fesm2022/core.mjs.map +1 -1
  19. package/fesm2022/primitives-di.mjs +23 -0
  20. package/fesm2022/primitives-di.mjs.map +1 -0
  21. package/fesm2022/primitives-event-dispatch.mjs +788 -0
  22. package/fesm2022/primitives-event-dispatch.mjs.map +1 -0
  23. package/fesm2022/primitives-signals.mjs +187 -0
  24. package/fesm2022/primitives-signals.mjs.map +1 -0
  25. package/fesm2022/rxjs-interop.mjs +210 -308
  26. package/fesm2022/rxjs-interop.mjs.map +1 -1
  27. package/fesm2022/testing.mjs +2309 -3170
  28. package/fesm2022/testing.mjs.map +1 -1
  29. package/package.json +18 -12
  30. package/resources/best-practices.md +56 -0
  31. package/schematics/bundles/add-bootstrap-context-to-server-main.cjs +117 -0
  32. package/schematics/bundles/application-config-core.cjs +84 -0
  33. package/schematics/bundles/{apply_import_manager-DR9xXCle.cjs → apply_import_manager-1Zs_gpB6.cjs} +4 -5
  34. package/schematics/bundles/bootstrap-options-migration.cjs +598 -0
  35. package/schematics/bundles/cleanup-unused-imports.cjs +9 -13
  36. package/schematics/bundles/common-to-standalone-migration.cjs +381 -0
  37. package/schematics/bundles/{compiler_host-BXBP7CE2.cjs → compiler_host-DBwYMlTo.cjs} +10 -11
  38. package/schematics/bundles/control-flow-migration.cjs +122 -119
  39. package/schematics/bundles/{imports-CIX-JgAN.cjs → imports-DP72APSx.cjs} +6 -1
  40. package/schematics/bundles/{index-CfTQUOiz.cjs → index-B7I9sIUx.cjs} +36 -39
  41. package/schematics/bundles/inject-migration.cjs +148 -70
  42. package/schematics/bundles/leading_space-D9nQ8UQC.cjs +1 -1
  43. package/schematics/bundles/{migrate_ts_type_references-6NtAj-Wk.cjs → migrate_ts_type_references-UGIUl7En.cjs} +500 -24
  44. package/schematics/bundles/ng_component_template-Dsuq1Lw7.cjs +185 -0
  45. package/schematics/bundles/{ng_decorators-B5HCqr20.cjs → ng_decorators-DSFlWYQY.cjs} +2 -2
  46. package/schematics/bundles/ngclass-to-class-migration.cjs +542 -0
  47. package/schematics/bundles/ngstyle-to-style-migration.cjs +487 -0
  48. package/schematics/bundles/nodes-B16H9JUd.cjs +1 -1
  49. package/schematics/bundles/output-migration.cjs +16 -19
  50. package/schematics/bundles/parse_html-8VLCL37B.cjs +132 -0
  51. package/schematics/bundles/{project_paths-DcaODbky.cjs → project_paths-DvD50ouC.cjs} +14 -247
  52. package/schematics/bundles/project_tsconfig_paths-CDVxT6Ov.cjs +90 -0
  53. package/schematics/bundles/property_name-BBwFuqMe.cjs +1 -1
  54. package/schematics/bundles/route-lazy-loading.cjs +54 -26
  55. package/schematics/bundles/router-current-navigation.cjs +7 -18
  56. package/schematics/bundles/router-last-successful-navigation.cjs +7 -18
  57. package/schematics/bundles/router-testing-module-migration.cjs +502 -0
  58. package/schematics/bundles/self-closing-tags-migration.cjs +17 -216
  59. package/schematics/bundles/signal-input-migration.cjs +93 -29
  60. package/schematics/bundles/signal-queries-migration.cjs +22 -25
  61. package/schematics/bundles/signals.cjs +10 -13
  62. package/schematics/bundles/standalone-migration.cjs +135 -102
  63. package/schematics/bundles/{symbol-VPWguRxr.cjs → symbol-BObKoqes.cjs} +3 -2
  64. package/schematics/collection.json +23 -0
  65. package/schematics/migrations/common-to-standalone-migration/schema.json +14 -0
  66. package/schematics/migrations/ngclass-to-class-migration/schema.json +20 -0
  67. package/schematics/migrations/ngstyle-to-style-migration/schema.json +20 -0
  68. package/schematics/migrations/router-testing-module-migration/schema.json +14 -0
  69. package/schematics/migrations.json +16 -2
  70. package/{api.d.d.ts → types/_api-chunk.d.ts} +9 -6
  71. package/{chrome_dev_tools_performance.d.d.ts → types/_chrome_dev_tools_performance-chunk.d.ts} +26 -31
  72. package/{discovery.d.d.ts → types/_discovery-chunk.d.ts} +135 -98
  73. package/{signal.d.d.ts → types/_effect-chunk.d.ts} +14 -5
  74. package/{event_dispatcher.d.d.ts → types/_event_dispatcher-chunk.d.ts} +2 -2
  75. package/{graph.d.d.ts → types/_formatter-chunk.d.ts} +40 -7
  76. package/{weak_ref.d.d.ts → types/_weak_ref-chunk.d.ts} +2 -2
  77. package/{index.d.ts → types/core.d.ts} +233 -305
  78. package/{primitives/di/index.d.ts → types/primitives-di.d.ts} +2 -2
  79. package/{primitives/event-dispatch/index.d.ts → types/primitives-event-dispatch.d.ts} +4 -4
  80. package/{primitives/signals/index.d.ts → types/primitives-signals.d.ts} +7 -8
  81. package/{rxjs-interop/index.d.ts → types/rxjs-interop.d.ts} +8 -6
  82. package/{testing/index.d.ts → types/testing.d.ts} +7 -7
  83. package/fesm2022/attribute.mjs +0 -24
  84. package/fesm2022/attribute.mjs.map +0 -1
  85. package/fesm2022/debug_node.mjs +0 -31833
  86. package/fesm2022/debug_node.mjs.map +0 -1
  87. package/fesm2022/not_found.mjs +0 -56
  88. package/fesm2022/not_found.mjs.map +0 -1
  89. package/fesm2022/primitives/di.mjs +0 -23
  90. package/fesm2022/primitives/di.mjs.map +0 -1
  91. package/fesm2022/primitives/event-dispatch.mjs +0 -1622
  92. package/fesm2022/primitives/event-dispatch.mjs.map +0 -1
  93. package/fesm2022/primitives/signals.mjs +0 -89
  94. package/fesm2022/primitives/signals.mjs.map +0 -1
  95. package/fesm2022/resource.mjs +0 -633
  96. package/fesm2022/resource.mjs.map +0 -1
  97. package/fesm2022/root_effect_scheduler.mjs +0 -4007
  98. package/fesm2022/root_effect_scheduler.mjs.map +0 -1
  99. package/fesm2022/signal.mjs +0 -560
  100. package/fesm2022/signal.mjs.map +0 -1
  101. package/fesm2022/untracked.mjs +0 -117
  102. package/fesm2022/untracked.mjs.map +0 -1
  103. package/fesm2022/weak_ref.mjs +0 -12
  104. package/fesm2022/weak_ref.mjs.map +0 -1
  105. package/schematics/bundles/index-esqfDjNB.cjs +0 -22074
  106. package/schematics/bundles/project_tsconfig_paths-CS-eSeHC.cjs +0 -51062
@@ -1,21 +1,21 @@
1
1
  /**
2
- * @license Angular v21.0.0-next.0
3
- * (c) 2010-2025 Google LLC. https://angular.io/
2
+ * @license Angular v21.0.0-next.10
3
+ * (c) 2010-2025 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
6
6
 
7
- import { SIGNAL, ValueEqualityFn as ValueEqualityFn$1 } from './graph.d.js';
8
- import { Signal, WritableSignal, OutputRef, Provider, EnvironmentProviders, Type as Type$1, ModuleWithProviders, TypeProvider, ValueProvider, ClassProvider, ConstructorProvider, ExistingProvider, FactoryProvider, StaticClassProvider, ProviderToken, StaticProvider, Injector, ValueSansProvider, ExistingSansProvider, StaticClassSansProvider, ConstructorSansProvider, FactorySansProvider, ClassSansProvider, InjectionToken, InternalInjectFlags, InjectOptions, ValueEqualityFn, EventCallback, isSignal, enableProfiling as enableProfiling$1 } from './chrome_dev_tools_performance.d.js';
9
- export { AbstractType, CreateSignalOptions, DestroyRef, DestroyableInjector, ImportedNgModuleProviders, OutputRefSubscription, signal, InternalEnvironmentProviders as ɵInternalEnvironmentProviders, JSACTION_EVENT_CONTRACT as ɵJSACTION_EVENT_CONTRACT, Writable as ɵWritable, isEnvironmentProviders as ɵisEnvironmentProviders, ɵunwrapWritableSignal } from './chrome_dev_tools_performance.d.js';
10
- import { InputSignalNode, TypeDecorator, AfterRenderRef, EffectCleanupRegisterFn, SchemaMetadata, ComponentDef, DirectiveDef, CssSelectorList, DirectiveDefFeature, HostBindingsFunction, TAttributes, ContentQueriesFunction, ViewQueriesFunction, ComponentTemplate, TConstantsOrFactory, ComponentDefFeature, ViewEncapsulation as ViewEncapsulation$1, ChangeDetectionStrategy as ChangeDetectionStrategy$1, TypeOrFactory, DependencyTypeList, InputFlags, InputTransformFunction, EmbeddedViewRef, LView, ApplicationRef, ChangeDetectorRef, ComponentFactory as ComponentFactory$1, NgModuleRef as NgModuleRef$1, EnvironmentInjector, DirectiveWithBindings, Binding, ComponentRef as ComponentRef$1, ElementRef, ComponentFactoryResolver as ComponentFactoryResolver$1, InternalNgModuleRef, NgModuleFactory as NgModuleFactory$1, ViewRef as ViewRef$1, PlatformRef, NgZone, ChangeDetectionScheduler, NotificationSource, ɵɵFactoryDeclaration as __FactoryDeclaration, ɵɵInjectableDeclaration as __InjectableDeclaration, ɵɵNgModuleDeclaration as __NgModuleDeclaration, ɵɵInjectorDeclaration as __InjectorDeclaration, DeferBlockDependencyInterceptor, DeferBlockConfig, DeferBlockState, TNode, LContainer, TView, TDeferBlockDetails, RNode, Component, TrustedHTML, DehydratedDeferBlock, CompilerOptions, HostDirectiveConfig, ComponentType, NgModuleScopeInfoFromDecorator, DependencyResolverFn, TDeferDetailsFlags, SanitizerFn, LocalRefExtractor, OpaqueViewState, GlobalTargetResolver, ProjectionSlots, QueryFlags, QueryList, RElement, RawScopeInfoFromDecorator, ClassDebugInfo, Directive, NgModule, Pipe, TrustedScriptURL, TrustedScript, PipeType, DirectiveType } from './discovery.d.js';
11
- export { APP_BOOTSTRAP_LISTENER, BootstrapOptions, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, Compiler, CompilerFactory, ComponentDecorator, CreateEffectOptions, DebugElement, DebugEventListener, DebugNode, DirectiveDecorator, EffectCleanupFn, EffectRef, EventEmitter, HostBinding, HostBindingDecorator, HostListener, HostListenerDecorator, InjectableType, InjectorType, Input, InputDecorator, ListenerOptions, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModuleDecorator, NgProbeToken, Output, OutputDecorator, PipeDecorator, Predicate, Renderer2, RendererFactory2, RendererStyleFlags2, RendererType2, Sanitizer, SecurityContext, asNativeElements, defineInjectable, effect, getDebugNode, inputBinding, outputBinding, twoWayBinding, AfterRenderManager as ɵAfterRenderManager, AnimationRendererType as ɵAnimationRendererType, AttributeMarker as ɵAttributeMarker, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockDetails as ɵDeferBlockDetails, EffectScheduler as ɵEffectScheduler, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, NG_INJ_DEF as ɵNG_INJ_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NavigateEvent as ɵNavigateEvent, Navigation as ɵNavigation, NavigationCurrentEntryChangeEvent as ɵNavigationCurrentEntryChangeEvent, NavigationDestination as ɵNavigationDestination, NavigationHistoryEntry as ɵNavigationHistoryEntry, NavigationInterceptOptions as ɵNavigationInterceptOptions, NavigationNavigateOptions as ɵNavigationNavigateOptions, NavigationOptions as ɵNavigationOptions, NavigationReloadOptions as ɵNavigationReloadOptions, NavigationResult as ɵNavigationResult, NavigationTransition as ɵNavigationTransition, NavigationTypeString as ɵNavigationTypeString, NavigationUpdateCurrentEntryOptions as ɵNavigationUpdateCurrentEntryOptions, NoopNgZone as ɵNoopNgZone, PipeDef as ɵPipeDef, R3Injector as ɵR3Injector, RenderFlags as ɵRenderFlags, TracingAction as ɵTracingAction, TracingService as ɵTracingService, TracingSnapshot as ɵTracingSnapshot, ZONELESS_ENABLED as ɵZONELESS_ENABLED, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, getInjectableDef as ɵgetInjectableDef, injectChangeDetectorRef as ɵinjectChangeDetectorRef, isBoundToModule as ɵisBoundToModule, isInjectable as ɵisInjectable, ɵɵComponentDeclaration, ɵɵDirectiveDeclaration, ɵɵInjectorDef, ɵɵPipeDeclaration, ɵɵdefineInjectable, ɵɵdefineInjector } from './discovery.d.js';
12
- import { ResourceOptions, ResourceRef, ResourceStreamingLoader, ResourceStatus, WritableResource, Resource } from './api.d.js';
13
- export { BaseResourceOptions, OutputEmitterRef, OutputOptions, PromiseResourceOptions, ResourceLoader, ResourceLoaderParams, ResourceStreamItem, StreamingResourceOptions, output, getOutputDestroyRef as ɵgetOutputDestroyRef } from './api.d.js';
14
- import './event_dispatcher.d.js';
7
+ import { SIGNAL, ReactiveNodeKind } from './_formatter-chunk.js';
8
+ import { Signal, WritableSignal, OutputRef, Provider, EnvironmentProviders, Type as Type$1, ModuleWithProviders, TypeProvider, ValueProvider, ClassProvider, ConstructorProvider, ExistingProvider, FactoryProvider, StaticClassProvider, ProviderToken, StaticProvider, Injector, ValueSansProvider, ExistingSansProvider, StaticClassSansProvider, ConstructorSansProvider, FactorySansProvider, ClassSansProvider, InjectionToken, InternalInjectFlags, InjectOptions, ValueEqualityFn, EventCallback, isSignal, enableProfiling as enableProfiling$1 } from './_chrome_dev_tools_performance-chunk.js';
9
+ export { AbstractType, CreateSignalOptions, DestroyRef, DestroyableInjector, OutputRefSubscription, signal, InternalEnvironmentProviders as ɵInternalEnvironmentProviders, JSACTION_EVENT_CONTRACT as ɵJSACTION_EVENT_CONTRACT, Writable as ɵWritable, isEnvironmentProviders as ɵisEnvironmentProviders, ɵunwrapWritableSignal } from './_chrome_dev_tools_performance-chunk.js';
10
+ import { InputSignalNode, TypeDecorator, AfterRenderRef, EffectCleanupRegisterFn, SchemaMetadata, ComponentDef, DirectiveDef, CssSelectorList, DirectiveDefFeature, HostBindingsFunction, TAttributes, ContentQueriesFunction, ViewQueriesFunction, ComponentTemplate, TConstantsOrFactory, ComponentDefFeature, ViewEncapsulation as ViewEncapsulation$1, ChangeDetectionStrategy as ChangeDetectionStrategy$1, TypeOrFactory, DependencyTypeList, InputFlags, InputTransformFunction, EmbeddedViewRef, LView, ApplicationRef, ChangeDetectorRef, ComponentFactory as ComponentFactory$1, NgModuleRef as NgModuleRef$1, EnvironmentInjector, DirectiveWithBindings, Binding, ComponentRef as ComponentRef$1, ElementRef, ComponentFactoryResolver as ComponentFactoryResolver$1, InternalNgModuleRef, NgModuleFactory as NgModuleFactory$1, ViewRef as ViewRef$1, PlatformRef, NgZone, ɵɵFactoryDeclaration as __FactoryDeclaration, ɵɵInjectableDeclaration as __InjectableDeclaration, ɵɵNgModuleDeclaration as __NgModuleDeclaration, ɵɵInjectorDeclaration as __InjectorDeclaration, DeferBlockDependencyInterceptor, DeferBlockConfig, DeferBlockState, TNode, LContainer, TView, TDeferBlockDetails, RNode, Component, TrustedHTML, DehydratedDeferBlock, CompilerOptions, HostDirectiveConfig, ComponentType, NgModuleScopeInfoFromDecorator, DependencyResolverFn, TDeferDetailsFlags, SanitizerFn, AnimationFunction, LocalRefExtractor, OpaqueViewState, GlobalTargetResolver, ProjectionSlots, QueryFlags, QueryList, RElement, RawScopeInfoFromDecorator, ClassDebugInfo, Directive, NgModule, Pipe, TrustedScriptURL, TrustedScript, PipeType, DirectiveType } from './_discovery-chunk.js';
11
+ export { APP_BOOTSTRAP_LISTENER, AnimationCallbackEvent, BootstrapOptions, COMPILER_OPTIONS, CUSTOM_ELEMENTS_SCHEMA, Compiler, CompilerFactory, ComponentDecorator, CreateEffectOptions, DebugElement, DebugEventListener, DebugNode, DirectiveDecorator, EffectCleanupFn, EffectRef, EventEmitter, HostBinding, HostBindingDecorator, HostListener, HostListenerDecorator, InjectableType, InjectorType, Input, InputDecorator, ListenerOptions, MAX_ANIMATION_TIMEOUT, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModuleDecorator, Output, OutputDecorator, PipeDecorator, Predicate, Renderer2, RendererFactory2, RendererStyleFlags2, RendererType2, Sanitizer, SecurityContext, asNativeElements, effect, getDebugNode, inputBinding, outputBinding, twoWayBinding, ANIMATIONS_DISABLED as ɵANIMATIONS_DISABLED, AfterRenderManager as ɵAfterRenderManager, AnimationRendererType as ɵAnimationRendererType, AttributeMarker as ɵAttributeMarker, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ChangeDetectionScheduler as ɵChangeDetectionScheduler, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockDetails as ɵDeferBlockDetails, EffectScheduler as ɵEffectScheduler, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, NG_INJ_DEF as ɵNG_INJ_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NavigateEvent as ɵNavigateEvent, Navigation as ɵNavigation, NavigationCurrentEntryChangeEvent as ɵNavigationCurrentEntryChangeEvent, NavigationDestination as ɵNavigationDestination, NavigationHistoryEntry as ɵNavigationHistoryEntry, NavigationInterceptOptions as ɵNavigationInterceptOptions, NavigationNavigateOptions as ɵNavigationNavigateOptions, NavigationOptions as ɵNavigationOptions, NavigationReloadOptions as ɵNavigationReloadOptions, NavigationResult as ɵNavigationResult, NavigationTransition as ɵNavigationTransition, NavigationTypeString as ɵNavigationTypeString, NavigationUpdateCurrentEntryOptions as ɵNavigationUpdateCurrentEntryOptions, NoopNgZone as ɵNoopNgZone, NotificationSource as ɵNotificationSource, PROVIDED_ZONELESS as ɵPROVIDED_ZONELESS, PipeDef as ɵPipeDef, R3Injector as ɵR3Injector, RenderFlags as ɵRenderFlags, TracingAction as ɵTracingAction, TracingService as ɵTracingService, TracingSnapshot as ɵTracingSnapshot, ZONELESS_ENABLED as ɵZONELESS_ENABLED, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, getInjectableDef as ɵgetInjectableDef, injectChangeDetectorRef as ɵinjectChangeDetectorRef, isBoundToModule as ɵisBoundToModule, isInjectable as ɵisInjectable, ɵɵComponentDeclaration, ɵɵDirectiveDeclaration, ɵɵInjectorDef, ɵɵPipeDeclaration, ɵɵdefineInjectable, ɵɵdefineInjector } from './_discovery-chunk.js';
12
+ import { ResourceOptions, ResourceRef, ResourceStreamingLoader, ResourceStatus, WritableResource, Resource } from './_api-chunk.js';
13
+ export { BaseResourceOptions, OutputEmitterRef, OutputOptions, PromiseResourceOptions, ResourceLoader, ResourceLoaderParams, ResourceStreamItem, StreamingResourceOptions, output, getOutputDestroyRef as ɵgetOutputDestroyRef } from './_api-chunk.js';
14
+ import './_event_dispatcher-chunk.js';
15
15
  import { Observable, Subscribable } from 'rxjs';
16
- export { setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl } from './weak_ref.d.js';
17
- export { setCurrentInjector as ɵsetCurrentInjector } from './primitives/di/index.js';
18
- import './signal.d.js';
16
+ export { setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl } from './_weak_ref-chunk.js';
17
+ export { setCurrentInjector as ɵsetCurrentInjector } from './primitives-di.js';
18
+ import './_effect-chunk.js';
19
19
  import '@angular/core/primitives/di';
20
20
 
21
21
  /**
@@ -612,11 +612,11 @@ declare const Attribute: AttributeDecorator;
612
612
  *
613
613
  * @publicApi
614
614
  */
615
- declare class SimpleChange {
616
- previousValue: any;
617
- currentValue: any;
615
+ declare class SimpleChange<T = any> {
616
+ previousValue: T;
617
+ currentValue: T;
618
618
  firstChange: boolean;
619
- constructor(previousValue: any, currentValue: any, firstChange: boolean);
619
+ constructor(previousValue: T, currentValue: T, firstChange: boolean);
620
620
  /**
621
621
  * Check whether the new value is the first value assigned.
622
622
  */
@@ -625,15 +625,20 @@ declare class SimpleChange {
625
625
  /**
626
626
  * A hashtable of changes represented by {@link SimpleChange} objects stored
627
627
  * at the declared property name they belong to on a Directive or Component. This is
628
- * the type passed to the `ngOnChanges` hook.
628
+ * the type passed to the `ngOnChanges` hook. Pass the current class or `this` as the
629
+ * first generic argument for stronger type checking (e.g. `SimpleChanges<YourComponent>`).
629
630
  *
630
631
  * @see {@link OnChanges}
631
632
  *
632
633
  * @publicApi
633
634
  */
634
- interface SimpleChanges {
635
+ type SimpleChanges<T = unknown> = T extends object ? {
636
+ [Key in keyof T]?: SimpleChange<T[Key] extends {
637
+ [ɵINPUT_SIGNAL_BRAND_READ_TYPE]: infer V;
638
+ } ? V : T[Key]>;
639
+ } : {
635
640
  [propName: string]: SimpleChange;
636
- }
641
+ };
637
642
 
638
643
  /**
639
644
  * @description
@@ -1432,7 +1437,7 @@ interface InjectDecorator {
1432
1437
  *
1433
1438
  * {@example core/di/ts/metadata_spec.ts region='InjectWithoutDecorator'}
1434
1439
  *
1435
- * @see [Dependency Injection Guide](guide/di/dependency-injection
1440
+ * @see [Dependency Injection Guide](guide/di/dependency-injection)
1436
1441
  *
1437
1442
  */
1438
1443
  (token: any): any;
@@ -1476,7 +1481,7 @@ interface OptionalDecorator {
1476
1481
  *
1477
1482
  * {@example core/di/ts/metadata_spec.ts region='Optional'}
1478
1483
  *
1479
- * @see [Dependency Injection Guide](guide/di/dependency-injection.
1484
+ * @see [Dependency Injection Guide](guide/di/dependency-injection)
1480
1485
  */
1481
1486
  (): any;
1482
1487
  new (): Optional;
@@ -1637,6 +1642,8 @@ declare function runInInjectionContext<ReturnT>(injector: Injector, fn: () => Re
1637
1642
  *
1638
1643
  * @param debugFn a reference to the function making the assertion (used for the error message).
1639
1644
  *
1645
+ * @see [Asserts the context](guide/di/dependency-injection-context#asserts-the-context)
1646
+ *
1640
1647
  * @publicApi
1641
1648
  */
1642
1649
  declare function assertInInjectionContext(debugFn: Function): void;
@@ -1727,7 +1734,7 @@ interface InjectableDecorator {
1727
1734
  * provided and injected as a dependency.
1728
1735
  *
1729
1736
  * @see [Introduction to Services and DI](guide/di)
1730
- * @see [Dependency Injection Guide](guide/di/dependency-injection
1737
+ * @see [Dependency Injection Guide](guide/di/dependency-injection)
1731
1738
  *
1732
1739
  * @usageNotes
1733
1740
  *
@@ -1798,13 +1805,6 @@ declare const Injectable: InjectableDecorator;
1798
1805
  */
1799
1806
  declare const ENVIRONMENT_INITIALIZER: InjectionToken<readonly (() => void)[]>;
1800
1807
 
1801
- /*!
1802
- * @license
1803
- * Copyright Google LLC All Rights Reserved.
1804
- *
1805
- * Use of this source code is governed by an MIT-style license that can be
1806
- * found in the LICENSE file at https://angular.dev/license
1807
- */
1808
1808
  /**
1809
1809
  * Creates a token that can be used to inject static attributes of the host node.
1810
1810
  *
@@ -2178,6 +2178,7 @@ declare function computed<T>(computation: () => T, options?: CreateComputedOptio
2178
2178
  */
2179
2179
  declare function linkedSignal<D>(computation: () => D, options?: {
2180
2180
  equal?: ValueEqualityFn<NoInfer<D>>;
2181
+ debugName?: string;
2181
2182
  }): WritableSignal<D>;
2182
2183
  /**
2183
2184
  * Creates a writable signal whose value is initialized and reset by the linked, reactive computation.
@@ -2194,6 +2195,7 @@ declare function linkedSignal<S, D>(options: {
2194
2195
  value: NoInfer<D>;
2195
2196
  }) => D;
2196
2197
  equal?: ValueEqualityFn<NoInfer<D>>;
2198
+ debugName?: string;
2197
2199
  }): WritableSignal<D>;
2198
2200
 
2199
2201
  /**
@@ -3368,7 +3370,7 @@ declare class NgModuleRef<T> extends NgModuleRef$1<T> implements InternalNgModul
3368
3370
  instance: T;
3369
3371
  destroyCbs: (() => void)[] | null;
3370
3372
  readonly componentFactoryResolver: ComponentFactoryResolver;
3371
- constructor(ngModuleType: Type$1<T>, _parent: Injector | null, additionalProviders: StaticProvider[], runInjectorInitializers?: boolean);
3373
+ constructor(ngModuleType: Type$1<T>, _parent: Injector | null, additionalProviders: Array<Provider | EnvironmentProviders>, runInjectorInitializers?: boolean);
3372
3374
  resolveInjectorInitializers(): void;
3373
3375
  get injector(): EnvironmentInjector;
3374
3376
  destroy(): void;
@@ -3525,7 +3527,6 @@ declare class TemplateRef<C> {
3525
3527
  *
3526
3528
  * ```angular-ts
3527
3529
  * @Component({
3528
- * standalone: true,
3529
3530
  * selector: 'dynamic',
3530
3531
  * template: `<span>This is a content of a dynamic component.</span>`,
3531
3532
  * })
@@ -3534,7 +3535,6 @@ declare class TemplateRef<C> {
3534
3535
  * }
3535
3536
  *
3536
3537
  * @Component({
3537
- * standalone: true,
3538
3538
  * selector: 'app',
3539
3539
  * template: `<main>Hi! This is the main content.</main>`,
3540
3540
  * })
@@ -3708,11 +3708,6 @@ declare abstract class ViewContainerRef {
3708
3708
  abstract detach(index?: number): ViewRef$1 | null;
3709
3709
  }
3710
3710
 
3711
- /**
3712
- * Internal token to indicate whether having multiple bootstrapped platform should be allowed (only
3713
- * one bootstrapped platform is allowed by default). This token helps to support SSR scenarios.
3714
- */
3715
- declare const ALLOW_MULTIPLE_PLATFORMS: InjectionToken<boolean>;
3716
3711
  /**
3717
3712
  * Creates a platform.
3718
3713
  * Platforms must be created on launch using this function.
@@ -3739,7 +3734,8 @@ declare function createPlatformFactory(parentPlatformFactory: ((extraProviders?:
3739
3734
  */
3740
3735
  declare function assertPlatform(requiredToken: any): PlatformRef;
3741
3736
  /**
3742
- * Returns the current platform.
3737
+ * Returns the current platform in the browser environment. In the server environment,
3738
+ * returns `null`. If you need access to the platform information, inject `PlatformRef` in your application.
3743
3739
  *
3744
3740
  * @publicApi
3745
3741
  */
@@ -3748,6 +3744,8 @@ declare function getPlatform(): PlatformRef | null;
3748
3744
  * Destroys the current Angular platform and all Angular applications on the page.
3749
3745
  * Destroys all modules and listeners registered with the platform.
3750
3746
  *
3747
+ * This function should not be used in a server environment, as it will be a no-op.
3748
+ *
3751
3749
  * @publicApi
3752
3750
  */
3753
3751
  declare function destroyPlatform(): void;
@@ -3777,9 +3775,8 @@ declare function providePlatformInitializer(initializerFn: () => void): Environm
3777
3775
  * with the bootstrapModule API.
3778
3776
  */
3779
3777
  declare const PROVIDED_NG_ZONE: InjectionToken<boolean>;
3780
- declare function internalProvideZoneChangeDetection({ ngZoneFactory, ignoreChangesOutsideZone, scheduleInRootZone, }: {
3778
+ declare function internalProvideZoneChangeDetection({ ngZoneFactory, scheduleInRootZone, }: {
3781
3779
  ngZoneFactory?: () => NgZone;
3782
- ignoreChangesOutsideZone?: boolean;
3783
3780
  scheduleInRootZone?: boolean;
3784
3781
  }): StaticProvider[];
3785
3782
  /**
@@ -3851,61 +3848,8 @@ interface NgZoneOptions {
3851
3848
  *
3852
3849
  */
3853
3850
  runCoalescing?: boolean;
3854
- /**
3855
- * When false, change detection is scheduled when Angular receives
3856
- * a clear indication that templates need to be refreshed. This includes:
3857
- *
3858
- * - calling `ChangeDetectorRef.markForCheck`
3859
- * - calling `ComponentRef.setInput`
3860
- * - updating a signal that is read in a template
3861
- * - attaching a view that is marked dirty
3862
- * - removing a view
3863
- * - registering a render hook (templates are only refreshed if render hooks do one of the above)
3864
- *
3865
- * @deprecated This option was introduced out of caution as a way for developers to opt out of the
3866
- * new behavior in v18 which schedule change detection for the above events when they occur
3867
- * outside the Zone. After monitoring the results post-release, we have determined that this
3868
- * feature is working as desired and do not believe it should ever be disabled by setting
3869
- * this option to `true`.
3870
- */
3871
- ignoreChangesOutsideZone?: boolean;
3872
- }
3873
-
3874
- declare class ChangeDetectionSchedulerImpl implements ChangeDetectionScheduler {
3875
- private readonly applicationErrorHandler;
3876
- private readonly appRef;
3877
- private readonly taskService;
3878
- private readonly ngZone;
3879
- private readonly zonelessEnabled;
3880
- private readonly tracing;
3881
- private readonly disableScheduling;
3882
- private readonly zoneIsDefined;
3883
- private readonly schedulerTickApplyArgs;
3884
- private readonly subscriptions;
3885
- private readonly angularZoneId;
3886
- private readonly scheduleInRootZone;
3887
- private cancelScheduledCallback;
3888
- private useMicrotaskScheduler;
3889
- runningTick: boolean;
3890
- pendingRenderTaskId: number | null;
3891
- constructor();
3892
- notify(source: NotificationSource): void;
3893
- private shouldScheduleTick;
3894
- /**
3895
- * Calls ApplicationRef._tick inside the `NgZone`.
3896
- *
3897
- * Calling `tick` directly runs change detection and cancels any change detection that had been
3898
- * scheduled previously.
3899
- *
3900
- * @param shouldRefreshViews Passed directly to `ApplicationRef._tick` and skips straight to
3901
- * render hooks when `false`.
3902
- */
3903
- private tick;
3904
- ngOnDestroy(): void;
3905
- private cleanup;
3906
- static ɵfac: __FactoryDeclaration<ChangeDetectionSchedulerImpl, never>;
3907
- static ɵprov: __InjectableDeclaration<ChangeDetectionSchedulerImpl>;
3908
3851
  }
3852
+
3909
3853
  /**
3910
3854
  * Provides change detection without ZoneJS for the application bootstrapped using
3911
3855
  * `bootstrapApplication`.
@@ -3942,28 +3886,8 @@ declare class ChangeDetectionSchedulerImpl implements ChangeDetectionScheduler {
3942
3886
  * @see {@link /api/platform-browser/bootstrapApplication bootstrapApplication}
3943
3887
  */
3944
3888
  declare function provideZonelessChangeDetection(): EnvironmentProviders;
3889
+ declare function provideZonelessChangeDetectionInternal(): Provider[];
3945
3890
 
3946
- /**
3947
- * Internal implementation of the pending tasks service.
3948
- */
3949
- declare class PendingTasksInternal implements OnDestroy {
3950
- private taskId;
3951
- private pendingTasks;
3952
- private destroyed;
3953
- private pendingTask;
3954
- get hasPendingTasks(): boolean;
3955
- /**
3956
- * In case the service is about to be destroyed, return a self-completing observable.
3957
- * Otherwise, return the observable that emits the current state of pending tasks.
3958
- */
3959
- get hasPendingTasksObservable(): Observable<boolean>;
3960
- add(): number;
3961
- has(taskId: number): boolean;
3962
- remove(taskId: number): void;
3963
- ngOnDestroy(): void;
3964
- /** @nocollapse */
3965
- static ɵprov: unknown;
3966
- }
3967
3891
  /**
3968
3892
  * Service that keeps track of pending tasks contributing to the stableness of Angular
3969
3893
  * application. While several existing Angular services (ex.: `HttpClient`) will internally manage
@@ -4115,13 +4039,6 @@ declare const PLATFORM_INITIALIZER: InjectionToken<readonly (() => void)[]>;
4115
4039
  * @publicApi
4116
4040
  */
4117
4041
  declare const PLATFORM_ID: InjectionToken<Object>;
4118
- /**
4119
- * A DI token that indicates the root directory of
4120
- * the application
4121
- * @publicApi
4122
- * @deprecated
4123
- */
4124
- declare const PACKAGE_ROOT_URL: InjectionToken<string>;
4125
4042
  /**
4126
4043
  * A [DI token](api/core/InjectionToken) that indicates which animations
4127
4044
  * module has been loaded.
@@ -4717,6 +4634,9 @@ declare class ApplicationModule {
4717
4634
  * ```
4718
4635
  *
4719
4636
  * @publicApi
4637
+ *
4638
+ * @see [Unhandled errors in Angular](best-practices/error-handling)
4639
+ *
4720
4640
  */
4721
4641
  declare class ErrorHandler {
4722
4642
  handleError(error: any): void;
@@ -4749,6 +4669,7 @@ declare function internalCreateApplication(config: {
4749
4669
  rootComponent?: Type$1<unknown>;
4750
4670
  appProviders?: Array<Provider | EnvironmentProviders>;
4751
4671
  platformProviders?: Provider[];
4672
+ platformRef?: PlatformRef;
4752
4673
  }): Promise<ApplicationRef>;
4753
4674
 
4754
4675
  declare class Console {
@@ -4852,6 +4773,7 @@ declare const enum RuntimeErrorCode {
4852
4773
  MISSING_INJECTION_TOKEN = 208,
4853
4774
  INVALID_MULTI_PROVIDER = -209,
4854
4775
  MISSING_DOCUMENT = 210,
4776
+ INVALID_APP_ID = 211,
4855
4777
  MULTIPLE_COMPONENTS_MATCH = -300,
4856
4778
  EXPORT_NOT_FOUND = -301,
4857
4779
  PIPE_NOT_FOUND = -302,
@@ -4870,8 +4792,9 @@ declare const enum RuntimeErrorCode {
4870
4792
  NO_BINDING_TARGET = 315,
4871
4793
  INVALID_BINDING_TARGET = 316,
4872
4794
  INVALID_SET_INPUT_CALL = 317,
4795
+ INVALID_FIELD_DIRECTIVE_HOST = 318,
4873
4796
  MULTIPLE_PLATFORMS = 400,
4874
- PLATFORM_NOT_FOUND = 401,
4797
+ PLATFORM_NOT_FOUND = -401,
4875
4798
  MISSING_REQUIRED_INJECTABLE_IN_BOOTSTRAP = 402,
4876
4799
  BOOTSTRAP_COMPONENTS_NOT_FOUND = -403,
4877
4800
  PLATFORM_ALREADY_DESTROYED = 404,
@@ -5060,6 +4983,7 @@ type HydratedNode = {
5060
4983
  [HYDRATION_INFO_KEY]?: HydrationInfo;
5061
4984
  } & Element;
5062
4985
  declare function readHydrationInfo(node: RNode): HydrationInfo | null;
4986
+ declare function resetIncrementalHydrationEnabledWarnedForTests(): void;
5063
4987
 
5064
4988
  /**
5065
4989
  * Annotates all components bootstrapped in a given ApplicationRef
@@ -5256,6 +5180,28 @@ declare function isComponentDefPendingResolution(type: Type$1<any>): boolean;
5256
5180
  declare function clearResolutionOfComponentResourcesQueue(): Map<Type$1<any>, Component>;
5257
5181
  declare function restoreComponentResolutionQueue(queue: Map<Type$1<any>, Component>): void;
5258
5182
 
5183
+ /**
5184
+ * Internal implementation of the pending tasks service.
5185
+ */
5186
+ declare class PendingTasksInternal implements OnDestroy {
5187
+ private taskId;
5188
+ private pendingTasks;
5189
+ private destroyed;
5190
+ private pendingTask;
5191
+ get hasPendingTasks(): boolean;
5192
+ /**
5193
+ * In case the service is about to be destroyed, return a self-completing observable.
5194
+ * Otherwise, return the observable that emits the current state of pending tasks.
5195
+ */
5196
+ get hasPendingTasksObservable(): Observable<boolean>;
5197
+ add(): number;
5198
+ has(taskId: number): boolean;
5199
+ remove(taskId: number): void;
5200
+ ngOnDestroy(): void;
5201
+ /** @nocollapse */
5202
+ static ɵprov: unknown;
5203
+ }
5204
+
5259
5205
  /**
5260
5206
  * InjectionToken to control root component bootstrap behavior.
5261
5207
  *
@@ -5648,7 +5594,7 @@ declare class ResourceImpl<T, R> extends BaseWritableResource<T> implements Reso
5648
5594
  private resolvePendingTask;
5649
5595
  private destroyed;
5650
5596
  private unregisterOnDestroy;
5651
- constructor(request: () => R, loaderFn: ResourceStreamingLoader<T, R>, defaultValue: T, equal: ValueEqualityFn$1<T> | undefined, injector: Injector, throwErrorsFromValue?: boolean);
5597
+ constructor(request: () => R, loaderFn: ResourceStreamingLoader<T, R>, defaultValue: T, equal: ValueEqualityFn<T> | undefined, injector: Injector, throwErrorsFromValue?: boolean);
5652
5598
  readonly status: Signal<ResourceStatus>;
5653
5599
  readonly error: Signal<Error | undefined>;
5654
5600
  /**
@@ -5662,13 +5608,6 @@ declare class ResourceImpl<T, R> extends BaseWritableResource<T> implements Reso
5662
5608
  }
5663
5609
  declare function encapsulateResourceError(error: unknown): Error;
5664
5610
 
5665
- /*!
5666
- * @license
5667
- * Copyright Google LLC All Rights Reserved.
5668
- *
5669
- * Use of this source code is governed by an MIT-style license that can be
5670
- * found in the LICENSE file at https://angular.dev/license
5671
- */
5672
5611
  /**
5673
5612
  * Gets the class name of the closest component to a node.
5674
5613
  * Warning! this function will return minified names if the name of the component is minified. The
@@ -5755,94 +5694,13 @@ declare class TimerScheduler {
5755
5694
  static ɵprov: unknown;
5756
5695
  }
5757
5696
 
5758
- /*!
5759
- * @license
5760
- * Copyright Google LLC All Rights Reserved.
5761
- *
5762
- * Use of this source code is governed by an MIT-style license that can be
5763
- * found in the LICENSE file at https://angular.dev/license
5764
- */
5765
5697
  /**
5766
5698
  * Utility function used during template type checking to assert that a value is of a certain type.
5767
5699
  * @codeGenApi
5768
5700
  */
5769
5701
  declare function ɵassertType<T>(value: unknown): asserts value is T;
5770
5702
 
5771
- /**
5772
- * A [DI token](api/core/InjectionToken) that enables or disables all enter and leave animations.
5773
- */
5774
- declare const ANIMATIONS_DISABLED: InjectionToken<boolean>;
5775
- /**
5776
- * The event type for when `animate.enter` and `animate.leave` are used with function
5777
- * callbacks.
5778
- *
5779
- * @publicApi 20.2
5780
- */
5781
- type AnimationCallbackEvent = {
5782
- target: Element;
5783
- animationComplete: Function;
5784
- };
5785
- /**
5786
- * A [DI token](api/core/InjectionToken) that configures the maximum animation timeout
5787
- * before element removal. The default value mirrors from Chrome's cross document
5788
- * navigation view transition timeout. It's intended to prevent people from accidentally
5789
- * forgetting to call the removal function in their callback. Also serves as a delay
5790
- * for when stylesheets are pruned.
5791
- *
5792
- * @publicApi 20.2
5793
- */
5794
- declare const MAX_ANIMATION_TIMEOUT: InjectionToken<number>;
5795
- /**
5796
- * The function type for `animate.enter` and `animate.leave` when they are used with
5797
- * function callbacks.
5798
- *
5799
- * @publicApi 20.2
5800
- */
5801
- type AnimationFunction = (event: AnimationCallbackEvent) => void;
5802
- type AnimationEventFunction = (el: Element, value: AnimationFunction) => AnimationRemoveFunction;
5803
- type AnimationClassFunction = (el: Element, value: Set<string> | null, resolvers: Function[] | undefined) => AnimationRemoveFunction;
5804
- type AnimationRemoveFunction = (removeFn: VoidFunction) => void;
5805
- interface AnimationDetails {
5806
- classes: Set<string> | null;
5807
- classFns?: Function[];
5808
- animateFn: AnimationRemoveFunction;
5809
- }
5810
-
5811
- interface AnimationRemovalRegistry {
5812
- elements: ElementRegistry | undefined;
5813
- }
5814
- /**
5815
- * Registers elements for delayed removal action for animation in the case
5816
- * that `animate.leave` is used. This stores the target element and any
5817
- * classes, class resolvers, and callback functions that may be needed
5818
- * to apply the removal animation, and then stashes the actual element
5819
- * removal function from the dom renderer to be called after the
5820
- * animation is finished.
5821
- */
5822
- declare class ElementRegistry {
5823
- private outElements;
5824
- remove(el: Element): void;
5825
- /** Used when animate.leave is only applying classes */
5826
- trackClasses(details: AnimationDetails, classes: string | string[]): void;
5827
- /** Used when animate.leave is applying classes via a bound attribute
5828
- * which requires resolving the binding function at the right time
5829
- * to get the proper class list. There may be multiple resolvers due
5830
- * to composition via host bindings.
5831
- */
5832
- trackResolver(details: AnimationDetails, resolver: Function): void;
5833
- /** Used when `animate.leave` is using the function signature and will have a
5834
- * callback function, rather than a list of classes.
5835
- */
5836
- addCallback(el: Element, value: AnimationFunction, animateWrapperFn: AnimationEventFunction): void;
5837
- /** Used when `animate.leave` is using classes. */
5838
- add(el: Element, value: string | string[] | Function, animateWrapperFn: AnimationClassFunction): void;
5839
- has(el: Element): boolean;
5840
- /** This is called by the dom renderer to actually initiate the animation
5841
- * using the animateFn stored in the registry. The DOM renderer passes in
5842
- * the removal function to be fired off when the animation finishes.
5843
- */
5844
- animate(el: Element, removeFn: Function, maxAnimationTimeout: number): void;
5845
- }
5703
+ declare const allLeavingAnimations: Set<LView<unknown>>;
5846
5704
 
5847
5705
  declare function compileNgModuleFactory<M>(injector: Injector, options: CompilerOptions, moduleType: Type$1<M>): Promise<NgModuleFactory$1<M>>;
5848
5706
 
@@ -6077,14 +5935,6 @@ declare function ɵɵProvidersFeature<T>(providers: Provider[], viewProviders?:
6077
5935
  */
6078
5936
  declare function ɵɵExternalStylesFeature(styleUrls: string[]): ComponentDefFeature;
6079
5937
 
6080
- /**
6081
- * This feature adds the element registry for delayed element removal when animate.leave
6082
- * is utilized.
6083
- *
6084
- * @codeGenApi
6085
- */
6086
- declare function ɵɵAnimationsFeature(): () => void;
6087
-
6088
5938
  /**
6089
5939
  * Generated next to NgModules to monkey-patch directive and pipe references onto a component's
6090
5940
  * definition, when generating a direct reference in the component file would otherwise create an
@@ -6485,19 +6335,19 @@ declare function ɵɵdeferHydrateOnInteraction(): void;
6485
6335
  * @param walkUpTimes Number of times to walk up/down the tree hierarchy to find the trigger.
6486
6336
  * @codeGenApi
6487
6337
  */
6488
- declare function ɵɵdeferOnViewport(triggerIndex: number, walkUpTimes?: number): void;
6338
+ declare function ɵɵdeferOnViewport(triggerIndex: number, walkUpTimes?: number | null, options?: IntersectionObserverInit): void;
6489
6339
  /**
6490
6340
  * Creates runtime data structures for the `prefetch on viewport` deferred trigger.
6491
6341
  * @param triggerIndex Index at which to find the trigger element.
6492
6342
  * @param walkUpTimes Number of times to walk up/down the tree hierarchy to find the trigger.
6493
6343
  * @codeGenApi
6494
6344
  */
6495
- declare function ɵɵdeferPrefetchOnViewport(triggerIndex: number, walkUpTimes?: number): void;
6345
+ declare function ɵɵdeferPrefetchOnViewport(triggerIndex: number, walkUpTimes?: number | null, options?: IntersectionObserverInit): void;
6496
6346
  /**
6497
6347
  * Creates runtime data structures for the `on viewport` hydrate trigger.
6498
6348
  * @codeGenApi
6499
6349
  */
6500
- declare function ɵɵdeferHydrateOnViewport(): void;
6350
+ declare function ɵɵdeferHydrateOnViewport(options?: IntersectionObserverInit): void;
6501
6351
 
6502
6352
  /**
6503
6353
  * Advances to an element for later binding instructions.
@@ -6525,12 +6375,12 @@ declare function ɵɵdeferHydrateOnViewport(): void;
6525
6375
  declare function ɵɵadvance(delta?: number): void;
6526
6376
 
6527
6377
  /**
6528
- * Update an ARIA attribute by either its attribute or property name on a selected element.
6378
+ * Update an ARIA attribute on a selected element.
6529
6379
  *
6530
- * If the property name also exists as an input property on any of the element's directives, those
6531
- * inputs will be set instead of the element property.
6380
+ * If the attribute name also exists as an input property on any of the element's directives, those
6381
+ * inputs will be set instead of the element attribute.
6532
6382
  *
6533
- * @param name Name of the ARIA attribute or property (beginning with `aria`).
6383
+ * @param name Name of the ARIA attribute (beginning with `aria-`).
6534
6384
  * @param value New value to write.
6535
6385
  * @returns This function returns itself so that it may be chained.
6536
6386
  *
@@ -6574,8 +6424,8 @@ declare function ɵɵanimateEnter(value: string | Function): typeof ɵɵanimateE
6574
6424
  declare function ɵɵanimateEnterListener(value: AnimationFunction): typeof ɵɵanimateEnterListener;
6575
6425
  /**
6576
6426
  * Instruction to handle the `animate.leave` behavior for class animations.
6577
- * It registers an animation with the ElementRegistry to be run when the element
6578
- * is scheduled for removal from the DOM.
6427
+ * It creates a leave animation function that's tracked in the LView to
6428
+ * be run before DOM node removal and cleanup.
6579
6429
  *
6580
6430
  * @param value The value bound to `animate.leave`, which can be a string or a function.
6581
6431
  * @returns This function returns itself so that it may be chained.
@@ -6586,8 +6436,8 @@ declare function ɵɵanimateLeave(value: string | Function): typeof ɵɵanimateL
6586
6436
  /**
6587
6437
  * Instruction to handle the `(animate.leave)` behavior for event bindings, aka when
6588
6438
  * a user wants to use a custom animation function rather than a class. It registers
6589
- * an animation with the ElementRegistry to be run when the element is scheduled for
6590
- * removal from the DOM.
6439
+ * a leave animation function in the LView to be run at right before removal from the
6440
+ * DOM.
6591
6441
  *
6592
6442
  * @param value The value bound to `(animate.leave)`, an AnimationFunction.
6593
6443
  * @returns This function returns itself so that it may be chained.
@@ -6596,13 +6446,6 @@ declare function ɵɵanimateLeave(value: string | Function): typeof ɵɵanimateL
6596
6446
  */
6597
6447
  declare function ɵɵanimateLeaveListener(value: AnimationFunction): typeof ɵɵanimateLeaveListener;
6598
6448
 
6599
- /*!
6600
- * @license
6601
- * Copyright Google LLC All Rights Reserved.
6602
- *
6603
- * Use of this source code is governed by an MIT-style license that can be
6604
- * found in the LICENSE file at https://angular.dev/license
6605
- */
6606
6449
  /**
6607
6450
  * Instruction that returns the component instance in which the current instruction is executing.
6608
6451
  * This is a constant-time version of `nextContent` for the case where we know that we need the
@@ -6612,6 +6455,29 @@ declare function ɵɵanimateLeaveListener(value: AnimationFunction): typeof ɵɵ
6612
6455
  */
6613
6456
  declare function ɵɵcomponentInstance(): unknown;
6614
6457
 
6458
+ /**
6459
+ * Possibly sets up a {@link ɵControl} to manage a native or custom form control.
6460
+ *
6461
+ * Setup occurs if a `field` input is bound to a {@link ɵControl} directive on the current node,
6462
+ * but not to a component. If a `field` input is bound to a component, we assume the component
6463
+ * will manage the control in its own template.
6464
+ *
6465
+ * @codeGenApi
6466
+ */
6467
+ declare function ɵɵcontrolCreate(): void;
6468
+ /**
6469
+ * Updates a `field` property, and possibly other form control properties, on the current element.
6470
+ *
6471
+ * This is a specialized version of the `ɵɵproperty` instruction that handles updating additional
6472
+ * form control properties, if set up to do so by {@link ɵɵcontrolCreate} during creation.
6473
+ *
6474
+ * @param value New value to write.
6475
+ * @param sanitizer An optional function used to sanitize the value.
6476
+ *
6477
+ * @codeGenApi
6478
+ */
6479
+ declare function ɵɵcontrol<T>(value: T, sanitizer?: SanitizerFn | null): void;
6480
+
6615
6481
  /**
6616
6482
  * Creates an LContainer for an ng-template representing a root node
6617
6483
  * of control flow (@if, @switch). We use this to explicitly set
@@ -7208,7 +7074,6 @@ declare function ɵɵnamespaceMathML(): void;
7208
7074
  * @codeGenApi
7209
7075
  */
7210
7076
  declare function ɵɵnamespaceHTML(): void;
7211
- declare function getAnimationElementRemovalRegistry(): AnimationRemovalRegistry;
7212
7077
 
7213
7078
  /**
7214
7079
  * Retrieves a context at the level specified and saves it as the global, contextViewData.
@@ -7720,14 +7585,6 @@ declare function ɵɵtextInterpolate8(prefix: string, v0: any, i0: string, v1: a
7720
7585
  */
7721
7586
  declare function ɵɵtextInterpolateV(values: any[]): typeof ɵɵtextInterpolateV;
7722
7587
 
7723
- /*!
7724
- * @license
7725
- * Copyright Google LLC All Rights Reserved.
7726
- *
7727
- * Use of this source code is governed by an MIT-style license that can be
7728
- * found in the LICENSE file at https://angular.dev/license
7729
- */
7730
-
7731
7588
  /**
7732
7589
  * Update a two-way bound property on a selected element.
7733
7590
  *
@@ -7761,13 +7618,6 @@ declare function ɵɵtwoWayBindingSet<T>(target: unknown, value: T): boolean;
7761
7618
  */
7762
7619
  declare function ɵɵtwoWayListener(eventName: string, listenerFn: EventCallback): typeof ɵɵtwoWayListener;
7763
7620
 
7764
- /*!
7765
- * @license
7766
- * Copyright Google LLC All Rights Reserved.
7767
- *
7768
- * Use of this source code is governed by an MIT-style license that can be
7769
- * found in the LICENSE file at https://angular.dev/license
7770
- */
7771
7621
  /**
7772
7622
  * Declares an `@let` at a specific data slot. Returns itself to allow chaining.
7773
7623
  *
@@ -7792,13 +7642,6 @@ declare function ɵɵstoreLet<T>(value: T): T;
7792
7642
  */
7793
7643
  declare function ɵɵreadContextLet<T>(index: number): T;
7794
7644
 
7795
- /*!
7796
- * @license
7797
- * Copyright Google LLC All Rights Reserved.
7798
- *
7799
- * Use of this source code is governed by an MIT-style license that can be
7800
- * found in the LICENSE file at https://angular.dev/license
7801
- */
7802
7645
  /**
7803
7646
  * Sets the location within the source template at which
7804
7647
  * each element in the current view was defined.
@@ -7811,14 +7654,6 @@ declare function ɵɵreadContextLet<T>(index: number): T;
7811
7654
  */
7812
7655
  declare function ɵɵattachSourceLocations(templatePath: string, locations: [index: number, offset: number, line: number, column: number][]): void;
7813
7656
 
7814
- /*!
7815
- * @license
7816
- * Copyright Google LLC All Rights Reserved.
7817
- *
7818
- * Use of this source code is governed by an MIT-style license that can be
7819
- * found in the LICENSE file at https://angular.dev/license
7820
- */
7821
-
7822
7657
  /**
7823
7658
  * Interpolate a value with a single bound value and no prefixes or suffixes.
7824
7659
  *
@@ -8273,14 +8108,6 @@ declare function ɵɵgetComponentDepsFactory(type: ComponentType<any>, rawImport
8273
8108
  */
8274
8109
  declare function ɵsetClassDebugInfo(type: Type$1<any>, debugInfo: ClassDebugInfo): void;
8275
8110
 
8276
- /*!
8277
- * @license
8278
- * Copyright Google LLC All Rights Reserved.
8279
- *
8280
- * Use of this source code is governed by an MIT-style license that can be
8281
- * found in the LICENSE file at https://angular.dev/license
8282
- */
8283
-
8284
8111
  /** Represents `import.meta` plus some information that's not in the built-in types. */
8285
8112
  type ImportMetaExtended = ImportMeta & {
8286
8113
  hot?: {
@@ -8313,6 +8140,124 @@ declare function ɵɵreplaceMetadata(type: Type$1<unknown>, applyMetadata: (...a
8313
8140
  /** Store a value in the `data` at a given `index`. */
8314
8141
  declare function store<T>(tView: TView, lView: LView, index: number, value: T): void;
8315
8142
 
8143
+ /** A unique symbol used to identify {@link ɵControl} implementations. */
8144
+ declare const ɵCONTROL: unique symbol;
8145
+ /**
8146
+ * A directive that binds a {@link ɵFieldState} to a form control.
8147
+ */
8148
+ interface ɵControl<T> {
8149
+ readonly [ɵCONTROL]: undefined;
8150
+ /** The state of the field bound to this control. */
8151
+ readonly state: Signal<ɵFieldState<T>>;
8152
+ /**
8153
+ * Registers this directive as a control of its associated form field.
8154
+ *
8155
+ * The presence of this directive alone is not sufficient to determine whether it'll control
8156
+ * the bound field. If this directive's host is a component with a `field` input, we assume
8157
+ * the component will forward the bound field to another field directive in its own template,
8158
+ * and do nothing.
8159
+ */
8160
+ ɵregister(): void;
8161
+ /**
8162
+ * Indicates whether this field is bound to an interoperable control.
8163
+ *
8164
+ * This is used for interoperability between signal forms and reactive forms.
8165
+ */
8166
+ readonly ɵhasInteropControl: boolean;
8167
+ /**
8168
+ * Adds event listeners to the associated interoperable control.
8169
+ *
8170
+ * This method should only be called from a template function in create mode if this
8171
+ * {@link ɵhasInteropControl}.
8172
+ */
8173
+ ɵinteropControlCreate(): void;
8174
+ /**
8175
+ * Updates the associated interoperable control.
8176
+ *
8177
+ * This method should only be called from a template function in update mode if this
8178
+ * {@link ɵhasInteropControl}.
8179
+ */
8180
+ ɵinteropControlUpdate(): void;
8181
+ }
8182
+ /**
8183
+ * The state of a form field to be synchronized with its bound control.
8184
+ */
8185
+ interface ɵFieldState<T> {
8186
+ /**
8187
+ * A signal containing the current errors for the field.
8188
+ */
8189
+ readonly errors: Signal<unknown>;
8190
+ /**
8191
+ * A signal indicating whether the field is valid.
8192
+ */
8193
+ readonly invalid: Signal<boolean>;
8194
+ /**
8195
+ * A signal indicating whether the field is currently disabled.
8196
+ */
8197
+ readonly disabled: Signal<boolean>;
8198
+ /**
8199
+ * A signal containing the reasons why the field is currently disabled.
8200
+ */
8201
+ readonly disabledReasons: Signal<unknown>;
8202
+ /**
8203
+ * A signal indicating the field's maximum value, if applicable.
8204
+ *
8205
+ * Applies to `<input>` with a numeric or date `type` attribute and custom controls.
8206
+ */
8207
+ readonly max?: Signal<number | undefined>;
8208
+ /**
8209
+ * A signal indicating the field's maximum string length, if applicable.
8210
+ *
8211
+ * Applies to `<input>`, `<textarea>`, and custom controls.
8212
+ */
8213
+ readonly maxLength?: Signal<number | undefined>;
8214
+ /**
8215
+ * A signal indicating the field's minimum value, if applicable.
8216
+ *
8217
+ * Applies to `<input>` with a numeric or date `type` attribute and custom controls.
8218
+ */
8219
+ readonly min?: Signal<number | undefined>;
8220
+ /**
8221
+ * A signal indicating the field's minimum string length, if applicable.
8222
+ *
8223
+ * Applies to `<input>`, `<textarea>`, and custom controls.
8224
+ */
8225
+ readonly minLength?: Signal<number | undefined>;
8226
+ /**
8227
+ * A signal of a unique name for the field, by default based on the name of its parent field.
8228
+ */
8229
+ readonly name: Signal<string>;
8230
+ /**
8231
+ * A signal indicating the patterns the field must match.
8232
+ */
8233
+ readonly pattern?: Signal<readonly RegExp[]>;
8234
+ /**
8235
+ * A signal indicating whether the field is currently readonly.
8236
+ */
8237
+ readonly readonly: Signal<boolean>;
8238
+ /**
8239
+ * A signal indicating whether the field is required.
8240
+ */
8241
+ readonly required?: Signal<boolean>;
8242
+ /**
8243
+ * A signal indicating whether the field has been touched by the user.
8244
+ */
8245
+ readonly touched: Signal<boolean>;
8246
+ /**
8247
+ * A writable signal containing the value for this field. Updating this signal will update the
8248
+ * data model that the field is bound to.
8249
+ */
8250
+ readonly value: WritableSignal<T>;
8251
+ /**
8252
+ * Sets the dirty status of the field to `true`.
8253
+ */
8254
+ markAsDirty(): void;
8255
+ /**
8256
+ * Sets the touched status of the field to `true`.
8257
+ */
8258
+ markAsTouched(): void;
8259
+ }
8260
+
8316
8261
  type Type = Function;
8317
8262
  type OpaqueValue = unknown;
8318
8263
  declare enum FactoryTarget {
@@ -8390,7 +8335,6 @@ interface R3DeclareComponentFacade extends R3DeclareDirectiveFacade {
8390
8335
  animations?: OpaqueValue;
8391
8336
  changeDetection?: ChangeDetectionStrategy;
8392
8337
  encapsulation?: ViewEncapsulation;
8393
- interpolation?: [string, string];
8394
8338
  preserveWhitespaces?: boolean;
8395
8339
  }
8396
8340
  type R3DeclareTemplateDependencyFacade = {
@@ -8598,13 +8542,6 @@ declare function isNgModule<T>(value: Type$1<T>): value is Type$1<T> & {
8598
8542
  ɵmod: NgModuleDef<T>;
8599
8543
  };
8600
8544
 
8601
- /*!
8602
- * @license
8603
- * Copyright Google LLC All Rights Reserved.
8604
- *
8605
- * Use of this source code is governed by an MIT-style license that can be
8606
- * found in the LICENSE file at https://angular.dev/license
8607
- */
8608
8545
  /**
8609
8546
  * Profiler events is an enum used by the profiler to distinguish between different calls of user
8610
8547
  * code invoked throughout the application lifecycle.
@@ -8756,13 +8693,6 @@ declare function setProfiler(profiler: Profiler | null): () => void;
8756
8693
  */
8757
8694
  declare function applyChanges(component: {}): void;
8758
8695
 
8759
- /*!
8760
- * @license
8761
- * Copyright Google LLC All Rights Reserved.
8762
- *
8763
- * Use of this source code is governed by an MIT-style license that can be
8764
- * found in the LICENSE file at https://angular.dev/license
8765
- */
8766
8696
  /** Retrieved information about a `@defer` block. */
8767
8697
  interface DeferBlockData {
8768
8698
  /** Current state of the block. */
@@ -8849,7 +8779,7 @@ declare function getInjectorMetadata(injector: Injector): {
8849
8779
  declare function getInjectorResolutionPath(injector: Injector): Injector[];
8850
8780
 
8851
8781
  interface DebugSignalGraphNode {
8852
- kind: string;
8782
+ kind: ReactiveNodeKind;
8853
8783
  id: string;
8854
8784
  epoch: number;
8855
8785
  label?: string;
@@ -8911,8 +8841,10 @@ declare function getTransferState(injector: Injector): Record<string, unknown>;
8911
8841
  * tools are patched (window.ng).
8912
8842
  * */
8913
8843
  declare const GLOBAL_PUBLISH_EXPANDO_KEY = "ng";
8914
- interface NgGlobalPublishUtils {
8844
+ interface ExternalGlobalUtils {
8915
8845
  ɵgetLoadedRoutes(route: any): any;
8846
+ ɵnavigateByUrl(router: any, url: string): any;
8847
+ ɵgetRouterInstance(injector: any): any;
8916
8848
  }
8917
8849
  declare const globalUtilsFunctions: {
8918
8850
  /**
@@ -8941,7 +8873,6 @@ declare const globalUtilsFunctions: {
8941
8873
  isSignal: typeof isSignal;
8942
8874
  enableProfiling: typeof enableProfiling$1;
8943
8875
  };
8944
- type ExternalGlobalUtilsFunctions = keyof NgGlobalPublishUtils;
8945
8876
  /**
8946
8877
  * Default debug tools available under `window.ng`.
8947
8878
  */
@@ -8958,12 +8889,12 @@ type GlobalDevModeUtils = {
8958
8889
  */
8959
8890
  type FrameworkAgnosticGlobalUtils = Omit<typeof globalUtilsFunctions, 'getDirectiveMetadata'> & {
8960
8891
  getDirectiveMetadata(directiveOrComponentInstance: any): DirectiveDebugMetadata | null;
8961
- };
8892
+ } & ExternalGlobalUtils;
8962
8893
  /**
8963
8894
  * Publishes the given function to `window.ng` from package other than @angular/core
8964
8895
  * So that it can be used from the browser console when an application is not in production.
8965
8896
  */
8966
- declare function publishExternalGlobalUtil<K extends ExternalGlobalUtilsFunctions>(name: K, fn: NgGlobalPublishUtils[K]): void;
8897
+ declare function publishExternalGlobalUtil<K extends keyof ExternalGlobalUtils>(name: K, fn: ExternalGlobalUtils[K]): void;
8967
8898
 
8968
8899
  /**
8969
8900
  * An `html` sanitizer which converts untrusted `html` **string** into trusted string by removing
@@ -9241,7 +9172,6 @@ declare const depsTracker: DepsTracker;
9241
9172
  *
9242
9173
  * ```angular-ts
9243
9174
  * @Component({
9244
- * standalone: true,
9245
9175
  * template: `Hello {{ name }}!`
9246
9176
  * })
9247
9177
  * class HelloComponent {
@@ -9249,7 +9179,6 @@ declare const depsTracker: DepsTracker;
9249
9179
  * }
9250
9180
  *
9251
9181
  * @Component({
9252
- * standalone: true,
9253
9182
  * template: `<div id="hello-component-host"></div>`
9254
9183
  * })
9255
9184
  * class RootComponent {}
@@ -9286,7 +9215,7 @@ declare const depsTracker: DepsTracker;
9286
9215
  * `[[element1, element2], [element3]]`: projects `element1` and `element2` into one `<ng-content>`,
9287
9216
  * and `element3` into a separate `<ng-content>`.
9288
9217
  * * `directives` (optional): Directives that should be applied to the component.
9289
- * * `binding` (optional): Bindings to apply to the root component.
9218
+ * * `bindings` (optional): Bindings to apply to the root component.
9290
9219
  * @returns ComponentRef instance that represents a given Component.
9291
9220
  *
9292
9221
  * @publicApi
@@ -9350,7 +9279,6 @@ interface ComponentMirror<C> {
9350
9279
  *
9351
9280
  * ```angular-ts
9352
9281
  * @Component({
9353
- * standalone: true,
9354
9282
  * selector: 'foo-component',
9355
9283
  * template: `
9356
9284
  * <ng-content></ng-content>
@@ -9475,5 +9403,5 @@ declare const DOCUMENT: InjectionToken<Document>;
9475
9403
  */
9476
9404
  declare function provideNgReflectAttributes(): EnvironmentProviders;
9477
9405
 
9478
- export { ANIMATION_MODULE_TYPE, APP_ID, APP_INITIALIZER, AfterRenderRef, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, Binding, CSP_NONCE, ChangeDetectionStrategy$1 as ChangeDetectionStrategy, ChangeDetectorRef, ClassProvider, ClassSansProvider, CompilerOptions, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ConstructorProvider, ConstructorSansProvider, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DOCUMENT, DefaultIterableDiffer, Directive, ENVIRONMENT_INITIALIZER, EffectCleanupRegisterFn, ElementRef, EmbeddedViewRef, EnvironmentInjector, EnvironmentProviders, ErrorHandler, ExistingProvider, ExistingSansProvider, FactoryProvider, FactorySansProvider, HOST_TAG_NAME, Host, HostAttributeToken, INJECTOR, Inject, InjectOptions, Injectable, InjectionToken, Injector, IterableDiffers, KeyValueDiffers, LOCALE_ID, MAX_ANIMATION_TIMEOUT, MissingTranslationStrategy, ModuleWithProviders, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgZone, Optional, OutputRef, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, PendingTasks, Pipe, PlatformRef, Provider, ProviderToken, Query, QueryList, REQUEST, REQUEST_CONTEXT, RESPONSE_INIT, Resource, ResourceOptions, ResourceRef, ResourceStatus, ResourceStreamingLoader, SchemaMetadata, Self, Signal, SimpleChange, SkipSelf, StaticClassProvider, StaticClassSansProvider, StaticProvider, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type$1 as Type, TypeDecorator, TypeProvider, VERSION, ValueEqualityFn, ValueProvider, ValueSansProvider, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef$1 as ViewRef, WritableResource, WritableSignal, afterEveryRender, afterNextRender, afterRenderEffect, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, contentChild, contentChildren, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, destroyPlatform, enableProdMode, enableProfiling$1 as enableProfiling, forwardRef, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, linkedSignal, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, platformCore, provideAppInitializer, provideBrowserGlobalErrorListeners, provideCheckNoChangesConfig, provideEnvironmentInitializer, provideNgReflectAttributes, providePlatformInitializer, provideZoneChangeDetection, provideZonelessChangeDetection, reflectComponentType, resolveForwardRef, resource, runInInjectionContext, setTestabilityGetter, untracked, viewChild, viewChildren, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, ANIMATIONS_DISABLED as ɵANIMATIONS_DISABLED, AcxChangeDetectionStrategy as ɵAcxChangeDetectionStrategy, AcxViewEncapsulation as ɵAcxViewEncapsulation, BypassType as ɵBypassType, CLIENT_RENDER_MODE_FLAG as ɵCLIENT_RENDER_MODE_FLAG, ChangeDetectionScheduler as ɵChangeDetectionScheduler, ChangeDetectionSchedulerImpl as ɵChangeDetectionSchedulerImpl, ComponentDef as ɵComponentDef, ComponentFactory$1 as ɵComponentFactory, ComponentType as ɵComponentType, Console as ɵConsole, CssSelectorList as ɵCssSelectorList, CurrencyIndex as ɵCurrencyIndex, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DEHYDRATED_BLOCK_REGISTRY as ɵDEHYDRATED_BLOCK_REGISTRY, DeferBlockConfig as ɵDeferBlockConfig, DeferBlockDependencyInterceptor as ɵDeferBlockDependencyInterceptor, DeferBlockState as ɵDeferBlockState, DirectiveDef as ɵDirectiveDef, DirectiveType as ɵDirectiveType, ENABLE_ROOT_COMPONENT_BOOTSTRAP as ɵENABLE_ROOT_COMPONENT_BOOTSTRAP, ElementRegistry as ɵElementRegistry, ExtraLocaleDataIndex as ɵExtraLocaleDataIndex, Framework as ɵFramework, HydrationStatus as ɵHydrationStatus, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, INTERNAL_APPLICATION_ERROR_HANDLER as ɵINTERNAL_APPLICATION_ERROR_HANDLER, IS_ENABLED_BLOCKING_INITIAL_NAVIGATION as ɵIS_ENABLED_BLOCKING_INITIAL_NAVIGATION, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, IS_INCREMENTAL_HYDRATION_ENABLED as ɵIS_INCREMENTAL_HYDRATION_ENABLED, InputSignalNode as ɵInputSignalNode, JSACTION_BLOCK_ELEMENT_MAP as ɵJSACTION_BLOCK_ELEMENT_MAP, LContext as ɵLContext, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, NotificationSource as ɵNotificationSource, PERFORMANCE_MARK_PREFIX as ɵPERFORMANCE_MARK_PREFIX, PROVIDED_NG_ZONE as ɵPROVIDED_NG_ZONE, PendingTasksInternal as ɵPendingTasksInternal, ProfilerEvent as ɵProfilerEvent, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, ResourceImpl as ɵResourceImpl, RuntimeError as ɵRuntimeError, RuntimeErrorCode as ɵRuntimeErrorCode, SIGNAL as ɵSIGNAL, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, TimerScheduler as ɵTimerScheduler, ViewRef as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, ɵassertType, 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, createOrReusePlatformInjector as ɵcreateOrReusePlatformInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, depsTracker as ɵdepsTracker, devModeEqual as ɵdevModeEqual, disableProfiling as ɵdisableProfiling, enableProfiling as ɵenableProfiling, encapsulateResourceError as ɵencapsulateResourceError, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAnimationElementRemovalRegistry as ɵgetAnimationElementRemovalRegistry, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getClosestComponentName as ɵgetClosestComponentName, getComponentDef as ɵgetComponentDef, getDirectives as ɵgetDirectives, getDocument as ɵgetDocument, getHostElement as ɵgetHostElement, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, getTransferState as ɵgetTransferState, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, inferTagNameFromDefinition as ɵinferTagNameFromDefinition, internalCreateApplication as ɵinternalCreateApplication, internalProvideZoneChangeDetection as ɵinternalProvideZoneChangeDetection, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, isViewDirty as ɵisViewDirty, markForRefresh as ɵmarkForRefresh, 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, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, 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, withDomHydration as ɵwithDomHydration, withEventReplay as ɵwithEventReplay, withI18nSupport as ɵwithI18nSupport, withIncrementalHydration as ɵwithIncrementalHydration, ɵɵAnimationsFeature, ɵɵCopyDefinitionFeature, ɵɵExternalStylesFeature, __FactoryDeclaration as ɵɵFactoryDeclaration, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, __InjectableDeclaration as ɵɵInjectableDeclaration, __InjectorDeclaration as ɵɵInjectorDeclaration, __NgModuleDeclaration as ɵɵNgModuleDeclaration, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵanimateEnter, ɵɵanimateEnterListener, ɵɵanimateLeave, ɵɵanimateLeaveListener, ɵɵariaProperty, ɵɵattachSourceLocations, ɵɵattribute, ɵɵclassMap, ɵɵclassProp, ɵɵcomponentInstance, ɵɵconditional, ɵɵconditionalBranchCreate, ɵɵconditionalCreate, ɵɵ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, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵdomElement, ɵɵdomElementContainer, ɵɵdomElementContainerEnd, ɵɵdomElementContainerStart, ɵɵdomElementEnd, ɵɵdomElementStart, ɵɵdomListener, ɵɵdomProperty, ɵɵdomTemplate, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵgetReplaceMetadataURL, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinterpolate, ɵɵinterpolate1, ɵɵinterpolate2, ɵɵinterpolate3, ɵɵinterpolate4, ɵɵinterpolate5, ɵɵinterpolate6, ɵɵinterpolate7, ɵɵinterpolate8, ɵɵinterpolateV, ɵɵ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, ɵɵ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, ɵɵstyleProp, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
9479
- export type { AfterContentChecked, AfterContentInit, AfterRenderOptions, AfterViewChecked, AfterViewInit, AnimationCallbackEvent, AnimationFunction, ApplicationConfig, AttributeDecorator, ComponentMirror, ContentChildDecorator, ContentChildFunction, ContentChildrenDecorator, CreateComputedOptions, DoBootstrap, DoCheck, ForwardRefFn, GetTestability, HostDecorator, ImportProvidersSource, InjectDecorator, InjectableDecorator, InjectableProvider, InputFunction, InputOptions, InputOptionsWithTransform, InputOptionsWithoutTransform, InputSignal, InputSignalWithTransform, IterableChangeRecord, IterableChanges, IterableDiffer, IterableDifferFactory, KeyValueChangeRecord, KeyValueChanges, KeyValueDiffer, KeyValueDifferFactory, ModelFunction, ModelOptions, ModelSignal, NgIterable, NgZoneOptions, OnChanges, OnDestroy, OnInit, OptionalDecorator, PipeTransform, SelfDecorator, SimpleChanges, SkipSelfDecorator, StateKey, TrackByFunction, ViewChildDecorator, ViewChildFunction, ViewChildrenDecorator, AcxComponentDebugMetadata as ɵAcxComponentDebugMetadata, AcxDirectiveDebugMetadata as ɵAcxDirectiveDebugMetadata, AngularComponentDebugMetadata as ɵAngularComponentDebugMetadata, AngularDirectiveDebugMetadata as ɵAngularDirectiveDebugMetadata, AnimationRemovalRegistry as ɵAnimationRemovalRegistry, BaseDirectiveDebugMetadata as ɵBaseDirectiveDebugMetadata, DeferBlockData as ɵDeferBlockData, DirectiveDebugMetadata as ɵDirectiveDebugMetadata, ɵFirstAvailable, ɵFirstAvailableSignal, FrameworkAgnosticGlobalUtils as ɵFrameworkAgnosticGlobalUtils, GlobalDevModeUtils as ɵGlobalDevModeUtils, HydratedNode as ɵHydratedNode, HydrationInfo as ɵHydrationInfo, ImageConfig as ɵImageConfig, InjectorProfilerContext as ɵInjectorProfilerContext, NgModuleDef as ɵNgModuleDef, NgModuleTransitiveScopes as ɵNgModuleTransitiveScopes, NgModuleType as ɵNgModuleType, Profiler as ɵProfiler, ProviderRecord as ɵProviderRecord, SafeHtml as ɵSafeHtml, SafeResourceUrl as ɵSafeResourceUrl, SafeScript as ɵSafeScript, SafeStyle as ɵSafeStyle, SafeUrl as ɵSafeUrl, SafeValue as ɵSafeValue, ɵUnwrapDirectiveSignalInputs, WizComponentDebugMetadata as ɵWizComponentDebugMetadata };
9406
+ export { ANIMATION_MODULE_TYPE, APP_ID, APP_INITIALIZER, AfterRenderRef, AnimationFunction, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, Binding, CSP_NONCE, ChangeDetectionStrategy$1 as ChangeDetectionStrategy, ChangeDetectorRef, ClassProvider, ClassSansProvider, CompilerOptions, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ConstructorProvider, ConstructorSansProvider, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DOCUMENT, DefaultIterableDiffer, Directive, ENVIRONMENT_INITIALIZER, EffectCleanupRegisterFn, ElementRef, EmbeddedViewRef, EnvironmentInjector, EnvironmentProviders, ErrorHandler, ExistingProvider, ExistingSansProvider, FactoryProvider, FactorySansProvider, HOST_TAG_NAME, Host, HostAttributeToken, INJECTOR, Inject, InjectOptions, Injectable, InjectionToken, Injector, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithProviders, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgZone, Optional, OutputRef, PLATFORM_ID, PLATFORM_INITIALIZER, PendingTasks, Pipe, PlatformRef, Provider, ProviderToken, Query, QueryList, REQUEST, REQUEST_CONTEXT, RESPONSE_INIT, Resource, ResourceOptions, ResourceRef, ResourceStatus, ResourceStreamingLoader, SchemaMetadata, Self, Signal, SimpleChange, SkipSelf, StaticClassProvider, StaticClassSansProvider, StaticProvider, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type$1 as Type, TypeDecorator, TypeProvider, VERSION, ValueEqualityFn, ValueProvider, ValueSansProvider, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef$1 as ViewRef, WritableResource, WritableSignal, afterEveryRender, afterNextRender, afterRenderEffect, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, contentChild, contentChildren, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, destroyPlatform, enableProdMode, enableProfiling$1 as enableProfiling, forwardRef, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, linkedSignal, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, platformCore, provideAppInitializer, provideBrowserGlobalErrorListeners, provideCheckNoChangesConfig, provideEnvironmentInitializer, provideNgReflectAttributes, providePlatformInitializer, provideZoneChangeDetection, provideZonelessChangeDetection, reflectComponentType, resolveForwardRef, resource, runInInjectionContext, setTestabilityGetter, untracked, viewChild, viewChildren, AcxChangeDetectionStrategy as ɵAcxChangeDetectionStrategy, AcxViewEncapsulation as ɵAcxViewEncapsulation, BypassType as ɵBypassType, CLIENT_RENDER_MODE_FLAG as ɵCLIENT_RENDER_MODE_FLAG, ɵCONTROL, ComponentDef as ɵComponentDef, ComponentFactory$1 as ɵComponentFactory, ComponentType as ɵComponentType, Console as ɵConsole, CssSelectorList as ɵCssSelectorList, CurrencyIndex as ɵCurrencyIndex, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DEHYDRATED_BLOCK_REGISTRY as ɵDEHYDRATED_BLOCK_REGISTRY, DeferBlockConfig as ɵDeferBlockConfig, DeferBlockDependencyInterceptor as ɵDeferBlockDependencyInterceptor, DeferBlockState as ɵDeferBlockState, DirectiveDef as ɵDirectiveDef, DirectiveType as ɵDirectiveType, ENABLE_ROOT_COMPONENT_BOOTSTRAP as ɵENABLE_ROOT_COMPONENT_BOOTSTRAP, ExtraLocaleDataIndex as ɵExtraLocaleDataIndex, Framework as ɵFramework, HydrationStatus as ɵHydrationStatus, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, INTERNAL_APPLICATION_ERROR_HANDLER as ɵINTERNAL_APPLICATION_ERROR_HANDLER, IS_ENABLED_BLOCKING_INITIAL_NAVIGATION as ɵIS_ENABLED_BLOCKING_INITIAL_NAVIGATION, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, IS_INCREMENTAL_HYDRATION_ENABLED as ɵIS_INCREMENTAL_HYDRATION_ENABLED, InputSignalNode as ɵInputSignalNode, JSACTION_BLOCK_ELEMENT_MAP as ɵJSACTION_BLOCK_ELEMENT_MAP, LContext as ɵLContext, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, PERFORMANCE_MARK_PREFIX as ɵPERFORMANCE_MARK_PREFIX, PROVIDED_NG_ZONE as ɵPROVIDED_NG_ZONE, PendingTasksInternal as ɵPendingTasksInternal, ProfilerEvent as ɵProfilerEvent, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, ResourceImpl as ɵResourceImpl, RuntimeError as ɵRuntimeError, RuntimeErrorCode as ɵRuntimeErrorCode, SIGNAL as ɵSIGNAL, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, TimerScheduler as ɵTimerScheduler, ViewRef as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allLeavingAnimations as ɵallLeavingAnimations, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, ɵassertType, 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, createOrReusePlatformInjector as ɵcreateOrReusePlatformInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, depsTracker as ɵdepsTracker, devModeEqual as ɵdevModeEqual, disableProfiling as ɵdisableProfiling, enableProfiling as ɵenableProfiling, encapsulateResourceError as ɵencapsulateResourceError, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getClosestComponentName as ɵgetClosestComponentName, getComponentDef as ɵgetComponentDef, getDirectives as ɵgetDirectives, getDocument as ɵgetDocument, getHostElement as ɵgetHostElement, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, getTransferState as ɵgetTransferState, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, inferTagNameFromDefinition as ɵinferTagNameFromDefinition, internalCreateApplication as ɵinternalCreateApplication, internalProvideZoneChangeDetection as ɵinternalProvideZoneChangeDetection, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, isViewDirty as ɵisViewDirty, markForRefresh as ɵmarkForRefresh, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, provideZonelessChangeDetectionInternal as ɵprovideZonelessChangeDetectionInternal, publishExternalGlobalUtil as ɵpublishExternalGlobalUtil, readHydrationInfo as ɵreadHydrationInfo, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetIncrementalHydrationEnabledWarnedForTests as ɵresetIncrementalHydrationEnabledWarnedForTests, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, 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, withDomHydration as ɵwithDomHydration, withEventReplay as ɵwithEventReplay, withI18nSupport as ɵwithI18nSupport, withIncrementalHydration as ɵwithIncrementalHydration, ɵɵCopyDefinitionFeature, ɵɵExternalStylesFeature, __FactoryDeclaration as ɵɵFactoryDeclaration, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, __InjectableDeclaration as ɵɵInjectableDeclaration, __InjectorDeclaration as ɵɵInjectorDeclaration, __NgModuleDeclaration as ɵɵNgModuleDeclaration, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵanimateEnter, ɵɵanimateEnterListener, ɵɵanimateLeave, ɵɵanimateLeaveListener, ɵɵariaProperty, ɵɵattachSourceLocations, ɵɵattribute, ɵɵclassMap, ɵɵclassProp, ɵɵcomponentInstance, ɵɵconditional, ɵɵconditionalBranchCreate, ɵɵconditionalCreate, ɵɵcontentQuery, ɵɵcontentQuerySignal, ɵɵcontrol, ɵɵcontrolCreate, ɵɵ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, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵdomElement, ɵɵdomElementContainer, ɵɵdomElementContainerEnd, ɵɵdomElementContainerStart, ɵɵdomElementEnd, ɵɵdomElementStart, ɵɵdomListener, ɵɵdomProperty, ɵɵdomTemplate, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵgetReplaceMetadataURL, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinterpolate, ɵɵinterpolate1, ɵɵinterpolate2, ɵɵinterpolate3, ɵɵinterpolate4, ɵɵinterpolate5, ɵɵinterpolate6, ɵɵinterpolate7, ɵɵinterpolate8, ɵɵinterpolateV, ɵɵ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, ɵɵ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, ɵɵstyleProp, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
9407
+ export type { AfterContentChecked, AfterContentInit, AfterRenderOptions, AfterViewChecked, AfterViewInit, ApplicationConfig, AttributeDecorator, ComponentMirror, ContentChildDecorator, ContentChildFunction, ContentChildrenDecorator, CreateComputedOptions, DoBootstrap, DoCheck, ForwardRefFn, GetTestability, HostDecorator, ImportProvidersSource, InjectDecorator, InjectableDecorator, InjectableProvider, InputFunction, InputOptions, InputOptionsWithTransform, InputOptionsWithoutTransform, InputSignal, InputSignalWithTransform, IterableChangeRecord, IterableChanges, IterableDiffer, IterableDifferFactory, KeyValueChangeRecord, KeyValueChanges, KeyValueDiffer, KeyValueDifferFactory, ModelFunction, ModelOptions, ModelSignal, NgIterable, NgZoneOptions, OnChanges, OnDestroy, OnInit, OptionalDecorator, PipeTransform, SelfDecorator, SimpleChanges, SkipSelfDecorator, StateKey, TrackByFunction, ViewChildDecorator, ViewChildFunction, ViewChildrenDecorator, AcxComponentDebugMetadata as ɵAcxComponentDebugMetadata, AcxDirectiveDebugMetadata as ɵAcxDirectiveDebugMetadata, AngularComponentDebugMetadata as ɵAngularComponentDebugMetadata, AngularDirectiveDebugMetadata as ɵAngularDirectiveDebugMetadata, BaseDirectiveDebugMetadata as ɵBaseDirectiveDebugMetadata, ɵControl, DeferBlockData as ɵDeferBlockData, DirectiveDebugMetadata as ɵDirectiveDebugMetadata, ɵFieldState, ɵFirstAvailable, ɵFirstAvailableSignal, FrameworkAgnosticGlobalUtils as ɵFrameworkAgnosticGlobalUtils, GlobalDevModeUtils as ɵGlobalDevModeUtils, HydratedNode as ɵHydratedNode, HydrationInfo as ɵHydrationInfo, ImageConfig as ɵImageConfig, InjectorProfilerContext as ɵInjectorProfilerContext, NgModuleDef as ɵNgModuleDef, NgModuleTransitiveScopes as ɵNgModuleTransitiveScopes, NgModuleType as ɵNgModuleType, Profiler as ɵProfiler, ProviderRecord as ɵProviderRecord, SafeHtml as ɵSafeHtml, SafeResourceUrl as ɵSafeResourceUrl, SafeScript as ɵSafeScript, SafeStyle as ɵSafeStyle, SafeUrl as ɵSafeUrl, SafeValue as ɵSafeValue, ɵUnwrapDirectiveSignalInputs, WizComponentDebugMetadata as ɵWizComponentDebugMetadata };