mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
parent
024d77493c
commit
ed3928bb01
7 changed files with 102 additions and 20 deletions
11
types/Pagination/Pagination.svelte.d.ts
vendored
11
types/Pagination/Pagination.svelte.d.ts
vendored
|
@ -16,6 +16,17 @@ type $Props = {
|
|||
*/
|
||||
totalItems?: number;
|
||||
|
||||
/**
|
||||
* If `totalItems` is a large number, it can affect the
|
||||
* rendering performance of this component since its value
|
||||
* is used to calculate the number of pages in the native
|
||||
* select dropdown. This value creates a small window of
|
||||
* pages rendered around the current page. By default,
|
||||
* a maximum of 1000 select items are rendered.
|
||||
* @default 1000
|
||||
*/
|
||||
pageWindow?: number;
|
||||
|
||||
/**
|
||||
* Set to `true` to disable the pagination
|
||||
* @default false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue