simple-svelte-autocomplete
simple-svelte-autocomplete copied to clipboard
Simple Autocomplete / typeahead component for Svelte
" received an unexpected slot "dropdown-header"."
I am not sure what exactly is causing this but when I try to use this library in my sveltekit project I get an error: ``` is not a valid...
Check out this example where the dropdown properly reflects the selected value: https://svelte.dev/repl/6f872d21bd7c49a6b25ab50a37011b31?version=3.49.0 And then this one where it does not: https://svelte.dev/repl/cbab93a181ff4c6687f6adc147e66ded?version=3.49.0 It seems like object comparison is just happening...
The scroll-aware position of the suggestion list is lagging behind. The position should be set in the `afterUpdate` lifecycle if needed. FYI: Fix comes as PR soon.
A bit hard to describe, so here is some code to show it: This is my component (let's call it `ResolutionSelector`) which wraps `AutoComplete` ```svelte import AutoComplete from 'simple-svelte-autocomplete'; async...
I have two questions about clearing the input field, not both applying to the same autocomplete. 1. How do I manually clear the input from JS? 2. How do I...
I have been playing around with this library a bit, and can't seem to figure out if there is a way to have the suggestions open when clicking on an...
Fixes #145
Bulma has a [dropdown component](https://bulma.io/documentation/components/dropdown/) with good default style. I suggest we use this as the default look&feel.
I suggest to add an option so when the input is multiple, we can choose a maximum number of items to select.