@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
18 lines (17 loc) • 676 B
TypeScript
import * as React from 'react';
import { CellDataChangedInfo } from '../../AdaptableState/Common/CellDataChangedInfo';
export interface DataChangeHistoryData {
primaryKey: string;
changeKey: string;
changeTriggerLabel: string;
changedColumnLabel: string;
changeInfo: CellDataChangedInfo;
}
export interface DataChangeHistoryGridProps {
adaptableContainerId: string;
agGridContainerId: string;
changeHistoryLog: Record<string, CellDataChangedInfo>;
onUndoChange: (changeKey: string) => void;
onClearRow: (changeKey: string) => void;
}
export declare const DataChangeHistoryGrid: (props: DataChangeHistoryGridProps) => React.JSX.Element;