@homefile/components-v2 2.27.3 → 2.27.4

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.
@@ -48,7 +48,7 @@ export const ItemFormPanel = ({ children, onClose, onSubmitForm, panelIcon, pane
48
48
  }, [children, skipHeaderDiscovery]);
49
49
  let bodyContent;
50
50
  if (skipHeaderDiscovery) {
51
- bodyContent = (_jsx(Box, { position: "relative", pb: "200px", children: children }));
51
+ bodyContent = (_jsx(Box, { position: "relative", pb: "200px", height: "full", children: children }));
52
52
  }
53
53
  else if (firstChild) {
54
54
  bodyContent = (_jsxs(_Fragment, { children: [firstChild, _jsxs(Box, { position: "relative", pb: "200px", children: [_jsx(Overlay, { showOverlay: showOverlay, position: "absolute", w: "inherit", h: "inherit", zIndex: "9" }), otherChildren] })] }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homefile/components-v2",
3
- "version": "2.27.3",
3
+ "version": "2.27.4",
4
4
  "author": "Homefile",
5
5
  "license": "UNLICENSED",
6
6
  "typings": "dist/index.d.ts",
@@ -92,7 +92,7 @@ export const ItemFormPanel = ({
92
92
 
93
93
  if (skipHeaderDiscovery) {
94
94
  bodyContent = (
95
- <Box position="relative" pb="200px">
95
+ <Box position="relative" pb="200px" height="full">
96
96
  {children}
97
97
  </Box>
98
98
  )