Skip to Content

DropdownMenu

DropdownMenu displays a menu to the user — such as a set of actions or functions — triggered by a button.


Import

Import
import { DropdownMenu } from '@backyard-ui/core';

Usage

Usage

Icon

Icon

Use the icon prop to render an icon on DropdownMenu.Item.

Submenu

Use the DropdownMenu.Sub prop to render a SubMenu.

Checkbox

Checkbox

Use the DropdownMenu.CheckboxItem prop to render a CheckBox field.

RadioGroup

RadioGroup

Use the DropdownMenu.RadioGroup prop to render a Radio field.

Controlled

Controlled

The Popover can have a controlled state, using isOpen and onOpenChange props

API Reference

API Reference

Root

Root
  • isOpen
    Description If `true` the Dialog will be initially opened
    Type
    boolean
    Default
    false
  • isModal
    Description The modality of the dropdown menu. When set to `true`, interaction with outside elements will be disabled and only menu content will be visible to screen readers.
    Type
    boolean

Trigger

Trigger

    Content

    Content
    • isLoop
      Description If `true`, keyboard navigation will loop from last item to first, and vice versa.
      Type
      boolean
      Default
      false
    • asChild
      Description
      Type
      boolean

    Item

    Item
    • icon
      Description
      Type
      ReactElement<any, string | JSXElementConstructor<any>>
    • isDisabled
      Description
      Type
      boolean
    • asChild
      Description
      Type
      boolean

    Group

    Group
    • asChild
      Description
      Type
      boolean

    Label

    Label
    • asChild
      Description
      Type
      boolean

    CheckboxItem

    CheckboxItem
    • isChecked
      Description
      Type
      boolean | "indeterminate"
    • isDisabled
      Description
      Type
      boolean
    • asChild
      Description
      Type
      boolean

    RadioGroup

    RadioGroup

      RadioItem

      RadioItem
      • isDisabled
        Description If `true`, prevents the user from interacting with the item.
        Type
        boolean
        Default
        false
      • asChild
        Description
        Type
        boolean

      Separator

      Separator
      • asChild
        Description
        Type
        boolean

      Sub

      Sub
      • isOpen
        Description The controlled open state of the submenu. Must be used in conjunction with `onOpenChange`.
        Type
        boolean
        Default
        false
      • isDefaultOpen
        Description The open state of the submenu when it is initially rendered. Use when you do not need to control its open state.
        Type
        boolean
        Default
        false

      SubTrigger

      SubTrigger
      • icon
        Description Custom icon element
        Type
        ReactElement<any, string | JSXElementConstructor<any>>
      • isDisabled
        Description If `true`, prevents the user from interacting with the item.
        Type
        boolean

      SubContent

      SubContent
      • isLoop
        Description If `true`, keyboard navigation will loop from last item to first, and vice versa.
        Type
        boolean
        Default
        false
      • asChild
        Description
        Type
        boolean