I have an almost working implementation of Material UI Autocomplete with the dropdown list virtualizised with react-virtuoso.
The issue I'm seeing at the moment is that when navigating upwards (0:25 in the video), the list doesn't move past the topmost item although the component seems to think it moving upwards.
It would seem like internally the list is moving upwards, but the gui isn't updated to reflect this. This is apparent when ⬇️ is pressed after pressing ⬆️: it takes as many ⬇️'s as there were ⬆️'s before the topmost item is highlighted again. The expected behavior is to scroll up as with a non-virtualized list, not sure if this is an issue with the react-virtuoso setup or if this is an issue with the Autocomplete component or this setup combining both.
A video of this issue in action can be found in this GitHub issue or directly here.
Thanks!
edit: here is a codesanbox of the issue: https://codesandbox.io/s/material-demo-forked-r6i2y?file=/demo.tsx