@oc-digital/react-component-library 8.7.0-beta.3 → 8.7.0-beta.6

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.
@@ -108,6 +108,7 @@ export interface IEditableTableProps {
108
108
  }
109
109
  export interface IEditableTableRef {
110
110
  setValue: (rowIndex: number, columnId: string, value: TableCellValues) => void;
111
+ rows: RowData[] | null;
111
112
  }
112
113
  type AdditionalCellProps = Pick<IEditableTableProps, "fieldConfig" | "syncCellWithState" | "setRows">;
113
114
  export interface ExtendedCellProps extends AdditionalCellProps, CellProps<RowData> {