fix(pagination-nav)!: use 1-indexing to be consistent with Pagination (#1518)

Fixes #1513
This commit is contained in:
Enrico Sacchetti 2022-12-13 13:23:04 -05:00 committed by GitHub
commit 8d55752a18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 49 additions and 31 deletions

View file

@ -5,7 +5,7 @@ export interface PaginationNavProps
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["nav"]> {
/**
* Specify the current page index
* @default 0
* @default 1
*/
page?: number;