ui-mathilde-web 0.1.34 → 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;
@@ -145,6 +153,7 @@ export declare const ImageFormat: ({ src, alt, width, height, classIm, }: {
145
153
  export declare const InputForm: ForwardRefExoticComponent<InputFormProps & RefAttributes<HTMLInputElement>>;
146
154
 
147
155
  declare interface InputFormProps extends default_2.InputHTMLAttributes<HTMLInputElement> {
156
+ icon?: boolean;
148
157
  placeholder?: string;
149
158
  label?: string;
150
159
  error?: string;