mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 20:08:43 +08:00
55c85f77a1
* deps: upgrade rc-menu, and close: #2837 * test: update snapshots * Update rc-calendar * Update rc-cascader * Update rc-dialog * Update dropdown * Update rc-select@7.1.0 * Update rc-slider * Update rc-time-picker * Update rc-tooltip * Update rc-tree-select * Mock rc-trigger and Portal * Fix animation warning when inlineCollapsed changes * fix: should use SubMenu[popupClassName] * Fix typescript error * Fix lint * fix: style for menu * Mock rc-trigger for React 15 * Remvoe allow_failures
3.3 KiB
3.3 KiB
category | cols | type | title |
---|---|---|---|
Components | 1 | Navigation | Menu |
Menu list of Navigation.
When To Use
Navigation menu is important for a website, it helps users jump from one site section to another quickly. Mostly, it includes top navigation and side navigation. Top navigation provides all the category and functions of the website. Side navigation provides the Multi-level structure of the website.
More layouts with navigation: layout.
API
<Menu>
<Menu.Item>Menu</Menu.Item>
<SubMenu title="SubMenu">
<Menu.Item>SubMenuItem</Menu.Item>
</SubMenu>
</Menu>
Menu
Param | Description | Type | Default value |
---|---|---|---|
defaultOpenKeys | array with the keys of default opened sub menus | ||
defaultSelectedKeys | array with the keys of default selected menu items | string[] | |
inlineCollapsed | specifies the collapsed status when menu is inline mode | boolean | - |
inlineIndent | indent px of inline menu item on each level | number | 24 |
mode | type of the menu; vertical , horizontal , and inline modes are supported |
string: vertical | vertical-right | horizontal | inline |
vertical |
multiple | Allow selection of multiple items | boolean | false |
openKeys | array with the keys of currently opened sub menus | string[] | |
selectable | Allow to be selected | boolean | true |
selectable | allow selecting menu items | boolean | true |
selectedKeys | array with the keys of currently selected menu items | string[] | |
style | style of the root node | object | |
theme | color theme of the menu | string: light dark |
light |
onClick | callback executed when a menu item is clicked | function({ item, key, keyPath }) | - |
onDeselect | callback executed when a menu item is deselected, only supported for multiple mode | function({ item, key, selectedKeys }) | - |
onOpenChange | called when open/close sub menu | function(openKeys: string[]) | noop |
onSelect | callback executed when a menu item is selected | function({ item, key, selectedKeys }) | none |
subMenuOpenDelay | delay time to show submenu when mouse enter, unit: second | number | 0 |
subMenuCloseDelay | delay time to hide submenu when mouse leave, unit: second | number | 0.1 |
More options in rc-menu
Menu.Item
Param | Description | Type | Default value |
---|---|---|---|
disabled | whether menu item is disabled or not | boolean | false |
key | unique id of the menu item | string |
Menu.SubMenu
Param | Description | Type | Default value |
---|---|---|---|
children | sub menus or sub menu items | Array<MenuItem|SubMenu> | |
disabled | whether sub menu is disabled or not | boolean | false |
key | unique id of the sub menu | string | |
title | title of the sub menu | string|ReactNode | |
onTitleClick | callback executed when the sub menu title is clicked | function({ key, domEvent }) |
Menu.ItemGroup
Param | Description | Type | Default value |
---|---|---|---|
children | sub menu items | MenuItem[] | |
title | title of the group | string|ReactNode |
Menu.Divider
Divider line in between menu items, only used in vertical popup Menu or Dropdown Menu.