- components
- ›
- pagination
- ›
- svelte
Pagination
Navigate between multiple pages of content.
ID | Name | Country | |
---|---|---|---|
1 | Dexter Wyman | Cole.Hayes-Kohler84@yahoo.com | Rwanda |
2 | Kristopher Reynolds | Kiara_Paucek64@hotmail.com | Mexico |
3 | Bryant Moen | Lorenza_Daugherty-Boehm@yahoo.com | Heard Island and McDonald Islands |
4 | Alfonso Abshire III | Lilla_Lockman@yahoo.com | Iraq |
5 | Kirk Wyman | Norma.Mosciski@gmail.com | Canada |
6 | Cindy Blanda | Cole_Wiza39@yahoo.com | Uruguay |
7 | Tammy Schmeler | Hollie20@yahoo.com | Democratic Republic of the Congo |
8 | Annette Williamson | Hulda.Thompson39@gmail.com | Qatar |
9 | Brenda Bradtke | Destinee.Walsh59@yahoo.com | Mexico |
10 | Mack Barton | Katheryn_Stiedemann16@hotmail.com | Zimbabwe |
Page Size
ID | Name | Country | |
---|---|---|---|
1 | Mr. Terrell Schroeder I | Sallie.Kautzer@hotmail.com | Malawi |
2 | Randy Howe PhD | Maegan67@hotmail.com | Tokelau |
3 | Milton Casper | Christian31@hotmail.com | Saudi Arabia |
4 | Miss Traci Abbott | Hiram_Flatley48@gmail.com | Guinea |
5 | Dr. Sue Boyle | Kurtis_Becker20@yahoo.com | Israel |
6 | Cathy Connelly | Cooper_Paucek-Terry@gmail.com | Pakistan |
7 | Dr. Lowell Daugherty | Kayleigh_Vandervort@hotmail.com | French Polynesia |
8 | Rolando O'Keefe | Tate_Grimes57@yahoo.com | Maldives |
9 | Bernard Cronin | Ocie.Weber73@hotmail.com | Sint Maarten |
10 | Ruben Stanton | Stacy_Rohan30@hotmail.com | Cayman Islands |
Direction
ID | Name | Country | |
---|---|---|---|
1 | Elmer Runte | Zoe41@hotmail.com | Burkina Faso |
2 | Erika Baumbach | Lon.Kemmer16@hotmail.com | France |
3 | Marcos Swift | Pink_Lang53@gmail.com | Solomon Islands |
4 | Clay Lemke-Larkin | Liliana6@hotmail.com | Luxembourg |
5 | Rodney Sipes | Coleman_Raynor@gmail.com | South Georgia and the South Sandwich Islands |
6 | Rebecca Blick | Marilyne_Lueilwitz@yahoo.com | Norfolk Island |
7 | Miss Teri McGlynn | Laverne16@gmail.com | Sri Lanka |
8 | Lauren Klein | Junior49@hotmail.com | Saint Helena |
9 | Dr. Tyrone Batz | Maxime13@gmail.com | Oman |
10 | Ramona Rath Jr. | Dillan.Fay@gmail.com | United Kingdom |
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 |