Dialog
Secret Dialog
A dialog for a secret shown once: the monospaced value wraps by character, and the warning sits below it — read after the key is seen.
- dialog
- secret
- api key
- copy
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-012?lang=en
API access key
Ключ даёт полный доступ к проектам вашей команды.
vibeui_sk_8f2c41ab9d70e5b3c6a1f4820d7e93bb5c02af61Мы показываем ключ один раз. Сохраните его сейчас — восстановить будет нельзя, только выпустить новый.
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-012" (Secret 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-012.json
Registry item: https://vibeui.ru/r/dialog-012.json
Installs to: components/vibeui/dialog-012.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 a secret shown once: the monospaced value wraps by character, and the warning sits below it — read after the key is seen.
A secret dialog: heading, explanation, the key itself monospaced on a dark ground, a warning that it is shown once, and two buttons. The key wraps by character and stays fully visible. Zero dependencies, one file, its own palette.
## 3. How to use it
import { Dialog012 } from "@/components/vibeui/dialog-012"
<Dialog012
id="api-key"
value={apiKey}
warning="We show this key once."
/>
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-012-* palette — do not swap it for your theme tokens
- word-break:break-all on the key: a secret truncated with an ellipsis is useless
- the dark ground under the key — it separates data from prose and suggests copying it whole
- the warning after the key rather than before: it is read once people see what to save
- the quiet "I saved it" button beside the accented copy button
- styling the window by attribute and the palette through its own style — the window sits in the top layer
## 6. You may change
- value — the key or token itself
- the title, description and warning copy
- the copyLabel and doneLabel wording
- the copy handler: attach onClick to the button in your copy
## 7. Rules
- The key arrives ready: the component generates nothing and sends nothing anywhere.
- Do not log the value or put it in the URL — it should live only inside this window.
- If the key can be shown again, drop the warning: "only once" has to be true.
- 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-012.jsonhttps://vibeui.ru/r/dialog-012.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-dialog-012-*. Ключ лежит в тёмном <code> с word-break:break-all: обрезанный многоточием секрет бесполезен, поэтому он переносится по символам. Предупреждение оформлено плашкой с восклицательным знаком на псевдоэлементе и стоит после ключа. Кнопка «Я сохранил» тихая, копирование — акцентное.
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 Dialog012Props = {
id?: string
trigger?: string
title?: string
description?: string
/** Сам ключ. Показывается один раз — повторно его не покажут. */
value?: string
warning?: string
copyLabel?: string
doneLabel?: string
className?: string
style?: CSSProperties
}
// Идея компонента: окно с секретом, который показывают один раз. Ключ набран
// моноширинным и переносится по символам, а не по словам: обрезанный
// многоточием ключ бесполезен. Предупреждение стоит под ключом, а не над ним —
// его читают после того, как увидели, что именно нужно сохранить.
const STYLES = `
:where([data-vibeui-block="dialog-012"]){
--vibeui-dialog-012-fg:oklch(0.22 0.016 265);
--vibeui-dialog-012-muted:oklch(0.5 0.014 265);
--vibeui-dialog-012-bg:oklch(1 0 0);
--vibeui-dialog-012-code-bg:oklch(0.22 0.014 265);
--vibeui-dialog-012-code-fg:oklch(0.95 0.006 265);
--vibeui-dialog-012-border:oklch(0.89 0.006 265);
--vibeui-dialog-012-warn:oklch(0.68 0.15 70);
--vibeui-dialog-012-accent:oklch(0.55 0.2 262);
--vibeui-dialog-012-radius:1rem;
--vibeui-dialog-012-mono:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono",monospace;
--vibeui-dialog-012-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="dialog-012"]{display:inline-flex;font-family:var(--vibeui-dialog-012-font)}
[data-vibeui-block="dialog-012"] [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-012-border);border-radius:0.5rem;
background:var(--vibeui-dialog-012-bg);color:var(--vibeui-dialog-012-fg);
}
[data-vibeui-block="dialog-012"] [data-part="trigger"]:hover{background:color-mix(in oklab,var(--vibeui-dialog-012-border) 30%,transparent)}
[data-vibeui-block="dialog-012"] [data-part="trigger"]:focus-visible{outline:2px solid var(--vibeui-dialog-012-accent);outline-offset:2px}
[data-vibeui-dialog-012-window]{
position:fixed;inset:0;margin:auto;height:fit-content;
width:min(28rem,calc(100vw - 2rem));box-sizing:border-box;padding:1.375rem;
border:1px solid var(--vibeui-dialog-012-border,oklch(0.89 0.006 265));
border-radius:var(--vibeui-dialog-012-radius,1rem);
background:var(--vibeui-dialog-012-bg,oklch(1 0 0));
color:var(--vibeui-dialog-012-fg,oklch(0.22 0.016 265));
font-family:var(--vibeui-dialog-012-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-012-window]:popover-open{opacity:1;transform:none}
@starting-style{[data-vibeui-dialog-012-window]:popover-open{opacity:0;transform:scale(0.97)}}
[data-vibeui-dialog-012-window]::backdrop{background:oklch(0.18 0.02 265 / 50%)}
[data-vibeui-dialog-012-window] [data-part="title"]{margin:0 0 0.375rem;font-size:1rem;font-weight:620;line-height:1.35}
[data-vibeui-dialog-012-window] [data-part="description"]{margin:0 0 0.875rem;font-size:0.875rem;line-height:1.55;color:var(--vibeui-dialog-012-muted,oklch(0.5 0.014 265))}
/* Ключ переносится по символам: обрезанный многоточием секрет бесполезен. */
[data-vibeui-dialog-012-window] [data-part="value"]{
display:block;padding:0.75rem 0.875rem;border-radius:0.625rem;
background:var(--vibeui-dialog-012-code-bg,oklch(0.22 0.014 265));
color:var(--vibeui-dialog-012-code-fg,oklch(0.95 0.006 265));
font-family:var(--vibeui-dialog-012-mono,ui-monospace,monospace);
font-size:0.8125rem;line-height:1.6;word-break:break-all;
}
[data-vibeui-dialog-012-window] [data-part="warning"]{
display:flex;align-items:flex-start;gap:0.5rem;margin:0.875rem 0 0;
padding:0.625rem 0.75rem;border-radius:0.625rem;
background:color-mix(in oklab,var(--vibeui-dialog-012-warn,oklch(0.68 0.15 70)) 12%,transparent);
font-size:0.8125rem;line-height:1.5;
}
[data-vibeui-dialog-012-window] [data-part="warning"]::before{
content:"!";flex:none;
display:flex;align-items:center;justify-content:center;
width:1.125rem;height:1.125rem;margin-top:0.0625rem;border-radius:9999px;
background:var(--vibeui-dialog-012-warn,oklch(0.68 0.15 70));
color:oklch(0.2 0.02 70);font-size:0.6875rem;font-weight:800;
}
[data-vibeui-dialog-012-window] [data-part="actions"]{display:flex;justify-content:flex-end;gap:0.5rem;margin-top:1.25rem}
[data-vibeui-dialog-012-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-012-window] [data-part="done"]{background:transparent;color:inherit;border-color:var(--vibeui-dialog-012-border,oklch(0.89 0.006 265))}
[data-vibeui-dialog-012-window] [data-part="copy"]{background:var(--vibeui-dialog-012-accent,oklch(0.55 0.2 262));color:oklch(1 0 0)}
[data-vibeui-dialog-012-window] [data-part="copy"]:hover{filter:brightness(0.94)}
[data-vibeui-dialog-012-window] :focus-visible{outline:2px solid var(--vibeui-dialog-012-accent,oklch(0.55 0.2 262));outline-offset:2px}
@media (prefers-reduced-motion:reduce){
[data-vibeui-block="dialog-012"] *{animation:none!important;transition:none!important}
[data-vibeui-dialog-012-window]{transition:none!important;opacity:1;transform:none}
}
`
/**
* Окно с секретом, который показывают один раз: ключ и предупреждение.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Dialog012({
id = "vibeui-dialog-012",
trigger = "Создать ключ",
title = "Ключ доступа к API",
description = "Ключ даёт полный доступ к проектам вашей команды.",
value = "vibeui_sk_8f2c41ab9d70e5b3c6a1f4820d7e93bb5c02af61",
warning = "Мы показываем ключ один раз. Сохраните его сейчас — восстановить будет нельзя, только выпустить новый.",
copyLabel = "Копировать ключ",
doneLabel = "Я сохранил",
className,
style,
}: Dialog012Props) {
return (
<>
<style href="vibeui-dialog-012" precedence="medium">
{STYLES}
</style>
<div data-vibeui-block="dialog-012" className={className} style={style}>
<button data-part="trigger" type="button" popoverTarget={id}>
{trigger}
</button>
<div
id={id}
popover="auto"
data-vibeui-dialog-012-window=""
role="dialog"
aria-labelledby={`${id}-title`}
style={style}
>
<h2 data-part="title" id={`${id}-title`}>
{title}
</h2>
{description ? <p data-part="description">{description}</p> : null}
<code data-part="value">{value}</code>
{warning ? <p data-part="warning">{warning}</p> : null}
<div data-part="actions">
<button data-part="done" type="button" popoverTarget={id}>
{doneLabel}
</button>
<button data-part="copy" type="button">
{copyLabel}
</button>
</div>
</div>
</div>
</>
)
}