@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
15 lines (14 loc) • 523 B
TypeScript
import * as React from 'react';
import { DialogProps, DialogRefType } from './Dialog';
/**
* This is the main popup that we use - so all function popups will appear here.
*/
export interface IPopupWithFooterProps extends DialogProps {
showModal: boolean;
onHide?: () => void;
modal?: boolean;
maxWidth?: number;
footer: React.ReactNode;
children: React.ReactNode;
}
export declare const PopupWithFooter: React.ForwardRefExoticComponent<IPopupWithFooterProps & React.RefAttributes<DialogRefType>>;