Releases: TanStack/virtual
Releases · TanStack/virtual
Release list
@tanstack/vue-virtual@3.13.36
Immutable
release. Only release title and notes can be modified.
@tanstack/virtual-core@3.17.8
Immutable
release. Only release title and notes can be modified.
Patch Changes
-
#1256
a0a411e- Cancel the pendingisScrollingreset when a scroll observer is torn down, and resetisScrollingandscrollDirectionincleanup()so they don't stay stuck after the scroll element changes or is removed. -
#1246
d2cf98b- Ignore connected measurement nodes whose indexes are outside the current item count.
@tanstack/svelte-virtual@3.13.36
Immutable
release. Only release title and notes can be modified.
@tanstack/solid-virtual@3.13.37
Immutable
release. Only release title and notes can be modified.
@tanstack/react-virtual@3.14.10
Immutable
release. Only release title and notes can be modified.
@tanstack/marko-virtual@3.15.1
Immutable
release. Only release title and notes can be modified.
@tanstack/lit-virtual@3.13.37
Immutable
release. Only release title and notes can be modified.
@tanstack/angular-virtual@6.0.3
Immutable
release. Only release title and notes can be modified.
@tanstack/vue-virtual@3.13.35
Immutable
release. Only release title and notes can be modified.
Patch Changes
- Updated dependencies [
a5417b4]:- @tanstack/virtual-core@3.17.7
@tanstack/virtual-core@3.17.7
Immutable
release. Only release title and notes can be modified.
Patch Changes
- #1239
a5417b4- Fix a one-frame viewport jump when above-viewport rows resize while scrolling up (#1227).resizeItemwritesscrollTopsynchronously inside the ResizeObserver callback to compensate for the size change, but then notified asynchronously — so the browser could paint a frame with the newscrollTopand the old item transforms, making the content jerk by the resize delta and snap back. When a compensation actually moves the scroll position,resizeItemnow notifies synchronously so the transform commit lands in the same paint as the scroll write. Resizes that don't move the scroll position (below-fold measurements, iOS-deferred adjustments) keep the cheaper async notify.