@atlaskit/modal-dialog
Version:
A modal dialog displays content that requires user interaction, in a layer above the page.
31 lines (30 loc) • 1.44 kB
TypeScript
import React from 'react';
import type { ModalDialogProps } from './types';
export interface FullScreenModalDialogProps extends Omit<ModalDialogProps, 'width' | 'height' | 'shouldScrollInViewport' | 'shouldCloseOnOverlayClick' | 'isBlanketHidden'> {
}
export declare const FullScreenModalDialog: React.ForwardRefExoticComponent<React.PropsWithoutRef<FullScreenModalDialogProps> & React.RefAttributes<HTMLElement>>;
/**
* @deprecated Volt migration shim. Import from the explicit subpath instead.
* Retained only while consumers migrate off this re-export.
*/
export { default as ModalTransition } from './modal-transition';
/**
* @deprecated Volt migration shim. Import from the explicit subpath instead.
* Retained only while consumers migrate off this re-export.
*/
export { default as ModalHeader } from './modal-header';
/**
* @deprecated Volt migration shim. Import from the explicit subpath instead.
* Retained only while consumers migrate off this re-export.
*/
export { default as ModalTitle } from './modal-title';
/**
* @deprecated Volt migration shim. Import from the explicit subpath instead.
* Retained only while consumers migrate off this re-export.
*/
export { default as ModalBody } from './modal-body';
/**
* @deprecated Volt migration shim. Import from the explicit subpath instead.
* Retained only while consumers migrate off this re-export.
*/
export { default as ModalFooter } from './modal-footer';