Hello. I have updated my react-select v2.4.4 to v3.1.0 and now i get that MenuList component with custom scrolling library (react-custom-scrollbars v4.2.1) stopped working with mouse wheel. If i try to click / hold scroll, is working. I've downgrade to 2.4.4 for get working again.
You can check it in:
https://codesandbox.io/s/react-select-bug-nez1s
I dont know if it's a bug or any option i need to enable.
Thanks in advance.
Complete silence from devs?
I have the same issue.
I have the same issue, I'm using react-custom-scrollbars
The Select component is capturing scrolling in the dropdown by default so they can handle the appropriate events for the props onMenuScrollToTop, onMenuScrollToBottom.
You can disable this behaviour by using the captureMenuScroll prop by setting its value to false. BE AWARE that this will disable the functionality of the above mentioned props.
<Select captureMenuScroll={false} {...} />
Most helpful comment
The
Selectcomponent is capturing scrolling in the dropdown by default so they can handle the appropriate events for the propsonMenuScrollToTop,onMenuScrollToBottom.You can disable this behaviour by using the
captureMenuScrollprop by setting its value tofalse. BE AWARE that this will disable the functionality of the above mentioned props.