cecomponent 2.0.63 → 2.0.65

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.
@@ -100,6 +100,11 @@ interface CEDataGridDynamicTableProps {
100
100
  rowsSelected?: Set<number>;
101
101
  /** Called when the current page changes; receives the new page index (0-based) */
102
102
  onPageChange?: (page: number) => void;
103
+ /**
104
+ * Enables server-side pagination. When true, `jsonData` is treated as the
105
+ * already-fetched page data and the grid stops slicing rows locally.
106
+ */
107
+ serverSidePagination?: boolean;
103
108
  /**
104
109
  * Optional consumer predicate. Return true to disable the specific row.
105
110
  * Receives the row data. If omitted, all rows are enabled.
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.63",
4
+ "version": "2.0.65",
5
5
  "main": "dist/ce-component-lib.js",
6
6
  "module": "dist/ce-component-lib.mjs",
7
7
  "types": "dist/idex.d.ts",