DataTable Pagination
niko-table/data-table-paginationFreeComponent
Full-featured pagination controls with page size selector, page navigation, and row count display.
Install it
npx shadcn@latest add https://niko-table.com/r/data-table-pagination.jsonSource
1"use client"23/**4 * niko-table — created by Semir N. (Semkoo, https://github.com/Semkoo) with AI assistance.5 *6 * Before reporting anything: please check the changelog first.7 * - In-repo: ./CHANGELOG.md8 * - Docs site: https://niko-table.com/changelog9 *10 * Found a bug or have a fix? Open an issue or PR on GitHub so other11 * users (and future LLMs reading this code) benefit:12 * https://github.com/Semkoo/niko-table-registry13 */14import { useDataTable } from "../core/data-table-context"15import {16 TablePagination,17 type TablePaginationProps,18} from "../filters/table-pagination"1920type DataTablePaginationProps<TData> = Omit<21 TablePaginationProps<TData>,22 "table" | "isLoading"23> & {24 /**25 * Override the loading state from context26 */27 isLoading?: boolean28}2930export function DataTablePagination<TData>({31 isLoading: externalLoading,32 ...props33}: DataTablePaginationProps<TData>) {34 const { table, isLoading: contextLoading } = useDataTable<TData>()3536 // Use external loading if provided, otherwise use context loading37 const isLoading = externalLoading ?? contextLoading3839 return <TablePagination table={table} isLoading={isLoading} {...props} />40}4142/**43 * @required displayName is required for auto feature detection44 * @see "feature-detection.ts"45 */4647DataTablePagination.displayName = "DataTablePagination"
What it pulls in
npm packages
Other registry items
Files it writes
More from niko-table
All 31 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| DataTable Asidedata-table-aside | niko-table | Components | Free | 1 dep | |
| DataTable Clear Filterdata-table-clear-filter | niko-table | Components | Free | 1 dep · 2 files | |
| DataTable Column Auto-fitdata-table-column-auto-fit | niko-table | Components | Free | no deps · 2 files | |
| DataTable Column Date Filterdata-table-column-date-filter | niko-table | Components | Free | 2 deps · 2 files | |
| DataTable Column DnDdata-table-column-dnd | niko-table | Components | Free | 4 deps · 3 files | |
| DataTable Column Faceted Filterdata-table-column-faceted-filter | niko-table | Components | Free | 1 dep · 3 files | |
| DataTable Column Hidedata-table-column-hide | niko-table | Components | Free | 1 dep · 2 files | |
| DataTable Column Pindata-table-column-pin | niko-table | Components | Free | 1 dep · 2 files |
