@mcurros2/microm 1.1.220-0 → 1.1.222-0
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.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7910,7 +7910,7 @@ function $3ea298384e41b05b$export$c8dd51eb24f71762(props) {
|
|
|
7910
7910
|
}
|
|
7911
7911
|
}) : /*#__PURE__*/ (0, $b4te3$reactjsxruntime.jsxs)("section", {
|
|
7912
7912
|
style: {
|
|
7913
|
-
height:
|
|
7913
|
+
height: gridHeight === 'auto' ? '100%' : gridHeight,
|
|
7914
7914
|
display: 'flex',
|
|
7915
7915
|
flexDirection: 'column'
|
|
7916
7916
|
},
|
|
@@ -8144,13 +8144,13 @@ const $7df4688f2cefba32$export$ef2184bd89960b14 = /*#__PURE__*/ (0, $b4te3$react
|
|
|
8144
8144
|
return /*#__PURE__*/ (0, $b4te3$reactjsxruntime.jsxs)((0, $b4te3$mantinecore.Paper), {
|
|
8145
8145
|
style: {
|
|
8146
8146
|
borderRadius: "unset",
|
|
8147
|
-
height:
|
|
8147
|
+
height: props.gridHeight === 'auto' ? '100%' : props.gridHeight
|
|
8148
8148
|
},
|
|
8149
8149
|
children: [
|
|
8150
8150
|
/*#__PURE__*/ (0, $b4te3$reactjsxruntime.jsx)("div", {
|
|
8151
8151
|
ref: gridAPI.boxRef,
|
|
8152
8152
|
style: {
|
|
8153
|
-
height: props.gridHeight
|
|
8153
|
+
height: props.gridHeight === 'auto' ? '100%' : props.gridHeight
|
|
8154
8154
|
}
|
|
8155
8155
|
}),
|
|
8156
8156
|
gridAPI.cellsPortals
|
|
@@ -33197,13 +33197,13 @@ function $313bb798f411269f$export$f5fffb98a6b25aa0(props) {
|
|
|
33197
33197
|
})
|
|
33198
33198
|
}),
|
|
33199
33199
|
/*#__PURE__*/ (0, $b4te3$reactjsxruntime.jsx)((0, $kjFvY.DataGrid), {
|
|
33200
|
+
...gridProps,
|
|
33200
33201
|
entity: entity,
|
|
33201
33202
|
enableAdd: formMode === 'view' ? false : enableAdd,
|
|
33202
33203
|
enableEdit: formMode === 'view' ? false : enableEdit,
|
|
33203
33204
|
enableDelete: formMode === 'view' ? false : enableDelete,
|
|
33204
33205
|
enableView: formMode === 'view' || enableView,
|
|
33205
|
-
formMode: formMode
|
|
33206
|
-
...gridProps
|
|
33206
|
+
formMode: formMode
|
|
33207
33207
|
})
|
|
33208
33208
|
]
|
|
33209
33209
|
});
|