Pagination

Inline Page Editor

Pagination with no separate jump field: the page number itself turns into an input on click or Enter, Enter confirms and checks the range, and Escape cancels the edit without leaving a trace in the layout.

What you can change

  • page and total — the starting page and their total count
  • the navLabel, prevText, nextText, prevLabel, nextLabel, readoutLabel, totalLabel, inputLabel, editLabel and errorText captions — Russian by default, the project sets the language
  • the accent through the accent prop — it colours the focus ring and the dashed hint around the number

A link for your AI agent: preview, code and instructions.

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.
AI
1Pick it here

put this on the home page as the hero:

https://vibeui.ru/c/pagination-015?lang=en&theme=dark

2Paste into the chat
3Get it in your project

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 local --vibeui-pagination-015-* variables. Client component: "use client" for the sake of the page, the edit mode and the input draft. The page number is normally a <button>; a click or Enter on it calls startEdit and substitutes an <input>, which gets focus and its text selected through useEffect. Enter calls finishEdit(true) with a range check and a message through role="alert", while Escape and losing focus call finishEdit(false), reverting the edit without changing the page.

Tags

  • pagination
  • jump
  • inline edit
  • form
Component source

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

Loading…