1. Kikita UI
  2. Components
  3. Surfaces
  4. Dropdown
  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

Dropdown — Playground

px
panelRole
panelWidth
State
html.html
<button type="button" [kuiDropdownFor]="menu">Actions</button>

<kui-dropdown #menu>
  <div kuiOption value="edit">Edit</div>
  <div kuiOption value="duplicate">Duplicate</div>
  <div kuiOption value="archive">Archive</div>
</kui-dropdown>
NameTypeDefaultDescription
maxHeightstring | null'240px'Preferred max height of the panel before it scrolls. Always additionally clamped to the viewport so the panel can never render taller than the screen. null removes only the preferred cap, not the viewport clamp.
offsetnumber4Gap in px between the anchor and the panel edge.
closeOnSelectboolean (model)trueCloses the panel when a selectable option is clicked. Two-way bindable via closeOnSelectChange.
panelRole'listbox' | 'dialog' | 'grid' | null'listbox'ARIA role rendered on the panel. Set to dialog (or null to omit the role) for non-listbox projected content, e.g. kui-calendar.
panelWidth'anchor' | 'content' | 'auto''anchor'anchor matches the trigger's width exactly (listboxes). content grows with the panel's own content but never below the trigger's width. auto ignores the trigger's width and sizes purely to content.
widthstring | nullnullExplicit panel width (any CSS width, e.g. 320px). Overrides panelWidth entirely when set.
isOpenSignal<boolean>-Current open state.
open()method-Shows the panel and attaches scroll/outside-click/Escape listeners.
close()method-Starts the close animation and detaches listeners.
toggle()method-Opens when closed, closes when open.
setAnchor(el)method-Sets the anchor imperatively. Called by kui-field and [kuiDropdownFor].
getPanel()method-Returns the rendered panel element, if attached.
getPanelId()method-Returns the stable panel id for ARIA wiring.
[kuiDropdownFor]KuiDropdownComponent-Wires a standalone trigger to a dropdown instance and manages click toggling, aria-expanded, and aria-haspopup. Prefer a native button so keyboard behavior is already correct.
[kuiOption] valueunknown-Required. The value an option renders and emits. Set via the `value` input on `KuiOptionDirective`, e.g. `<div kuiOption value="edit">`.
[kuiOption] disabledbooleanfalseDisables click and keyboard selection for this option.
kuiOptionSelectEventEmitter<unknown>-Emits the option value on selection.
--kui-dropdown-bgCSS custom propertyvar(--kui-color-surface-elevated)Panel background.
--kui-dropdown-borderCSS custom propertyvar(--kui-color-border)Panel border color.
--kui-dropdown-radiusCSS custom propertyvar(--kui-radius-md)Panel corner radius.
--kui-dropdown-shadowCSS custom propertyvar(--kui-shadow-lg)Panel drop shadow.
--kui-dropdown-viewport-marginCSS custom propertyvar(--kui-space-6, 32px)Margin subtracted from the viewport height when clamping the panel max-height.
Known non-feature--Dropdown does not own selection or value state itself. Select, Combobox, Menu, or another host component provides that context; a bare kui-dropdown only positions the panel and manages open/close.

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