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 complex site navigation header. Some pseudocode:
<script>
const popover1 = createPopover({});
const popover2 = createPopover({});
</script>
<button use:popover1.button ... />
<div use:popover1.panel ... />
<button use:popover2.button ... />
<div use:popover2.panel ... />
However, if I first click popover1.button, then click popover2.button (while popover1.panel is still "expanded") it will only close popover1.panel. I must click popover2.button a second time to open popover2.panel.
In headlessui, this action is supported with grouping related popovers (<Popover.Group />).
Is there a way to achieve that functionality?
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 complex site navigation header. Some pseudocode:
However, if I first click
popover1.button, then clickpopover2.button(whilepopover1.panelis still "expanded") it will only closepopover1.panel. I must clickpopover2.buttona second time to openpopover2.panel.In headlessui, this action is supported with grouping related popovers (
<Popover.Group />).Is there a way to achieve that functionality?