cr-ui-lib 1.0.19 → 1.1.0
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -385,7 +385,7 @@ interface PaginationProps {
|
|
|
385
385
|
onPageChange?: (selectedPage: number) => void;
|
|
386
386
|
pageRangeDisplayed?: number;
|
|
387
387
|
}
|
|
388
|
-
declare const Pagination:
|
|
388
|
+
declare const Pagination: ({ totalPages, currentPage, onPageChange, pageRangeDisplayed, }: PaginationProps) => JSX.Element;
|
|
389
389
|
|
|
390
390
|
interface ErrorToastProps {
|
|
391
391
|
message?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -385,7 +385,7 @@ interface PaginationProps {
|
|
|
385
385
|
onPageChange?: (selectedPage: number) => void;
|
|
386
386
|
pageRangeDisplayed?: number;
|
|
387
387
|
}
|
|
388
|
-
declare const Pagination:
|
|
388
|
+
declare const Pagination: ({ totalPages, currentPage, onPageChange, pageRangeDisplayed, }: PaginationProps) => JSX.Element;
|
|
389
389
|
|
|
390
390
|
interface ErrorToastProps {
|
|
391
391
|
message?: string;
|