cecomponent 1.0.198 → 2.0.1

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.
@@ -93,6 +93,10 @@ interface CEDataGridDynamicTableProps {
93
93
  rowsSelected?: Set<number>;
94
94
  /** Called when the current page changes; receives the new page index (0-based) */
95
95
  onPageChange?: (page: number) => void;
96
+ /** Column name to check for disabled row values */
97
+ disabledRowColumn?: string;
98
+ /** Array of values in disabledRowColumn that should mark rows as disabled */
99
+ disabledRowValues?: string[];
96
100
  }
97
101
  declare const CEDataGridDynamicTable: React.FC<CEDataGridDynamicTableProps>;
98
102
  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.198",
4
+ "version": "2.0.1",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/idex.d.ts",