UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

20 lines (19 loc) 709 B
import * as React from 'react'; import { AdaptableMessageType } from '../../../AdaptableState/Common/AdaptableMessageType'; import { AdaptableApi } from '../../../Api/AdaptableApi'; /** * Used when giving the user 2 choices with the option of adding text also */ export interface AdaptablePopupConfirmationProps { showPopup: boolean; onConfirm: (comment: string) => void; onCancel: () => void; header: string; messsage: string; confirmButtonText: string; cancelButtonText: string; showInputBox: boolean; messageType: AdaptableMessageType; api: AdaptableApi; } export declare const AdaptablePopupConfirmation: React.FunctionComponent<AdaptablePopupConfirmationProps>;