@fattureincloud/fic-design-system 0.7.29 → 0.7.30
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/drawer/drawer.d.ts +2 -0
- package/dist/index.esm.js +6 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
@@ -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;
|