Skip to content

Releases: TanStack/virtual

@tanstack/vue-virtual@3.13.36

Choose a tag to compare

@github-actions github-actions released this 18 Aug 15:04
Immutable release. Only release title and notes can be modified.
e9874f0

Patch Changes

  • Updated dependencies [a0a411e, d2cf98b]:
    • @tanstack/virtual-core@3.17.8

@tanstack/virtual-core@3.17.8

Choose a tag to compare

@github-actions github-actions released this 18 Aug 15:04
Immutable release. Only release title and notes can be modified.
e9874f0

Patch Changes

  • #1256 a0a411e - Cancel the pending isScrolling reset when a scroll observer is torn down, and reset isScrolling and scrollDirection in cleanup() 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

Choose a tag to compare

@github-actions github-actions released this 18 Aug 15:04
Immutable release. Only release title and notes can be modified.
e9874f0

Patch Changes

  • Updated dependencies [a0a411e, d2cf98b]:
    • @tanstack/virtual-core@3.17.8

@tanstack/solid-virtual@3.13.37

Choose a tag to compare

@github-actions github-actions released this 18 Aug 15:04
Immutable release. Only release title and notes can be modified.
e9874f0

Patch Changes

  • Updated dependencies [a0a411e, d2cf98b]:
    • @tanstack/virtual-core@3.17.8

@tanstack/react-virtual@3.14.10

Choose a tag to compare

@github-actions github-actions released this 18 Aug 15:04
Immutable release. Only release title and notes can be modified.
e9874f0

Patch Changes

  • Updated dependencies [a0a411e, d2cf98b]:
    • @tanstack/virtual-core@3.17.8

@tanstack/marko-virtual@3.15.1

Choose a tag to compare

@github-actions github-actions released this 18 Aug 15:04
Immutable release. Only release title and notes can be modified.
e9874f0

Patch Changes

  • Updated dependencies [a0a411e, d2cf98b]:
    • @tanstack/virtual-core@3.17.8

@tanstack/lit-virtual@3.13.37

Choose a tag to compare

@github-actions github-actions released this 18 Aug 15:04
Immutable release. Only release title and notes can be modified.
e9874f0

Patch Changes

  • Updated dependencies [a0a411e, d2cf98b]:
    • @tanstack/virtual-core@3.17.8

@tanstack/angular-virtual@6.0.3

Choose a tag to compare

@github-actions github-actions released this 18 Aug 15:04
Immutable release. Only release title and notes can be modified.
e9874f0

Patch Changes

  • Updated dependencies [a0a411e, d2cf98b]:
    • @tanstack/virtual-core@3.17.8

@tanstack/vue-virtual@3.13.35

Choose a tag to compare

@github-actions github-actions released this 28 Jul 20:29
Immutable release. Only release title and notes can be modified.
ad2e6d0

Patch Changes

  • Updated dependencies [a5417b4]:
    • @tanstack/virtual-core@3.17.7

@tanstack/virtual-core@3.17.7

Choose a tag to compare

@github-actions github-actions released this 28 Jul 20:28
Immutable release. Only release title and notes can be modified.
ad2e6d0

Patch Changes

  • #1239 a5417b4 - Fix a one-frame viewport jump when above-viewport rows resize while scrolling up (#1227). resizeItem writes scrollTop synchronously inside the ResizeObserver callback to compensate for the size change, but then notified asynchronously — so the browser could paint a frame with the new scrollTop and the old item transforms, making the content jerk by the resize delta and snap back. When a compensation actually moves the scroll position, resizeItem now 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.