ui-mathilde-web 0.1.35 → 0.1.36

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.
@@ -86,6 +86,14 @@ declare interface Column {
86
86
  cellProps?: Record<string, unknown>;
87
87
  }
88
88
 
89
+ export declare const CustomPagination: default_2.FC<CustomPaginationProps>;
90
+
91
+ declare interface CustomPaginationProps {
92
+ currentPage: number;
93
+ totalPages: number;
94
+ onPageChange: (page: number) => void;
95
+ }
96
+
89
97
  export declare const DatePicker: ({ minDate, maxDate, }: {
90
98
  minDate: Date;
91
99
  maxDate: Date;
@@ -29430,6 +29430,7 @@ export {
29430
29430
  Up as Card,
29431
29431
  EI as CardIndicator,
29432
29432
  MI as Checkbox,
29433
+ V2 as CustomPagination,
29433
29434
  YI as DatePicker,
29434
29435
  HI as DateRangePicker,
29435
29436
  qI as DropdownButton,