The package now requires using a ModalTransition component to handle animations. The existing DialogContainer component has been split into native and web implementations to support this change.
13 lines
549 B
JavaScript
13 lines
549 B
JavaScript
// @flow
|
|
|
|
export { default as BottomSheet } from './BottomSheet';
|
|
export { default as ConfirmDialog } from './ConfirmDialog';
|
|
export { default as CustomDialog } from './CustomDialog';
|
|
export { default as DialogContainer } from './DialogContainer';
|
|
export { default as InputDialog } from './InputDialog';
|
|
export { default as CustomSubmitDialog } from './CustomSubmitDialog';
|
|
|
|
// NOTE: Some dialogs reuse the style of these base classes for consistency
|
|
// and as we're in a /native namespace, it's safe to export the styles.
|
|
export * from './styles';
|