Feedback
Tabbed Sheet
A sheet with sections inside: the switcher is a radio group, so arrows, Home and End come from the browser instead of hand-written tab logic.
- sheet
- tabs
- radiogroup
- dialog
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/sheet-003?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 "sheet-003" (Tabbed Sheet) 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/sheet-003.json
Registry item: https://vibeui.ru/r/sheet-003.json
Installs to: components/vibeui/sheet-003.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 sheet with sections inside: the switcher is a radio group, so arrows, Home and End come from the browser instead of hand-written tab logic.
A bottom sheet with a segmented section switcher and a table of values inside. The tabs are a real radio group, so the keyboard works without extra logic. Zero dependencies, one file, its own palette.
## 3. How to use it
import { Sheet003 } from "@/components/vibeui/sheet-003"
<Sheet003 triggerLabel="Project metrics" tabs={tabs} />
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-sheet-003-* palette — do not swap it for your theme tokens
- radio buttons instead of hand-made tabs: arrows, Home and End come free
- hiding the radio with clip-path rather than display:none — otherwise it stops taking focus
- the fixed sheet height: without it switching sections jolts the page underneath
- label–value pairs as a dl, not as two columns of divs
- tabular figures in the values: a column of numbers of varying width cannot be compared
## 6. You may change
- title — the sheet heading and its accessible name
- the tabs array: the section label and its rows
- triggerLabel — the wording of the button that opens the sheet
- the number of sections: the segments split the width evenly
- the sheet height and the section content — anything can replace the table
## 7. Rules
- More than four sections will not fit the segment: use a scrollable tab strip instead.
- The section is not remembered between openings: the sheet always opens on the first one.
- These are not ARIA tabs: if you need the tablist pattern proper, build it separately.
- 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/sheet-003.jsonhttps://vibeui.ru/r/sheet-003.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-sheet-003-*. Клиентский: "use client", useState держит активный раздел, useId — имя группы радиокнопок, useRef — showModal и close. Сегментированный переключатель — fieldset с радиокнопками, спрятанными clip-path; активная вкладка подсвечивается через :has(input:checked). Высота листа зафиксирована, поэтому смена раздела не дёргает страницу.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
"use client"
import { useId, useRef, useState } from "react"
import type { ComponentPropsWithoutRef, CSSProperties } from "react"
export type Sheet003Tab = {
label: string
rows: { label: string; value: string }[]
}
export type Sheet003Props = Omit<
ComponentPropsWithoutRef<"div">,
"children" | "title"
> & {
triggerLabel?: string
title?: string
tabs?: Sheet003Tab[]
accent?: string
}
// Идея компонента: лист, внутри которого несколько разделов. Переключатель
// собран на группе радиокнопок, а не на кастомных вкладках: стрелки, Home и
// End работают от браузера, состояние читается скринридером само. Высота
// листа зафиксирована, поэтому смена раздела не дёргает страницу под ним.
const STYLES = `
:where([data-vibeui-block="sheet-003"]){
--vibeui-sheet-003-bg:oklch(1 0 0);
--vibeui-sheet-003-fg:oklch(0.21 0.014 265);
--vibeui-sheet-003-muted:oklch(0.55 0.014 265);
--vibeui-sheet-003-border:oklch(0.91 0.006 265);
--vibeui-sheet-003-track:oklch(0.96 0.004 265);
--vibeui-sheet-003-accent:oklch(0.55 0.17 265);
--vibeui-sheet-003-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="sheet-003"]{
display:inline-block;font-family:var(--vibeui-sheet-003-font);color:var(--vibeui-sheet-003-fg);
}
[data-vibeui-block="sheet-003"] [data-part="trigger"]{
appearance:none;cursor:pointer;height:2.25rem;padding:0 0.875rem;
border:1px solid var(--vibeui-sheet-003-border);border-radius:0.625rem;
background:var(--vibeui-sheet-003-bg);color:inherit;
font:inherit;font-size:0.8125rem;font-weight:600;
}
[data-vibeui-block="sheet-003"] [data-part="trigger"]:focus-visible{outline:2px solid var(--vibeui-sheet-003-accent);outline-offset:2px}
[data-vibeui-block="sheet-003"] dialog{
position:fixed;inset:auto 0 0 0;margin:0;
width:100%;max-width:100vw;height:min(30rem,88dvh);
padding:0;border:0;border-radius:1.25rem 1.25rem 0 0;overflow:hidden;
background:var(--vibeui-sheet-003-bg);color:inherit;
box-shadow:0 -26px 60px -32px oklch(0.2 0.02 265 / 60%);
translate:0 100%;transition:translate .24s ease,overlay .24s allow-discrete,display .24s allow-discrete;
}
[data-vibeui-block="sheet-003"] dialog[open]{translate:0 0}
@starting-style{
[data-vibeui-block="sheet-003"] dialog[open]{translate:0 100%}
}
[data-vibeui-block="sheet-003"] dialog::backdrop{background:oklch(0.19 0.02 265 / 45%)}
[data-vibeui-block="sheet-003"] [data-part="panel"]{display:flex;flex-direction:column;height:100%;box-sizing:border-box}
[data-vibeui-block="sheet-003"] [data-part="grabber"]{
align-self:center;width:2.5rem;height:0.25rem;margin:0.5rem 0 0.25rem;
border-radius:9999px;background:var(--vibeui-sheet-003-border);flex:none;
}
[data-vibeui-block="sheet-003"] [data-part="title"]{margin:0;padding:0.25rem 1rem 0.625rem;font-size:1rem;font-weight:680}
/* Сегментированный переключатель — это radiogroup: стрелки работают сами. */
[data-vibeui-block="sheet-003"] [data-part="tabs"]{
display:flex;gap:0.125rem;margin:0 1rem;padding:0.1875rem;border:0;
background:var(--vibeui-sheet-003-track);border-radius:0.75rem;
}
[data-vibeui-block="sheet-003"] [data-part="tab"]{
flex:1;display:flex;align-items:center;justify-content:center;cursor:pointer;
height:2rem;border-radius:0.625rem;
font-size:0.8125rem;font-weight:650;color:var(--vibeui-sheet-003-muted);
transition:background-color .16s ease,color .16s ease;
}
[data-vibeui-block="sheet-003"] [data-part="tab"] input{
position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;
clip-path:inset(50%);white-space:nowrap;
}
[data-vibeui-block="sheet-003"] [data-part="tab"]:has(input:checked){
background:var(--vibeui-sheet-003-bg);color:var(--vibeui-sheet-003-fg);
box-shadow:0 1px 3px oklch(0.2 0.02 265 / 18%);
}
[data-vibeui-block="sheet-003"] [data-part="tab"]:has(input:focus-visible){outline:2px solid var(--vibeui-sheet-003-accent);outline-offset:2px}
[data-vibeui-block="sheet-003"] [data-part="body"]{flex:1;min-height:0;overflow-y:auto;padding:0.875rem 1rem 1rem}
[data-vibeui-block="sheet-003"] dl{display:grid;grid-template-columns:1fr auto;gap:0;margin:0;font-size:0.875rem}
[data-vibeui-block="sheet-003"] [data-part="row"]{display:contents}
[data-vibeui-block="sheet-003"] dt,
[data-vibeui-block="sheet-003"] dd{padding:0.5625rem 0;border-bottom:1px solid var(--vibeui-sheet-003-border)}
[data-vibeui-block="sheet-003"] dt{color:var(--vibeui-sheet-003-muted)}
[data-vibeui-block="sheet-003"] dd{margin:0;text-align:right;font-weight:600;font-variant-numeric:tabular-nums}
[data-vibeui-block="sheet-003"] [data-part="foot"]{
padding:0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom,0px));
border-top:1px solid var(--vibeui-sheet-003-border);
}
[data-vibeui-block="sheet-003"] [data-part="done"]{
appearance:none;border:0;cursor:pointer;width:100%;height:2.75rem;border-radius:0.75rem;
background:var(--vibeui-sheet-003-accent);color:oklch(0.99 0.01 265);
font:inherit;font-size:0.9375rem;font-weight:650;
}
[data-vibeui-block="sheet-003"] [data-part="done"]:focus-visible{outline:2px solid var(--vibeui-sheet-003-accent);outline-offset:2px}
@media (prefers-reduced-motion:reduce){
[data-vibeui-block="sheet-003"] *{animation:none!important;transition:none!important}
[data-vibeui-block="sheet-003"] dialog{translate:0 0}
}
`
const DEFAULT_TABS: Sheet003Tab[] = [
{
label: "Обзор",
rows: [
{ label: "Статус", value: "Опубликован" },
{ label: "Адрес", value: "vitrina.ru" },
{ label: "Последняя сборка", value: "12 марта, 14:08" },
{ label: "Размер", value: "4,2 МБ" },
],
},
{
label: "Трафик",
rows: [
{ label: "Визиты за неделю", value: "8 412" },
{ label: "Уникальные", value: "5 190" },
{ label: "Средняя глубина", value: "3,4 страницы" },
{ label: "Отказы", value: "31 %" },
],
},
{
label: "Сборки",
rows: [
{ label: "Успешных", value: "48" },
{ label: "С ошибкой", value: "3" },
{ label: "Среднее время", value: "51 с" },
{ label: "Кэш", value: "Включён" },
],
},
]
/**
* Лист с разделами внутри: переключатель собран на радиокнопках.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Sheet003({
triggerLabel = "Показатели проекта",
title = "Проект «Витрина»",
tabs = DEFAULT_TABS,
accent,
className,
style,
...props
}: Sheet003Props) {
const sheet = useRef<HTMLDialogElement>(null)
const group = useId()
const [active, setActive] = useState(0)
const palette = {
...(accent ? { "--vibeui-sheet-003-accent": accent } : null),
...style,
} as CSSProperties
const current = tabs[Math.min(active, tabs.length - 1)]
return (
<>
<style href="vibeui-sheet-003" precedence="medium">
{STYLES}
</style>
<div
{...props}
data-vibeui-block="sheet-003"
className={className}
style={palette}
>
<button
type="button"
data-part="trigger"
onClick={() => sheet.current?.showModal()}
>
{triggerLabel}
</button>
<dialog
ref={sheet}
aria-label={title}
onClick={(event) => {
if (event.target === sheet.current) {
sheet.current.close()
}
}}
>
<div data-part="panel">
<span data-part="grabber" aria-hidden="true" />
<h2 data-part="title">{title}</h2>
<fieldset data-part="tabs">
<legend hidden>Раздел</legend>
{tabs.map((tab, index) => (
<label key={tab.label} data-part="tab">
<input
type="radio"
name={group}
checked={index === active}
onChange={() => setActive(index)}
/>
<span>{tab.label}</span>
</label>
))}
</fieldset>
<div data-part="body">
<dl>
{current.rows.map((row) => (
<div key={row.label} data-part="row">
<dt>{row.label}</dt>
<dd>{row.value}</dd>
</div>
))}
</dl>
</div>
<div data-part="foot">
<button
type="button"
data-part="done"
onClick={() => sheet.current?.close()}
>
Закрыть
</button>
</div>
</div>
</dialog>
</div>
</>
)
}