dfh-ui-library 1.12.305 → 1.12.306

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,4 +1,4 @@
1
1
  import React from "react";
2
2
  import { TableProps } from "../../shared/models/components/common.model";
3
3
  export declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination, // true for server-side pagination
4
- isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, }: TableProps, key?: any): React.JSX.Element;
4
+ isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, setPageIndex, }: TableProps, key?: any): React.JSX.Element;
@@ -848,5 +848,6 @@ export interface TableProps {
848
848
  rowClick?: (row: any) => void;
849
849
  setRowSelection?: any;
850
850
  isLoading?: boolean;
851
+ setPageIndex?: any;
851
852
  }
852
853
  export {};