cecomponent 1.0.106 → 1.0.107

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.
@@ -0,0 +1,7 @@
1
+ import { ColumnConfig } from './CEDataGridDynamicsTable';
2
+ declare const AddNewRowCell: ({ row, column, colId, }: {
3
+ row: any;
4
+ column: ColumnConfig;
5
+ colId: string;
6
+ }) => import("react/jsx-runtime").JSX.Element;
7
+ export default AddNewRowCell;
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- interface ColumnConfig {
2
+ export interface ColumnConfig {
3
3
  id: string;
4
4
  label?: string;
5
5
  tooltip?: string;
@@ -61,6 +61,7 @@ interface CEDataGridDynamicTableProps {
61
61
  shouldResetSearchOnDataChange?: boolean;
62
62
  pageSizeOptions?: Array<number>;
63
63
  newRowInfo?: any;
64
+ handleSelectedRows?: (rows: number[]) => void;
64
65
  }
65
66
  declare const CEDataGridDynamicTable: React.FC<CEDataGridDynamicTableProps>;
66
67
  export default CEDataGridDynamicTable;
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.106",
4
+ "version": "1.0.107",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/index.d.ts",