@paygreen/pgui 2.9.0 → 2.9.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/dist/cjs/index.js +72 -56
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Pagination/index.d.ts +1 -1
- package/dist/esm/index.js +73 -57
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Pagination/index.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -40,4 +40,4 @@ export type PaginationProps = StackProps & {
|
|
|
40
40
|
totalItems?: number;
|
|
41
41
|
isLoadingPage?: boolean;
|
|
42
42
|
};
|
|
43
|
-
export declare const Pagination: ({ setPage, page, pageSize, totalItems, isLoadingPage, ...rest }: PaginationProps) => JSX.Element;
|
|
43
|
+
export declare const Pagination: ({ setPage, page, pageSize, totalItems, isLoadingPage, children, ...rest }: PaginationProps) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -182,7 +182,7 @@ type PaginationProps = StackProps & {
|
|
|
182
182
|
totalItems?: number;
|
|
183
183
|
isLoadingPage?: boolean;
|
|
184
184
|
};
|
|
185
|
-
declare const Pagination: ({ setPage, page, pageSize, totalItems, isLoadingPage, ...rest }: PaginationProps) => JSX.Element;
|
|
185
|
+
declare const Pagination: ({ setPage, page, pageSize, totalItems, isLoadingPage, children, ...rest }: PaginationProps) => JSX.Element;
|
|
186
186
|
|
|
187
187
|
type CustomProps = {
|
|
188
188
|
value?: string;
|