@groupeactual/ui-kit 1.7.3 → 1.7.4
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 +1 -1
- package/dist/es/index.d.ts +1 -1
- package/dist/es/index.js +1 -1
- package/dist/es/src/components/Datatable/datatable.interface.d.ts +1 -1
- package/package.json +2 -2
- package/src/components/Datatable/datatable.interface.ts +1 -1
- package/src/components/Datatable/use-pagination-props.hook.ts +1 -1
package/dist/es/index.d.ts
CHANGED
|
@@ -405,11 +405,11 @@ type WithoutPaginationProps = {
|
|
|
405
405
|
};
|
|
406
406
|
type PaginationProps = {
|
|
407
407
|
withPagination: true;
|
|
408
|
-
hideTotal: false;
|
|
409
408
|
setPage: (_page: number) => void;
|
|
410
409
|
setLimit: (_limit: number) => void;
|
|
411
410
|
trans: PaginationTrans;
|
|
412
411
|
withTopPagination?: boolean;
|
|
412
|
+
hideTotal?: false;
|
|
413
413
|
limits?: number[];
|
|
414
414
|
};
|
|
415
415
|
type DatatableDataSet<T> = {
|