@croquiscom/pds 0.46.1 → 0.46.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/components/pagination/Pagination.d.ts +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,7 @@ import { HTMLAttributes } from 'react';
|
|
|
2
2
|
export interface PaginationProps extends HTMLAttributes<HTMLUListElement> {
|
|
3
3
|
disabled?: boolean;
|
|
4
4
|
/**
|
|
5
|
-
* 전체 페이지 갯수,
|
|
5
|
+
* 전체 페이지 갯수, 음수일 경우 렌더되지 않습니다.
|
|
6
6
|
*/
|
|
7
7
|
totalPages: number;
|
|
8
8
|
currentPage: number;
|