Ilya Golovin
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  ```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...