Import
import { Dropdown } from '@dnb/eufemia'
Description
The Dropdown component is a fully custom-made component. This allows us to change its form based on context (small screens, touch devices, etc.).
Relevant links
When to use
Use a dropdown when you need to provide many options to the user but don't have space to display them all. The hidden options should only appear when the user requests them, reducing visual clutter.
- When space is limited
- When you want to reduce visual clutter
- When it's intuitive for users to request hidden content
When not to use
- Do not use a dropdown if you have only a few options that could be shown using Radio buttons or ToggleButtons.
Note: This pattern can be constructed in various ways to achieve a similar effect—from using the HTML select element to custom building with divs, spans, and JavaScript.
Accessibility
When preventSelection is true, the Dropdown will use role="menu", instead of role="listbox" for better screen reader support.
Custom size
You can change the width of the Dropdown component with CSS by using:
.dnb-dropdown {--dropdown-width: 20rem; /* custom width */}
You can also set the width directly, but then it has to be defined like so (including min-width):
/** Because of the included label/status etc. we target the "__shell" */.dnb-dropdown__shell {width: 10rem;}/** In order to change only the drawer-list width */.dnb-dropdown .dnb-drawer-list__root {width: 10rem;}/** If using popup style (no title) */.dnb-dropdown--is-popup .dnb-drawer-list__root {width: 10rem;}