svelte-typeahead
svelte-typeahead copied to clipboard
Accessible, fuzzy search typeahead component
I wasn't able to customize typeahead to remove its background and change the look and feel of the results. https://svelte.dev/repl/e83817000b5b4aa7bd3a3f83b20256c8?version=3.49.0 I even tried to create a "surrogate" input to input...
It would be nice to: - have a default search icon so the component better resembles a search input - customize the icon ... and also have a custom icon...
I have multiple instances on my route, a main one, and a wrapped version, the wrapped version has a different look, but the styles of the main version is being...
I think about having a title and a subtilte, which should both be searched but have different formatting. of course I can do `const extract = (item) => ' '...
Introducing a filter for selecting items additional to `filter` and `disable`. This gives selected items an class, which could be styled from outside. Actually I keept `selected` as class name,...
When the component gets focus and there is already a value selected, the drop down should not fire. When you just entered the page, the first click does not fire...
I'd like to be able to set a threshold on what is considered a match. This is what I do right now: ``` {#if result.score >= 20} {getTitle(result.original)} {/if} ```...
Add a prop: external-label={id} that will use the id external-labal for aria and input for willing to implement this.