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.
@@ -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, isManualSorting, rowClick, }: {
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, isManualSorting, rowClick, }: {
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.3.38",
3
+ "version": "1.3.39",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",