Web Awesome (ViUR)

Font Awesome
Try SSR Server-side rendering (SSR) generates component HTML on the server before the page loads, improving SEO and initial load time. Use the switch to see Web Awesome components render with and without SSR.
Search this website ⌘KCtrl+K Light Dark System Docs Select Color Scheme Default Awesome Shoelace Active Brutalist Glossy Matter Mellow Playful Premium Tailspin Docs Select Theme View Project on GitHub Star Project on GitHub
Start Components Docs Help
Web Awesome Font Awesome Build Awesome
Search this site… /
Try SSR Server-side rendering (SSR) generates component HTML on the server before the page loads, improving SEO and initial load time. Use the switch to see Web Awesome components render with and without SSR.
Light Dark System Docs Select Color Scheme Default Awesome Shoelace Active Brutalist Glossy Matter Mellow Playful Premium Tailspin Docs Select Theme

Getting Started

  • Installation
  • Usage
  • Forms
  • Localization
  • Frameworks
  • Using with AI
  • Figma Design Kit ProThis requires access to Web Awesome Pro
  • Server Rendering

Resources

  • Accessibility
  • Browser Support
  • Contributing
  • Patterns ProPatterns require access to Web Awesome Pro
  • Migrating from Shoelace
  • Visual Tests
  • Changelog
  • Help & Support

Theming & Utilities

  • Overview
  • Built-in Themes
  • Color Palettes
  • Design Tokens
  • Customizing & Theming
  • CSS Utilities

ViUR Components

  • Alert
  • Combobox
  • Table Wrapper

Actions

  • Button
  • Button Group
  • Copy Button
  • Dropdown
    • Dropdown Item

Forms

  • Checkbox
  • Checkbox Group
  • Color Picker
  • Input
  • Known Date
  • Number Input
  • OTP Input
  • Radio Group
    • Radio
  • Rating
  • Select
    • Option
  • Slider
  • Switch
  • Textarea
  • Time Input

Layout

  • Accordion
    • Accordion Item
  • Card
  • Details
  • Dialog
  • Divider
  • Drawer
  • Page
  • Scroller
  • Split Panel

Navigation

  • Breadcrumb
    • Breadcrumb Item
  • Pagination
  • Tab Group
    • Tab
    • Tab Panel
  • Tree
    • Tree Item

Feedback

  • Badge
  • Callout
  • Progress Bar
  • Progress Ring
  • Skeleton
  • Spinner
  • Tag
  • Toast
    • Toast Item
  • Tooltip

Media

  • Animated Image
  • Avatar
  • Carousel
    • Carousel Item
  • Comparison
  • Icon
  • Markdown
  • QR Code
  • Zoomable Frame

Data Viz

  • Advanced Usage

Helpers

  • Animation
  • Format Bytes
  • Format Date
  • Format Number
  • Include
  • Intersection Observer
  • Mutation Observer
  • Popover
  • Popup
  • Random Content
  • Relative Time
  • Resize Observer

Dropdown Item

  • API
  • Importing
  • Slots
  • Attributes & Properties
  • Methods
  • Events
  • Custom States
  • CSS Parts
  • Dependencies
On This Page...
  • API
  • Importing
  • Slots
  • Attributes & Properties
  • Methods
  • Events
  • Custom States
  • CSS Parts
  • Dependencies

Dropdown Item

<wa-dropdown-item>
Stable Actions Since 3.0

Dropdown items represent selectable entries within a dropdown menu, including standard actions, checkable items, and submenu triggers.

This component must be used as a child of <wa-dropdown>. Please see the Dropdown docs to see examples of this component in action.

Copy⌘C Cut⌘X Delete
<!-- dropdown is an overlay that won't render on a static stage, so the items show among dimmed siblings. -->
<div style="display: flex; flex-direction: column;">
  <wa-dropdown-item><wa-icon slot="icon" name="copy"></wa-icon>Copy<span slot="details">⌘C</span></wa-dropdown-item>
  <wa-dropdown-item data-anatomy-subject="true"
    ><wa-icon slot="icon" name="scissors"></wa-icon>Cut<span slot="details">⌘X</span></wa-dropdown-item
  >
  <wa-dropdown-item><wa-icon slot="icon" name="trash"></wa-icon>Delete</wa-dropdown-item>
</div>

API

Link to This Section

Importing

Link to This Section

If you're using the autoloader or a hosted project, components load on demand — no manual import needed. To cherry-pick a component manually, use one of the following snippets.

CDN npm Self-Hosted React

Import this component directly from the CDN:

import 'https://ka-f.webawesome.com/webawesome@0.18.0/components/dropdown-item/dropdown-item.js';

After installing Web Awesome via npm, import this component:

import '@awesome.me/webawesome/dist/components/dropdown-item/dropdown-item.js';

If you're self-hosting Web Awesome, import this component from your server:

import './webawesome/dist/components/dropdown-item/dropdown-item.js';

To import this component for React 18 or below, use the following code:

import WaDropdownItem from '@awesome.me/webawesome/dist/react/dropdown-item/index.js';

Slots

Link to This Section

Learn more about using slots.

Name Description
(default) The dropdown item's label.
details Additional content or details to display after the label.
icon An optional icon to display before the label.
submenu Submenu items, typically <wa-dropdown-item> elements, to create a nested menu.

Attributes & Properties

Link to This Section

Learn more about attributes and properties.

Name Description Reflects
checked
checked
Set to true to check the dropdown item. Only valid when type is checkbox.
Type boolean
Default false
disabled
disabled
Disables the dropdown item.
Type boolean
Default false
download
download
Tells the browser to download the linked file as this filename. Only used when href is present.
Type string
href
href
When set, selecting the item will navigate to this URL. The item remains a menu item for assistive devices, so make sure the label describes where the link goes. Ignored when the item has a submenu.
Type string
rel
rel
When using href, this attribute will map to the underlying link's rel attribute.
Type string
submenuOpen
submenuOpen
Whether the submenu is currently open.
Type boolean
Default false
target
target
Tells the browser where to open the link. Only used when href is present.
Type '_blank' | '_parent' | '_self' | '_top'
type
type
Set to checkbox to make the item a checkbox.
Type 'normal' | 'checkbox'
Default 'normal'
value
value
An optional value for the menu item. This is useful for determining which item was selected when listening to the dropdown's wa-select event.
Type string
variant
variant
The type of menu item to render.
Type 'danger' | 'default'
Default 'default'

Methods

Link to This Section

Learn more about methods.

Name Description Arguments
closeSubmenu() Closes the submenu.
openSubmenu() Opens the submenu.

Events

Link to This Section

Learn more about events.

Name Description
blur Emitted when the dropdown item loses focus.
focus Emitted when the dropdown item gains focus.

Custom States

Link to This Section

Learn more about custom states.

Name Description CSS selector
active Applied when the item is the active item in the menu. :state(active)
checked Applied when the item is checked. :state(checked)
disabled Applied when the item is disabled. :state(disabled)
has-submenu Applied when the item has a submenu. :state(has-submenu)
link Applied when the item is a link (i.e. href is set). :state(link)
submenu-open Applied when the item's submenu is open. :state(submenu-open)

CSS Parts

Link to This Section

Learn more about CSS parts.

Name Description CSS selector
checkmark The checkmark icon (a <wa-icon> element) when the item is a checkbox. ::part(checkmark)
details The container for the details slot. ::part(details)
icon The container for the icon slot. ::part(icon)
label The container for the label slot. ::part(label)
submenu The submenu container. ::part(submenu)
submenu-icon The submenu indicator icon (a <wa-icon> element). ::part(submenu-icon)

Dependencies

Link to This Section

This component automatically imports the following elements. Sub-dependencies, if any exist, will also be included in this list.

  • <wa-icon>
Need a hand? Report a bug Ask for help
Go Make Something Awesome
Version 0.18.0 © Fonticons, Inc.
  • Terms
  • Privacy
  • Refunds
  • Core License
  • Pro License

Quick Links

  • Components
  • CSS Utilities
  • Theming
  • Using with AI
  • Changelog
  • Help & Support

Recent Searches

    D'oh! No results for “”

    Suggest on GitHub Ask on Discord
    Navigate Select
    Close Esc