- components
- ›
- pagination
- ›
- svelte
Pagination
Navigate between multiple pages of content.
ID | Name | Country | |
---|---|---|---|
1 | Juanita Rowe | Ned_Roberts44@yahoo.com | North Macedonia |
2 | Jesse Nikolaus | Stefanie.Cummings@yahoo.com | Haiti |
3 | Simon Okuneva-Hintz | Ole_Konopelski96@hotmail.com | Isle of Man |
4 | Chelsea Gorczany | Zoila5@gmail.com | Mali |
5 | Miss Alberta Bogisich | Palma1@hotmail.com | Faroe Islands |
6 | Donnie Hilpert | Conner_Mann24@gmail.com | Kazakhstan |
7 | Kari Stark | Brent.Hettinger23@yahoo.com | Colombia |
8 | Nina Green | Marty.Davis45@hotmail.com | Estonia |
9 | Mrs. Jessica Von II | Felicia_OKeefe@hotmail.com | Uzbekistan |
10 | Felipe Jast | Chet_Orn@gmail.com | Kazakhstan |
Page Size
ID | Name | Country | |
---|---|---|---|
1 | Bennie Cartwright | Abdiel30@gmail.com | Malta |
2 | Lola Doyle | Baby_Nienow0@yahoo.com | Guinea |
3 | Lindsey Gislason MD | Van.Swaniawski2@hotmail.com | Australia |
4 | Nadine Runolfsdottir Sr. | Gregg58@gmail.com | Guatemala |
5 | Rose Ward I | Gaston86@hotmail.com | Puerto Rico |
6 | Ms. Sandra Russel | Nathanial.Cremin75@gmail.com | Lithuania |
7 | Mr. Alfonso King | Ola.Murray12@hotmail.com | Lebanon |
8 | Nicolas Rohan | Jamey_Christiansen55@yahoo.com | Trinidad and Tobago |
9 | Merle Heidenreich | Rey_Boyle90@hotmail.com | Taiwan |
10 | Mr. Rafael Graham-Mueller | Darion68@yahoo.com | Malaysia |
Direction
ID | Name | Country | |
---|---|---|---|
1 | Andrea Mayer | Einar46@yahoo.com | Malawi |
2 | Miguel O'Kon III | Dewayne.Anderson@hotmail.com | Guadeloupe |
3 | Alex Stroman | Myrtice25@hotmail.com | Virgin Islands, British |
4 | Connie Lemke | Preston_Blick@gmail.com | Lebanon |
5 | Jerry Torp | Ashley.Marks-Stamm@yahoo.com | Slovakia |
6 | Randy Barrows | Shanna.Gulgowski@gmail.com | Colombia |
7 | Ellen Torphy | Kellen_Bernhard@hotmail.com | Haiti |
8 | Betsy Metz | Bell_Tillman-Stehr92@hotmail.com | South Africa |
9 | Ms. Emily Grady | Marielle_Ward35@yahoo.com | Angola |
10 | Rachael Morissette | Zane15@hotmail.com | Sri Lanka |
Total Count
For server-side pagination, your data source may be truncated. Make sure to specify the total records using count
.
{ "data": [...], "pagination": { "page": 1, "limit": 10, "count": 500, }}
<Pagination page={response.pagination.page} count={response.pagination.count} pageSize={response.pagination.limit}> ...</Pagination>
API Reference
Root
inline-flex gap-2 p-2 rounded-container preset-outlined-surface-200-800 w-fit
Property | Default | Type |
---|---|---|
ids | - | Partial<{ root: string; ellipsis: (index: number) => string; prevTrigger: string; nextTrigger: string; item: (page: number) => string; }> | undefinedThe ids of the elements in the accordion. Useful for composition. |
translations | - | IntlTranslations | undefinedSpecifies the localized strings that identifies the accessibility elements and their states |
count | - | number | undefinedTotal number of data items |
pageSize | - | number | undefinedThe controlled number of data items per page |
defaultPageSize | 10 | number | undefinedThe initial number of data items per page when rendered. Use when you don't need to control the page size of the pagination. |
siblingCount | 1 | number | undefinedNumber of pages to show beside active page |
page | - | number | undefinedThe controlled active page |
defaultPage | 1 | number | undefinedThe initial active page when rendered. Use when you don't need to control the active page of the pagination. |
onPageChange | - | ((details: PageChangeDetails) => void) | undefinedCalled when the page number is changed |
onPageSizeChange | - | ((details: PageSizeChangeDetails) => void) | undefinedCalled when the page size is changed |
type | "button" | "button" | "link" | undefinedThe type of the trigger element |
getPageUrl | - | ((details: PageUrlDetails) => string) | undefinedFunction to generate href attributes for pagination links. Only used when `type` is set to "link". |
dir | "ltr" | "ltr" | "rtl" | undefinedThe document's text/writing direction. |
getRootNode | - | (() => ShadowRoot | Node | Document) | undefinedA root node to correctly resolve document in custom environments. E.x.: Iframes, Electron. |
element | - | Snippet<[HTMLAttributes<"div">]> | undefinedRender the element yourself |
RootProvider
Property | Default | Type |
---|---|---|
value | - | () => PaginationApi<PropTypes> |
element | - | Snippet<[HTMLAttributes<"div">]> | undefinedRender the element yourself |
RootContext
Property | Default | Type |
---|---|---|
children | - | Snippet<[() => PaginationApi<PropTypes>]> |
PrevTrigger
btn preset-tonal
Property | Default | Type |
---|---|---|
element | - | Snippet<[HTMLAttributes<"button">]> | undefinedRender the element yourself |
Item
btn preset-tonal cursor-pointer select-none data-selected:preset-filled
Property | Default | Type |
---|---|---|
type | - | "page" |
value | - | number |
element | - | Snippet<[HTMLAttributes<"a">]> | undefinedRender the element yourself |
Ellipsis
btn preset-tonal pointer-events-none
Property | Default | Type |
---|---|---|
index | - | number |
element | - | Snippet<[HTMLAttributes<"span">]> | undefinedRender the element yourself |
NextTrigger
btn preset-tonal
Property | Default | Type |
---|---|---|
element | - | Snippet<[HTMLAttributes<"button">]> | undefinedRender the element yourself |