Feedback

List Settings

List settings where the list is: sorting as radio buttons and column visibility as checkboxes, both marked up as a fieldset with a legend.

  • popover
  • settings
  • fieldset
  • columns

Preview

1440pxHost theme

Use it with AI

  1. 1. Copy the link.
  2. 2. Write to your agent in your own words and drop the link into the sentence.
  3. 3. The agent opens the link and installs the component from the registry.

put this in the header: https://vibeui.ru/c/popover-004?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 "popover-004" (List Settings) 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/popover-004.json

Registry item: https://vibeui.ru/r/popover-004.json
Installs to: components/vibeui/popover-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
List settings where the list is: sorting as radio buttons and column visibility as checkboxes, both marked up as a fieldset with a legend.

A list-settings popover: sorting by radios, columns by checkboxes. Zero dependencies, one file, the browser owns the state.

## 3. How to use it
import { Popover004 } from "@/components/vibeui/popover-004"

<Popover004
  label="List view"
  sorts={["By date", "By name"]}
  columns={["Author", "Size"]}
/>

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-popover-004-* palette — do not swap it for your theme tokens
- the panel layout only inside the :popover-open rule — display in the plain rule overrides the browser's display:none and the panel stays open forever
- the fieldset with a legend instead of a div with a heading — otherwise the group purpose is never announced
- clear:both on the options container: a floated legend makes the following children wrap around it
- radios for sorting and checkboxes for columns — the control type states the selection rule
- the panel's own light surface: without it the dark text disappears on a dark background

## 6. You may change
- the trigger caption through label
- the sorting options through sorts
- the column list through columns
- the accent through the --vibeui-popover-004-accent variable

## 7. Rules
- The values are not lifted up: the caller attaches the change handler.
- The first two columns are checked by default — adjust the condition for another set.
- Settings apply immediately, there is no "Apply" button: add one if applying is expensive.
- 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/popover-004.json
https://vibeui.ru/r/popover-004.json

Компонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-popover-004-*. Серверный: панель на HTML popover, имена групп разводит useId. Раскладка объявлена только в :popover-open. Заголовки групп сделаны настоящими legend, а не div — иначе назначение группы не объявляется. Legend с float:left заставляет следующих детей обтекать, поэтому у контейнера пунктов стоит clear:both. Панель прижата к правому краю кнопки через right:anchor(right) с откатом под @supports not.

Component source

The same file your agent installs. Here in case you would rather copy it by hand.

import { useId } from "react"
import type { ComponentPropsWithoutRef, CSSProperties } from "react"

export type Popover004Props = Omit<
  ComponentPropsWithoutRef<"div">,
  "children"
> & {
  label?: string
  /** Варианты сортировки: радиокнопки, выбран ровно один. */
  sorts?: string[]
  /** Колонки таблицы: чекбоксы, можно выключить любую. */
  columns?: string[]
}

// Идея компонента: настройки списка там, где сам список. Внутри две группы —
// сортировка радиокнопками и видимость колонок чекбоксами, — обе размечены
// fieldset с legend, поэтому скринридер объявляет назначение группы.
const STYLES = `
:where([data-vibeui-block="popover-004"]){
--vibeui-popover-004-bg:oklch(1 0 0);
--vibeui-popover-004-fg:oklch(0.23 0.014 265);
--vibeui-popover-004-muted:oklch(0.54 0.014 265);
--vibeui-popover-004-border:oklch(0.9 0.006 265);
--vibeui-popover-004-hover:oklch(0.965 0.004 265);
--vibeui-popover-004-accent:oklch(0.55 0.17 265);
--vibeui-popover-004-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="popover-004"]{
position:relative;display:inline-block;
font-family:var(--vibeui-popover-004-font);color:var(--vibeui-popover-004-fg);
}
[data-vibeui-block="popover-004"] [data-part="trigger"]{
appearance:none;cursor:pointer;
display:inline-flex;align-items:center;gap:0.4375rem;
height:2.25rem;padding:0 0.875rem;border-radius:0.625rem;
border:1px solid var(--vibeui-popover-004-border);
background:var(--vibeui-popover-004-bg);color:inherit;
font:inherit;font-size:0.8125rem;font-weight:620;
anchor-name:--vibeui-popover-004-anchor;
}
[data-vibeui-block="popover-004"] [data-part="trigger"]:hover{background:var(--vibeui-popover-004-hover)}
[data-vibeui-block="popover-004"] [data-part="trigger"]:focus-visible{outline:2px solid var(--vibeui-popover-004-accent);outline-offset:2px}
/* Раскладка панели живёт только в :popover-open — иначе браузерный
   display:none будет перебит и панель останется видимой всегда. */
[data-vibeui-block="popover-004"] [data-part="panel"]{
position:fixed;margin:0;padding:0.75rem;
width:min(16rem,100vw - 2rem);box-sizing:border-box;
border:1px solid var(--vibeui-popover-004-border);border-radius:0.875rem;
background:var(--vibeui-popover-004-bg);color:inherit;
box-shadow:0 24px 50px -30px oklch(0.2 0.02 265 / 60%);
position-anchor:--vibeui-popover-004-anchor;
top:anchor(bottom);right:anchor(right);margin-top:0.5rem;
}
[data-vibeui-block="popover-004"] [data-part="panel"]:popover-open{display:flex;flex-direction:column;gap:0.75rem}
@supports not (anchor-name: --a){
[data-vibeui-block="popover-004"] [data-part="panel"]{position:absolute;inset:auto;top:calc(100% + 0.5rem);right:0}
}
[data-vibeui-block="popover-004"] fieldset{margin:0;padding:0;border:0;min-width:0}
[data-vibeui-block="popover-004"] legend{
padding:0;margin-bottom:0.375rem;float:left;width:100%;
font-size:0.6875rem;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;
color:var(--vibeui-popover-004-muted);
}
/* legend с float:left заставляет следующих детей обтекать — сбрасываем. */
[data-vibeui-block="popover-004"] [data-part="group"]{clear:both;display:flex;flex-direction:column;gap:0.0625rem}
[data-vibeui-block="popover-004"] [data-part="option"]{
display:flex;align-items:center;gap:0.5rem;cursor:pointer;
padding:0.3125rem 0.375rem;margin:0 -0.375rem;border-radius:0.4375rem;
font-size:0.8125rem;line-height:1.35;
transition:background-color .14s ease;
}
[data-vibeui-block="popover-004"] [data-part="option"]:hover{background:var(--vibeui-popover-004-hover)}
[data-vibeui-block="popover-004"] [data-part="option"] input{accent-color:var(--vibeui-popover-004-accent);margin:0;flex:none}
[data-vibeui-block="popover-004"] [data-part="option"]:focus-within{outline:2px solid var(--vibeui-popover-004-accent);outline-offset:1px}
[data-vibeui-block="popover-004"] [data-part="divider"]{height:1px;background:var(--vibeui-popover-004-border);margin:0 -0.75rem}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="popover-004"] *{animation:none!important;transition:none!important}}
`

const DEFAULT_SORTS = ["По дате изменения", "По названию", "По размеру"]
const DEFAULT_COLUMNS = ["Автор", "Размер", "Теги", "Статус"]

/**
 * Поповер настроек списка: сортировка радиокнопками и видимость колонок.
 * Один файл, ноль зависимостей, собственная палитра.
 */
export function Popover004({
  label = "Вид списка",
  sorts = DEFAULT_SORTS,
  columns = DEFAULT_COLUMNS,
  className,
  style,
  ...props
}: Popover004Props) {
  const id = useId().replace(/:/g, "")

  return (
    <>
      <style href="vibeui-popover-004" precedence="medium">
        {STYLES}
      </style>
      <div
        {...props}
        data-vibeui-block="popover-004"
        className={className}
        style={style as CSSProperties}
      >
        <button type="button" data-part="trigger" popoverTarget={`${id}-panel`}>
          <span aria-hidden="true">⋮</span>
          {label}
        </button>
        <div
          data-part="panel"
          id={`${id}-panel`}
          popover="auto"
          aria-label={label}
        >
          <fieldset>
            <legend>Сортировка</legend>
            <div data-part="group">
              {sorts.map((sort, index) => (
                <label data-part="option" key={sort}>
                  <input
                    type="radio"
                    name={`${id}-sort`}
                    defaultChecked={index === 0}
                  />
                  {sort}
                </label>
              ))}
            </div>
          </fieldset>
          <div data-part="divider" />
          <fieldset>
            <legend>Колонки</legend>
            <div data-part="group">
              {columns.map((column, index) => (
                <label data-part="option" key={column}>
                  <input type="checkbox" defaultChecked={index < 2} />
                  {column}
                </label>
              ))}
            </div>
          </fieldset>
        </div>
      </div>
    </>
  )
}