| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| @tanstack_virtual-core@3.17.7 source code.tar.gz | < 15 hours ago | 1.4 MB | |
| @tanstack_virtual-core@3.17.7 source code.zip | < 15 hours ago | 1.8 MB | |
| README.md | < 15 hours ago | 911 Bytes | |
| Totals: 3 Items | 3.2 MB | 0 | |
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.