1. Kikita UI
  2. Components
  3. Actions
  4. Menu
  5. Playground
Skip to content
Kikita UI
  • Installation
  • Theming
  • Tokens
  • Typography
  • Density
  • Accessibility
  • AI Support
  • Package Smoke
  • Button
  • Icon Button
  • Menu
  • Command Palette
  • Field
  • Input
  • Color Input
  • Select
  • Combobox
  • Date Picker
  • Calendar
  • File Upload
  • Segmented
  • Slider
  • Number Input
  • Textarea
  • Checkbox
  • Switch
  • Radio
  • Group
  • Badge
  • Loader
  • Skeleton
  • Tooltip
  • Toast
  • Empty State
  • Progress
  • Card
  • Tabs
  • Accordion
  • Breadcrumbs
  • Popover
  • Dialog
  • Drawer
  • Dropdown
  • Separator
  • Stepper
  • Icon
  • Avatar
  • Table
  • Chip
  • Scrollbar
  • Tree

Menu — Playground

px
placement
menuAlign
State
html.html
<button kuiButton type="button" [kuiMenuFor]="actionsMenu">Actions</button>

<kui-menu #actionsMenu>
  <button type="button" kuiMenuItem>
    <span class="kui-menu-item__label">Edit</span>
  </button>
  <button type="button" kuiMenuItem>
    <span class="kui-menu-item__label">Copy</span>
  </button>
  <hr kuiSeparator spacing="xs" />
  <button type="button" kuiMenuItem appearance="destructive">
    <span class="kui-menu-item__label">Delete</span>
  </button>
</kui-menu>
NameTypeDefaultDescription
ariaLabelstring'Actions'Accessible name for the menu panel.
placement'top' | 'bottom' | 'left' | 'right''bottom'Preferred side of the trigger the menu opens on. Auto-flips to the opposite side to fit the viewport.
menuAlign'start' | 'end''start'Alignment along the trigger edge. For top/bottom placement, start is left-aligned and end is right-aligned. For left/right placement, start is top-aligned and end is bottom-aligned.
offsetnumber4Pixel gap between the trigger and the menu panel.
minWidthstring | nullnullOptional overlay minimum width.
[kuiMenuFor]KuiMenuComponent | undefined-Wires a native trigger to a menu instance and manages trigger ARIA state.
kuiMenuHeader--Marks a non-interactive group heading inside the menu panel. Renders with role="presentation".
kuiSeparator--Native hr[kuiSeparator] divider between menu item groups. See the Separator page for spacing and appearance inputs.
kuiMenuItem.appearance'neutral' | 'destructive''neutral'Visual treatment for an action item. Use destructive for dangerous actions.
kuiMenuItem.disabledbooleanfalsePrevents activation and applies disabled/aria-disabled semantics. Disabled items are skipped by keyboard navigation.

Inputs verified against @kikita-labs/ui v1.6.1 public typings.