@oc-digital/react-component-library 8.6.0-beta.2 → 8.7.0-beta.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.
@@ -106,6 +106,9 @@ export interface IEditableTableProps {
106
106
  disableHeaderSelect?: boolean;
107
107
  defaultSortMeta?: SortMeta | null;
108
108
  }
109
+ export interface IEditableTableRef {
110
+ setValue: (rowIndex: number, columnId: string, value: TableCellValues) => void;
111
+ }
109
112
  type AdditionalCellProps = Pick<IEditableTableProps, "fieldConfig" | "syncCellWithState" | "setRows">;
110
113
  export interface ExtendedCellProps extends AdditionalCellProps, CellProps<RowData> {
111
114
  disabled: boolean;