sag_components 2.0.0-beta165 → 2.0.0-beta166
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +22 -17
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +22 -17
- package/dist/index.js.map +1 -1
- package/dist/types/components/ModalDrawer/ModalDrawer.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @param {React.ReactNode} props.children - Drawer content
|
|
7
7
|
* @param {number} [props.widthPercent=70] - Width of the drawer as a percentage of the viewport width
|
|
8
8
|
*/
|
|
9
|
-
export default function ModalDrawer({ open, onClose, children, widthPercent }: {
|
|
9
|
+
export default function ModalDrawer({ open, height, onClose, children, widthPercent }: {
|
|
10
10
|
open: boolean;
|
|
11
11
|
onClose: Function;
|
|
12
12
|
children: React.ReactNode;
|