add clearSearchOnFocus to Select#627
Conversation
| /** Props passed down to the underlying `ScrollArea` component in the dropdown */ | ||
| scrollAreaProps?: ScrollAreaProps; | ||
| /** If set, the highlighted option is selected when the input loses focus @default `false` */ | ||
| autoSelectOnBlur?: boolean; |
There was a problem hiding this comment.
Is this one important enough to include a test for? That said when I try it on their docs site it doesn't seem to do what it says 🤷
There was a problem hiding this comment.
I included a test because it is not a Mantine prop. They don't have this feature available in their basic Select component.
I'll post a sample app in this test environment so you can give it a try.
There was a problem hiding this comment.
Oh. I just answered a different question. I thought you were asking about the clearSearchOnFocus which is the new feature added in this PR.
Their autoSelectOnBlur is not currently working as they describe in their docs. (It's a bug.) I reported it and they said it will be fixed in 8.2.5. I'll wait for that before releasing
closes #626
adds
clearSearchOnFocusso a searchable Select is similar to the dcc.Dropdown