ia-table 0.11.3 → 0.12.0

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.
@@ -199,5 +199,6 @@ export interface SmartGridColumnDefinition {
199
199
  headerComponent?: React.FC<SmartGridHeaderStyleParams>;
200
200
  headerStyle?: (params: SmartGridHeaderStyleParams) => CSSProperties;
201
201
  tooltipValueGetter?: (params: SmartGridTooltipGetterParams) => string;
202
+ cellRendererLazyType?: string;
202
203
  [key: string]: unknown;
203
204
  }
@@ -197,5 +197,9 @@ export type SmartGridTableProps = {
197
197
  onRowClicked?: () => void;
198
198
  onRowClick?: () => void;
199
199
  disableSelectAllRecords?: boolean;
200
+ columnBufferSize?: number;
201
+ lazyLoadCellRenderer?: boolean;
202
+ hasSplitRenderer?: boolean;
203
+ splitRendererKeys?: string[];
200
204
  [key: string]: any;
201
205
  };