dfh-ui-library 1.3.38 → 1.3.39
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 +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Gird/Grid.d.ts +2 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Gird/Grid.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { ColumnDef, OnChangeFn, SortingState, PaginationState } from "@tanstack/react-table";
|
|
3
3
|
import { PaginationProps } from "../../shared/models/components/common.model";
|
|
4
|
-
export declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination,
|
|
4
|
+
export declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination, // true for server-side pagination
|
|
5
|
+
isManualSorting, rowClick, }: {
|
|
5
6
|
data: any[];
|
|
6
7
|
columns: ColumnDef<any>[];
|
|
7
8
|
sorting?: any;
|
package/dist/index.d.ts
CHANGED
|
@@ -810,7 +810,8 @@ declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
|
|
|
810
810
|
*/
|
|
811
811
|
declare const Icon: React__default.FC<IIconProps>;
|
|
812
812
|
|
|
813
|
-
declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination,
|
|
813
|
+
declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination, // true for server-side pagination
|
|
814
|
+
isManualSorting, rowClick, }: {
|
|
814
815
|
data: any[];
|
|
815
816
|
columns: ColumnDef<any>[];
|
|
816
817
|
sorting?: any;
|