Dialog
Choice Dialog
A dialog for picking one option: cards with native radios, the selected one highlighted by a :has rule — no state, no JS.
- dialog
- choice
- radio
- no-js
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/dialog-004?lang=en
What should happen to the changes?
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 "dialog-004" (Choice Dialog) 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/dialog-004.json
Registry item: https://vibeui.ru/r/dialog-004.json
Installs to: components/vibeui/dialog-004.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 dialog for picking one option: cards with native radios, the selected one highlighted by a :has rule — no state, no JS.
A choice modal: a list of cards with native radios, each with a label and an explanation. The selected card is highlighted through :has, and the keyboard behaves as in a native radio group. Zero dependencies, one file, its own palette, no client JS.
## 3. How to use it
import { Dialog004 } from "@/components/vibeui/dialog-004"
<Dialog004
id="publish-mode"
title="What should happen to the changes?"
options={[{ value: "draft", label: "Save as a draft" }]}
/>
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-dialog-004-* palette — do not swap it for your theme tokens (bg-accent, border-input and the like)
- the native radios: they bring arrow-key cycling, keyboard selection and form submission
- the highlight through :has(input:checked) rather than React state
- the explanation under each option: choosing between three bare labels means guessing
- styling the window by attribute and the palette through its own style — the window sits in the top layer
- the focus ring on the radios: the choice is often made from the keyboard
## 6. You may change
- the options array: value, label and description
- defaultValue — what starts selected
- the title and button copy
- the accent through the accent prop — the selected card and the submit button
## 7. Rules
- More than five options is a list, not a choice dialog: use a page or a select.
- The radio name is built from the dialog id: two dialogs sharing an id merge their options into one group.
- The component does not report the choice: read the value by name in your submit handler.
- 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/dialog-004.jsonhttps://vibeui.ru/r/dialog-004.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-dialog-004-*. Варианты — нативные radio внутри подписей-карточек: выбранная подсвечивается правилом :has(input:checked), поэтому подсветка не требует состояния, а стрелки клавиатуры работают как в родном списке. Точка внутри radio нарисована inset-тенью, а не отдельным элементом.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
import type { CSSProperties } from "react"
export type Dialog004Option = {
value: string
label: string
description?: string
}
export type Dialog004Props = {
id?: string
trigger?: string
title?: string
options?: Dialog004Option[]
defaultValue?: string
submitLabel?: string
cancelLabel?: string
accent?: string
className?: string
style?: CSSProperties
}
// Идея компонента: окно выбора одного варианта из нескольких. Варианты —
// нативные radio в подписях-карточках: выбранная карточка подсвечивается
// правилом :has(input:checked), поэтому подсветка не требует состояния.
// Клавиатура работает как в родном списке: стрелки переключают вариант.
const STYLES = `
:where([data-vibeui-block="dialog-004"]){
--vibeui-dialog-004-fg:oklch(0.22 0.016 265);
--vibeui-dialog-004-muted:oklch(0.5 0.014 265);
--vibeui-dialog-004-bg:oklch(1 0 0);
--vibeui-dialog-004-border:oklch(0.89 0.006 265);
--vibeui-dialog-004-accent:oklch(0.55 0.2 262);
--vibeui-dialog-004-radius:1rem;
--vibeui-dialog-004-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="dialog-004"]{display:inline-flex;font-family:var(--vibeui-dialog-004-font)}
[data-vibeui-block="dialog-004"] [data-part="trigger"]{
appearance:none;cursor:pointer;font:inherit;font-size:0.875rem;font-weight:500;
display:inline-flex;align-items:center;height:2.25rem;padding:0 0.9375rem;
border:1px solid var(--vibeui-dialog-004-border);border-radius:0.5rem;
background:var(--vibeui-dialog-004-bg);color:var(--vibeui-dialog-004-fg);
}
[data-vibeui-block="dialog-004"] [data-part="trigger"]:hover{background:color-mix(in oklab,var(--vibeui-dialog-004-border) 30%,transparent)}
[data-vibeui-block="dialog-004"] [data-part="trigger"]:focus-visible{outline:2px solid var(--vibeui-dialog-004-accent);outline-offset:2px}
[data-vibeui-dialog-004-window]{
position:fixed;inset:0;margin:auto;height:fit-content;
width:min(27rem,calc(100vw - 2rem));box-sizing:border-box;padding:1.375rem;
border:1px solid var(--vibeui-dialog-004-border,oklch(0.89 0.006 265));
border-radius:var(--vibeui-dialog-004-radius,1rem);
background:var(--vibeui-dialog-004-bg,oklch(1 0 0));
color:var(--vibeui-dialog-004-fg,oklch(0.22 0.016 265));
font-family:var(--vibeui-dialog-004-font,ui-sans-serif,system-ui,sans-serif);
box-shadow:0 24px 60px -24px oklch(0.2 0.03 265 / 45%);
opacity:0;transform:scale(0.97);
transition:opacity .18s ease,transform .18s ease,display .18s allow-discrete,overlay .18s allow-discrete;
}
[data-vibeui-dialog-004-window]:popover-open{opacity:1;transform:none}
@starting-style{[data-vibeui-dialog-004-window]:popover-open{opacity:0;transform:scale(0.97)}}
[data-vibeui-dialog-004-window]::backdrop{background:oklch(0.18 0.02 265 / 45%)}
[data-vibeui-dialog-004-window] [data-part="title"]{margin:0 0 0.875rem;font-size:1rem;font-weight:620;line-height:1.35}
[data-vibeui-dialog-004-window] [data-part="list"]{display:flex;flex-direction:column;gap:0.5rem}
[data-vibeui-dialog-004-window] [data-part="option"]{
display:flex;align-items:flex-start;gap:0.625rem;
padding:0.75rem 0.875rem;cursor:pointer;
border:1px solid var(--vibeui-dialog-004-border,oklch(0.89 0.006 265));
border-radius:0.75rem;
transition:border-color .16s ease,background-color .16s ease;
}
/* Подсветка выбранного — правилом :has, а не состоянием в React. */
[data-vibeui-dialog-004-window] [data-part="option"]:has(input:checked){
border-color:var(--vibeui-dialog-004-accent,oklch(0.55 0.2 262));
background:color-mix(in oklab,var(--vibeui-dialog-004-accent,oklch(0.55 0.2 262)) 6%,transparent);
}
[data-vibeui-dialog-004-window] [data-part="option"]:hover{background:color-mix(in oklab,var(--vibeui-dialog-004-border,oklch(0.89 0.006 265)) 25%,transparent)}
[data-vibeui-dialog-004-window] input{
appearance:none;-webkit-appearance:none;flex:none;margin:0.125rem 0 0;
width:1.0625rem;height:1.0625rem;border-radius:9999px;
border:1.5px solid var(--vibeui-dialog-004-border,oklch(0.89 0.006 265));
background:oklch(1 0 0);cursor:inherit;
transition:border-color .16s ease,box-shadow .16s ease;
}
[data-vibeui-dialog-004-window] input:checked{
border-color:var(--vibeui-dialog-004-accent,oklch(0.55 0.2 262));
box-shadow:inset 0 0 0 3.5px var(--vibeui-dialog-004-accent,oklch(0.55 0.2 262));
}
[data-vibeui-dialog-004-window] input:focus-visible{outline:2px solid var(--vibeui-dialog-004-accent,oklch(0.55 0.2 262));outline-offset:2px}
[data-vibeui-dialog-004-window] [data-part="text"]{display:flex;flex-direction:column;gap:0.125rem}
[data-vibeui-dialog-004-window] [data-part="label"]{font-size:0.875rem;font-weight:550;line-height:1.35}
[data-vibeui-dialog-004-window] [data-part="description"]{font-size:0.8125rem;line-height:1.45;color:var(--vibeui-dialog-004-muted,oklch(0.5 0.014 265))}
[data-vibeui-dialog-004-window] [data-part="actions"]{display:flex;justify-content:flex-end;gap:0.5rem;margin-top:1.25rem}
[data-vibeui-dialog-004-window] button{
appearance:none;cursor:pointer;font:inherit;font-size:0.875rem;font-weight:600;
display:inline-flex;align-items:center;height:2.25rem;padding:0 1rem;
border-radius:0.5rem;border:1px solid transparent;
}
[data-vibeui-dialog-004-window] [data-part="cancel"]{background:transparent;color:inherit;border-color:var(--vibeui-dialog-004-border,oklch(0.89 0.006 265))}
[data-vibeui-dialog-004-window] [data-part="submit"]{background:var(--vibeui-dialog-004-accent,oklch(0.55 0.2 262));color:oklch(1 0 0)}
[data-vibeui-dialog-004-window] button:focus-visible{outline:2px solid var(--vibeui-dialog-004-accent,oklch(0.55 0.2 262));outline-offset:2px}
@media (prefers-reduced-motion:reduce){
[data-vibeui-block="dialog-004"] *{animation:none!important;transition:none!important}
[data-vibeui-dialog-004-window]{transition:none!important;opacity:1;transform:none}
}
`
const DEFAULT_OPTIONS: Dialog004Option[] = [
{
value: "draft",
label: "Сохранить как черновик",
description: "Изменения останутся в редакторе и не попадут на сайт.",
},
{
value: "publish",
label: "Опубликовать сразу",
description: "Страницы обновятся на сайте в течение минуты.",
},
{
value: "schedule",
label: "Запланировать публикацию",
description: "Выберете дату и время на следующем шаге.",
},
]
/**
* Окно выбора одного варианта: карточки с нативными radio.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Dialog004({
id = "vibeui-dialog-004",
trigger = "Опубликовать",
title = "Что сделать с изменениями?",
options = DEFAULT_OPTIONS,
defaultValue = "publish",
submitLabel = "Продолжить",
cancelLabel = "Отмена",
accent,
className,
style,
}: Dialog004Props) {
const palette = {
...(accent ? { "--vibeui-dialog-004-accent": accent } : null),
...style,
} as CSSProperties
return (
<>
<style href="vibeui-dialog-004" precedence="medium">
{STYLES}
</style>
<div data-vibeui-block="dialog-004" className={className} style={palette}>
<button data-part="trigger" type="button" popoverTarget={id}>
{trigger}
</button>
<div
id={id}
popover="auto"
data-vibeui-dialog-004-window=""
role="dialog"
aria-labelledby={`${id}-title`}
style={palette}
>
<h2 data-part="title" id={`${id}-title`}>
{title}
</h2>
<form method="dialog">
<div data-part="list">
{options.map((option) => (
<label key={option.value} data-part="option">
<input
type="radio"
name={`${id}-choice`}
value={option.value}
defaultChecked={option.value === defaultValue}
/>
<span data-part="text">
<span data-part="label">{option.label}</span>
{option.description ? (
<span data-part="description">{option.description}</span>
) : null}
</span>
</label>
))}
</div>
<div data-part="actions">
<button data-part="cancel" type="button" popoverTarget={id}>
{cancelLabel}
</button>
<button data-part="submit" type="submit" popoverTarget={id}>
{submitLabel}
</button>
</div>
</form>
</div>
</div>
</>
)
}