menu icon indicating copy to clipboard operation
menu copied to clipboard

React Menu

Results 127 menu issues
Sort by recently updated
recently updated
newest added

We are occasionally experiencing the following error in our production environment. Only certain users are experiencing this. We are using an antd select component, which uses the react-component/select component, which...

看到有 `measure.registerPath(eventKey, connectedKeyPath)` 在 `MenuItem.tsx` 中,如果有 measure 返回 null, 是什么意思 ` if (measure) { return null; }`

Thanks for your work on #385 @zombieJ. Is there a way to prevent the aria-hidden element being added to the DOM? The upgrade to antd 4.16 has caused many issues...

When attempting to import `MenuInfo` with: ```ts import { MenuInfo } from 'rc-menu/lib/interface' ``` I get an error: ``` Cannot use namespace 'MenuInfo' as a type. TS2709 ``` I think...

Since React v18 is out for a while, do you support the new root.render?

Hi, wondering if there is an easy way to configure the menu in the way that it opens the submenu on hover and only close it when click away?

如视频中的效果 https://user-images.githubusercontent.com/16337280/158781387-325f74d8-6494-4b8d-8073-f9a586c01e03.mp4

The menu.item disabled prop should still allow mouseenter/leave, while disabling click and keydown. Alternatively, allow onClick or href prop to be passed in to override the components href/onclick prop. When...

用 Selenium IDE / UI.Vision / SideeX 录制的自动化脚本会优先使用 id 选择器,生成的 selector 如下: `//ul[@id='rc-menu-uuid-82370-17-business-page-popup']/li[2]/span[1]/a[1]` 其中 "82370-17" 是随机生成的数字,录制的脚本运行时会重新打开页面,生成不同的随机数,导致录制的脚本找不到对应的元素,测试脚本运行失败。 请问下为什么会考虑在 id 属性里添加 uuid 随机数呢?可以换成使用 `data-*` 的自定义属性吗?