@angular/core 19.1.0-next.1 → 19.1.0-next.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/fesm2022/core.mjs +274 -96
  2. package/fesm2022/core.mjs.map +1 -1
  3. package/fesm2022/primitives/event-dispatch.mjs +1 -1
  4. package/fesm2022/primitives/signals.mjs +1 -1
  5. package/fesm2022/rxjs-interop.mjs +1 -1
  6. package/fesm2022/testing.mjs +10 -10
  7. package/fesm2022/testing.mjs.map +1 -1
  8. package/index.d.ts +174 -122
  9. package/package.json +1 -1
  10. package/primitives/event-dispatch/index.d.ts +1 -1
  11. package/primitives/signals/index.d.ts +1 -1
  12. package/rxjs-interop/index.d.ts +1 -1
  13. package/schematics/bundles/{checker-a00b735e.js → checker-228cb8a8.js} +143 -40
  14. package/schematics/bundles/{combine_units-4983dfd3.js → combine_units-5d6a7099.js} +3 -3
  15. package/schematics/bundles/{compiler_host-3e96c3f7.js → compiler_host-fc806dbe.js} +2 -2
  16. package/schematics/bundles/control-flow-migration.js +3 -3
  17. package/schematics/bundles/explicit-standalone-flag.js +5 -5
  18. package/schematics/bundles/{imports-44987700.js → imports-abe29092.js} +2 -2
  19. package/schematics/bundles/inject-migration.js +10 -10
  20. package/schematics/bundles/{leading_space-6e7a8ec6.js → leading_space-d190b83b.js} +1 -1
  21. package/schematics/bundles/{migrate_ts_type_references-58326be5.js → migrate_ts_type_references-d02c6750.js} +9 -9
  22. package/schematics/bundles/{nodes-b12e919a.js → nodes-a9f0b985.js} +2 -2
  23. package/schematics/bundles/output-migration.js +5 -5
  24. package/schematics/bundles/pending-tasks.js +5 -5
  25. package/schematics/bundles/{program-37562cc3.js → program-1591ec8f.js} +31 -24
  26. package/schematics/bundles/{project_tsconfig_paths-6c9cde78.js → project_tsconfig_paths-e9ccccbf.js} +1 -1
  27. package/schematics/bundles/provide-initializer.js +5 -5
  28. package/schematics/bundles/route-lazy-loading.js +4 -4
  29. package/schematics/bundles/signal-input-migration.js +8 -8
  30. package/schematics/bundles/signal-queries-migration.js +7 -7
  31. package/schematics/bundles/signals.js +7 -7
  32. package/schematics/bundles/standalone-migration.js +8 -8
  33. package/testing/index.d.ts +5 -5
package/fesm2022/core.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.1.0-next.1
2
+ * @license Angular v19.1.0-next.3
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -28,7 +28,7 @@ const XSS_SECURITY_URL = 'https://g.co/ng/security#xss';
28
28
  * Formats and outputs the error message in a consistent way.
29
29
  *
30
30
  * Example:
31
- * ```
31
+ * ```ts
32
32
  * throw new RuntimeError(
33
33
  * RuntimeErrorCode.INJECTOR_ALREADY_DESTROYED,
34
34
  * ngDevMode && 'Injector has already been destroyed.');
@@ -415,7 +415,7 @@ const __forward_ref__ = getClosureSafeProperty({ __forward_ref__: getClosureSafe
415
415
  * {@example core/di/ts/forward_ref/forward_ref_spec.ts region='forward_ref'}
416
416
  *
417
417
  * ### Circular standalone reference import example
418
- * ```ts
418
+ * ```angular-ts
419
419
  * @Component({
420
420
  * standalone: true,
421
421
  * imports: [ChildComponent],
@@ -699,8 +699,7 @@ const NG_INJECTOR_DEF = getClosureSafeProperty({ ngInjectorDef: getClosureSafePr
699
699
  *
700
700
  * </div>
701
701
  *
702
- * <code-example format="typescript" language="typescript" path="injection-token/src/main.ts"
703
- * region="InjectionToken"></code-example>
702
+ * {@example injection-token/src/main.ts region='InjectionToken'}
704
703
  *
705
704
  * When creating an `InjectionToken`, you can optionally specify a factory function which returns
706
705
  * (possibly by creating) a default value of the parameterized type `T`. This sets up the
@@ -868,6 +867,14 @@ function emitInjectEvent(token, value, flags) {
868
867
  service: { token, value, flags },
869
868
  });
870
869
  }
870
+ function emitEffectCreatedEvent(effect) {
871
+ !ngDevMode && throwError('Injector profiler should never be called in production mode');
872
+ injectorProfiler({
873
+ type: 3 /* InjectorProfilerEventType.EffectCreated */,
874
+ context: getInjectorProfilerContext(),
875
+ effect,
876
+ });
877
+ }
871
878
  function runInInjectorProfilerContext(injector, token, callback) {
872
879
  !ngDevMode &&
873
880
  throwError('runInInjectorProfilerContext should never be called in production mode');
@@ -1154,7 +1161,7 @@ Please check that 1) the type for the parameter at index ${index} is correct and
1154
1161
  * In practice the `inject()` calls are allowed in a constructor, a constructor parameter and a
1155
1162
  * field initializer:
1156
1163
  *
1157
- * ```typescript
1164
+ * ```ts
1158
1165
  * @Injectable({providedIn: 'root'})
1159
1166
  * export class Car {
1160
1167
  * radio: Radio|undefined;
@@ -1170,7 +1177,7 @@ Please check that 1) the type for the parameter at index ${index} is correct and
1170
1177
  *
1171
1178
  * It is also legal to call `inject` from a provider's factory:
1172
1179
  *
1173
- * ```typescript
1180
+ * ```ts
1174
1181
  * providers: [
1175
1182
  * {provide: Car, useFactory: () => {
1176
1183
  * // OK: a class factory
@@ -1184,7 +1191,7 @@ Please check that 1) the type for the parameter at index ${index} is correct and
1184
1191
  * notably, calls to `inject()` are disallowed after a class instance was created, in methods
1185
1192
  * (including lifecycle hooks):
1186
1193
  *
1187
- * ```typescript
1194
+ * ```ts
1188
1195
  * @Component({ ... })
1189
1196
  * export class CarComponent {
1190
1197
  * ngOnInit() {
@@ -1734,7 +1741,7 @@ function makeEnvironmentProviders(providers) {
1734
1741
  * @usageNotes
1735
1742
  * The following example illustrates how to configure an initialization function using
1736
1743
  * `provideEnvironmentInitializer()`
1737
- * ```
1744
+ * ```ts
1738
1745
  * createEnvironmentInjector(
1739
1746
  * [
1740
1747
  * provideEnvironmentInitializer(() => {
@@ -1770,7 +1777,7 @@ function provideEnvironmentInitializer(initializerFn) {
1770
1777
  * @usageNotes
1771
1778
  * The results of the `importProvidersFrom` call can be used in the `bootstrapApplication` call:
1772
1779
  *
1773
- * ```typescript
1780
+ * ```ts
1774
1781
  * await bootstrapApplication(RootComponent, {
1775
1782
  * providers: [
1776
1783
  * importProvidersFrom(NgModuleOne, NgModuleTwo)
@@ -1781,7 +1788,7 @@ function provideEnvironmentInitializer(initializerFn) {
1781
1788
  * You can also use the `importProvidersFrom` results in the `providers` field of a route, when a
1782
1789
  * standalone component is used:
1783
1790
  *
1784
- * ```typescript
1791
+ * ```ts
1785
1792
  * export const ROUTES: Route[] = [
1786
1793
  * {
1787
1794
  * path: 'foo',
@@ -2622,19 +2629,19 @@ function isType(v) {
2622
2629
  * it intends to capture the pattern where existing constructors have been downleveled from
2623
2630
  * ES2015 to ES5 using TypeScript w/ downlevel iteration. e.g.
2624
2631
  *
2625
- * ```
2632
+ * ```ts
2626
2633
  * function MyClass() {
2627
2634
  * var _this = _super.apply(this, arguments) || this;
2628
2635
  * ```
2629
2636
  *
2630
2637
  * downleveled to ES5 with `downlevelIteration` for TypeScript < 4.2:
2631
- * ```
2638
+ * ```ts
2632
2639
  * function MyClass() {
2633
2640
  * var _this = _super.apply(this, __spread(arguments)) || this;
2634
2641
  * ```
2635
2642
  *
2636
2643
  * or downleveled to ES5 with `downlevelIteration` for TypeScript >= 4.2:
2637
- * ```
2644
+ * ```ts
2638
2645
  * function MyClass() {
2639
2646
  * var _this = _super.apply(this, __spreadArray([], __read(arguments), false)) || this;
2640
2647
  * ```
@@ -3152,7 +3159,7 @@ function applyValueToInputField(instance, inputSignalNode, privateName, value) {
3152
3159
  *
3153
3160
  * Example usage:
3154
3161
  *
3155
- * ```
3162
+ * ```ts
3156
3163
  * static ɵcmp = defineComponent({
3157
3164
  * ...
3158
3165
  * inputs: {name: 'publicName'},
@@ -3552,7 +3559,7 @@ function isSkipHydrationRootTNode(tNode) {
3552
3559
  * Enables directive matching on elements.
3553
3560
  *
3554
3561
  * * Example:
3555
- * ```
3562
+ * ```html
3556
3563
  * <my-comp my-directive>
3557
3564
  * Should match component / directive.
3558
3565
  * </my-comp>
@@ -3581,7 +3588,7 @@ function enterSkipHydrationBlock(tNode) {
3581
3588
  * Disables directive matching on element.
3582
3589
  *
3583
3590
  * * Example:
3584
- * ```
3591
+ * ```html
3585
3592
  * <my-comp my-directive>
3586
3593
  * Should match component / directive.
3587
3594
  * </my-comp>
@@ -4508,11 +4515,11 @@ function isLetDeclaration(tNode) {
4508
4515
  /**
4509
4516
  * Returns `true` if the `TNode` has a directive which has `@Input()` for `class` binding.
4510
4517
  *
4511
- * ```
4518
+ * ```html
4512
4519
  * <div my-dir [class]="exp"></div>
4513
4520
  * ```
4514
4521
  * and
4515
- * ```
4522
+ * ```ts
4516
4523
  * @Directive({
4517
4524
  * })
4518
4525
  * class MyDirective {
@@ -4532,11 +4539,11 @@ function hasClassInput(tNode) {
4532
4539
  /**
4533
4540
  * Returns `true` if the `TNode` has a directive which has `@Input()` for `style` binding.
4534
4541
  *
4535
- * ```
4542
+ * ```html
4536
4543
  * <div my-dir [style]="exp"></div>
4537
4544
  * ```
4538
4545
  * and
4539
- * ```
4546
+ * ```ts
4540
4547
  * @Directive({
4541
4548
  * })
4542
4549
  * class MyDirective {
@@ -4878,7 +4885,7 @@ function isRouterOutletInjector(currentInjector) {
4878
4885
  *
4879
4886
  * Example:
4880
4887
  *
4881
- * ```
4888
+ * ```ts
4882
4889
  * @Injectable()
4883
4890
  * class MyService {
4884
4891
  * constructor(public value: String) {}
@@ -5076,19 +5083,19 @@ function diPublicInInjector(injectorIndex, tView, token) {
5076
5083
  *
5077
5084
  * # Example
5078
5085
  * Given:
5079
- * ```
5086
+ * ```ts
5080
5087
  * @Component(...)
5081
5088
  * class MyComponent {
5082
5089
  * constructor(@Attribute('title') title: string) { ... }
5083
5090
  * }
5084
5091
  * ```
5085
5092
  * When instantiated with
5086
- * ```
5093
+ * ```html
5087
5094
  * <my-component title="Hello"></my-component>
5088
5095
  * ```
5089
5096
  *
5090
5097
  * Then factory method generated is:
5091
- * ```
5098
+ * ```ts
5092
5099
  * MyComponent.ɵcmp = defineComponent({
5093
5100
  * factory: () => new MyComponent(injectAttribute('title'))
5094
5101
  * ...
@@ -5896,7 +5903,7 @@ class Injector {
5896
5903
  *
5897
5904
  * @usageNotes
5898
5905
  * ### Injecting an attribute that is known to exist
5899
- * ```typescript
5906
+ * ```ts
5900
5907
  * @Directive()
5901
5908
  * class MyDir {
5902
5909
  * attr: string = inject(new HostAttributeToken('some-attr'));
@@ -5904,7 +5911,7 @@ class Injector {
5904
5911
  * ```
5905
5912
  *
5906
5913
  * ### Optionally injecting an attribute
5907
- * ```typescript
5914
+ * ```ts
5908
5915
  * @Directive()
5909
5916
  * class MyDir {
5910
5917
  * attr: string | null = inject(new HostAttributeToken('some-attr'), {optional: true});
@@ -5929,7 +5936,7 @@ class HostAttributeToken {
5929
5936
  *
5930
5937
  * @usageNotes
5931
5938
  * ### Injecting a tag name that is known to exist
5932
- * ```typescript
5939
+ * ```ts
5933
5940
  * @Directive()
5934
5941
  * class MyDir {
5935
5942
  * tagName: string = inject(HOST_TAG_NAME);
@@ -5937,7 +5944,7 @@ class HostAttributeToken {
5937
5944
  * ```
5938
5945
  *
5939
5946
  * ### Optionally injecting a tag name
5940
- * ```typescript
5947
+ * ```ts
5941
5948
  * @Directive()
5942
5949
  * class MyDir {
5943
5950
  * tagName: string | null = inject(HOST_TAG_NAME, {optional: true});
@@ -6106,7 +6113,7 @@ class PendingTasksInternal {
6106
6113
  * - tests might want to delay assertions until the application becomes stable;
6107
6114
  *
6108
6115
  * @usageNotes
6109
- * ```typescript
6116
+ * ```ts
6110
6117
  * const pendingTasks = inject(PendingTasks);
6111
6118
  * const taskCleanup = pendingTasks.add();
6112
6119
  * // do work that should block application's stability and then:
@@ -6350,7 +6357,7 @@ let ngZoneInstanceId = 0;
6350
6357
  * @usageNotes
6351
6358
  * ### Example
6352
6359
  *
6353
- * ```
6360
+ * ```ts
6354
6361
  * import {Component, NgZone} from '@angular/core';
6355
6362
  * import {NgIf} from '@angular/common';
6356
6363
  *
@@ -6784,7 +6791,7 @@ function getNgZone(ngZoneToUse = 'zone.js', options) {
6784
6791
  * @usageNotes
6785
6792
  * ### Example
6786
6793
  *
6787
- * ```
6794
+ * ```ts
6788
6795
  * class MyErrorHandler implements ErrorHandler {
6789
6796
  * handleError(error) {
6790
6797
  * // do something with the exception
@@ -6977,7 +6984,7 @@ function inputRequiredFunction(opts) {
6977
6984
  * @usageNotes
6978
6985
  * To use signal-based inputs, import `input` from `@angular/core`.
6979
6986
  *
6980
- * ```
6987
+ * ```ts
6981
6988
  * import {input} from '@angular/core`;
6982
6989
  * ```
6983
6990
  *
@@ -7098,7 +7105,7 @@ function symbolIterator() {
7098
7105
  *
7099
7106
  * @usageNotes
7100
7107
  * ### Example
7101
- * ```typescript
7108
+ * ```ts
7102
7109
  * @Component({...})
7103
7110
  * class Container {
7104
7111
  * @ViewChildren(Item) items:QueryList<Item>;
@@ -8227,7 +8234,7 @@ function getDocument() {
8227
8234
  * (for example, using `bootstrapApplication` calls). In this case, ensure that those applications
8228
8235
  * have different `APP_ID` value setup. For example:
8229
8236
  *
8230
- * ```
8237
+ * ```ts
8231
8238
  * bootstrapApplication(ComponentA, {
8232
8239
  * providers: [
8233
8240
  * { provide: APP_ID, useValue: 'app-a' },
@@ -8344,7 +8351,7 @@ const IMAGE_CONFIG = new InjectionToken(ngDevMode ? 'ImageConfig' : '', {
8344
8351
  *
8345
8352
  * Example:
8346
8353
  *
8347
- * ```
8354
+ * ```ts
8348
8355
  * const COUNTER_KEY = makeStateKey<number>('counter');
8349
8356
  * let value = 10;
8350
8357
  *
@@ -8741,7 +8748,7 @@ class AfterRenderImpl {
8741
8748
  }
8742
8749
  maybeTrace(fn, snapshot) {
8743
8750
  // Only trace the execution if the snapshot is defined.
8744
- return snapshot?.run(TracingAction.AFTER_NEXT_RENDER, fn) ?? fn();
8751
+ return snapshot ? snapshot.run(TracingAction.AFTER_NEXT_RENDER, fn) : fn();
8745
8752
  }
8746
8753
  /** @nocollapse */
8747
8754
  static ɵprov = /** @pureOrBreakMyCode */ /* @__PURE__ */ ɵɵdefineInjectable({
@@ -11004,7 +11011,7 @@ const COMMENT_DELIMITER_ESCAPED = '\u200B$1\u200B';
11004
11011
  *
11005
11012
  * see: https://html.spec.whatwg.org/multipage/syntax.html#comments
11006
11013
  *
11007
- * ```
11014
+ * ```ts
11008
11015
  * div.innerHTML = div.innerHTML
11009
11016
  * ```
11010
11017
  *
@@ -14390,7 +14397,7 @@ function renderComponent(hostLView, componentHostIdx) {
14390
14397
  * will be skipped. However, consider this case of two components side-by-side:
14391
14398
  *
14392
14399
  * App template:
14393
- * ```
14400
+ * ```html
14394
14401
  * <comp></comp>
14395
14402
  * <comp></comp>
14396
14403
  * ```
@@ -15241,7 +15248,7 @@ class ViewRef$1 {
15241
15248
  * @usageNotes
15242
15249
  * ### Example
15243
15250
  *
15244
- * ```typescript
15251
+ * ```ts
15245
15252
  * @Component({
15246
15253
  * selector: 'app-root',
15247
15254
  * template: `Number of ticks: {{numberOfTicks}}`
@@ -15285,7 +15292,7 @@ class ViewRef$1 {
15285
15292
  * we want to check and update the list every five seconds. We can do that by detaching
15286
15293
  * the component's change detector and doing a local check every five seconds.
15287
15294
  *
15288
- * ```typescript
15295
+ * ```ts
15289
15296
  * class DataProvider {
15290
15297
  * // in a real application the returned data will be different every time
15291
15298
  * get data() {
@@ -15337,7 +15344,7 @@ class ViewRef$1 {
15337
15344
  * its change detector from the main change detector tree when the component's live property
15338
15345
  * is set to false.
15339
15346
  *
15340
- * ```typescript
15347
+ * ```ts
15341
15348
  * class DataProvider {
15342
15349
  * data = 1;
15343
15350
  *
@@ -18081,7 +18088,7 @@ function createRootComponent(componentView, rootComponentDef, rootDirectives, ho
18081
18088
  function setRootNodeAttributes(hostRenderer, componentDef, hostRNode, rootSelectorOrNode) {
18082
18089
  if (rootSelectorOrNode) {
18083
18090
  // The placeholder will be replaced with the actual version at build time.
18084
- setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.1.0-next.1']);
18091
+ setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.1.0-next.3']);
18085
18092
  }
18086
18093
  else {
18087
18094
  // If host element is created as a part of this function call (i.e. `rootSelectorOrNode`
@@ -18118,7 +18125,7 @@ function projectNodes(tNode, ngContentSelectors, projectableNodes) {
18118
18125
  *
18119
18126
  * Example:
18120
18127
  *
18121
- * ```
18128
+ * ```ts
18122
18129
  * renderComponent(AppComponent, {hostFeatures: [LifecycleHooksFeature]});
18123
18130
  * ```
18124
18131
  */
@@ -18147,7 +18154,7 @@ function LifecycleHooksFeature() {
18147
18154
  * Note: the example uses standalone components, but the function can also be used for
18148
18155
  * non-standalone components (declared in an NgModule) as well.
18149
18156
  *
18150
- * ```typescript
18157
+ * ```angular-ts
18151
18158
  * @Component({
18152
18159
  * standalone: true,
18153
18160
  * selector: 'dynamic',
@@ -19147,7 +19154,7 @@ function viewChildRequiredFn(locator, opts) {
19147
19154
  * Create a child query in your component by declaring a
19148
19155
  * class field and initializing it with the `viewChild()` function.
19149
19156
  *
19150
- * ```ts
19157
+ * ```angular-ts
19151
19158
  * @Component({template: '<div #el></div><my-component #cmp />'})
19152
19159
  * export class TestComponent {
19153
19160
  * divEl = viewChild<ElementRef>('el'); // Signal<ElementRef|undefined>
@@ -19314,7 +19321,7 @@ function modelRequiredFunction(opts) {
19314
19321
  *
19315
19322
  * To use `model()`, import the function from `@angular/core`.
19316
19323
  *
19317
- * ```
19324
+ * ```ts
19318
19325
  * import {model} from '@angular/core`;
19319
19326
  * ```
19320
19327
  *
@@ -19435,7 +19442,7 @@ const ViewChild = makePropDecorator('ViewChild', (selector, opts) => ({
19435
19442
  * Used to resolve resource URLs on `@Component` when used with JIT compilation.
19436
19443
  *
19437
19444
  * Example:
19438
- * ```
19445
+ * ```ts
19439
19446
  * @Component({
19440
19447
  * selector: 'my-comp',
19441
19448
  * templateUrl: 'my-comp.html', // This requires asynchronous resolution
@@ -19838,7 +19845,7 @@ class StandaloneService {
19838
19845
  *
19839
19846
  *
19840
19847
  * # Example
19841
- * ```
19848
+ * ```ts
19842
19849
  * class MyComponent {
19843
19850
  * // Generated by Angular Template Compiler
19844
19851
  * // [Symbol] syntax will not be supported by TypeScript until v2.7
@@ -19977,7 +19984,7 @@ function ɵɵdefineDirective(directiveDefinition) {
19977
19984
  * Create a pipe definition object.
19978
19985
  *
19979
19986
  * # Example
19980
- * ```
19987
+ * ```ts
19981
19988
  * class MyPipe implements PipeTransform {
19982
19989
  * // Generated by Angular Template Compiler
19983
19990
  * static ɵpipe = definePipe({
@@ -21624,6 +21631,7 @@ class Console {
21624
21631
  class DIDebugData {
21625
21632
  resolverToTokenToDependencies = new WeakMap();
21626
21633
  resolverToProviders = new WeakMap();
21634
+ resolverToEffects = new WeakMap();
21627
21635
  standaloneInjectorToComponent = new WeakMap();
21628
21636
  reset() {
21629
21637
  this.resolverToTokenToDependencies = new WeakMap();
@@ -21662,6 +21670,20 @@ function handleInjectorProfilerEvent(injectorProfilerEvent) {
21662
21670
  else if (type === 2 /* InjectorProfilerEventType.ProviderConfigured */) {
21663
21671
  handleProviderConfiguredEvent(context, injectorProfilerEvent.providerRecord);
21664
21672
  }
21673
+ else if (type === 3 /* InjectorProfilerEventType.EffectCreated */) {
21674
+ handleEffectCreatedEvent(context, injectorProfilerEvent.effect);
21675
+ }
21676
+ }
21677
+ function handleEffectCreatedEvent(context, effect) {
21678
+ const diResolver = getDIResolver(context.injector);
21679
+ if (diResolver === null) {
21680
+ throwError('An EffectCreated event must be run within an injection context.');
21681
+ }
21682
+ const { resolverToEffects } = frameworkDIDebugData;
21683
+ if (!resolverToEffects.has(diResolver)) {
21684
+ resolverToEffects.set(diResolver, []);
21685
+ }
21686
+ resolverToEffects.get(diResolver).push(effect);
21665
21687
  }
21666
21688
  /**
21667
21689
  *
@@ -22392,6 +22414,118 @@ function getModuleInjectorOfNodeInjector(injector) {
22392
22414
  return moduleInjector;
22393
22415
  }
22394
22416
 
22417
+ function isComputedNode(node) {
22418
+ return node.kind === 'computed';
22419
+ }
22420
+ function isTemplateEffectNode(node) {
22421
+ return node.kind === 'template';
22422
+ }
22423
+ function isEffectNode(node) {
22424
+ return node.kind === 'effect';
22425
+ }
22426
+ function isSignalNode(node) {
22427
+ return node.kind === 'signal';
22428
+ }
22429
+ /**
22430
+ *
22431
+ * @param injector
22432
+ * @returns Template consumer of given NodeInjector
22433
+ */
22434
+ function getTemplateConsumer(injector) {
22435
+ const tNode = getNodeInjectorTNode(injector);
22436
+ assertTNode(tNode);
22437
+ const lView = getNodeInjectorLView(injector);
22438
+ assertLView(lView);
22439
+ const templateLView = lView[tNode.index];
22440
+ assertLView(templateLView);
22441
+ return templateLView[REACTIVE_TEMPLATE_CONSUMER];
22442
+ }
22443
+ function getNodesAndEdgesFromSignalMap(signalMap) {
22444
+ const nodes = Array.from(signalMap.keys());
22445
+ const debugSignalGraphNodes = [];
22446
+ const edges = [];
22447
+ for (const [consumer, producers] of signalMap.entries()) {
22448
+ const consumerIndex = nodes.indexOf(consumer);
22449
+ // collect node
22450
+ if (isComputedNode(consumer) || isSignalNode(consumer)) {
22451
+ debugSignalGraphNodes.push({
22452
+ label: consumer.debugName,
22453
+ value: consumer.value,
22454
+ kind: consumer.kind,
22455
+ });
22456
+ }
22457
+ else if (isTemplateEffectNode(consumer)) {
22458
+ debugSignalGraphNodes.push({
22459
+ label: consumer.debugName ?? consumer.lView?.[HOST]?.tagName?.toLowerCase?.(),
22460
+ kind: consumer.kind,
22461
+ });
22462
+ }
22463
+ else if (isEffectNode(consumer)) {
22464
+ debugSignalGraphNodes.push({
22465
+ label: consumer.debugName,
22466
+ kind: consumer.kind,
22467
+ });
22468
+ }
22469
+ else {
22470
+ debugSignalGraphNodes.push({
22471
+ label: consumer.debugName,
22472
+ kind: consumer.kind,
22473
+ });
22474
+ }
22475
+ // collect edges for node
22476
+ for (const producer of producers) {
22477
+ edges.push({ consumer: consumerIndex, producer: nodes.indexOf(producer) });
22478
+ }
22479
+ }
22480
+ return { nodes: debugSignalGraphNodes, edges };
22481
+ }
22482
+ function extractEffectsFromInjector(injector) {
22483
+ let diResolver = injector;
22484
+ if (injector instanceof NodeInjector) {
22485
+ const lView = getNodeInjectorLView(injector);
22486
+ diResolver = lView;
22487
+ }
22488
+ const resolverToEffects = getFrameworkDIDebugData().resolverToEffects;
22489
+ const effects = resolverToEffects.get(diResolver) ?? [];
22490
+ return effects.map((effect) => effect[SIGNAL$1]);
22491
+ }
22492
+ function extractSignalNodesAndEdgesFromRoots(nodes, signalDependenciesMap = new Map()) {
22493
+ for (const node of nodes) {
22494
+ if (signalDependenciesMap.has(node)) {
22495
+ continue;
22496
+ }
22497
+ const producerNodes = (node.producerNode ?? []);
22498
+ signalDependenciesMap.set(node, producerNodes);
22499
+ extractSignalNodesAndEdgesFromRoots(producerNodes, signalDependenciesMap);
22500
+ }
22501
+ return signalDependenciesMap;
22502
+ }
22503
+ /**
22504
+ * Returns a debug representation of the signal graph for the given injector.
22505
+ *
22506
+ * Currently only supports element injectors. Starts by discovering the consumer nodes
22507
+ * and then traverses their producer nodes to build the signal graph.
22508
+ *
22509
+ * @param injector The injector to get the signal graph for.
22510
+ * @returns A debug representation of the signal graph.
22511
+ * @throws If the injector is an environment injector.
22512
+ */
22513
+ function getSignalGraph(injector) {
22514
+ let templateConsumer = null;
22515
+ if (!(injector instanceof NodeInjector) && !(injector instanceof R3Injector)) {
22516
+ return throwError('getSignalGraph must be called with a NodeInjector or R3Injector');
22517
+ }
22518
+ if (injector instanceof NodeInjector) {
22519
+ templateConsumer = getTemplateConsumer(injector);
22520
+ }
22521
+ const nonTemplateEffectNodes = extractEffectsFromInjector(injector);
22522
+ const signalNodes = templateConsumer
22523
+ ? [templateConsumer, ...nonTemplateEffectNodes]
22524
+ : nonTemplateEffectNodes;
22525
+ const signalDependenciesMap = extractSignalNodesAndEdgesFromRoots(signalNodes);
22526
+ return getNodesAndEdgesFromSignalMap(signalDependenciesMap);
22527
+ }
22528
+
22395
22529
  /**
22396
22530
  * This file introduces series of globally accessible debug tools
22397
22531
  * to allow for the Angular debugging story to function.
@@ -22418,6 +22552,7 @@ const globalUtilsFunctions = {
22418
22552
  'ɵgetInjectorResolutionPath': getInjectorResolutionPath,
22419
22553
  'ɵgetInjectorMetadata': getInjectorMetadata,
22420
22554
  'ɵsetProfiler': setProfiler,
22555
+ 'ɵgetSignalGraph': getSignalGraph,
22421
22556
  'getDirectiveMetadata': getDirectiveMetadata$1,
22422
22557
  'getComponent': getComponent,
22423
22558
  'getContext': getContext,
@@ -22502,7 +22637,7 @@ const TESTABILITY_GETTER = new InjectionToken('');
22502
22637
  * providers using the `provideProtractorTestingSupport()` function and adding them into the
22503
22638
  * `options.providers` array. Example:
22504
22639
  *
22505
- * ```typescript
22640
+ * ```ts
22506
22641
  * import {provideProtractorTestingSupport} from '@angular/platform-browser';
22507
22642
  *
22508
22643
  * await bootstrapApplication(RootComponent, providers: [provideProtractorTestingSupport()]);
@@ -22772,7 +22907,7 @@ function isSubscribable(obj) {
22772
22907
  * The following example illustrates how to configure a multi-provider using `APP_INITIALIZER` token
22773
22908
  * and a function returning a promise.
22774
22909
  * ### Example with NgModule-based application
22775
- * ```
22910
+ * ```ts
22776
22911
  * function initializeApp(): Promise<any> {
22777
22912
  * const http = inject(HttpClient);
22778
22913
  * return firstValueFrom(
@@ -22796,7 +22931,7 @@ function isSubscribable(obj) {
22796
22931
  * ```
22797
22932
  *
22798
22933
  * ### Example with standalone application
22799
- * ```
22934
+ * ```ts
22800
22935
  * function initializeApp() {
22801
22936
  * const http = inject(HttpClient);
22802
22937
  * return firstValueFrom(
@@ -22826,7 +22961,7 @@ function isSubscribable(obj) {
22826
22961
  * through DI.
22827
22962
  *
22828
22963
  * ### Example with NgModule-based application
22829
- * ```
22964
+ * ```ts
22830
22965
  * function initializeApp() {
22831
22966
  * const http = inject(HttpClient);
22832
22967
  * return firstValueFrom(
@@ -22850,7 +22985,7 @@ function isSubscribable(obj) {
22850
22985
  * ```
22851
22986
  *
22852
22987
  * ### Example with standalone application
22853
- * ```
22988
+ * ```ts
22854
22989
  * function initializeApp() {
22855
22990
  * const http = inject(HttpClient);
22856
22991
  * return firstValueFrom(
@@ -22895,7 +23030,7 @@ const APP_INITIALIZER = new InjectionToken(ngDevMode ? 'Application Initializer'
22895
23030
  * @usageNotes
22896
23031
  * The following example illustrates how to configure an initialization function using
22897
23032
  * `provideAppInitializer()`
22898
- * ```
23033
+ * ```ts
22899
23034
  * bootstrapApplication(App, {
22900
23035
  * providers: [
22901
23036
  * provideAppInitializer(() => {
@@ -23136,7 +23271,7 @@ function optionsReducer(dst, objs) {
23136
23271
  * (here incrementing a counter, using RxJS `interval`),
23137
23272
  * and at the same time subscribe to `isStable`.
23138
23273
  *
23139
- * ```
23274
+ * ```ts
23140
23275
  * constructor(appRef: ApplicationRef) {
23141
23276
  * appRef.isStable.pipe(
23142
23277
  * filter(stable => stable)
@@ -23151,7 +23286,7 @@ function optionsReducer(dst, objs) {
23151
23286
  * you have to wait for the application to be stable
23152
23287
  * before starting your polling process.
23153
23288
  *
23154
- * ```
23289
+ * ```ts
23155
23290
  * constructor(appRef: ApplicationRef) {
23156
23291
  * appRef.isStable.pipe(
23157
23292
  * first(stable => stable),
@@ -23171,7 +23306,7 @@ function optionsReducer(dst, objs) {
23171
23306
  * you update a field of your component
23172
23307
  * and display it in its template.
23173
23308
  *
23174
- * ```
23309
+ * ```ts
23175
23310
  * constructor(appRef: ApplicationRef) {
23176
23311
  * appRef.isStable.pipe(
23177
23312
  * first(stable => stable),
@@ -23185,7 +23320,7 @@ function optionsReducer(dst, objs) {
23185
23320
  *
23186
23321
  * You'll have to manually trigger the change detection to update the template.
23187
23322
  *
23188
- * ```
23323
+ * ```ts
23189
23324
  * constructor(appRef: ApplicationRef, cd: ChangeDetectorRef) {
23190
23325
  * appRef.isStable.pipe(
23191
23326
  * first(stable => stable),
@@ -23199,7 +23334,7 @@ function optionsReducer(dst, objs) {
23199
23334
  *
23200
23335
  * Or make the subscription callback run inside the zone.
23201
23336
  *
23202
- * ```
23337
+ * ```ts
23203
23338
  * constructor(appRef: ApplicationRef, zone: NgZone) {
23204
23339
  * appRef.isStable.pipe(
23205
23340
  * first(stable => stable),
@@ -25254,7 +25389,7 @@ function getTStylingRangeTail(tStylingRange) {
25254
25389
  * instructions can be traversed in priority order when computing the styles.
25255
25390
  *
25256
25391
  * Assume we are dealing with the following code:
25257
- * ```
25392
+ * ```angular-ts
25258
25393
  * @Component({
25259
25394
  * template: `
25260
25395
  * <my-cmp [style]=" {color: '#001'} "
@@ -25325,7 +25460,7 @@ function getTStylingRangeTail(tStylingRange) {
25325
25460
  *
25326
25461
  * NOTE: the comment binding location is for illustrative purposes only.
25327
25462
  *
25328
- * ```
25463
+ * ```ts
25329
25464
  * // Template: (ExampleComponent)
25330
25465
  * ɵɵstyleMap({color: '#001'}); // Binding index: 10
25331
25466
  * ɵɵstyleProp('color', '#002'); // Binding index: 12
@@ -25342,7 +25477,7 @@ function getTStylingRangeTail(tStylingRange) {
25342
25477
  *
25343
25478
  * The correct priority order of concatenation is:
25344
25479
  *
25345
- * ```
25480
+ * ```ts
25346
25481
  * // MyComponent
25347
25482
  * ɵɵstyleMap({color: '#003'}); // Binding index: 20
25348
25483
  * ɵɵstyleProp('color', '#004'); // Binding index: 22
@@ -25674,7 +25809,7 @@ function getLastParsedValue(text) {
25674
25809
  * Initializes `className` string for parsing and parses the first token.
25675
25810
  *
25676
25811
  * This function is intended to be used in this format:
25677
- * ```
25812
+ * ```ts
25678
25813
  * for (let i = parseClassName(text); i >= 0; i = parseClassNameNext(text, i)) {
25679
25814
  * const key = getLastParsedKey();
25680
25815
  * ...
@@ -25691,7 +25826,7 @@ function parseClassName(text) {
25691
25826
  * Parses next `className` token.
25692
25827
  *
25693
25828
  * This function is intended to be used in this format:
25694
- * ```
25829
+ * ```ts
25695
25830
  * for (let i = parseClassName(text); i >= 0; i = parseClassNameNext(text, i)) {
25696
25831
  * const key = getLastParsedKey();
25697
25832
  * ...
@@ -25714,7 +25849,7 @@ function parseClassNameNext(text, index) {
25714
25849
  * Initializes `cssText` string for parsing and parses the first key/values.
25715
25850
  *
25716
25851
  * This function is intended to be used in this format:
25717
- * ```
25852
+ * ```ts
25718
25853
  * for (let i = parseStyle(text); i >= 0; i = parseStyleNext(text, i))) {
25719
25854
  * const key = getLastParsedKey();
25720
25855
  * const value = getLastParsedValue();
@@ -25732,7 +25867,7 @@ function parseStyle(text) {
25732
25867
  * Parses the next `cssText` key/values.
25733
25868
  *
25734
25869
  * This function is intended to be used in this format:
25735
- * ```
25870
+ * ```ts
25736
25871
  * for (let i = parseStyle(text); i >= 0; i = parseStyleNext(text, i))) {
25737
25872
  * const key = getLastParsedKey();
25738
25873
  * const value = getLastParsedValue();
@@ -26289,7 +26424,7 @@ function getTemplateHeadTStylingKey(tData, tNode, isClassBased) {
26289
26424
  * method allows us to update the first template instruction `TStylingKey` with a new value.
26290
26425
  *
26291
26426
  * Assume:
26292
- * ```
26427
+ * ```angular-ts
26293
26428
  * <div my-dir style="color: red" [style.color]="tmplExp"></div>
26294
26429
  *
26295
26430
  * @Directive({
@@ -26302,7 +26437,7 @@ function getTemplateHeadTStylingKey(tData, tNode, isClassBased) {
26302
26437
  * ```
26303
26438
  *
26304
26439
  * when `[style.color]="tmplExp"` executes it creates this data structure.
26305
- * ```
26440
+ * ```ts
26306
26441
  * ['', 'color', 'color', 'red', 'width', '100px'],
26307
26442
  * ```
26308
26443
  *
@@ -26312,14 +26447,14 @@ function getTemplateHeadTStylingKey(tData, tNode, isClassBased) {
26312
26447
  * `color' and 'width`)
26313
26448
  *
26314
26449
  * When `'[style.color]': 'dirExp',` executes we need to insert a new data into the linked list.
26315
- * ```
26450
+ * ```ts
26316
26451
  * ['', 'color', 'width', '100px'], // newly inserted
26317
26452
  * ['', 'color', 'color', 'red', 'width', '100px'], // this is wrong
26318
26453
  * ```
26319
26454
  *
26320
26455
  * Notice that the template statics is now wrong as it incorrectly contains `width` so we need to
26321
26456
  * update it like so:
26322
- * ```
26457
+ * ```ts
26323
26458
  * ['', 'color', 'width', '100px'],
26324
26459
  * ['', 'color', 'color', 'red'], // UPDATE
26325
26460
  * ```
@@ -29358,7 +29493,7 @@ function removeInnerTemplateTranslation(message) {
29358
29493
  * translated message can span multiple templates.
29359
29494
  *
29360
29495
  * Example:
29361
- * ```
29496
+ * ```html
29362
29497
  * <div i18n>Translate <span *ngIf>me</span>!</div>
29363
29498
  * ```
29364
29499
  *
@@ -32045,6 +32180,41 @@ function ɵɵreadContextLet(index) {
32045
32180
  return value;
32046
32181
  }
32047
32182
 
32183
+ /*!
32184
+ * @license
32185
+ * Copyright Google LLC All Rights Reserved.
32186
+ *
32187
+ * Use of this source code is governed by an MIT-style license that can be
32188
+ * found in the LICENSE file at https://angular.dev/license
32189
+ */
32190
+ /**
32191
+ * Sets the location within the source template at which
32192
+ * each element in the current view was defined.
32193
+ *
32194
+ * @param index Index at which the DOM node was created.
32195
+ * @param templatePath Path to the template at which the node was defined.
32196
+ * @param locations Element locations to which to attach the source location.
32197
+ *
32198
+ * @codeGenApi
32199
+ */
32200
+ function ɵɵattachSourceLocations(templatePath, locations) {
32201
+ const tView = getTView();
32202
+ const lView = getLView();
32203
+ const renderer = lView[RENDERER];
32204
+ const attributeName = 'data-ng-source-location';
32205
+ for (const [index, offset, line, column] of locations) {
32206
+ const tNode = getTNode(tView, index + HEADER_OFFSET);
32207
+ // The compiler shouldn't generate the instruction for non-element nodes, but assert just in case.
32208
+ ngDevMode && assertTNodeType(tNode, 2 /* TNodeType.Element */);
32209
+ const node = getNativeByIndex(index + HEADER_OFFSET, lView);
32210
+ // Set the attribute directly in the DOM so it doesn't participate in directive matching.
32211
+ if (!node.hasAttribute(attributeName)) {
32212
+ const attributeValue = `${templatePath}@o:${offset},l:${line},c:${column}`;
32213
+ renderer.setAttribute(node, attributeName, attributeValue);
32214
+ }
32215
+ }
32216
+ }
32217
+
32048
32218
  /*
32049
32219
  * This file re-exports all symbols contained in this directory.
32050
32220
  *
@@ -33386,6 +33556,7 @@ const angularCoreEnv = (() => ({
33386
33556
  'ɵɵdeclareLet': ɵɵdeclareLet,
33387
33557
  'ɵɵstoreLet': ɵɵstoreLet,
33388
33558
  'ɵɵreadContextLet': ɵɵreadContextLet,
33559
+ 'ɵɵattachSourceLocations': ɵɵattachSourceLocations,
33389
33560
  'ɵɵsanitizeHtml': ɵɵsanitizeHtml,
33390
33561
  'ɵɵsanitizeStyle': ɵɵsanitizeStyle,
33391
33562
  'ɵɵsanitizeResourceUrl': ɵɵsanitizeResourceUrl,
@@ -34575,7 +34746,7 @@ class Version {
34575
34746
  /**
34576
34747
  * @publicApi
34577
34748
  */
34578
- const VERSION = new Version('19.1.0-next.1');
34749
+ const VERSION = new Version('19.1.0-next.3');
34579
34750
 
34580
34751
  /**
34581
34752
  * Combination of NgModuleFactory and ComponentFactories.
@@ -34810,7 +34981,7 @@ function internalProvideZoneChangeDetection({ ngZoneFactory, ignoreChangesOutsid
34810
34981
  * `BootstrapOptions` instead.
34811
34982
  *
34812
34983
  * @usageNotes
34813
- * ```typescript
34984
+ * ```ts
34814
34985
  * bootstrapApplication(MyApp, {providers: [
34815
34986
  * provideZoneChangeDetection({eventCoalescing: true}),
34816
34987
  * ]});
@@ -35198,7 +35369,7 @@ class ChangeDetectionSchedulerImpl {
35198
35369
  * - registering a render hook (templates are only refreshed if render hooks do one of the above)
35199
35370
  *
35200
35371
  * @usageNotes
35201
- * ```typescript
35372
+ * ```ts
35202
35373
  * bootstrapApplication(MyApp, {providers: [
35203
35374
  * provideExperimentalZonelessChangeDetection(),
35204
35375
  * ]});
@@ -35270,7 +35441,7 @@ function getGlobalLocale() {
35270
35441
  * @usageNotes
35271
35442
  * ### Example
35272
35443
  *
35273
- * ```typescript
35444
+ * ```ts
35274
35445
  * import { LOCALE_ID } from '@angular/core';
35275
35446
  * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
35276
35447
  * import { AppModule } from './app/app.module';
@@ -35313,7 +35484,7 @@ const LOCALE_ID = new InjectionToken(ngDevMode ? 'LocaleId' : '', {
35313
35484
  * @usageNotes
35314
35485
  * ### Example
35315
35486
  *
35316
- * ```typescript
35487
+ * ```ts
35317
35488
  * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
35318
35489
  * import { AppModule } from './app/app.module';
35319
35490
  *
@@ -35337,7 +35508,7 @@ const DEFAULT_CURRENCY_CODE = new InjectionToken(ngDevMode ? 'DefaultCurrencyCod
35337
35508
  * @usageNotes
35338
35509
  * ### Example
35339
35510
  *
35340
- * ```typescript
35511
+ * ```ts
35341
35512
  * import { TRANSLATIONS } from '@angular/core';
35342
35513
  * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
35343
35514
  * import { AppModule } from './app/app.module';
@@ -35362,7 +35533,7 @@ const TRANSLATIONS = new InjectionToken(ngDevMode ? 'Translations' : '');
35362
35533
  * @usageNotes
35363
35534
  * ### Example
35364
35535
  *
35365
- * ```typescript
35536
+ * ```ts
35366
35537
  * import { TRANSLATIONS_FORMAT } from '@angular/core';
35367
35538
  * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
35368
35539
  * import { AppModule } from './app/app.module';
@@ -35386,7 +35557,7 @@ const TRANSLATIONS_FORMAT = new InjectionToken(ngDevMode ? 'TranslationsFormat'
35386
35557
  *
35387
35558
  * @usageNotes
35388
35559
  * ### Example
35389
- * ```typescript
35560
+ * ```ts
35390
35561
  * import { MissingTranslationStrategy } from '@angular/core';
35391
35562
  * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
35392
35563
  * import { AppModule } from './app/app.module';
@@ -35750,7 +35921,7 @@ class PlatformRef {
35750
35921
  * @usageNotes
35751
35922
  * ### Simple Example
35752
35923
  *
35753
- * ```typescript
35924
+ * ```ts
35754
35925
  * @NgModule({
35755
35926
  * imports: [BrowserModule]
35756
35927
  * })
@@ -36178,8 +36349,7 @@ function noModuleError(id) {
36178
36349
  * (`CheckOnce`, rather than the default `CheckAlways`), then forces a second check
36179
36350
  * after an interval.
36180
36351
  *
36181
- * <code-example path="core/ts/change_detect/change-detection.ts"
36182
- * region="mark-for-check"></code-example>
36352
+ * {@example core/ts/change_detect/change-detection.ts region='mark-for-check'}
36183
36353
  *
36184
36354
  * ### Detach change detector to limit how often check occurs
36185
36355
  *
@@ -36189,7 +36359,7 @@ function noModuleError(id) {
36189
36359
  * less often than the changes actually occur. To do that, we detach
36190
36360
  * the component's change detector and perform an explicit local check every five seconds.
36191
36361
  *
36192
- * <code-example path="core/ts/change_detect/change-detection.ts" region="detach"></code-example>
36362
+ * {@example core/ts/change_detect/change-detection.ts region='detach'}
36193
36363
  *
36194
36364
  *
36195
36365
  * ### Reattaching a detached component
@@ -36199,7 +36369,7 @@ function noModuleError(id) {
36199
36369
  * when the `live` property is set to false, and reattaches it when the property
36200
36370
  * becomes true.
36201
36371
  *
36202
- * <code-example path="core/ts/change_detect/change-detection.ts" region="reattach"></code-example>
36372
+ * {@example core/ts/change_detect/change-detection.ts region='reattach'}
36203
36373
  *
36204
36374
  * @publicApi
36205
36375
  */
@@ -36265,7 +36435,7 @@ class ViewRef extends ChangeDetectorRef {
36265
36435
  * The following template breaks down into two separate `TemplateRef` instances,
36266
36436
  * an outer one and an inner one.
36267
36437
  *
36268
- * ```
36438
+ * ```html
36269
36439
  * Count: {{items.length}}
36270
36440
  * <ul>
36271
36441
  * <li *ngFor="let item of items">{{item}}</li>
@@ -36274,7 +36444,7 @@ class ViewRef extends ChangeDetectorRef {
36274
36444
  *
36275
36445
  * This is the outer `TemplateRef`:
36276
36446
  *
36277
- * ```
36447
+ * ```html
36278
36448
  * Count: {{items.length}}
36279
36449
  * <ul>
36280
36450
  * <ng-template ngFor let-item [ngForOf]="items"></ng-template>
@@ -36283,13 +36453,13 @@ class ViewRef extends ChangeDetectorRef {
36283
36453
  *
36284
36454
  * This is the inner `TemplateRef`:
36285
36455
  *
36286
- * ```
36456
+ * ```html
36287
36457
  * <li>{{item}}</li>
36288
36458
  * ```
36289
36459
  *
36290
36460
  * The outer and inner `TemplateRef` instances are assembled into views as follows:
36291
36461
  *
36292
- * ```
36462
+ * ```html
36293
36463
  * <!-- ViewRef: outer-0 -->
36294
36464
  * Count: 2
36295
36465
  * <ul>
@@ -39795,7 +39965,7 @@ function verifySsrContentsIntegrity() {
39795
39965
  * Intended to be used as a transform function of an input.
39796
39966
  *
39797
39967
  * @usageNotes
39798
- * ```typescript
39968
+ * ```ts
39799
39969
  * @Input({ transform: booleanAttribute }) status!: boolean;
39800
39970
  * ```
39801
39971
  * @param value Value to be transformed.
@@ -39812,7 +39982,7 @@ function booleanAttribute(value) {
39812
39982
  * @param fallbackValue Value to use if the provided value can't be parsed as a number.
39813
39983
  *
39814
39984
  * @usageNotes
39815
- * ```typescript
39985
+ * ```ts
39816
39986
  * @Input({ transform: numberAttribute }) id!: number;
39817
39987
  * ```
39818
39988
  *
@@ -40413,10 +40583,18 @@ function effect(effectFn, options) {
40413
40583
  // If we need to register for cleanup, do that here.
40414
40584
  node.onDestroyFn = destroyRef.onDestroy(() => node.destroy());
40415
40585
  }
40586
+ const effectRef = new EffectRefImpl(node);
40416
40587
  if (ngDevMode) {
40417
40588
  node.debugName = options?.debugName ?? '';
40589
+ const prevInjectorProfilerContext = setInjectorProfilerContext({ injector, token: null });
40590
+ try {
40591
+ emitEffectCreatedEvent(effectRef);
40592
+ }
40593
+ finally {
40594
+ setInjectorProfilerContext(prevInjectorProfilerContext);
40595
+ }
40418
40596
  }
40419
- return new EffectRefImpl(node);
40597
+ return effectRef;
40420
40598
  }
40421
40599
  /**
40422
40600
  * Not public API, which guarantees `EffectScheduler` only ever comes from the application root
@@ -40934,7 +41112,7 @@ function wrapEqualityFn(equal) {
40934
41112
  * Note: the example uses standalone components, but the function can also be used for
40935
41113
  * non-standalone components (declared in an NgModule) as well.
40936
41114
  *
40937
- * ```typescript
41115
+ * ```angular-ts
40938
41116
  * @Component({
40939
41117
  * standalone: true,
40940
41118
  * template: `Hello {{ name }}!`
@@ -40999,7 +41177,7 @@ function createComponent(component, options) {
40999
41177
  * The example below demonstrates how to use the function and how the fields
41000
41178
  * of the returned object map to the component metadata.
41001
41179
  *
41002
- * ```typescript
41180
+ * ```angular-ts
41003
41181
  * @Component({
41004
41182
  * standalone: true,
41005
41183
  * selector: 'foo-component',
@@ -41168,5 +41346,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
41168
41346
  * Generated bundle index. Do not edit.
41169
41347
  */
41170
41348
 
41171
- export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AfterRenderPhase, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CSP_NONCE, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, DestroyRef, Directive, ENVIRONMENT_INITIALIZER, ElementRef, EmbeddedViewRef, EnvironmentInjector, ErrorHandler, EventEmitter, HOST_TAG_NAME, Host, HostAttributeToken, HostBinding, HostListener, INJECTOR$1 as INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgProbeToken, NgZone, Optional, Output, OutputEmitterRef, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, PendingTasks, Pipe, PlatformRef, Query, QueryList, REQUEST, REQUEST_CONTEXT, RESPONSE_INIT, Renderer2, RendererFactory2, RendererStyleFlags2, ResourceStatus, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation, ViewRef, afterNextRender, afterRender, afterRenderEffect, asNativeElements, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, contentChild, contentChildren, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, linkedSignal, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, output, platformCore, provideAppInitializer, provideEnvironmentInitializer, provideExperimentalCheckNoChangesForDebug, provideExperimentalZonelessChangeDetection, providePlatformInitializer, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, resource, runInInjectionContext, setTestabilityGetter, signal, untracked, viewChild, viewChildren, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderManager as ɵAfterRenderManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ChangeDetectionScheduler as ɵChangeDetectionScheduler, ChangeDetectionSchedulerImpl as ɵChangeDetectionSchedulerImpl, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, EffectScheduler as ɵEffectScheduler, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, INTERNAL_APPLICATION_ERROR_HANDLER as ɵINTERNAL_APPLICATION_ERROR_HANDLER, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, IS_INCREMENTAL_HYDRATION_ENABLED as ɵIS_INCREMENTAL_HYDRATION_ENABLED, JSACTION_EVENT_CONTRACT as ɵJSACTION_EVENT_CONTRACT, LContext as ɵLContext, 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, TracingAction as ɵTracingAction, TracingService as ɵTracingService, USE_RUNTIME_DEPS_TRACKER_FOR_JIT as ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, ZONELESS_ENABLED as ɵZONELESS_ENABLED, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, convertToBitFlags as ɵconvertToBitFlags, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, depsTracker as ɵdepsTracker, detectChangesInViewIfRequired as ɵdetectChangesInViewIfRequired, devModeEqual as ɵdevModeEqual, disableProfiling as ɵdisableProfiling, enableProfiling as ɵenableProfiling, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getClosestComponentName as ɵgetClosestComponentName, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getOutputDestroyRef as ɵgetOutputDestroyRef, getSanitizationBypassType as ɵgetSanitizationBypassType, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalCreateApplication as ɵinternalCreateApplication, internalProvideZoneChangeDetection as ɵinternalProvideZoneChangeDetection, isBoundToModule as ɵisBoundToModule, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, microtaskEffect as ɵmicrotaskEffect, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, publishExternalGlobalUtil as ɵpublishExternalGlobalUtil, readHydrationInfo as ɵreadHydrationInfo, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setInjectorProfilerContext as ɵsetInjectorProfilerContext, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, startMeasuring as ɵstartMeasuring, stopMeasuring as ɵstopMeasuring, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, ɵunwrapWritableSignal, withDomHydration as ɵwithDomHydration, withEventReplay as ɵwithEventReplay, withI18nSupport as ɵwithI18nSupport, withIncrementalHydration as ɵwithIncrementalHydration, ɵɵCopyDefinitionFeature, ɵɵExternalStylesFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵInputTransformsFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵ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 };
41349
+ export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AfterRenderPhase, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CSP_NONCE, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, DestroyRef, Directive, ENVIRONMENT_INITIALIZER, ElementRef, EmbeddedViewRef, EnvironmentInjector, ErrorHandler, EventEmitter, HOST_TAG_NAME, Host, HostAttributeToken, HostBinding, HostListener, INJECTOR$1 as INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgProbeToken, NgZone, Optional, Output, OutputEmitterRef, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, PendingTasks, Pipe, PlatformRef, Query, QueryList, REQUEST, REQUEST_CONTEXT, RESPONSE_INIT, Renderer2, RendererFactory2, RendererStyleFlags2, ResourceStatus, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation, ViewRef, afterNextRender, afterRender, afterRenderEffect, asNativeElements, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, contentChild, contentChildren, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, linkedSignal, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, output, platformCore, provideAppInitializer, provideEnvironmentInitializer, provideExperimentalCheckNoChangesForDebug, provideExperimentalZonelessChangeDetection, providePlatformInitializer, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, resource, runInInjectionContext, setTestabilityGetter, signal, untracked, viewChild, viewChildren, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderManager as ɵAfterRenderManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ChangeDetectionScheduler as ɵChangeDetectionScheduler, ChangeDetectionSchedulerImpl as ɵChangeDetectionSchedulerImpl, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, EffectScheduler as ɵEffectScheduler, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, INTERNAL_APPLICATION_ERROR_HANDLER as ɵINTERNAL_APPLICATION_ERROR_HANDLER, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, IS_INCREMENTAL_HYDRATION_ENABLED as ɵIS_INCREMENTAL_HYDRATION_ENABLED, JSACTION_EVENT_CONTRACT as ɵJSACTION_EVENT_CONTRACT, LContext as ɵLContext, 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 ɵ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, TracingAction as ɵTracingAction, TracingService as ɵTracingService, USE_RUNTIME_DEPS_TRACKER_FOR_JIT as ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, ZONELESS_ENABLED as ɵZONELESS_ENABLED, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, convertToBitFlags as ɵconvertToBitFlags, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, depsTracker as ɵdepsTracker, detectChangesInViewIfRequired as ɵdetectChangesInViewIfRequired, devModeEqual as ɵdevModeEqual, disableProfiling as ɵdisableProfiling, enableProfiling as ɵenableProfiling, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getClosestComponentName as ɵgetClosestComponentName, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, getDirectives as ɵgetDirectives, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getOutputDestroyRef as ɵgetOutputDestroyRef, getSanitizationBypassType as ɵgetSanitizationBypassType, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalCreateApplication as ɵinternalCreateApplication, internalProvideZoneChangeDetection as ɵinternalProvideZoneChangeDetection, isBoundToModule as ɵisBoundToModule, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, microtaskEffect as ɵmicrotaskEffect, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, publishExternalGlobalUtil as ɵpublishExternalGlobalUtil, readHydrationInfo as ɵreadHydrationInfo, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setInjectorProfilerContext as ɵsetInjectorProfilerContext, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, startMeasuring as ɵstartMeasuring, stopMeasuring as ɵstopMeasuring, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, ɵunwrapWritableSignal, withDomHydration as ɵwithDomHydration, withEventReplay as ɵwithEventReplay, withI18nSupport as ɵwithI18nSupport, withIncrementalHydration as ɵwithIncrementalHydration, ɵɵCopyDefinitionFeature, ɵɵExternalStylesFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵInputTransformsFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵadvance, ɵɵattachSourceLocations, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcomponentInstance, ɵɵconditional, ɵɵcontentQuery, ɵɵcontentQuerySignal, ɵɵdeclareLet, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵdeferHydrateNever, ɵɵdeferHydrateOnHover, ɵɵdeferHydrateOnIdle, ɵɵdeferHydrateOnImmediate, ɵɵdeferHydrateOnInteraction, ɵɵdeferHydrateOnTimer, ɵɵdeferHydrateOnViewport, ɵɵdeferHydrateWhen, ɵɵdeferOnHover, ɵɵdeferOnIdle, ɵɵdeferOnImmediate, ɵɵdeferOnInteraction, ɵɵdeferOnTimer, ɵɵdeferOnViewport, ɵɵdeferPrefetchOnHover, ɵɵdeferPrefetchOnIdle, ɵɵdeferPrefetchOnImmediate, ɵɵdeferPrefetchOnInteraction, ɵɵdeferPrefetchOnTimer, ɵɵdeferPrefetchOnViewport, ɵɵdeferPrefetchWhen, ɵɵdeferWhen, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareClassMetadataAsync, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵngDeclareFactory, ɵɵngDeclareInjectable, ɵɵngDeclareInjector, ɵɵngDeclareNgModule, ɵɵngDeclarePipe, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryAdvance, ɵɵqueryRefresh, ɵɵreadContextLet, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵreplaceMetadata, ɵɵresetView, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstoreLet, ɵɵstyleMap, ɵɵstyleMapInterpolate1, ɵɵstyleMapInterpolate2, ɵɵstyleMapInterpolate3, ɵɵstyleMapInterpolate4, ɵɵstyleMapInterpolate5, ɵɵstyleMapInterpolate6, ɵɵstyleMapInterpolate7, ɵɵstyleMapInterpolate8, ɵɵstyleMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
41172
41350
  //# sourceMappingURL=core.mjs.map