Dropdown menu displays a list of contextual actions relevant to nearby content. The Dropdown Menu component applies progressive disclosure by hiding contextual actions until requested by the user.
Problem
As a customer, I want to view actions relevant to my current task.
As a designer, I want to hide contextual actions and only present them to a user when requested by the user.
Solution
Display a Dropdown Menu component that provides a clear label and when interacted with allows a user to view actions in context with their current task.
Guidance
Use short, meaningful button labels
Use active descriptive verbs for your labels such as ‘Save’ or ‘Continue’.
Use sentence case for all button labels
Dropdown menus are typically used when you have 3 to 10 items to choose from.
Action items are used for navigation or commands, where an action is initiated based on the selection.
When organizing dropdown menu items, sort the list in a logical order preferably alphabetically ascending or alternatively by putting the most selected options at the top.
Don't use the Dropdown Menu for form inputs or selects, instead use the Select List component.
Don't hide a primary action, instead the Button Menu component should be used to ensure the primary action is visible by default.
Don't nest other elements or components insider the Dropdown Menu, only the MenuItem component is to be nested within.
Allows the props available in the MenuItem component.
size
oneOf: default | small | large | xlarge
default
false
Sets the size of the component. If not set "default" is output as the default setting.
menuSize
oneOf: default | small | large
default
false
Sets the size of the action items (MenuItem). If not set "default" is output as the default setting.
className
string
false
Allows for specific classNames to be set.
label
string
true
The content to display within the button.
labelHidden
boolean
false
Whether to display the label text next to the selected icon.
iconType
oneOf: more | chevron
chevron
false
Whether to display more icon or the more traditional chevrown down icon.
onClick
function
true | false
Allows for an additional action to be fired when the DropDown Menu button is clicked to open the menu.
open
boolean
false
Allows for the menu to be expanded by an external action.
borderWidth
oneOf: small, medium
medium
false
Sets the button and menu container border width.
width
oneOf: small | default | large | xlarge - See Sizing for form width tokens.
default
false
Sets the width of the menu item container.
disabled
boolean
false
A boolean that turns the element into a disabled state.
labelContext
string
false
Allows for additional instructions to be inserted into the element, this content is visually hidden and can be used to provide additional context to the element for assistive technolgy users.
ref
string
false
Allows a ref to be set on the button | link.
Available props for the Menu Item
Props for the Menu Item component
Property
Type
Default
Required
Description
text
ReactNode
true
The content to display in the action.
className
string
false
Allows for specific classNames to be set.
href
string
true when element is an 'a'.
A href is required when setting the element type as an anchor (a), the value passed needs to be a URL string.
onClick
function
true | false
Allows for an additional action to be fired when the DropDown Menu button is clicked to open the menu.
disabled
boolean
false
A boolean that turns the element into a disabled state.
labelContext
string
false
Allows for additional instructions to be inserted into the element, this content is visually hidden and can be used to provide additional context to the element for assistive technolgy users.