25 lines
731 B
Plaintext
25 lines
731 B
Plaintext
|
import { CellCtrl, UserCompDetails } from 'ag-grid-community';
|
||
|
import React from 'react';
|
||
|
import { CellEditorComponentProxy } from '../../shared/customComp/cellEditorComponentProxy';
|
||
|
export declare enum CellCompState {
|
||
|
ShowValue = 0,
|
||
|
EditValue = 1
|
||
|
}
|
||
|
export interface RenderDetails {
|
||
|
compDetails: UserCompDetails | undefined;
|
||
|
value?: any;
|
||
|
force?: boolean;
|
||
|
}
|
||
|
export interface EditDetails {
|
||
|
compDetails: UserCompDetails;
|
||
|
popup?: boolean;
|
||
|
popupPosition?: 'over' | 'under';
|
||
|
compProxy?: CellEditorComponentProxy;
|
||
|
}
|
||
|
declare const _default: React.MemoExoticComponent<(props: {
|
||
|
cellCtrl: CellCtrl;
|
||
|
printLayout: boolean;
|
||
|
editingRow: boolean;
|
||
|
}) => React.JSX.Element>;
|
||
|
export default _default;
|