react-crud-mobile 1.3.49 → 1.3.51
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/react-crud-mobile.cjs.development.js +5 -4
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +5 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIModal.tsx +2 -1
|
@@ -1350,6 +1350,7 @@ function UIModal(props) {
|
|
|
1350
1350
|
index = _useState2[0],
|
|
1351
1351
|
setIndex = _useState2[1];
|
|
1352
1352
|
var main = ViewUtils.getCrud('view');
|
|
1353
|
+
//v3
|
|
1353
1354
|
var scope = props.scope;
|
|
1354
1355
|
var label = scope.getLabel();
|
|
1355
1356
|
var theme = scope.getTheme();
|
|
@@ -1458,7 +1459,7 @@ function UIModal(props) {
|
|
|
1458
1459
|
"transient": true,
|
|
1459
1460
|
children: headerRight
|
|
1460
1461
|
})]
|
|
1461
|
-
}), /*#__PURE__*/
|
|
1462
|
+
}), /*#__PURE__*/jsx(ScrollView, {
|
|
1462
1463
|
contentContainerStyle: {
|
|
1463
1464
|
flexGrow: 1,
|
|
1464
1465
|
paddingBottom: 50
|
|
@@ -1466,7 +1467,7 @@ function UIModal(props) {
|
|
|
1466
1467
|
style: style('modalContent'),
|
|
1467
1468
|
nestedScrollEnabled: true,
|
|
1468
1469
|
ref: scrollRef,
|
|
1469
|
-
children:
|
|
1470
|
+
children: /*#__PURE__*/jsx(View, {
|
|
1470
1471
|
style: {
|
|
1471
1472
|
flex: 1,
|
|
1472
1473
|
paddingLeft: 15,
|
|
@@ -1479,8 +1480,8 @@ function UIModal(props) {
|
|
|
1479
1480
|
crud: scope.currentDialog,
|
|
1480
1481
|
children: props.children
|
|
1481
1482
|
})
|
|
1482
|
-
})
|
|
1483
|
-
})]
|
|
1483
|
+
})
|
|
1484
|
+
}), bottom]
|
|
1484
1485
|
}), /*#__PURE__*/jsx(UIToast, {})]
|
|
1485
1486
|
}, key);
|
|
1486
1487
|
}
|