virtual icon indicating copy to clipboard operation
virtual copied to clipboard

🤖 Headless UI for Virtualizing Large Element Lists in JS/TS, React, Solid, Vue and Svelte

Results 144 virtual issues
Sort by recently updated
recently updated
newest added

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | autofix-ci/action | action | digest | `551dded` -> `635ffb0` | --- ### Configuration...

dependencies

### Describe the bug Trying to render a Tanstack table with around 50 columns and I want to avoid using column virtualization and just stick with row virtualization. Seems like...

### Describe the bug From version 3.13.3 the range calculations changed in [this](https://github.com/TanStack/virtual/commit/02ef3097de4a14ed4077ace2ca901dc411bf81c1) commit. It now returns the complete range when the `lanes` in `useVirtualizer` are changed. ### Your minimal,...

### Describe the bug Looks like virtualizer.measureElement is not working with SolidJS ```jsx {(item) => Row {item.index} } ``` Dirty workaround: ``` {(item) => { el.dataset.index = item.index.toString(); // Row...

### Describe the bug When using `` in solid-js with TanStack virtual, the virtualizer never renders any rows once the async data is resolved. The virtualizer receives the "count" of...

### Describe the bug It's working fine in Svelte 4. I'm currently trying out the library in Svelte 5 and found my use case doesn't work. I got an empty...

### Describe the bug There seems to be a regression in `v3.13.8` vs `v3.13.7` - exact same code in both cases: ```typescript // somewhere above const measureElement: Parameters[0]["measureElement"] = (...

### Describe the bug I have a list of about 3 million rows. However, when I scroll to line 745531, I cannot continue scrolling down. I reused the demo on...

### Describe the bug When using "@tanstack/react-virtual": "3.13.8" and "@tanstack/react-router": "1.112.12" If the page contains a virtualized list like this: ``` const virtualizer = useWindowVirtualizer({ gap: 16, overscan: 4, count:...

This commit ensures a fluid user experience when applying sorting on TanStack table by reading the deferred value instead of the actual state.