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
|
@@ -1574,19 +1574,22 @@ function UIView(_ref) {
|
|
|
1574
1574
|
children: children
|
|
1575
1575
|
});
|
|
1576
1576
|
}
|
|
1577
|
-
return /*#__PURE__*/jsxRuntime.jsx(reactNative.
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
children:
|
|
1577
|
+
return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
|
1578
|
+
style: scope.getStyle('container', styles$9.container),
|
|
1579
|
+
children: /*#__PURE__*/jsxRuntime.jsx(reactNative.ScrollView, {
|
|
1580
|
+
onScroll: onScroll,
|
|
1581
|
+
scrollEventThrottle: 16,
|
|
1582
|
+
ref: scrollRef,
|
|
1583
|
+
nestedScrollEnabled: true,
|
|
1584
|
+
keyboardShouldPersistTaps: "handled",
|
|
1585
|
+
contentContainerStyle: scope.getStyle('contentContainer', {
|
|
1586
|
+
paddingBottom: 50
|
|
1587
|
+
}),
|
|
1588
|
+
style: scope.getStyle('scroll', styles$9.scroll),
|
|
1589
|
+
children: /*#__PURE__*/jsxRuntime.jsx(UIChildren, {
|
|
1590
|
+
scope: scope,
|
|
1591
|
+
children: children
|
|
1592
|
+
})
|
|
1590
1593
|
})
|
|
1591
1594
|
});
|
|
1592
1595
|
};
|
|
@@ -1594,10 +1597,7 @@ function UIView(_ref) {
|
|
|
1594
1597
|
children: [hasHeader && /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
|
1595
1598
|
style: headerStyleFull,
|
|
1596
1599
|
children: /*#__PURE__*/jsxRuntime.jsx(AuxHeader, {})
|
|
1597
|
-
}), /*#__PURE__*/jsxRuntime.jsx(
|
|
1598
|
-
style: scope.getStyle('container', styles$9.container),
|
|
1599
|
-
children: /*#__PURE__*/jsxRuntime.jsx(Container, {})
|
|
1600
|
-
}), /*#__PURE__*/jsxRuntime.jsx(UIToast, {})]
|
|
1600
|
+
}), /*#__PURE__*/jsxRuntime.jsx(Container, {}), /*#__PURE__*/jsxRuntime.jsx(UIToast, {})]
|
|
1601
1601
|
});
|
|
1602
1602
|
}
|
|
1603
1603
|
var styles$9 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
@@ -1689,10 +1689,11 @@ function UIOrder(props) {
|
|
|
1689
1689
|
}
|
|
1690
1690
|
var styles$a = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
1691
1691
|
row: {
|
|
1692
|
-
|
|
1692
|
+
flexDirection: 'row',
|
|
1693
|
+
gap: 10,
|
|
1694
|
+
padding: 15,
|
|
1693
1695
|
borderBottomWidth: 1,
|
|
1694
|
-
borderBottomColor: '#ccc'
|
|
1695
|
-
borderRadius: 5
|
|
1696
|
+
borderBottomColor: '#ccc'
|
|
1696
1697
|
},
|
|
1697
1698
|
text: {
|
|
1698
1699
|
fontSize: 18
|