Joe Lapp
Joe Lapp
It took some work, but I found a solution. I'm having to make other on-screen controls appear and disappear according to whether the autocomplete box contains a valid name, in...
And then to programmatically clear the autocomplete: ```ts function clearInput() { autocompleteClearButton.click(); } ```
I'm attempting to create a component that wraps AutoComplete to provide this additional functionality, but I can't figure out how to propagate slots forward to AutoComplete while also back-propagating slot...
I figured it out. I'm not using Svelte slot forwarding because it doesn't forward default slots and because it's not supported well in TypeScript. The caller optionally provides a `setClearer`...
Okay, thanks. I can make the type errors go away by doing that, but it makes *too many* type errors go away. Notice that I do not get a type...
I forked the repo to experiment with a possible solution, but I get this error that I can't figure out how to resolve: `Cannot find lib definition for 'svelte2tsx'.ts(2726)` ![Screen...
I'm also getting this error in SvelteKit. Ping @bestguy. I'd love a fix, updating the above dependencies.
FYI @hunmar
See also #38.
FYI @dfcreative