Menu
Section Menu
A dropdown split into sections with visible group headings and separators, so a long list of commands stops reading as one wall.
- menu
- dropdown
- sections
- popover
Preview
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this in the header: https://vibeui.ru/c/dropdown-002?lang=en
Show the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
# Install and place "dropdown-002" (Section Menu) from VibeUI
## 1. Install first — do not skip, do not recreate
Run this exact command before writing any code:
npx shadcn@latest add https://vibeui.ru/r/dropdown-002.json
Registry item: https://vibeui.ru/r/dropdown-002.json
Installs to: components/vibeui/dropdown-002.tsx (the exact path follows this project's components.json aliases).
npm dependencies: none.
Registry dependencies: none.
Install it from the registry. Do not recreate it from the description,
do not substitute a similar component from another library, and do not
rewrite it to match the project's existing style.
## 2. What it is
A dropdown split into sections with visible group headings and separators, so a long list of commands stops reading as one wall.
A menu with sections: a group heading, a separator, arrow-key navigation. The HTML popover handles opening and closing, anchor positioning handles placement. One file, zero dependencies.
## 3. How to use it
import { Dropdown002 } from "@/components/vibeui/dropdown-002"
<Dropdown002
trigger="Actions"
align="right"
sections={[{ title: "Export", items: ["PDF", "Markdown"] }]}
/>
Read the installed file for the full prop list.
## 4. Where to place it
This is a small inline component. Put it exactly where the user asked,
inside the existing markup. Do not create a new page, section or
wrapper for it. If a similar control already sits in that spot,
replace it instead of adding a second one.
Placement: ___
(The user fills this line in. If it is still blank, ask where to put it
instead of guessing.)
## 5. Keep exactly as installed
- the local --vibeui-dropdown-002-* palette: the component must look the same in any project
- the HTML popover as the opening mechanism — Escape and outside clicks then come from the browser, not from your code
- the @supports (anchor-name) wrapper around the anchor rules: without it an older browser misplaces the menu instead of breaking it
- the role=menu, role=menuitem and role=group with aria-labelledby markup — otherwise a section heading is plain text to a screen reader
- the up/down arrow handler: menus are walked with arrows, Tab is the fallback
- the root's own light surface: on the dark catalog card dark text disappears
## 6. You may change
- the button caption through trigger
- the side it opens to through align
- the sections and their items through sections
- the focus ring colour through accent
## 7. Rules
- The menu opens on click, not on hover: an accidental mouse pass must not drop the list open.
- Items are buttons; for navigation swap them for a elements and keep the same roles.
- Without anchor positioning support the menu lands in the middle of the screen — that is the fallback, not the design.
- Do not lift the CSS variables into globals.css: the component has to stay a single file.
## 8. Verify
- it renders with no console errors;
- it looks like the preview on the VibeUI page you copied this from;
- if it does not, you changed something listed in section 5 — put it back.For developers
npx shadcn@latest add https://vibeui.ru/r/dropdown-002.jsonhttps://vibeui.ru/r/dropdown-002.jsonОдин файл, ноль зависимостей, палитра в переменных --vibeui-dropdown-002-*. Клиентский: обработчик стрелок водит фокус по пунктам. Открытие, верхний слой, Escape и клик мимо держит HTML popover; положение у кнопки — CSS anchor positioning (anchor-name на триггере, position-area на меню) внутри @supports, поэтому без якорей меню просто открывается по центру экрана. Разделы размечены role=group с aria-labelledby на видимый заголовок, между ними лежит role=separator. Пропс align меняет сторону раскрытия одним правилом position-area. Корень несёт собственную светлую подложку: на тёмной карточке каталога тёмный текст иначе не виден.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
"use client"
import { useId, useRef } from "react"
import type {
ComponentPropsWithoutRef,
CSSProperties,
KeyboardEvent,
} from "react"
export type Dropdown002Section = {
title: string
items: string[]
}
export type Dropdown002Props = Omit<
ComponentPropsWithoutRef<"div">,
"children"
> & {
trigger?: string
align?: "left" | "right"
sections?: Dropdown002Section[]
accent?: string
}
// Идея компонента: длинное меню, разложенное по разделам с видимыми
// заголовками. Пятнадцать пунктов подряд читаются как список ошибок, а
// заголовок группы отвечает на вопрос «где искать» до чтения самих пунктов.
// Открытие и слой держит HTML popover, положение — CSS anchor positioning,
// стрелки водят фокус по пунктам, заголовки при этом пропускаются.
const STYLES = `
:where([data-vibeui-block="dropdown-002"]){
--vibeui-dropdown-002-bg:oklch(1 0 0);
--vibeui-dropdown-002-fg:oklch(0.24 0.014 265);
--vibeui-dropdown-002-muted:oklch(0.55 0.014 265);
--vibeui-dropdown-002-border:oklch(0.9 0.006 265);
--vibeui-dropdown-002-hover:oklch(0.96 0.004 265);
--vibeui-dropdown-002-accent:oklch(0.55 0.17 265);
--vibeui-dropdown-002-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="dropdown-002"]{
display:flex;align-items:center;justify-content:space-between;gap:0.75rem;
width:100%;max-width:22rem;box-sizing:border-box;padding:0.5rem 0.5rem 0.5rem 0.875rem;
background:var(--vibeui-dropdown-002-bg);color:var(--vibeui-dropdown-002-fg);
border:1px solid var(--vibeui-dropdown-002-border);border-radius:0.875rem;
font-family:var(--vibeui-dropdown-002-font);
}
[data-vibeui-block="dropdown-002"] [data-part="caption"]{
font-size:0.8125rem;font-weight:600;letter-spacing:-0.01em;
}
[data-vibeui-block="dropdown-002"] [data-part="trigger"]{
appearance:none;cursor:pointer;
display:inline-flex;align-items:center;gap:0.4375rem;
height:2rem;padding:0 0.75rem;
border:1px solid var(--vibeui-dropdown-002-border);border-radius:0.625rem;
background:var(--vibeui-dropdown-002-bg);color:inherit;
font:inherit;font-size:0.8125rem;font-weight:600;
anchor-name:--vibeui-dropdown-002-anchor;
transition:background-color .16s ease;
}
[data-vibeui-block="dropdown-002"] [data-part="trigger"]:hover{background:var(--vibeui-dropdown-002-hover)}
[data-vibeui-block="dropdown-002"] [data-part="trigger"]:focus-visible{outline:2px solid var(--vibeui-dropdown-002-accent);outline-offset:2px}
[data-vibeui-block="dropdown-002"] [data-part="caret"]{
width:0.375rem;height:0.375rem;
border-right:1.5px solid var(--vibeui-dropdown-002-muted);
border-bottom:1.5px solid var(--vibeui-dropdown-002-muted);
transform:rotate(45deg) translate(-0.0625rem,-0.0625rem);
}
[data-vibeui-block="dropdown-002"] [data-part="menu"]{
position:fixed;padding:0.3125rem;min-width:13rem;box-sizing:border-box;
background:var(--vibeui-dropdown-002-bg);color:var(--vibeui-dropdown-002-fg);
border:1px solid var(--vibeui-dropdown-002-border);border-radius:0.75rem;
box-shadow:0 18px 40px -22px oklch(0.2 0.03 265 / 45%);
font-family:var(--vibeui-dropdown-002-font);
opacity:0;transform:translateY(-0.25rem);
transition:opacity .14s ease,transform .14s ease,display .14s allow-discrete,overlay .14s allow-discrete;
}
[data-vibeui-block="dropdown-002"] [data-part="menu"]:popover-open{opacity:1;transform:none}
@starting-style{[data-vibeui-block="dropdown-002"] [data-part="menu"]:popover-open{opacity:0;transform:translateY(-0.25rem)}}
/* Привязка к кнопке. Где якорей нет, меню открывается по центру экрана. */
@supports (anchor-name: --a){
[data-vibeui-block="dropdown-002"] [data-part="menu"]{
position-anchor:--vibeui-dropdown-002-anchor;
position-area:bottom span-left;
margin:0.375rem 0 0;
position-try-fallbacks:flip-block,flip-inline;
}
[data-vibeui-block="dropdown-002"][data-align="left"] [data-part="menu"]{position-area:bottom span-right}
}
[data-vibeui-block="dropdown-002"] [data-part="title"]{
padding:0.4375rem 0.5rem 0.25rem;
font-size:0.6875rem;font-weight:650;letter-spacing:0.06em;text-transform:uppercase;
color:var(--vibeui-dropdown-002-muted);
}
[data-vibeui-block="dropdown-002"] [data-part="rule"]{
height:1px;margin:0.3125rem 0.25rem;
background:var(--vibeui-dropdown-002-border);
}
[data-vibeui-block="dropdown-002"] [data-part="item"]{
display:block;width:100%;box-sizing:border-box;
appearance:none;border:0;background:none;cursor:pointer;
padding:0.4375rem 0.5rem;border-radius:0.5rem;
font:inherit;font-size:0.8125rem;color:inherit;text-align:left;
transition:background-color .14s ease;
}
[data-vibeui-block="dropdown-002"] [data-part="item"]:hover{background:var(--vibeui-dropdown-002-hover)}
[data-vibeui-block="dropdown-002"] [data-part="item"]:focus-visible{outline:2px solid var(--vibeui-dropdown-002-accent);outline-offset:-2px}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="dropdown-002"] *{animation:none!important;transition:none!important}}
`
const DEFAULT_SECTIONS: Dropdown002Section[] = [
{ title: "Документ", items: ["Переименовать", "Дублировать", "Переместить"] },
{ title: "Доступ", items: ["Пригласить людей", "Ссылка для чтения"] },
{ title: "Экспорт", items: ["PDF", "Markdown", "HTML"] },
]
function stepFocus(menu: HTMLElement | null, delta: number) {
if (!menu) {
return
}
const items = Array.from(
menu.querySelectorAll<HTMLElement>('[data-part="item"]'),
)
if (items.length === 0) {
return
}
const from = items.indexOf(document.activeElement as HTMLElement)
items[(from + delta + items.length) % items.length].focus()
}
/**
* Меню с разделами: видимые заголовки групп, разделители, навигация стрелками.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Dropdown002({
trigger = "Действия",
align = "right",
sections = DEFAULT_SECTIONS,
accent,
className,
style,
...props
}: Dropdown002Props) {
const id = useId()
const menu = useRef<HTMLDivElement>(null)
const openAndFocus = () => {
const node = menu.current
if (!node) {
return
}
if (!node.matches(":popover-open")) {
node.showPopover()
}
requestAnimationFrame(() =>
node.querySelector<HTMLElement>('[data-part="item"]')?.focus(),
)
}
const onMenuKeyDown = (event: KeyboardEvent<HTMLDivElement>) => {
if (event.key === "ArrowDown") {
event.preventDefault()
stepFocus(menu.current, 1)
} else if (event.key === "ArrowUp") {
event.preventDefault()
stepFocus(menu.current, -1)
}
}
const palette = {
...(accent ? { "--vibeui-dropdown-002-accent": accent } : null),
...style,
} as CSSProperties
return (
<>
<style href="vibeui-dropdown-002" precedence="medium">
{STYLES}
</style>
<div
{...props}
data-vibeui-block="dropdown-002"
data-align={align}
className={className}
style={palette}
>
<span data-part="caption">Годовой отчёт</span>
<button
type="button"
data-part="trigger"
popoverTarget={`${id}-menu`}
aria-haspopup="menu"
onKeyDown={(event) => {
if (event.key === "ArrowDown") {
event.preventDefault()
openAndFocus()
}
}}
>
{trigger}
<span data-part="caret" aria-hidden="true" />
</button>
<div
id={`${id}-menu`}
ref={menu}
popover="auto"
role="menu"
aria-label={trigger}
data-part="menu"
onKeyDown={onMenuKeyDown}
>
{sections.map((section, index) => (
<div
key={section.title}
role="group"
aria-labelledby={`${id}-${index}`}
>
{index > 0 ? <div data-part="rule" role="separator" /> : null}
<div id={`${id}-${index}`} data-part="title">
{section.title}
</div>
{section.items.map((item) => (
<button
key={item}
type="button"
role="menuitem"
data-part="item"
onClick={() => menu.current?.hidePopover()}
>
{item}
</button>
))}
</div>
))}
</div>
</div>
</>
)
}