< ComboBox />
A simple combobox to be used in your Svelte / Svelte-kit projects.
Install by running: npm i svelte-combobox
ComboBox Features
Easy and Searchable dropdown user input.
Simple props based data interface for options.
Props based classes for styling via css variables.
Fully complaint with WAI-ARIA Accessibility Guidelines.
Try It Out !
You Selected : Nothong Yet !
The value of selection is :
null
null
Troubleshooting Typescript !!!
If you are getting the following error "Cannot find module 'svelte-combobox/ComboBox.svelte' or its corresponding type declarations" after importing the component then you need to modify you tsconfig.json as follows :
{
compilerOptions : {
//other options
"moduleResolution" : "Bundler"
}
}