cecomponent 1.0.158 → 1.0.160

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.
@@ -10,6 +10,7 @@ type CustomModalProps = {
10
10
  onSecondaryClick?: () => void;
11
11
  width?: number | string;
12
12
  height?: number | string;
13
+ style?: React.CSSProperties;
13
14
  };
14
15
  declare const CECustomModal: React.FC<CustomModalProps>;
15
16
  export default CECustomModal;
@@ -30,7 +30,6 @@ interface CEDataGridDynamicTableProps {
30
30
  isApproveButtonRequired?: boolean;
31
31
  isReassignButtonRequired?: boolean;
32
32
  isCancelButtonRequired?: boolean;
33
- isExportToExcelRequired?: boolean;
34
33
  noOfPagesPerPage?: number;
35
34
  handleEditClick?: (row: any, rowIndex: number) => void;
36
35
  handleAddClick?: () => void;
@@ -67,10 +66,8 @@ interface CEDataGridDynamicTableProps {
67
66
  * download dropdown when `downloadOptions` is provided. Defaults to
68
67
  * "Export to Excel".
69
68
  */
70
- defaultDownloadLabel?: string;
71
69
  showRefreshIcon?: boolean;
72
70
  showFullViewIcon?: boolean;
73
- showSearchIcon?: boolean;
74
71
  showColumnVisibilityIcon?: boolean;
75
72
  showSortIcon?: boolean;
76
73
  showFilterIcon?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cecomponent",
3
3
  "description": "A React component library for building modern UIs for Cleanearth",
4
- "version": "1.0.158",
4
+ "version": "1.0.160",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/idex.d.ts",