@ballistix.digital/react-components 0.5.10 → 0.6.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.ts +4 -0
- package/dist/index.esm.js +261 -239
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +260 -238
- package/dist/index.js.map +1 -1
- package/dist/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -524,6 +524,7 @@ declare const base$b: {
|
|
|
524
524
|
divider: string;
|
|
525
525
|
label: string;
|
|
526
526
|
icon: string;
|
|
527
|
+
pageSizeList: string;
|
|
527
528
|
};
|
|
528
529
|
type TPanelPaginationNavigationStyles = DeepPartialType$1<typeof base$b>;
|
|
529
530
|
|
|
@@ -536,6 +537,9 @@ type TProps$5 = {
|
|
|
536
537
|
max: number;
|
|
537
538
|
current: number;
|
|
538
539
|
}) => ReactNode;
|
|
540
|
+
pageSizeOptions?: number[];
|
|
541
|
+
defaultPageSize?: number;
|
|
542
|
+
onChangePageSize?: (pageSize: number) => void;
|
|
539
543
|
styles?: TPanelPaginationNavigationStyles;
|
|
540
544
|
onChange?: (current: number) => void;
|
|
541
545
|
};
|