@fattureincloud/fic-design-system 0.7.28 → 0.7.30
Sign up to get free protection for your applications and to get access to all the features.
@@ -7,6 +7,8 @@ export interface DrawerProps {
|
|
7
7
|
actionClose?: () => void;
|
8
8
|
allowOutsideClickClose?: boolean;
|
9
9
|
children?: ReactNode;
|
10
|
+
fullscreen?: boolean;
|
11
|
+
onFullscreen?: (fullscreen: boolean) => void;
|
10
12
|
}
|
11
13
|
declare const Drawer: React.FC<DrawerProps>;
|
12
14
|
export default Drawer;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { buttonColors } from '../buttons/button/types';
|
3
3
|
interface Props {
|
4
|
-
title
|
4
|
+
title?: string;
|
5
5
|
type: 'success' | 'error' | 'warning' | 'info';
|
6
6
|
description: string | JSX.Element;
|
7
7
|
question?: string;
|
@@ -13,6 +13,7 @@ interface Props {
|
|
13
13
|
setIsOpen: (state: boolean) => void;
|
14
14
|
isSmall?: boolean;
|
15
15
|
cancelColor?: buttonColors;
|
16
|
+
customHeader?: JSX.Element;
|
16
17
|
}
|
17
18
|
export declare const ConfirmationModal: (props: Props) => JSX.Element;
|
18
19
|
export {};
|