@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
23 lines (22 loc) • 1.29 kB
TypeScript
import { ModuleViewPopupProps } from '../Components/SharedProps/ModuleViewPopupProps';
import * as React from 'react';
import { CellDataChangedInfo } from '../../AdaptableState/Common/CellDataChangedInfo';
import { DataChangeHistoryDisableAction, DataChangeHistoryEnableAction, DataChangeHistoryResumeAction, DataChangeHistorySuspendAction } from '../../Redux/ActionsReducers/InternalRedux';
import { DataChangeHistoryMode } from '../../AdaptableState/InternalState';
interface DataChangeHistoryPopupProps extends ModuleViewPopupProps<DataChangeHistoryPopupComponent> {
changeHistoryLog: Record<string, CellDataChangedInfo>;
changeHistoryMode: DataChangeHistoryMode;
activationTime: Date;
suspensionTime: Date;
onChangeHistoryEnable: () => DataChangeHistoryEnableAction;
onChangeHistoryDisable: () => DataChangeHistoryDisableAction;
onChangeHistorySuspend: () => DataChangeHistorySuspendAction;
onChangeHistoryResume: () => DataChangeHistoryResumeAction;
}
declare class DataChangeHistoryPopupComponent extends React.Component<DataChangeHistoryPopupProps> {
render(): React.JSX.Element;
}
export declare let DataChangeHistoryPopup: import("react-redux").ConnectedComponent<typeof DataChangeHistoryPopupComponent, {
[x: string]: any;
}>;
export {};