Tile UI · SolidJS

CSR · SSR · SSG

DropdownMenu

A SolidJS dropdown menu with checkbox, radio, and nested submenu items.

Ready; grid on; role editor.

import { createSignal } from 'solid-js';
import {
	DropdownMenu,
	DropdownMenuCheckboxItem,
	DropdownMenuContent,
	DropdownMenuItem,

Use DropdownMenu to compose keyboard-ready actions, selectable items, and nested menus from native primitives.

Registry install

pnpm dlx shadcn@latest add @tile-ui/dropdown-menu

Package usage

import { DropdownMenu } from '@tile-ui/solid';

<DropdownMenu>
	<DropdownMenuTrigger>Menu</DropdownMenuTrigger>
	<DropdownMenuContent><DropdownMenuCheckboxItem checked>Grid</DropdownMenuCheckboxItem><DropdownMenuSub><DropdownMenuSubTrigger>Share</DropdownMenuSubTrigger><DropdownMenuSubContent><DropdownMenuItem>Copy link</DropdownMenuItem></DropdownMenuSubContent></DropdownMenuSub></DropdownMenuContent>
</DropdownMenu>

Highlights

  • Checkbox, radio, group, label, and separator primitives
  • Nested submenu keyboard branches
  • Controlled root and selectable item callbacks

Foundation behavior

This Solid implementation uses native nested primitives and does not expose asChild. Controlled state uses Solid accessors and explicit callbacks such as onOpenChange, onValueChange, or onSearchChange where the family supports them.

Portal content is omitted from the server response and mounted during hydration into the resolved document or nested portal scope. Closed and default-open roots keep deterministic trigger IDs and ARIA relationships without a hydration mismatch.

Keyboard behavior follows the shared Foundation: focus and Tab order, Escape dismissal, arrow-key movement, typeahead, submenu branches, and trigger restoration are applied according to the component role.

Registry dependencies

Item Purpose
dropdown-menu Component source and module styles
core Framework-agnostic logic helpers
utils Shared utility helpers
styles Shared SCSS tokens and globals

API reference

Prop Type Default
open boolean
defaultOpen boolean
onOpenChange (open: boolean) => void

No custom props.

Prop Type Default
side 'top' | 'right' | 'bottom' | 'left'
align 'start' | 'center' | 'end'
sideOffset number
alignOffset number
Prop Type Default
inset boolean
variant 'default' | 'destructive'
disabled boolean
onSelect (event: Event) => void
Prop Type Default
checked boolean
defaultChecked boolean
onCheckedChange (checked: boolean) => void
disabled boolean
onSelect (event: Event) => void
Prop Type Default
value string
defaultValue string
onValueChange (value: string) => void
Prop Type Default
value string
disabled boolean
onSelect (event: Event) => void
Prop Type Default
inset boolean
Prop Type Default
open boolean
defaultOpen boolean
onOpenChange (open: boolean) => void
Prop Type Default
inset boolean
disabled boolean

No custom props.

No custom props.

No custom props.

No custom props.

No custom props.