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

Core - [ ] Upgrade to Svelte version 4 and latest Kit - [ ] Add JSDocs - [ ] Don't mutate arrays internally - [ ] Update events to...

enhancement

I have a Select with complex items that shows some selected items at startup. Items are defined in `items` correctly and `values` just contains the items' `value` field not the...

Could there be an option to trigger the select on mouse/pointerdown instead of pointerup? Would make it more responsive, otherwise there's a small delay between when the mouse is clicked...

enhancement

When I'm using `use:enhance` in my Svelte files, the select isn't getting cleared after a successful request. Could this be fixed? Or is it supposed to happen - am I...

VSCode is warning me that `let:index` is not typed, but it works as it should. v5.7.0 ```html dispatch('select', e.detail)} > {item.label} {selection.label} - {index} Nothing found... ```

Fantastic package however, I seem to have hit a snug trying to set focus and find available options. // select-component.svelte ``` ``` //select-component.test.ts ``` const selectInput = getByPlaceholderText('placeholder text'); expect(selectInput).toBeTruthy();...

I have two groups: 'Items' and 'My items'. ``` const groupBy = (item) => item.user_id ? 'My items' : 'Items'; ``` No matter how I sort my items, the 'Items'...

Would it be possible to add so that you get id when calling async-function for searching? Because I have multiple searches on the same page with different options.

Hello ! I have an issue that is driving me crazy since i cant find a solution or my error. I am using svelte-select to utilize in a form element....

Personally I believe the default placeholder text should be 'Select...' not 'Please select', politeness is not required. I understand this is a strange request, but as a native English speaker...