react-crud-mobile 1.3.163 → 1.3.164
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 +13 -18
- 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 +13 -18
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIModal.tsx +11 -17
@@ -1416,24 +1416,15 @@ function UIModal(_ref) {
|
|
1416
1416
|
children: children
|
1417
1417
|
});
|
1418
1418
|
}
|
1419
|
-
return /*#__PURE__*/jsx(
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
paddingRight: 15,
|
1424
|
-
paddingTop: 10,
|
1425
|
-
paddingBottom: 10
|
1419
|
+
return /*#__PURE__*/jsx(ScrollView, {
|
1420
|
+
contentContainerStyle: {
|
1421
|
+
flexGrow: 1,
|
1422
|
+
paddingBottom: 50
|
1426
1423
|
},
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1430
|
-
|
1431
|
-
},
|
1432
|
-
style: style('modalContent'),
|
1433
|
-
nestedScrollEnabled: true,
|
1434
|
-
ref: scrollRef,
|
1435
|
-
children: children
|
1436
|
-
})
|
1424
|
+
style: style('modalContent'),
|
1425
|
+
nestedScrollEnabled: true,
|
1426
|
+
ref: scrollRef,
|
1427
|
+
children: children
|
1437
1428
|
});
|
1438
1429
|
};
|
1439
1430
|
var ModalView = function ModalView(_ref3) {
|
@@ -1522,7 +1513,11 @@ var styles$8 = /*#__PURE__*/StyleSheet.create({
|
|
1522
1513
|
},
|
1523
1514
|
modalContent: {
|
1524
1515
|
flex: 1,
|
1525
|
-
backgroundColor: 'background'
|
1516
|
+
backgroundColor: 'background',
|
1517
|
+
paddingLeft: 15,
|
1518
|
+
paddingRight: 15,
|
1519
|
+
paddingTop: 10,
|
1520
|
+
paddingBottom: 10
|
1526
1521
|
}
|
1527
1522
|
});
|
1528
1523
|
|