react-crud-mobile 1.3.162 → 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 +2 -2
- package/src/elements/core/UIAutoComplete.tsx +17 -17
- package/src/elements/core/UILink.tsx +17 -17
- package/src/elements/core/UIListItem.tsx +32 -32
- package/src/elements/core/UIModal.tsx +11 -17
- package/src/elements/core/UIOption.tsx +17 -17
- package/src/elements/core/UIRadio.tsx +17 -17
- package/src/elements/core/UISlider.tsx +61 -61
- package/src/elements/core/UIStatusBar.tsx +5 -5
- package/src/elements/core/UISwitch.tsx +27 -27
- package/src/hooks/useIsVisible.ts +39 -39
- package/src/utils/MobileUtils.ts +12 -12
@@ -1425,24 +1425,15 @@ function UIModal(_ref) {
|
|
1425
1425
|
children: children
|
1426
1426
|
});
|
1427
1427
|
}
|
1428
|
-
return /*#__PURE__*/jsxRuntime.jsx(reactNative.
|
1429
|
-
|
1430
|
-
|
1431
|
-
|
1432
|
-
paddingRight: 15,
|
1433
|
-
paddingTop: 10,
|
1434
|
-
paddingBottom: 10
|
1428
|
+
return /*#__PURE__*/jsxRuntime.jsx(reactNative.ScrollView, {
|
1429
|
+
contentContainerStyle: {
|
1430
|
+
flexGrow: 1,
|
1431
|
+
paddingBottom: 50
|
1435
1432
|
},
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1440
|
-
},
|
1441
|
-
style: style('modalContent'),
|
1442
|
-
nestedScrollEnabled: true,
|
1443
|
-
ref: scrollRef,
|
1444
|
-
children: children
|
1445
|
-
})
|
1433
|
+
style: style('modalContent'),
|
1434
|
+
nestedScrollEnabled: true,
|
1435
|
+
ref: scrollRef,
|
1436
|
+
children: children
|
1446
1437
|
});
|
1447
1438
|
};
|
1448
1439
|
var ModalView = function ModalView(_ref3) {
|
@@ -1531,7 +1522,11 @@ var styles$8 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
1531
1522
|
},
|
1532
1523
|
modalContent: {
|
1533
1524
|
flex: 1,
|
1534
|
-
backgroundColor: 'background'
|
1525
|
+
backgroundColor: 'background',
|
1526
|
+
paddingLeft: 15,
|
1527
|
+
paddingRight: 15,
|
1528
|
+
paddingTop: 10,
|
1529
|
+
paddingBottom: 10
|
1535
1530
|
}
|
1536
1531
|
});
|
1537
1532
|
|