Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@radix-ui/react-menu
Advanced tools
@radix-ui/react-menu is a set of accessible, unstyled components for building menus in React applications. It provides a flexible and customizable way to create dropdown menus, context menus, and other types of menu interfaces.
Basic Menu
This code demonstrates a basic menu with three items. When an item is selected, an alert is shown.
import { Menu, MenuTrigger, MenuContent, MenuItem } from '@radix-ui/react-menu';
function BasicMenu() {
return (
<Menu>
<MenuTrigger>Open Menu</MenuTrigger>
<MenuContent>
<MenuItem onSelect={() => alert('Item 1 selected')}>Item 1</MenuItem>
<MenuItem onSelect={() => alert('Item 2 selected')}>Item 2</MenuItem>
<MenuItem onSelect={() => alert('Item 3 selected')}>Item 3</MenuItem>
</MenuContent>
</Menu>
);
}
Submenu
This code demonstrates a menu with a submenu. The submenu contains two items, and selecting any item triggers an alert.
import { Menu, MenuTrigger, MenuContent, MenuItem, MenuSub, MenuSubTrigger, MenuSubContent } from '@radix-ui/react-menu';
function Submenu() {
return (
<Menu>
<MenuTrigger>Open Menu</MenuTrigger>
<MenuContent>
<MenuItem onSelect={() => alert('Item 1 selected')}>Item 1</MenuItem>
<MenuSub>
<MenuSubTrigger>Submenu</MenuSubTrigger>
<MenuSubContent>
<MenuItem onSelect={() => alert('Subitem 1 selected')}>Subitem 1</MenuItem>
<MenuItem onSelect={() => alert('Subitem 2 selected')}>Subitem 2</MenuItem>
</MenuSubContent>
</MenuSub>
<MenuItem onSelect={() => alert('Item 2 selected')}>Item 2</MenuItem>
</MenuContent>
</Menu>
);
}
Context Menu
This code demonstrates a context menu that appears on right-click. The menu contains two items, and selecting any item triggers an alert.
import { Menu, MenuTrigger, MenuContent, MenuItem } from '@radix-ui/react-menu';
function ContextMenu() {
return (
<div onContextMenu={(e) => { e.preventDefault(); document.getElementById('context-menu-trigger').click(); }}>
Right-click here
<Menu>
<MenuTrigger id='context-menu-trigger' style={{ display: 'none' }} />
<MenuContent>
<MenuItem onSelect={() => alert('Context Item 1 selected')}>Context Item 1</MenuItem>
<MenuItem onSelect={() => alert('Context Item 2 selected')}>Context Item 2</MenuItem>
</MenuContent>
</Menu>
</div>
);
}
react-menu is a lightweight, accessible menu component for React. It provides similar functionality to @radix-ui/react-menu, including support for nested menus and context menus. However, it may not offer the same level of customization and flexibility as @radix-ui/react-menu.
react-aria is a library of React hooks that provides accessible UI primitives, including menu components. It offers a high degree of flexibility and accessibility, similar to @radix-ui/react-menu, but requires more manual setup and styling.
react-bootstrap is a popular library that provides Bootstrap components for React, including dropdown menus. While it offers a more opinionated and styled approach compared to @radix-ui/react-menu, it is less flexible in terms of customization.
react-menu
$ yarn add @radix-ui/react-menu
# or
$ npm install @radix-ui/react-menu
This is an internal utility, not intended for public usage.
FAQs
Unknown package
The npm package @radix-ui/react-menu receives a total of 2,105,430 weekly downloads. As such, @radix-ui/react-menu popularity was classified as popular.
We found that @radix-ui/react-menu demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.