sp-menu-item
NPM
1.0.0
Storybook
View Storybook
Try it on
webcomponents.dev
Attributes and Properties #
active
active
boolean
false
disabled
disabled
boolean
false
download
download
string | undefined
focused
focused
boolean
false
hasSubmenu
has-submenu
boolean
false
href
href
string | undefined
label
label
string | undefined
noWrap
no-wrap
boolean
false
open
open
boolean
false
referrerpolicy
referrerpolicy
| 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url' | undefined
rel
rel
string | undefined
selected
selected
boolean
false
tabIndex
tabIndex
number
target
target
'_blank' | '_parent' | '_self' | '_top' | undefined
value
value
string
Slots #
default slot
description
icon
submenu
value
Events #
undefined
MenuItemAddedOrUpdatedEvent
sp-menu-item-added
Event
announces the item has been added so a parent menu can take ownerships
Overview #
For use within an <sp-menu>
element, an <sp-menu-item>
represents a single item in a menu.
Usage #
yarn add @spectrum-web-components/menu
Import the side effectful registration of <sp-menu-item>
as follows:
import '@spectrum-web-components/menu/sp-menu-item.js';
When looking to leverage the MenuItem
base class as a type and/or for extension purposes, do so via:
import { MenuItem } from '@spectrum-web-components/menu';
Example #
Menus are a collection of <sp-menu-item>
s that can be modified via a disabled
or selected
attribute to represent an item in that state.
<sp-menu selectable> <sp-menu-item>Active Menu Item</sp-menu-item> <sp-menu-item disabled>Disabled Menu Item</sp-menu-item> <sp-menu-item selected>Selected Menu Item</sp-menu-item> </sp-menu>
Icon slot #
Content assigned to the icon
slot will be placed at the beginning of the <sp-menu-item>
.
<sp-menu style="width: 200px;"> <sp-menu-item> <sp-icon-save-floppy slot="icon"></sp-icon-save-floppy> Save </sp-menu-item> <sp-menu-item> <sp-icon-stopwatch slot="icon"></sp-icon-stopwatch> Finish </sp-menu-item> <sp-menu-item> <sp-icon-user-activity slot="icon"></sp-icon-user-activity> Review </sp-menu-item> </sp-menu>
Description slot #
Content assigned to the description
slot will be placed below the <sp-menu-item>
, like help text for users to understand the context of corresponding <sp-menu-item>
.
<sp-menu style="width: 200px;"> <sp-menu-item> Quick export <span slot="description">Share a snapshot</span> </sp-menu-item> <sp-menu-item> Open a copy <span slot="description">Illustrator for iPad</span> </sp-menu-item> <sp-menu-item> Share link <span slot="description">Enable comments and download</span> </sp-menu-item> </sp-menu>
Value slot #
Content assigned to the value
slot will be placed at the end of the <sp-menu-item>
, like values, keyboard shortcuts, etc., based on the current text direction.
<sp-menu style="width: 200px;"> <sp-menu-item>Save<kbd slot="value">⌘S</kbd></sp-menu-item> <sp-menu-item>Completed<span slot="value">47%</apn></sp-menu-item> <sp-menu-item>Activity<sp-link slot="value" href="#">More info</sp-link></sp-menu-item> </sp-menu>
Submenu #
An <sp-menu-item>
can also accept content addressed to its submenu
slot. Using the <sp-menu>
element with this slot name the options will be surfaced in flyout menu that can be activated by hovering over the root menu item with your pointer or focusing the menu item and pressing the appropriate ArrowRight
or ArrowLeft
key based on text direction to move into the submenu.
<sp-menu style="width: 200px;"> <sp-menu-item> Item with submenu <sp-menu slot="submenu"> <sp-menu-item>Additional options</sp-menu-item> <sp-menu-item>Available on request</sp-menu-item> </sp-menu> </sp-menu-item> </sp-menu>
Note: While sp-menu-item
can accommodate any custom content in the submenu
slot, it will not handle selection or keyboard navigation for such content. To ensure proper management of selection and keyboard navigation, it is recommended to use sp-menu
within the submenu
slot```
<sp-menu style="width: 200px;"> <sp-menu-item> Item with arbitrary content in submenu <div role="menuitem" slot="submenu" style="padding: 12px"> <img src="https://placekitten.com/200/200" alt="Kitten" style="width: 100%; height: auto; border-radius: 4px" /> <p>I am an arbitrary content in submenu</p> </div> </sp-menu-item> </sp-menu>
Value attribute #
When displayed as a descendent of an element that manages selection (e.g. <sp-action-menu>
, <sp-picker>
, etc.), an <sp-menu-item>
will represent the "selected" value of that ancestor when its value
attribute or the trimmed textContent
(represeted by el.itemText
) matches the value
of the ancestor element.
In the following example, the selected <sp-menu-item>
represents a value
of Text that is really long and useful to a visitor, but not exactly good to use in your application or component state.
for the ancestor element.
<sp-field-label for="picker-content">Value attribute usage:</sp-field-label> <sp-picker id="picker-content" label="Menu items examples" value="Text that is really long and useful to a visitor, but not exactly good to use in your application or component state." > <sp-menu-item> Text that is really long and useful to a visitor, but not exactly good to use in your application or component state. </sp-menu-item> <sp-menu-item>Not selected</sp-menu-item> </sp-picker> <sp-action-menu value="Text that is really long and useful to a visitor, but not exactly good to use in your application or component state." > <span slot="label">Menu items examples</span> <sp-menu-item> Text that is really long and useful to a visitor, but not exactly good to use in your application or component state. </sp-menu-item> <sp-menu-item>Not selected</sp-menu-item> </sp-action-menu>
When the value
attribute is leveraged, the selected <sp-menu-item>
represents a value
of short-key
for the <sp-action-menu>
element.
<sp-field-label for="picker-value">Value attribute usage:</sp-field-label> <sp-picker id="picker-value" value="short-key"> <span slot="label">Menu items examples</span> <sp-menu-item value="not-selected">Not selected</sp-menu-item> <sp-menu-item value="short-key"> Text that is really long and useful to a visitor, but not exactly good to use in your application or component state. </sp-menu-item> </sp-picker> <sp-action-menu value="short-key"> <span slot="label">Menu items examples</span> <sp-menu-item value="not-selected">Not selected</sp-menu-item> <sp-menu-item value="short-key"> Text that is really long and useful to a visitor, but not exactly good to use in your application or component state. </sp-menu-item> </sp-action-menu>