jcicl 1.0.74 → 1.0.75

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.
package/Table/Table.d.ts CHANGED
@@ -48,6 +48,11 @@ export interface TableProps {
48
48
  scrollableMinWidth?: string;
49
49
  stickyColumns?: number;
50
50
  columnOrder?: string[];
51
+ /** Unique key for persisting filter/sort/column state to localStorage. If omitted, state is not persisted. */
52
+ persistKey?: string;
53
+ /** Custom renderers for specific columns. Only applied to visible rows — not used for sorting, filtering, or export.
54
+ * Use this for React components (like live Timers) that should only mount on the current page. */
55
+ cellRenderers?: Record<string, (value: any, row: Record<string, any>) => React.ReactNode>;
51
56
  }
52
57
  declare const DataTable: React.FC<TableProps>;
53
58
  export default DataTable;