@angular/core 17.1.0-next.3 → 17.1.0-next.5

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 (79) hide show
  1. package/esm2022/primitives/signals/src/signal.mjs +2 -9
  2. package/esm2022/src/application/application_config.mjs +21 -0
  3. package/esm2022/src/application/application_init.mjs +188 -0
  4. package/esm2022/src/application/application_module.mjs +29 -0
  5. package/esm2022/src/application/application_ref.mjs +505 -0
  6. package/esm2022/src/application/application_tokens.mjs +121 -0
  7. package/esm2022/src/application/create_application.mjs +102 -0
  8. package/esm2022/src/authoring/input.mjs +41 -0
  9. package/esm2022/src/authoring/input_signal.mjs +10 -0
  10. package/esm2022/src/authoring/input_type_checking.mjs +9 -0
  11. package/esm2022/src/authoring.mjs +12 -0
  12. package/esm2022/src/change_detection/flags.mjs +16 -0
  13. package/esm2022/src/change_detection/scheduling/ng_zone_scheduling.mjs +164 -0
  14. package/esm2022/src/change_detection/scheduling/zoneless_scheduling.mjs +13 -0
  15. package/esm2022/src/compiler/compiler_facade_interface.mjs +1 -1
  16. package/esm2022/src/core.mjs +15 -7
  17. package/esm2022/src/core_private_export.mjs +8 -4
  18. package/esm2022/src/core_reactivity_export_internal.mjs +2 -2
  19. package/esm2022/src/core_render3_private_export.mjs +2 -2
  20. package/esm2022/src/error_handler.mjs +15 -1
  21. package/esm2022/src/event_emitter.mjs +1 -2
  22. package/esm2022/src/hydration/annotate.mjs +1 -1
  23. package/esm2022/src/hydration/api.mjs +2 -2
  24. package/esm2022/src/hydration/cleanup.mjs +1 -1
  25. package/esm2022/src/image_performance_warning.mjs +2 -2
  26. package/esm2022/src/linker/query_list.mjs +8 -6
  27. package/esm2022/src/metadata/do_bootstrap.mjs +1 -1
  28. package/esm2022/src/pending_tasks.mjs +57 -0
  29. package/esm2022/src/platform/platform.mjs +135 -0
  30. package/esm2022/src/platform/platform_core_providers.mjs +15 -0
  31. package/esm2022/src/platform/platform_ref.mjs +179 -0
  32. package/esm2022/src/render3/after_render_hooks.mjs +2 -2
  33. package/esm2022/src/render3/component_ref.mjs +13 -9
  34. package/esm2022/src/render3/instructions/change_detection.mjs +2 -4
  35. package/esm2022/src/render3/instructions/control_flow.mjs +5 -3
  36. package/esm2022/src/render3/instructions/mark_view_dirty.mjs +3 -2
  37. package/esm2022/src/render3/instructions/shared.mjs +3 -2
  38. package/esm2022/src/render3/interfaces/definition.mjs +1 -1
  39. package/esm2022/src/render3/interfaces/public_definitions.mjs +1 -1
  40. package/esm2022/src/render3/interfaces/view.mjs +1 -1
  41. package/esm2022/src/render3/list_reconciliation.mjs +58 -24
  42. package/esm2022/src/render3/util/change_detection_utils.mjs +3 -1
  43. package/esm2022/src/render3/util/misc_utils.mjs +2 -2
  44. package/esm2022/src/render3/util/view_utils.mjs +18 -5
  45. package/esm2022/src/render3/view_ref.mjs +8 -1
  46. package/esm2022/src/transfer_state.mjs +2 -2
  47. package/esm2022/src/util/performance.mjs +2 -2
  48. package/esm2022/src/version.mjs +6 -5
  49. package/esm2022/src/zone/ng_zone.mjs +10 -61
  50. package/esm2022/testing/src/component_fixture.mjs +20 -36
  51. package/esm2022/testing/src/logger.mjs +3 -3
  52. package/esm2022/testing/src/test_bed.mjs +5 -6
  53. package/fesm2022/core.mjs +1446 -1336
  54. package/fesm2022/core.mjs.map +1 -1
  55. package/fesm2022/primitives/signals.mjs +2 -9
  56. package/fesm2022/primitives/signals.mjs.map +1 -1
  57. package/fesm2022/rxjs-interop.mjs +1 -1
  58. package/fesm2022/testing.mjs +46 -64
  59. package/fesm2022/testing.mjs.map +1 -1
  60. package/index.d.ts +196 -43
  61. package/package.json +1 -1
  62. package/primitives/signals/index.d.ts +1 -1
  63. package/rxjs-interop/index.d.ts +1 -1
  64. package/schematics/migrations/block-template-entities/bundle.js +1019 -745
  65. package/schematics/migrations/block-template-entities/bundle.js.map +4 -4
  66. package/schematics/migrations/compiler-options/bundle.js +13 -13
  67. package/schematics/migrations/transfer-state/bundle.js +13 -13
  68. package/schematics/ng-generate/control-flow-migration/bundle.js +1331 -854
  69. package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
  70. package/schematics/ng-generate/standalone-migration/bundle.js +2329 -1757
  71. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  72. package/testing/index.d.ts +6 -10
  73. package/esm2022/src/application_config.mjs +0 -21
  74. package/esm2022/src/application_init.mjs +0 -188
  75. package/esm2022/src/application_module.mjs +0 -29
  76. package/esm2022/src/application_ref.mjs +0 -997
  77. package/esm2022/src/application_tokens.mjs +0 -121
  78. package/esm2022/src/initial_render_pending_tasks.mjs +0 -49
  79. package/esm2022/src/platform_core_providers.mjs +0 -15
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.1.0-next.3
2
+ * @license Angular v17.1.0-next.5
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -642,7 +642,6 @@ export declare class ApplicationRef {
642
642
  private _destroyed;
643
643
  private _destroyListeners;
644
644
  private readonly internalErrorHandler;
645
- private readonly zoneIsStable;
646
645
  /**
647
646
  * Indicates whether this instance was destroyed.
648
647
  */
@@ -3615,7 +3614,6 @@ export declare type EnvironmentProviders = {
3615
3614
  ɵbrand: 'EnvironmentProviders';
3616
3615
  };
3617
3616
 
3618
-
3619
3617
  /**
3620
3618
  * Provides a hook for centralized exception handling.
3621
3619
  *
@@ -3848,6 +3846,16 @@ export declare interface FactorySansProvider {
3848
3846
 
3849
3847
  declare const FLAGS = 2;
3850
3848
 
3849
+ /**
3850
+ * Interface to an `EffectScheduler` capable of running scheduled effects synchronously.
3851
+ */
3852
+ declare interface FlushableEffectRunner {
3853
+ /**
3854
+ * Run any scheduled effects.
3855
+ */
3856
+ flush(): void;
3857
+ }
3858
+
3851
3859
  /**
3852
3860
  * Allows to refer to references which are not yet defined.
3853
3861
  *
@@ -5138,11 +5146,21 @@ export declare interface InputDecorator {
5138
5146
  new (arg?: string | Input): any;
5139
5147
  }
5140
5148
 
5149
+ /**
5150
+ * `InputSignal` is represents a special `Signal` for a directive/component input.
5151
+ *
5152
+ * An input signal is similar to a non-writable signal except that it also
5153
+ * carries additional type-information for transforms, and that Angular internally
5154
+ * updates the signal whenever a new value is bound.
5155
+ */
5156
+ export declare type InputSignal<ReadT, WriteT = ReadT> = Signal<ReadT> & {
5157
+ [ɵINPUT_SIGNAL_BRAND_READ_TYPE]: ReadT;
5158
+ [ɵINPUT_SIGNAL_BRAND_WRITE_TYPE]: WriteT;
5159
+ };
5160
+
5141
5161
  /** Function that can be used to transform incoming input values. */
5142
5162
  declare type InputTransformFunction = (value: any) => any;
5143
5163
 
5144
- declare type InputTransformFunction_2 = any;
5145
-
5146
5164
  /**
5147
5165
  * See `TNode.insertBeforeIndex`
5148
5166
  */
@@ -5561,6 +5579,8 @@ declare enum LContainerFlags {
5561
5579
  HasChildViewsToRefresh = 4
5562
5580
  }
5563
5581
 
5582
+ declare type LegacyInputPartialMapping = string | [bindingPropertyName: string, classPropertyName: string, transformFunction?: Function];
5583
+
5564
5584
  /**
5565
5585
  * Provide this token to set the locale of your application.
5566
5586
  * It is used for i18n extraction, by i18n pipes (DatePipe, I18nPluralPipe, CurrencyPipe,
@@ -5912,9 +5932,11 @@ declare interface LViewEnvironment {
5912
5932
  /** An optional custom sanitizer. */
5913
5933
  sanitizer: Sanitizer | null;
5914
5934
  /** Container for reactivity system `effect`s. */
5915
- inlineEffectRunner: ɵFlushableEffectRunner | null;
5935
+ inlineEffectRunner: FlushableEffectRunner | null;
5916
5936
  /** Container for after render hooks */
5917
5937
  afterRenderEventManager: ɵAfterRenderEventManager | null;
5938
+ /** Scheduler for change detection to notify when application state changes. */
5939
+ changeDetectionScheduler: ɵChangeDetectionScheduler | null;
5918
5940
  }
5919
5941
 
5920
5942
  /** Flags associated with an LView (saved in LView[FLAGS]) */
@@ -7349,11 +7371,13 @@ declare interface R3DeclareDirectiveFacade {
7349
7371
  selector?: string;
7350
7372
  type: Type_2;
7351
7373
  inputs?: {
7352
- [classPropertyName: string]: string | [
7353
- bindingPropertyName: string,
7354
- classPropertyName: string,
7355
- transformFunction?: InputTransformFunction_2
7356
- ];
7374
+ [fieldName: string]: {
7375
+ classPropertyName: string;
7376
+ publicName: string;
7377
+ isSignal: boolean;
7378
+ isRequired: boolean;
7379
+ transformFunction: Function | null;
7380
+ } | LegacyInputPartialMapping;
7357
7381
  };
7358
7382
  outputs?: {
7359
7383
  [classPropertyName: string]: string;
@@ -10844,6 +10868,14 @@ export declare const enum ɵBypassType {
10844
10868
  Style = "Style"
10845
10869
  }
10846
10870
 
10871
+
10872
+ /**
10873
+ * Injectable that is notified when an `LView` is made aware of changes to application state.
10874
+ */
10875
+ export declare abstract class ɵChangeDetectionScheduler {
10876
+ abstract notify(): void;
10877
+ }
10878
+
10847
10879
  export declare function ɵclearResolutionOfComponentResourcesQueue(): Map<Type<any>, Component>;
10848
10880
 
10849
10881
  /**
@@ -11171,6 +11203,9 @@ export declare interface ɵDirectiveDef<T> {
11171
11203
  * A dictionary mapping the private names of inputs to their transformation functions.
11172
11204
  * Note: the private names are used for the keys, rather than the public ones, because public
11173
11205
  * names can be re-aliased in host directives which would invalidate the lookup.
11206
+ *
11207
+ * Note: Signal inputs will not have transforms captured here. This is because their
11208
+ * transform function is already integrated into the `InputSignal`.
11174
11209
  */
11175
11210
  readonly inputTransforms: {
11176
11211
  [classPropertyName: string]: InputTransformFunction;
@@ -11337,16 +11372,6 @@ export declare const enum ɵExtraLocaleDataIndex {
11337
11372
  */
11338
11373
  export declare function ɵfindLocaleData(locale: string): any;
11339
11374
 
11340
- /**
11341
- * Interface to an `EffectScheduler` capable of running scheduled effects synchronously.
11342
- */
11343
- export declare interface ɵFlushableEffectRunner {
11344
- /**
11345
- * Run any scheduled effects.
11346
- */
11347
- flush(): void;
11348
- }
11349
-
11350
11375
  /**
11351
11376
  * Loops over queued module definitions, if a given module definition has all of its
11352
11377
  * declarations resolved, it dequeues that module definition and sets the scope on
@@ -11404,6 +11429,9 @@ export declare function ɵgetDeferBlocks(lView: LView, deferBlocks: ɵDeferBlock
11404
11429
  */
11405
11430
  export declare function ɵgetDirectives(node: Node): {}[];
11406
11431
 
11432
+
11433
+ export declare function ɵgetEnsureDirtyViewsAreAlwaysReachable(): boolean;
11434
+
11407
11435
  /**
11408
11436
  * Retrieves the host element of a component or directive instance.
11409
11437
  * The host element is the DOM element that matched the selector of the directive.
@@ -11515,26 +11543,6 @@ export declare type ɵImageConfig = {
11515
11543
  disableImageLazyLoadWarning?: boolean;
11516
11544
  };
11517
11545
 
11518
- /**
11519
- * *Internal* service that keeps track of pending tasks happening in the system
11520
- * during the initial rendering. No tasks are tracked after an initial
11521
- * rendering.
11522
- *
11523
- * This information is needed to make sure that the serialization on the server
11524
- * is delayed until all tasks in the queue (such as an initial navigation or a
11525
- * pending HTTP request) are completed.
11526
- */
11527
- export declare class ɵInitialRenderPendingTasks implements OnDestroy {
11528
- private taskId;
11529
- private pendingTasks;
11530
- hasPendingTasks: BehaviorSubject<boolean>;
11531
- add(): number;
11532
- remove(taskId: number): void;
11533
- ngOnDestroy(): void;
11534
- static ɵfac: i0.ɵɵFactoryDeclaration<ɵInitialRenderPendingTasks, never>;
11535
- static ɵprov: i0.ɵɵInjectableDeclaration<ɵInitialRenderPendingTasks>;
11536
- }
11537
-
11538
11546
  /** Returns a ChangeDetectorRef (a.k.a. a ViewRef) */
11539
11547
  export declare function ɵinjectChangeDetectorRef(flags: InjectFlags): ChangeDetectorRef;
11540
11548
 
@@ -11563,6 +11571,116 @@ export declare interface ɵInjectorProfilerContext {
11563
11571
  token: Type<unknown> | null;
11564
11572
  }
11565
11573
 
11574
+ /**
11575
+ * Initializes an input with an initial value. If no explicit value
11576
+ * is specified, Angular will use `undefined`.
11577
+ *
11578
+ * Consider using `input.required` for inputs that don't need an
11579
+ * initial value.
11580
+ *
11581
+ * @usageNotes
11582
+ * Initialize an input in your directive or component by declaring a
11583
+ * class field and initializing it with the `input()` function.
11584
+ *
11585
+ * ```ts
11586
+ * @Directive({..})
11587
+ * export class MyDir {
11588
+ * firstName = input<string>(); // string|undefined
11589
+ * lastName = input.required<string>(); // string
11590
+ * age = input(0); // number
11591
+ * }
11592
+ * ```
11593
+ */
11594
+ export declare const ɵinput: ɵInputFunction;
11595
+
11596
+ declare const ɵINPUT_SIGNAL_BRAND_READ_TYPE: unique symbol;
11597
+
11598
+ export declare const ɵINPUT_SIGNAL_BRAND_WRITE_TYPE: unique symbol;
11599
+
11600
+ /**
11601
+ * Type of the `input` function.
11602
+ *
11603
+ * The input function is a special function that also provides access to
11604
+ * required inputs via the `.required` property.
11605
+ */
11606
+ export declare type ɵInputFunction = typeof ɵinputFunctionForApiGuard & {
11607
+ required: typeof ɵinputFunctionRequiredForApiGuard;
11608
+ };
11609
+
11610
+ /**
11611
+ * Initializes an input with an initial value. If no explicit value
11612
+ * is specified, Angular will use `undefined`.
11613
+ *
11614
+ * Consider using `input.required` for inputs that don't need an
11615
+ * initial value.
11616
+ *
11617
+ * @usageNotes
11618
+ * Initialize an input in your directive or component by declaring a
11619
+ * class field and initializing it with the `input()` function.
11620
+ *
11621
+ * ```ts
11622
+ * @Directive({..})
11623
+ * export class MyDir {
11624
+ * firstName = input<string>(); // string|undefined
11625
+ * lastName = input.required<string>(); // string
11626
+ * age = input(0); // number
11627
+ * }
11628
+ * ```
11629
+ */
11630
+ export declare function ɵinputFunctionForApiGuard<ReadT>(): InputSignal<ReadT | undefined>;
11631
+
11632
+ export declare function ɵinputFunctionForApiGuard<ReadT>(initialValue: ReadT, opts?: ɵInputOptionsWithoutTransform<ReadT>): InputSignal<ReadT>;
11633
+
11634
+ export declare function ɵinputFunctionForApiGuard<ReadT, WriteT>(initialValue: ReadT, opts: ɵInputOptionsWithTransform<ReadT, WriteT>): InputSignal<ReadT, WriteT>;
11635
+
11636
+ /**
11637
+ * Initializes a required input. Users of your directive/component,
11638
+ * need to bind to this input, otherwise they will see errors.
11639
+ * *
11640
+ * @usageNotes
11641
+ * Initialize an input in your directive or component by declaring a
11642
+ * class field and initializing it with the `input()` function.
11643
+ *
11644
+ * ```ts
11645
+ * @Directive({..})
11646
+ * export class MyDir {
11647
+ * firstName = input<string>(); // string|undefined
11648
+ * lastName = input.required<string>(); // string
11649
+ * age = input(0); // number
11650
+ * }
11651
+ * ```
11652
+ */
11653
+ export declare function ɵinputFunctionRequiredForApiGuard<ReadT>(opts?: ɵInputOptionsWithoutTransform<ReadT>): InputSignal<ReadT>;
11654
+
11655
+ export declare function ɵinputFunctionRequiredForApiGuard<ReadT, WriteT>(opts: ɵInputOptionsWithTransform<ReadT, WriteT>): InputSignal<ReadT, WriteT>;
11656
+
11657
+ /**
11658
+ * Options for signal inputs.
11659
+ */
11660
+ export declare interface ɵInputOptions<ReadT, WriteT> {
11661
+ /** Optional public name for the input. By default, the class field name is used. */
11662
+ alias?: string;
11663
+ /**
11664
+ * Optional transform that runs whenever a new value is bound. Can be used to
11665
+ * transform the input value before the input is updated.
11666
+ *
11667
+ * The transform function can widen the type of the input. For example, consider
11668
+ * an input for `disabled`. In practice, as the component author, you want to only
11669
+ * deal with a boolean, but users may want to bind a string if they just use the
11670
+ * attribute form to bind to the input via `<my-dir input>`. A transform can then
11671
+ * handle such string values and convert them to `boolean`. See: {@link booleanAttribute}.
11672
+ */
11673
+ transform?: (v: WriteT) => ReadT;
11674
+ }
11675
+
11676
+ /** Signal input options without the transform option. */
11677
+ export declare type ɵInputOptionsWithoutTransform<ReadT> = Omit<ɵInputOptions<ReadT, ReadT>, 'transform'> & {
11678
+ transform?: undefined;
11679
+ };
11680
+
11681
+ /** Signal input options with the transform option required. */
11682
+ export declare type ɵInputOptionsWithTransform<ReadT, WriteT> = Required<Pick<ɵInputOptions<ReadT, WriteT>, 'transform'>> & ɵInputOptions<ReadT, WriteT>;
11683
+
11566
11684
  /**
11567
11685
  * Register a callback to run once before any userspace `afterRender` or
11568
11686
  * `afterNextRender` callbacks.
@@ -11871,6 +11989,28 @@ export declare const ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR: {};
11871
11989
  */
11872
11990
  export declare function ɵpatchComponentDefWithScope<C>(componentDef: ɵComponentDef<C>, transitiveScopes: ɵNgModuleTransitiveScopes): void;
11873
11991
 
11992
+ /**
11993
+ * *Internal* service that keeps track of pending tasks happening in the system.
11994
+ *
11995
+ * This information is needed to make sure that the serialization on the server
11996
+ * is delayed until all tasks in the queue (such as an initial navigation or a
11997
+ * pending HTTP request) are completed.
11998
+ *
11999
+ * Pending tasks continue to contribute to the stableness of `ApplicationRef`
12000
+ * throughout the lifetime of the application.
12001
+ */
12002
+ export declare class ɵPendingTasks implements OnDestroy {
12003
+ private taskId;
12004
+ private pendingTasks;
12005
+ private get _hasPendingTasks();
12006
+ hasPendingTasks: BehaviorSubject<boolean>;
12007
+ add(): number;
12008
+ remove(taskId: number): void;
12009
+ ngOnDestroy(): void;
12010
+ static ɵfac: i0.ɵɵFactoryDeclaration<ɵPendingTasks, never>;
12011
+ static ɵprov: i0.ɵɵInjectableDeclaration<ɵPendingTasks>;
12012
+ }
12013
+
11874
12014
 
11875
12015
  /**
11876
12016
  * A guarded `performance.mark` for feature marking.
@@ -12362,6 +12502,8 @@ export declare function ɵsetCurrentInjector(injector: Injector | null | undefin
12362
12502
  */
12363
12503
  export declare function ɵsetDocument(document: Document | undefined): void;
12364
12504
 
12505
+ export declare function ɵsetEnsureDirtyViewsAreAlwaysReachable(v: boolean): void;
12506
+
12365
12507
  export declare function ɵsetInjectorProfilerContext(context: ɵInjectorProfilerContext): ɵInjectorProfilerContext;
12366
12508
 
12367
12509
 
@@ -12443,6 +12585,14 @@ export declare function ɵtruncateMiddle(str: string, maxLength?: number): strin
12443
12585
  */
12444
12586
  export declare function ɵunregisterLocaleData(): void;
12445
12587
 
12588
+ /** Unwraps all `InputSignal` class fields of the given directive. */
12589
+ export declare type ɵUnwrapDirectiveSignalInputs<Dir, Fields extends keyof Dir> = {
12590
+ [P in Fields]: ɵUnwrapInputSignalWriteType<Dir[P]>;
12591
+ };
12592
+
12593
+ /** Retrieves the `WriteT` of an `InputSignal`. */
12594
+ declare type ɵUnwrapInputSignalWriteType<Field> = Field extends InputSignal<unknown, infer WriteT> ? WriteT : never;
12595
+
12446
12596
  export declare function ɵunwrapSafeValue(value: ɵSafeValue): string;
12447
12597
 
12448
12598
  export declare function ɵunwrapSafeValue<T>(value: T): T;
@@ -12731,7 +12881,7 @@ export declare const ɵXSS_SECURITY_URL = "https://g.co/ng/security#xss";
12731
12881
  * An `EffectScheduler` which is capable of queueing scheduled effects per-zone, and flushing them
12732
12882
  * as an explicit operation.
12733
12883
  */
12734
- export declare class ɵZoneAwareQueueingScheduler implements ɵEffectScheduler, ɵFlushableEffectRunner {
12884
+ export declare class ɵZoneAwareQueueingScheduler implements ɵEffectScheduler, FlushableEffectRunner {
12735
12885
  private queuedEffectCount;
12736
12886
  private queues;
12737
12887
  scheduleEffect(handle: SchedulableEffect): void;
@@ -13728,6 +13878,7 @@ export declare type ɵɵDirectiveDeclaration<T, Selector extends string, ExportA
13728
13878
  [key: string]: string | {
13729
13879
  alias: string | null;
13730
13880
  required: boolean;
13881
+ isSignal?: boolean;
13731
13882
  };
13732
13883
  }, OutputMap extends {
13733
13884
  [key: string]: string;
@@ -15151,10 +15302,12 @@ export declare function ɵɵrepeater(collection: Iterable<unknown> | undefined |
15151
15302
  * @param emptyTemplateFn Reference to the template function of the empty block.
15152
15303
  * @param emptyDecls The number of nodes, local refs, and pipes for the empty block.
15153
15304
  * @param emptyVars The number of bindings for the empty block.
15305
+ * @param emptyTagName The name of the empty block container element, if applicable
15306
+ * @param emptyAttrsIndex Index of the empty block template attributes in the `consts` array.
15154
15307
  *
15155
15308
  * @codeGenApi
15156
15309
  */
15157
- export declare function ɵɵrepeaterCreate(index: number, templateFn: ComponentTemplate<unknown>, decls: number, vars: number, tagName: string | null, attrsIndex: number | null, trackByFn: TrackByFunction<unknown>, trackByUsesComponentInstance?: boolean, emptyTemplateFn?: ComponentTemplate<unknown>, emptyDecls?: number, emptyVars?: number): void;
15310
+ export declare function ɵɵrepeaterCreate(index: number, templateFn: ComponentTemplate<unknown>, decls: number, vars: number, tagName: string | null, attrsIndex: number | null, trackByFn: TrackByFunction<unknown>, trackByUsesComponentInstance?: boolean, emptyTemplateFn?: ComponentTemplate<unknown>, emptyDecls?: number, emptyVars?: number, emptyTagName?: string | null, emptyAttrsIndex?: number | null): void;
15158
15311
 
15159
15312
  /**
15160
15313
  * A built-in trackBy function used for situations where users specified collection item reference
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/core",
3
- "version": "17.1.0-next.3",
3
+ "version": "17.1.0-next.5",
4
4
  "description": "Angular - the core framework",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.1.0-next.3
2
+ * @license Angular v17.1.0-next.5
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.1.0-next.3
2
+ * @license Angular v17.1.0-next.5
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */