react-crud-mobile 1.3.71 → 1.3.73
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 +21 -20
- 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 +21 -20
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIOrder.tsx +3 -2
- package/src/elements/core/UIView.tsx +16 -16
|
@@ -1565,19 +1565,22 @@ function UIView(_ref) {
|
|
|
1565
1565
|
children: children
|
|
1566
1566
|
});
|
|
1567
1567
|
}
|
|
1568
|
-
return /*#__PURE__*/jsx(
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
children:
|
|
1568
|
+
return /*#__PURE__*/jsx(View, {
|
|
1569
|
+
style: scope.getStyle('container', styles$9.container),
|
|
1570
|
+
children: /*#__PURE__*/jsx(ScrollView, {
|
|
1571
|
+
onScroll: onScroll,
|
|
1572
|
+
scrollEventThrottle: 16,
|
|
1573
|
+
ref: scrollRef,
|
|
1574
|
+
nestedScrollEnabled: true,
|
|
1575
|
+
keyboardShouldPersistTaps: "handled",
|
|
1576
|
+
contentContainerStyle: scope.getStyle('contentContainer', {
|
|
1577
|
+
paddingBottom: 50
|
|
1578
|
+
}),
|
|
1579
|
+
style: scope.getStyle('scroll', styles$9.scroll),
|
|
1580
|
+
children: /*#__PURE__*/jsx(UIChildren, {
|
|
1581
|
+
scope: scope,
|
|
1582
|
+
children: children
|
|
1583
|
+
})
|
|
1581
1584
|
})
|
|
1582
1585
|
});
|
|
1583
1586
|
};
|
|
@@ -1585,10 +1588,7 @@ function UIView(_ref) {
|
|
|
1585
1588
|
children: [hasHeader && /*#__PURE__*/jsx(View, {
|
|
1586
1589
|
style: headerStyleFull,
|
|
1587
1590
|
children: /*#__PURE__*/jsx(AuxHeader, {})
|
|
1588
|
-
}), /*#__PURE__*/jsx(
|
|
1589
|
-
style: scope.getStyle('container', styles$9.container),
|
|
1590
|
-
children: /*#__PURE__*/jsx(Container, {})
|
|
1591
|
-
}), /*#__PURE__*/jsx(UIToast, {})]
|
|
1591
|
+
}), /*#__PURE__*/jsx(Container, {}), /*#__PURE__*/jsx(UIToast, {})]
|
|
1592
1592
|
});
|
|
1593
1593
|
}
|
|
1594
1594
|
var styles$9 = /*#__PURE__*/StyleSheet.create({
|
|
@@ -1680,10 +1680,11 @@ function UIOrder(props) {
|
|
|
1680
1680
|
}
|
|
1681
1681
|
var styles$a = /*#__PURE__*/StyleSheet.create({
|
|
1682
1682
|
row: {
|
|
1683
|
-
|
|
1683
|
+
flexDirection: 'row',
|
|
1684
|
+
gap: 10,
|
|
1685
|
+
padding: 15,
|
|
1684
1686
|
borderBottomWidth: 1,
|
|
1685
|
-
borderBottomColor: '#ccc'
|
|
1686
|
-
borderRadius: 5
|
|
1687
|
+
borderBottomColor: '#ccc'
|
|
1687
1688
|
},
|
|
1688
1689
|
text: {
|
|
1689
1690
|
fontSize: 18
|