Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
A menu displays a list of actions. The Menu component handles the state management of the passed in list of actions.
MenuTrigger
as the first child of Menu
.MenuList
as the only child of MenuPopover
.hasIcons
prop for alignment if only some menu items have icons.hasCheckmarks
prop for alignment if only some menu items are selectable.MenuGroup
.Name | Description | Default | Control | ||||
---|---|---|---|---|---|---|---|
onCheckedValueChange | Callback when checked items change for value with a name ((e: MenuCheckedValueChangeEvent, data: MenuCheckedValueChangeData) => void)
| - | - | ||||
checkedValues | Map of all checked values Record<string, string[]> | - | |||||
defaultCheckedValues | Default values to be checked on mount Record<string, string[]> | - | |||||
hasIcons | States that menu items can contain icons and reserve slots for item alignment boolean | - | |||||
hasCheckmarks | States that menu items can contain selectable items and reserve slots for item alignment boolean | - | |||||
open | Whether the popup is open boolean | - | |||||
onOpenChange | Call back when the component requests to change value
The ((e: MenuOpenEvents, data: MenuOpenChangeData) => void) | - | - | ||||
defaultOpen | Whether the popup is open by default boolean | - | |||||
openOnHover | boolean | - | |||||
openOnContext | Opens the menu on right click (context menu), removes all other menu open interactions boolean | - | |||||
inline | Root menus are rendered out of DOM order on boolean | - | |||||
persistOnItemClick | Do not dismiss the menu when a menu item is clicked boolean | - | |||||
hoverDelay | Sets the delay for mouse open/close for the popover one mouse enter/leave number | - | |||||
children | Can contain two children including {@link MenuTrigger} and {@link MenuPopover}.
Alternatively can only contain {@link MenuPopover} if using a custom (Element | [Element, Element]) & ReactNode | - | |||||
positioning | Configures the positioned menu PositioningShorthand | - |