Vadim

Results 43 comments of Vadim

Hello. `MenuList` in `react-select` is generic. So the result of `wrapMenuList` function should be a generic component. In your changes `wrapMenuList` is generic, but its result isn't. https://github.com/JedWatson/react-select/blob/master/packages/react-select/src/components/Menu.tsx#L436 Can you...

@mihkeleidast It will work if you make type of `MenuList` the same as `components.MenuList`: ``` export const MenuList = ( props: MenuListProps, ) => { return ; }; ``` https://github.com/JedWatson/react-select/blob/3aee85cb8c5d045d47d45b0f9ebd0c58d4593c42/packages/react-select/src/components/Menu.tsx#L436

I didn't notice that `react-select` accepts your format of function. I tried to do something more generic like ``` function wrapMenuList(MenuList: T): T {} ``` But there were other problems....

This library was removed in version `0.6.2`

Try version `0.6.2` please

Hello. What you want to test? This library is a wrapper above [react-select](https://react-select.com/). If you use selenium-like test framework with css-selectors, you can use props `className` and `classNamePrefix`. https://react-select.com/props If...

Hello. There is description of this feature. https://github.com/vtaits/react-select-async-paginate/issues/48

Hello. Can you make a sandbox example?