react-aria-menubutton
react-aria-menubutton copied to clipboard
A fully accessible, easily themeable, React-powered menu button
Hi, Any chance this could be updated to use the latest version of react-transition-group? It's currently relying on the abandoned 1.x version.
https://www.w3.org/TR/wai-aria-practices-1.1/examples/menu-button/menu-button-actions-active-descendant.html It looks like the current implementation use `element.focus()` instead. Any thoughts on using `active-descendant` approach?
## Version updates * Babel ## Build system changes * Added `plugin-proposal-object-rest-spread`, `plugin-proposal-optional-chaining`, `plugin-proposal-nullish-coalescing-operator`
I have used Wrapper alongside other components inside `MyComponent` where it has its own click event handler. ``` {otherComponents} click me {menuItems} ``` It would seem that a click on...
I tried using `CSSTransitionGroup` like so: ``` {musicMenuItems} ``` `test` class definitions: ``` .test-enter { opacity: 0.01; } .test-enter.test-enter-active { opacity: 1; transition: opacity 500ms ease-in; } .test-leave { opacity:...
Hello and thank you for your work. This library has been of great help to me. ### Use case I'm using `react-aria-menubutton` to help me handle keyboard navigation in my...
Before, when I added a onClick on a MenuItem, the menu stayed open. Now, adding a onClick on an Item doesn't change the behaviour.
related: #107 The space key in the Button element has a behavior similar to the keyUp event. This will fire an unexpected click event in some browsers. This PR prevents...
In the [demo](https://davidtheclark.github.io/react-aria-menubutton/demo/), there seems to be a bug when using spacebar to trigger the menu. ### Steps to reproduce: 1. tab to focus the menu trigger "Select a word"...
While this library is fantastic for words, when dropdown has numbers as the dropdown values and the user types a number value to search for it, the dropdown does not...