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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Gird/Grid.d.ts +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Gird/Grid.d.ts +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -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;
|
package/dist/index.d.ts
CHANGED
|
@@ -734,6 +734,7 @@ interface TableProps {
|
|
|
734
734
|
rowClick?: (row: any) => void;
|
|
735
735
|
setRowSelection?: any;
|
|
736
736
|
isLoading?: boolean;
|
|
737
|
+
setPageIndex?: any;
|
|
737
738
|
}
|
|
738
739
|
|
|
739
740
|
type VariantTypes = "large" | "small" | "extraSmall" | "largeOutlined" | "smallOutlined" | "extraSmallOutlined" | "default" | "defaultOutlined" | "primaryBlue" | "primaryWhite" | "primaryWhiteSelected" | "primaryWhiteNoBoader" | "primaryWhiteIcon" | "primaryRed" | "primaryFilterSelected" | "primaryBlueFilter" | "smallWhite" | "smallWhiteSelected" | "smallBlue" | "primaryNoBoader" | "primaryBlue10" | "noBoaderbgTransparent" | undefined;
|
|
@@ -1339,7 +1340,7 @@ declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
|
|
|
1339
1340
|
declare const Icon: React__default.FC<IIconProps>;
|
|
1340
1341
|
|
|
1341
1342
|
declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination, // true for server-side pagination
|
|
1342
|
-
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, }: TableProps, key?: any): React__default.JSX.Element;
|
|
1343
|
+
isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, setPageIndex, }: TableProps, key?: any): React__default.JSX.Element;
|
|
1343
1344
|
|
|
1344
1345
|
declare function IndeterminateCheckbox({ indeterminate, rowId, className, ...rest }: {
|
|
1345
1346
|
indeterminate?: boolean;
|