dfh-ui-library 1.13.124 → 1.13.125

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, paginationLabel, }: TableProps, key?: any): React.JSX.Element;
@@ -1017,5 +1017,6 @@ export interface TableProps {
1017
1017
  rowClick?: (row: any) => void;
1018
1018
  setRowSelection?: any;
1019
1019
  isLoading?: boolean;
1020
+ paginationLabel?: string;
1020
1021
  }
1021
1022
  export {};
package/dist/index.d.ts CHANGED
@@ -885,6 +885,7 @@ interface TableProps {
885
885
  rowClick?: (row: any) => void;
886
886
  setRowSelection?: any;
887
887
  isLoading?: boolean;
888
+ paginationLabel?: string;
888
889
  }
889
890
 
890
891
  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;
@@ -1648,7 +1649,7 @@ declare const ButtonGroup: React__default.FC<ButtonGroupProps>;
1648
1649
  declare const Icon: React__default.FC<IIconProps>;
1649
1650
 
1650
1651
  declare function Table({ data, columns, sorting, onSortingChange, pagination, onPaginationChange, totalRecords, isManualPagination, // true for server-side pagination
1651
- isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, }: TableProps, key?: any): React__default.JSX.Element;
1652
+ isManualSorting, rowClick, containerHeightRemoveInPixel, setRowSelection, isLoading, paginationLabel, }: TableProps, key?: any): React__default.JSX.Element;
1652
1653
 
1653
1654
  declare function IndeterminateCheckbox({ indeterminate, rowId, className, ...rest }: {
1654
1655
  indeterminate?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.124",
3
+ "version": "1.13.125",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",