Skip to content

Dropdown

A dropdown component that takes care of all the annoying bits for you, with added support for programmatic triggers on top.

  • Option 1
  • Option 2

You can change the dropdowns position by supplying the align prop.

  • Option 1
  • Option 2
  • Option 1
  • Option 2
  • Option 1
  • Option 2

You can tell the dropdown wrapper to only show the dropdown when it’s children are right-clicked:

  • Option 1
  • Option 2

You can disable a dropdown by passing the disabled prop.

DropdownDisabledExample.astro
<Dropdown disabled {/* ... */}>
<!-- ... -->
</Dropdown>

No, you read that right. You can customize the options too. You can individually disable them, turn them into links and also change their color to any of the default colors:

  • Default
  • Primary
  • Success
  • Warning
  • Danger
  • Info
  • Monochrome
  • Disabled
  • As Link

The dropdown items also support icons. You can pass an icon name to the option object:

  • Notifications
  • Settings
  • Profile

You know how, this entire page, we’ve been assigning our DropdownHelper to a variable? There’s a reason for that. The DropdownHelper allows you to access some built-in functions for programmatically toggling, showing and hiding the dropdown. You can even register a callback for when one of the dropdowns options has been clicked!

Script Tag
import {
import DropdownHelper
DropdownHelper
} from 'studiocms:ui/components';
const
const dropdown: any
dropdown
= new
import DropdownHelper
DropdownHelper
('dropdown');
const dropdown: any
dropdown
.
any
registerClickCallback
((
value: any
value
) => {
// `value` will be the value you gave your option in the dropdown wrapper.
any
console
.
any
log
(
value: any
value
);
});
// You can toggle the dropdown like this:
const dropdown: any
dropdown
.
any
toggle
();
// Instead of toggling, you can simply show or hide the dropdown:
const dropdown: any
dropdown
.
any
show
();
const dropdown: any
dropdown
.
any
hide
();