CaptainCodeman / svelte-headlessui

HeadlessUI components for Svelte
https://captaincodeman.github.io/svelte-headlessui/
MIT License
529 stars 25 forks source link

Popover panel - Broken ARIA menu #90

Closed matthieu-hm closed 1 month ago

matthieu-hm commented 4 months ago

version: 0.0.33

The directive should not add role="menu" its considerate as an aria error. Its implies that the popover can be controle through arrow keys.

More info on the page: https://blog.pope.tech/2020/03/27/broken-aria-menu-example/

<script>
  const popover = createPopover({});
</script>

<!-- /!\ Should not add `role="menu"` -->
<div use:popover.panel>
  <!-- Popover content -->
</div>