Ilya Golovin

Results 14 comments of Ilya Golovin

@svipas I saw your issue, can't help rn. I'll be able to work on this and help you only on this weekend.

@svipas This will prioritize react-native's `Text` in suggestions ![image](https://github.com/user-attachments/assets/25c9a707-e5d0-41d1-bb66-88ac30831669) ```json "tsEssentialPlugins.replaceSuggestions": [ { "suggestion": "Text", "filter": { "languageMode": "TSX", "kind": "class" }, "patch": { "sortText": "!" }, }, { "suggestion":...

This issue can be "fixed" in the userland by calling [virtualizer.measure()](https://tanstack.com/virtual/latest/docs/api/virtualizer#measure) when the ordering in the item list is changed. The issues are: 1. The performance drawbacks are unclear 2....

I found a [reference ](https://github.com/TanStack/virtual/issues/831#issuecomment-2353116395) where @piecyk recommends using `useCallback` to solve a (looks like) similar issue. In vue, however, we don't have such an API and rely on a...