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

HeadlessUI components for Svelte

Results 20 svelte-headlessui issues
Sort by recently updated
recently updated
newest added
trafficstars

Do I need to control this with my own state and use this instead ``$menu.expanded``, handle outside click and so on? Or is there an easier way ?

I'm attempting to clear the combobox input after selecting an item like so. ``` function handleSelect(e: Event) { ...select actions $combobox.selected = null; } ``` However I get the error...

It's a little "loosey-goosey" right now, using "any" for the value but really expecting / treating things as a string in some places. It either needs to be a string...

Right now this lib does not dispatch any event, which makes integrating with other libraries difficult. For example, if I am using `Dialog` action, it would be great if an...

Thanks for all the work you've put into this library! Excited to use it and see it grow. 😃 --- I want to use multiple Popovers to build a more...

I got this error: ``` index.mjs:54 Uncaught TypeError: stop is not a function at index.mjs:54:17 at behavior.ts:6:52 ``` when a menu (dropdown) is unmounted while redirecting. Seems like it has...

Looks like some useful features that would be nice to implement: https://tailwindcss.com/blog/headless-ui-v2 This will probably happen after upgrading to Svelte 5 & Runes

Is there a recommended approach to dynamically switching the selector style across multiple breakpoints? Specifically, I'd like to use the "Tabs" component while in desktop but switch to a "Listbox"...

```svelte {#each USERMENU_ELEMENTS as item} {@const active = $menu.active === item.name} {item.name} {/each} ``` hey, so I have a menu which works perfectly fine except the navigation doesn't work when...

I'm using combobox and listbox and I'd like to pass the tabindex so I can control how the form is navigated. However, both the combobox and listbox are ignoring the...