mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
Run "yarn build:docs"
This commit is contained in:
parent
7f7bf51f56
commit
ef904567cb
3 changed files with 22 additions and 22 deletions
4
types/Pagination/Pagination.svelte.d.ts
vendored
4
types/Pagination/Pagination.svelte.d.ts
vendored
|
@ -41,13 +41,13 @@ export interface PaginationProps
|
|||
|
||||
/**
|
||||
* Override the item text
|
||||
* @default (min, max) => `${min}–${max} items`
|
||||
* @default (min, max) => `${min}–${max} item${max === 1 ? "" : "s"}`
|
||||
*/
|
||||
itemText?: (min: number, max: number) => string;
|
||||
|
||||
/**
|
||||
* Override the item range text
|
||||
* @default (min, max, total) => `${min}–${max} of ${total} items`
|
||||
* @default (min, max, total) => `${min}–${max} of ${total} item${max === 1 ? "" : "s"}`
|
||||
*/
|
||||
itemRangeText?: (min: number, max: number, total: number) => string;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue