Tables
Unit Caption
A table whose heading is a real caption: it also explains the units, the rounding and the cut-off date, while each column's unit sits on its own line in the header.
- table
- caption
- units
- report
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/table-020?lang=en
| Точка продаж | Выручкатыс. ₽ | Заказышт. | Средний чек₽ | Доля рынкап. п. |
|---|---|---|---|---|
| Магазин на Лесной | 1 284 | 612 | 2 098 | +0,4 |
| Магазин в Строгино | 948 | 471 | 2 013 | −0,2 |
| Пункт выдачи «Юг» | 402 | 388 | 1 036 | +0,1 |
| Онлайн-витрина | 3 116 | 1 940 | 1 606 | +1,2 |
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 "table-020" (Unit Caption) 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/table-020.json
Registry item: https://vibeui.ru/r/table-020.json
Installs to: components/vibeui/table-020.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 table whose heading is a real caption: it also explains the units, the rounding and the cut-off date, while each column's unit sits on its own line in the header.
A table with a caption that explains units, rounding and cut-off date, and with units in the column headers. Zero dependencies, one file, no client JS.
## 3. How to use it
import { Table020 } from "@/components/vibeui/table-020"
<Table020
caption="Sales by outlet, August"
note="Values are rounded to whole units, revenue is in thousands, net of VAT."
/>
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-table-020-* palette — do not swap it for your theme tokens
- the heading and the note inside caption: a paragraph above the table never becomes its name
- caption-side:top: without it print moves the caption below, and the reading rules arrive after the data
- the unit in the column header: "1,284" without "k" is a riddle, not a number
- abbr with a title and a dotted underline: otherwise "pp" reads as a typo
- the component's own light surface: dark text disappears on the dark catalog card
## 6. You may change
- the columns, their units and expansions through columns
- the outlets and their values through rows
- the table heading through caption
- the units and cut-off explanation through note
## 7. Rules
- The note is capped at 44ch: a wall of text in a caption stops being read before the table.
- Values arrive as strings — the component neither formats nor rounds them, the data source does.
- An abbr tooltip is only available on hover and focus: spell an important abbreviation out in note.
- 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/table-020.jsonhttps://vibeui.ru/r/table-020.jsonКомпонент самодостаточен: один файл, без зависимостей, палитра в переменных --vibeui-table-020-*. Серверный: хуков нет. Заголовок и пояснение лежат внутри caption, поэтому скринридер объявляет условия чтения до первой ячейки, а не после — абзац над таблицей такого не даёт. caption-side:top задан явно: в печати браузеры любят унести подпись вниз. Единица измерения печатается в шапке отдельной строкой, а сокращения раскрыты через abbr с title и пунктирным подчёркиванием, которое не притворяется ссылкой. Числовые колонки идут с tabular-nums, значения выровнены по правому краю.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
import type { ComponentPropsWithoutRef, CSSProperties } from "react"
export type Table020Column = {
title: string
unit: string
/** Расшифровка сокращения: попадает в title у abbr рядом с единицей. */
full?: string
}
export type Table020Row = {
title: string
values: string[]
}
export type Table020Props = Omit<
ComponentPropsWithoutRef<"div">,
"children"
> & {
columns?: Table020Column[]
rows?: Table020Row[]
caption?: string
/** Вторая строка подписи: единицы, округление, дата среза. */
note?: string
accent?: string
}
// Идея компонента: заголовок таблицы — настоящий caption, а не абзац сверху.
// В нём же лежит вторая строка про единицы, округление и дату среза, поэтому
// скринридер объявляет условия чтения до первой ячейки. Единица каждой
// колонки вынесена в отдельную строку шапки, сокращения раскрыты через abbr.
const STYLES = `
:where([data-vibeui-block="table-020"]){
--vibeui-table-020-bg:oklch(1 0 0);
--vibeui-table-020-fg:oklch(0.24 0.014 265);
--vibeui-table-020-muted:oklch(0.56 0.014 265);
--vibeui-table-020-border:oklch(0.92 0.006 265);
--vibeui-table-020-head:oklch(0.975 0.003 265);
--vibeui-table-020-accent:oklch(0.55 0.2 262);
--vibeui-table-020-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="table-020"]{
width:100%;box-sizing:border-box;
font-family:var(--vibeui-table-020-font);color:var(--vibeui-table-020-fg);
}
[data-vibeui-block="table-020"] [data-part="shell"]{
background:var(--vibeui-table-020-bg);
border:1px solid var(--vibeui-table-020-border);border-radius:1rem;overflow:hidden;
}
[data-vibeui-block="table-020"] [data-part="scroll"]{overflow-x:auto}
[data-vibeui-block="table-020"] [data-part="scroll"]:focus-visible{
outline:2px solid var(--vibeui-table-020-accent);outline-offset:-2px;
}
[data-vibeui-block="table-020"] table{width:100%;border-collapse:collapse;font-size:0.8125rem;min-width:24rem}
/* caption-side:top задан явно: в печати браузеры любят унести подпись вниз. */
[data-vibeui-block="table-020"] caption{
caption-side:top;text-align:left;padding:0.875rem 1rem 0.75rem;
border-bottom:1px solid var(--vibeui-table-020-border);
}
[data-vibeui-block="table-020"] [data-part="title"]{
display:block;font-size:0.9375rem;font-weight:650;line-height:1.3;
}
[data-vibeui-block="table-020"] [data-part="note"]{
display:block;margin-top:0.25rem;max-width:44ch;
font-size:0.75rem;line-height:1.45;color:var(--vibeui-table-020-muted);
}
[data-vibeui-block="table-020"] th,
[data-vibeui-block="table-020"] td{padding:0.5rem 0.875rem;text-align:right}
[data-vibeui-block="table-020"] thead th{
background:var(--vibeui-table-020-head);font-weight:600;vertical-align:bottom;
border-bottom:1px solid var(--vibeui-table-020-border);white-space:nowrap;
}
[data-vibeui-block="table-020"] thead th:first-child,
[data-vibeui-block="table-020"] tbody th{text-align:left}
[data-vibeui-block="table-020"] tbody th{font-weight:500}
[data-vibeui-block="table-020"] tbody tr + tr th,
[data-vibeui-block="table-020"] tbody tr + tr td{border-top:1px solid var(--vibeui-table-020-border)}
[data-vibeui-block="table-020"] tbody td{font-variant-numeric:tabular-nums}
[data-vibeui-block="table-020"] [data-part="unit"]{
display:block;font-size:0.6875rem;font-weight:500;color:var(--vibeui-table-020-muted);
letter-spacing:0.01em;
}
/* Пунктир под сокращением: подсказка есть, но она не выглядит ссылкой. */
[data-vibeui-block="table-020"] abbr{
text-decoration:underline dotted;text-underline-offset:0.15em;cursor:help;
}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="table-020"] *{animation:none!important;transition:none!important}}
`
const DEFAULT_COLUMNS: Table020Column[] = [
{ title: "Выручка", unit: "тыс. ₽" },
{ title: "Заказы", unit: "шт." },
{ title: "Средний чек", unit: "₽" },
{ title: "Доля рынка", unit: "п. п.", full: "процентные пункты" },
]
const DEFAULT_ROWS: Table020Row[] = [
{ title: "Магазин на Лесной", values: ["1 284", "612", "2 098", "+0,4"] },
{ title: "Магазин в Строгино", values: ["948", "471", "2 013", "−0,2"] },
{ title: "Пункт выдачи «Юг»", values: ["402", "388", "1 036", "+0,1"] },
{ title: "Онлайн-витрина", values: ["3 116", "1 940", "1 606", "+1,2"] },
]
/**
* Таблица с подписью caption, где объяснены единицы, округление и дата среза.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Table020({
columns = DEFAULT_COLUMNS,
rows = DEFAULT_ROWS,
caption = "Продажи по точкам, август",
note = "Значения округлены до целых, выручка — в тысячах рублей без НДС. Срез данных на 31 августа, 23:59 по Москве.",
accent,
className,
style,
...props
}: Table020Props) {
const palette = {
...(accent ? { "--vibeui-table-020-accent": accent } : null),
...style,
} as CSSProperties
return (
<>
<style href="vibeui-table-020" precedence="medium">
{STYLES}
</style>
<div
{...props}
data-vibeui-block="table-020"
className={className}
style={palette}
>
<div data-part="shell">
<div
data-part="scroll"
role="region"
aria-label={caption}
tabIndex={0}
>
<table>
<caption>
<span data-part="title">{caption}</span>
<span data-part="note">{note}</span>
</caption>
<thead>
<tr>
<th scope="col">Точка продаж</th>
{columns.map((column) => (
<th key={column.title} scope="col">
{column.title}
<span data-part="unit">
{column.full ? (
<abbr title={column.full}>{column.unit}</abbr>
) : (
column.unit
)}
</span>
</th>
))}
</tr>
</thead>
<tbody>
{rows.map((row) => (
<tr key={row.title}>
<th scope="row">{row.title}</th>
{columns.map((column, index) => (
<td key={column.title}>{row.values[index] ?? "—"}</td>
))}
</tr>
))}
</tbody>
</table>
</div>
</div>
</div>
</>
)
}