# @blaze-react/pagination

> The Pagination component enables the user to select a specific page from a range of pages.

Latest version **0.8.0-alpha.112** (published 2025-10-01) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install @blaze-react/pagination
pnpm add @blaze-react/pagination
yarn add @blaze-react/pagination
bun add @blaze-react/pagination
```

## Health

**Score 45/100 (D)** — status: stable.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.8.0-alpha.112 |
| Published | 2025-10-01 |
| First published | 2023-12-20 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.8 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | byte9 |
| Maintainers | marekb9, mcabrerapf, daoyong, grzegorzi, ishrat, andypail, tanane |

## Links

- npm: https://www.npmjs.com/package/@blaze-react/pagination
- npm.io page: https://npm.io/package/@blaze-react/pagination

## Recent versions

- 0.8.0-alpha.112 (latest) — 2025-10-01
- 0.8.0-alpha.117 (alpha) — 2026-03-11
- 0.8.0-alpha.115 — 2026-02-23
- 0.8.0-alpha.114 — 2026-01-08
- 0.8.0-alpha.93 — 2024-11-19
- 0.8.0-alpha.83 — 2024-10-30
- 0.8.0-alpha.78 — 2024-02-29
- 0.8.0-alpha.77 — 2024-01-26
- 0.8.0-alpha.76 — 2024-01-22
- 0.8.0-alpha.75 — 2024-01-10
- 0.8.0-alpha.74 — 2024-01-02
- 0.8.0-alpha.73 — 2023-12-20

## README

## Description

The Pagination component enables the user to select a specific page from a range of pages.

## Usage

- Required

```js
<Pagination
  totalItems={100}
  currentPage={1}
  visiblePages={10}
  onPageChange={(page: Number) => {
    console.log(page);
  }}
/>
```

## API

##### Pagination can receive a number of `props` as follow:

| NAME         |   TYPE   |   DEFAULT    |
| :----------- | :------: | :----------: |
| totalItems   |  Number  |   required   |
| visiblePages |  Number  |      10      |
| onPageChange | Function | (page) => {} |
| currentPage  |  Number  |      1       |
| itemsPerPage |  Number  |      10      |

---
_Source: https://npm.io/package/@blaze-react/pagination · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
