I am transitioning from using dcc.Dropdown
to dmc.Select
. With dcc.Dropown
when I have a selected item, and then enter a search character, it is essentially a clean start and the existing selection is gone:
Using dcc.Dropdown, the new character is appended to the existing selection and No Options Found is returned:
This is definitely visible using the example on the Dash Mantine Components page
Is there any setting or modification possible to get the functionality I need from dmc.Select without having to manually clear the currently selected value first?