Button Group
Period Range
A report period picker where the selected surface slides by index and the line underneath immediately names the resulting range.
What you can change
- the periods and their range captions through periods
- the initial period through defaultPeriod
- the accessible group name through label
A link for your AI agent: preview, code and instructions.
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 on the home page as the hero:
https://vibeui.ru/c/buttongroup-010?lang=en&theme=dark
Not sure where to paste it? Step-by-step guide
Show the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
Loading…
For developers
The install command lives in the “Component source” block below — a signed link that stays valid for 24 hours.
Technical notes
The component is self-contained: one file, no dependencies, its own palette in the --vibeui-buttongroup-010-* variables. It is a client component: useState holds the selected period and onChange hands it outwards. The track is a grid of equal columns (repeat(var(--vibeui-buttongroup-010-count),1fr)), and there is a single surface for the whole group: its width equals one column's share and its offset is computed as translateX(index * 100%). Equal columns are mandatory here — with segments of different widths the offset would stop landing on the button. The state is declared through aria-pressed, and the range line is marked aria-live="polite": a view change without words does not tell a blind user that the data is already different. The track is a role="toolbar" with a roving tabindex: Tab enters the group once, and the period is chosen with the arrows.
Tags
- buttongroup
- period
- indicator
- analytics
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
Loading…