inokawa
inokawa
As a workaround, you can override `item` prop of `Virtualizer` and use `React.cloneElement` in it. https://github.com/inokawa/virtua/blob/main/stories/react/advanced/With%20cmdk.stories.tsx It may be better to add a shorthand like ``. As an important point,...
Hello @wanecek , Vue Virtualizer doesn't have `item` prop yet but it would be possible to implement the feature. Currently I don't have time to do it, but contribution is...
React 19 will have ref cleanup function. I'll try it after release.
It's probably fixable by detecting desktop Safari by user agent and patching it. Previously I was looking for a more general solution, but it didn't work that time.
https://github.com/inokawa/virtua has a virtualized example of radix-ui Select. shadcn/ui Select is built with radix-ui Select so it might be usable. https://inokawa.github.io/virtua/?path=/story/advanced-with-radix-ui--select https://github.com/inokawa/virtua/blob/main/stories/react/advanced/With%20radix-ui.stories.tsx
@michaelrambeau It's correct. Thank you!
Hi, this behavior is currently expected one. What do you need it for?
Thanks. It seems worth implementing. I think it should be for `reverse: true` because it is different from native behavior of scrollable element and it is required only for chat...
It's planned but not right away.
This library doesn't know the current distance to the bottom end. It's necessary restriction to support #315. So I would add `onResize` like prop and allow users to implement their...