Dropdown
<sl-dropdown> | SlDropdown
            Dropdowns expose additional content that “drops down” in a panel.
Dropdowns consist of a trigger and a panel. By default, activating the trigger will expose the panel and interacting outside of the panel will close it.
Dropdowns are designed to work well with menus to provide a list of options the user can select from. However, dropdowns can also be used in lower-level applications (e.g. color picker). The API gives you complete control over showing, hiding, and positioning the panel.
<sl-dropdown> <sl-button slot="trigger" caret>Dropdown</sl-button> <sl-menu> <sl-menu-item>Dropdown Item 1</sl-menu-item> <sl-menu-item>Dropdown Item 2</sl-menu-item> <sl-menu-item>Dropdown Item 3</sl-menu-item> <sl-divider></sl-divider> <sl-menu-item type="checkbox" checked>Checkbox</sl-menu-item> <sl-menu-item disabled>Disabled</sl-menu-item> <sl-divider></sl-divider> <sl-menu-item> Prefix <sl-icon slot="prefix" name="gift"></sl-icon> </sl-menu-item> <sl-menu-item> Suffix Icon <sl-icon slot="suffix" name="heart"></sl-icon> </sl-menu-item> </sl-menu> </sl-dropdown>
Examples
Getting the Selected Item
            When dropdowns are used with menus, you can listen for the
            sl-select event to determine which menu item was
            selected. The menu item element will be exposed in event.detail.item. You can set
            value props to make it easier to identify commands.
          
<div class="dropdown-selection"> <sl-dropdown> <sl-button slot="trigger" caret>Edit</sl-button> <sl-menu> <sl-menu-item value="cut">Cut</sl-menu-item> <sl-menu-item value="copy">Copy</sl-menu-item> <sl-menu-item value="paste">Paste</sl-menu-item> </sl-menu> </sl-dropdown> </div> <script> const container = document.querySelector('.dropdown-selection'); const dropdown = container.querySelector('sl-dropdown'); dropdown.addEventListener('sl-select', event => { const selectedItem = event.detail.item; console.log(selectedItem.value); }); </script>
            Alternatively, you can listen for the click event on individual menu items. Note that, using
            this approach, disabled menu items will still emit a click event.
          
<div class="dropdown-selection-alt"> <sl-dropdown> <sl-button slot="trigger" caret>Edit</sl-button> <sl-menu> <sl-menu-item value="cut">Cut</sl-menu-item> <sl-menu-item value="copy">Copy</sl-menu-item> <sl-menu-item value="paste">Paste</sl-menu-item> </sl-menu> </sl-dropdown> </div> <script> const container = document.querySelector('.dropdown-selection-alt'); const cut = container.querySelector('sl-menu-item[value="cut"]'); const copy = container.querySelector('sl-menu-item[value="copy"]'); const paste = container.querySelector('sl-menu-item[value="paste"]'); cut.addEventListener('click', () => console.log('cut')); copy.addEventListener('click', () => console.log('copy')); paste.addEventListener('click', () => console.log('paste')); </script>
Placement
            The preferred placement of the dropdown can be set with the placement attribute. Note that the
            actual position may vary to ensure the panel remains in the viewport.
          
<sl-dropdown placement="top-start"> <sl-button slot="trigger" caret>Edit</sl-button> <sl-menu> <sl-menu-item>Cut</sl-menu-item> <sl-menu-item>Copy</sl-menu-item> <sl-menu-item>Paste</sl-menu-item> <sl-divider></sl-divider> <sl-menu-item>Find</sl-menu-item> <sl-menu-item>Replace</sl-menu-item> </sl-menu> </sl-dropdown>
Distance
            The distance from the panel to the trigger can be customized using the distance attribute. This
            value is specified in pixels.
          
<sl-dropdown distance="30"> <sl-button slot="trigger" caret>Edit</sl-button> <sl-menu> <sl-menu-item>Cut</sl-menu-item> <sl-menu-item>Copy</sl-menu-item> <sl-menu-item>Paste</sl-menu-item> <sl-divider></sl-divider> <sl-menu-item>Find</sl-menu-item> <sl-menu-item>Replace</sl-menu-item> </sl-menu> </sl-dropdown>
Skidding
            The offset of the panel along the trigger can be customized using the skidding attribute. This
            value is specified in pixels.
          
<sl-dropdown skidding="30"> <sl-button slot="trigger" caret>Edit</sl-button> <sl-menu> <sl-menu-item>Cut</sl-menu-item> <sl-menu-item>Copy</sl-menu-item> <sl-menu-item>Paste</sl-menu-item> <sl-divider></sl-divider> <sl-menu-item>Find</sl-menu-item> <sl-menu-item>Replace</sl-menu-item> </sl-menu> </sl-dropdown>
Submenus
            To create a submenu, nest an <sl-menu slot="submenu"> element in a
            menu item.
          
<sl-dropdown> <sl-button slot="trigger" caret>Edit</sl-button> <sl-menu style="max-width: 200px;"> <sl-menu-item value="undo">Undo</sl-menu-item> <sl-menu-item value="redo">Redo</sl-menu-item> <sl-divider></sl-divider> <sl-menu-item value="cut">Cut</sl-menu-item> <sl-menu-item value="copy">Copy</sl-menu-item> <sl-menu-item value="paste">Paste</sl-menu-item> <sl-divider></sl-divider> <sl-menu-item> Find <sl-menu slot="submenu"> <sl-menu-item value="find">Find…</sl-menu-item> <sl-menu-item value="find-previous">Find Next</sl-menu-item> <sl-menu-item value="find-next">Find Previous</sl-menu-item> </sl-menu> </sl-menu-item> <sl-menu-item> Transformations <sl-menu slot="submenu"> <sl-menu-item value="uppercase">Make uppercase</sl-menu-item> <sl-menu-item value="lowercase">Make lowercase</sl-menu-item> <sl-menu-item value="capitalize">Capitalize</sl-menu-item> </sl-menu> </sl-menu-item> </sl-menu> </sl-dropdown>
As a UX best practice, avoid using more than one level of submenu when possible.
Hoisting
            Dropdown panels will be clipped if they’re inside a container that has overflow: auto|hidden.
            The hoist attribute forces the panel to use a fixed positioning strategy, allowing it to break
            out of the container. In this case, the panel will be positioned relative to its
            containing block, which is usually the viewport unless an ancestor uses a transform, perspective,
            or filter.
            Refer to this page
            for more details.
          
<div class="dropdown-hoist"> <sl-dropdown> <sl-button slot="trigger" caret>No Hoist</sl-button> <sl-menu> <sl-menu-item>Item 1</sl-menu-item> <sl-menu-item>Item 2</sl-menu-item> <sl-menu-item>Item 3</sl-menu-item> </sl-menu> </sl-dropdown> <sl-dropdown hoist> <sl-button slot="trigger" caret>Hoist</sl-button> <sl-menu> <sl-menu-item>Item 1</sl-menu-item> <sl-menu-item>Item 2</sl-menu-item> <sl-menu-item>Item 3</sl-menu-item> </sl-menu> </sl-dropdown> </div> <style> .dropdown-hoist { position: relative; border: solid 2px var(--sl-panel-border-color); padding: var(--sl-spacing-medium); overflow: hidden; } </style>
Slots
| Name | Description | 
|---|---|
| (default) | The dropdown’s main content. | 
| trigger | The dropdown’s trigger, usually a <sl-button>element. | 
Learn more about using slots.
Properties
| Name | Description | Reflects | Type | Default | 
|---|---|---|---|---|
| open | Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the
                    dropdown, or you can use the show()andhide()methods and this attribute
                    will reflect the dropdown’s open state. |  | boolean | false | 
| placement | The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel inside of the viewport. |  | 
                      'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'right' |
                      'right-start' | 'right-end' | 'left' | 'left-start' | 'left-end' | 'bottom-start' | 
| disabled | Disables the dropdown so the panel will not open. |  | boolean | false | 
| disableKeys disable-keys  | Disables dropdown activation keys. | boolean | false | |
| stayOpenOnSelect stay-open-on-select  | By default, the dropdown is closed when an item is selected. This attribute will keep it open instead. Useful for dropdowns that allow for multiple interactions. |  | boolean | false | 
| containingElement | The dropdown will close when the user interacts outside of this element (e.g. clicking). Useful for composing other components that use a dropdown internally. | HTMLElement | undefined | - | |
| distance | The distance in pixels from which to offset the panel away from its trigger. | number | 0 | |
| skidding | The distance in pixels from which to offset the panel along its trigger. | number | 0 | |
| hoist | Enable this option to prevent the panel from being clipped when the component is placed inside a
                    container with overflow: auto|scroll. Hoisting uses a fixed positioning strategy that works in many,
                    but not all, scenarios. | boolean | false | |
| updateComplete | A read-only promise that resolves when the component has finished updating. | 
Learn more about attributes and properties.
Events
| Name | React Event | Description | Event Detail | 
|---|---|---|---|
| sl-show |  | Emitted when the dropdown opens. | - | 
| sl-after-show |  | Emitted after the dropdown opens and all animations are complete. | - | 
| sl-hide |  | Emitted when the dropdown closes. | - | 
| sl-after-hide |  | Emitted after the dropdown closes and all animations are complete. | - | 
Learn more about events.
Methods
| Name | Description | Arguments | 
|---|---|---|
| show() | Shows the dropdown panel. | - | 
| hide() | Hides the dropdown panel | - | 
| reposition() | Instructs the dropdown menu to reposition. Useful when the position or size of the trigger changes when the menu is activated. | - | 
Learn more about methods.
Parts
| Name | Description | 
|---|---|
| base | The component’s base wrapper. | 
| trigger | The container that wraps the trigger. | 
| panel | The panel that gets shown when the dropdown is open. | 
Learn more about customizing CSS parts.
Animations
| Name | Description | 
|---|---|
| dropdown.show | The animation to use when showing the dropdown. | 
| dropdown.hide | The animation to use when hiding the dropdown. | 
Learn more about customizing animations.
Dependencies
This component automatically imports the following dependencies.
- <sl-popup>