svelte-select icon indicating copy to clipboard operation
svelte-select copied to clipboard

Svelte Select. A select component for Svelte

Results 98 svelte-select issues
Sort by recently updated
recently updated
newest added

Hello, thanks for the fantastic component! I think it would be very cool and useful to allow spaces and other characters to trigger an item creation when typing, such as...

enhancement
help wanted

Bumps [minimist](https://github.com/substack/minimist) from 0.0.8 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR aeb3e27 1.2.5...

dependencies

Hi, Is it possible to add up/down page list scrolling as well as the up/down arrows? I think it's intuitive that when you can use the up/down arrows, you should...

enhancement

Bumps [ws](https://github.com/websockets/ws) from 6.1.2 to 6.2.2. Release notes Sourced from ws's releases. 6.2.1 Bug fixes Fixed a bug that, under certain circumstances, prevented the close timer from being set (aa1dcd5)....

dependencies

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Hey, when I set the exact same array: ``` const items = [ { value: "whatsapp", label: " WhatsApp", }, { value: "discord", label: " Discord", }, { value: "facebook",...

It seems that some CSS variables are not honored, for example font-size: https://svelte.dev/repl/b771ec4253594153b649e9e6dc027ced?version=3.50.1 It's all the variables that are defined here: https://github.com/rob-balfre/svelte-select/blob/feature/v5/src/lib/Select.svelte#L869 This should probably be: ``` font-size: var(--font-size, 16px);...

bug

I retrieve data using loadOption. If I press 'Enter' (to select) before the list opens, the component crashes: ![image](https://user-images.githubusercontent.com/4361591/190618320-95f1d9ab-a7a8-4967-939b-c43e04060632.png) in filter.js: ``` let filterResults = items.filter((item) => { let matchesFilter...

As demonstrated by the following repl there is an issue when the Select module is used inside a {#each } loop https://svelte.dev/repl/23a5e5bca2fe496496d7de69e7279b90?version=3.50.1 Situation: 1. Creating Select modules inside loop 2....

This allows users to bring their own handler ``. I use it to reset internal state of a complex search bar on top of svelte-select when hitting ESC