cecomponent 2.0.88 → 2.0.90

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.
@@ -227,6 +227,16 @@ interface CEDataGridDynamicTableProps {
227
227
  * Emits whenever local grid context changes.
228
228
  */
229
229
  onGridContextChange?: (context: GridContextState) => void;
230
+ /**
231
+ * Callback fired when the Show/Hide Columns panel is closed.
232
+ * Receives the full ordered list of columns with their 1-based position and visibility state.
233
+ */
234
+ onColumnPanelClose?: (columns: Array<{
235
+ id: string;
236
+ label?: string;
237
+ position: number;
238
+ visible: boolean;
239
+ }>) => void;
230
240
  }
231
241
  declare const CEDataGridDynamicTable: React.FC<CEDataGridDynamicTableProps>;
232
242
  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": "2.0.88",
4
+ "version": "2.0.90",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/idex.d.ts",