svelte-typeahead
The typeahead component implements a search box with typeahead (and an optional random button) for snel projects. (Snel is a cybernetical compiler for svelte applications in deno)
A visual example to play around with is also given in the svelte REPL: https://svelte.dev/repl/6f381dc0e66242288a1ba69d059d105b?version=3.46.2
In case you have not created a snel project before, head to https://deno.land/x/snel@v0.6.0 and follow the steps to create one.
To then use it, import the raw Typeaheadsmodule.svelte file as shown in the usage example.
After you initiated a snel project and added the code shown below, you are able to see in when running the project with "trex run start".
Usage Example
Import the component and set list of possible Results.
import Typeahead from "https://deno.land/x/svelte_typeahead/Typeaheadmodule.svelte"
let possibleResults = ["Result1","Result2","Result3"];
Use the component in your code. Set randomButton equal to {true} or {false} depending on whether the Button should appear.
<Typeahead possibleResults={possibleResults} randomButton={true} />
CSS
randombutton
class of the Buttonsearchfield
id of the input fieldtypeahead-object-list
class of the entire typeahead listtypeahead-objects
class of the listitems