Fix scrollbar issue not triggering onMenuScrollToBottom#6066
Fix scrollbar issue not triggering onMenuScrollToBottom#6066cmeiller wants to merge 1 commit intoJedWatson:masterfrom
Conversation
|
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit b3d413c:
|
|
We are waiting on this merge! |
|
Pinging this again, it would be great to get this merged! |
First of all, thank you for creating react-select!
Fixes #3232 & #5957
Superseed #4970
I fixed the #4970 PR from @Duarte10 to allow
onMenuScrollToBottomfunction to be triggered using scrollbar with mouse dragged.To fix the issue, we use a
scrolllistener, which requires changing the callback type from aWheelEventtoEvent(which contains all WheelEvent, TouchEvent and UIEvent).