You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed
Dropdown Hover Gap Bug - Fixed critical issue where hover-triggered dropdowns would close when moving mouse from trigger to menu
Root cause: onMouseEnter/onMouseLeave events were attached separately to trigger and menu elements, creating a gap where neither element received hover when transitioning between them
Solution: Moved hover events to the container element that wraps both trigger and menu, ensuring the dropdown stays open while hovering anywhere within the component
Fixed across all platform implementations (JVM, JS, WASM)