File tree Expand file tree Collapse file tree
packages/angular-virtual/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ function injectVirtualizerBase<
104104 // allowing it to be created after input/model signals are initialized.
105105 // Options are untracked to maintain a single instance of the Virtualizer.
106106 const lazyVirtualizer = computed (
107- ( ) => new Virtualizer ( untracked ( resolvedOptions ) )
107+ ( ) => new Virtualizer ( untracked ( resolvedOptions ) ) ,
108108 )
109109
110110 // The reference in onChange is safe since computed signals are not evaluated eagerly.
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ type SignalProxy<
1010> = {
1111 [ K in TMethodsToPassThrough ] : TInput [ K ]
1212} & {
13- [ K in TAttributesToTransformToSignals ] : Signal < TInput [ K ] >
14- } & {
15- [ K in TMethodsToTrack ] : TInput [ K ]
16- } & {
17- [ K in TMethodsToTransformToSignals ] : Signal < ReturnType < TInput [ K ] > >
18- }
13+ [ K in TAttributesToTransformToSignals ] : Signal < TInput [ K ] >
14+ } & {
15+ [ K in TMethodsToTrack ] : TInput [ K ]
16+ } & {
17+ [ K in TMethodsToTransformToSignals ] : Signal < ReturnType < TInput [ K ] > >
18+ }
1919
2020export function signalProxy <
2121 TInput extends Record < string | symbol , any > ,
You can’t perform that action at this time.
0 commit comments