react-crud-mobile 1.0.596 → 1.0.598
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 +9 -7
- 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 +9 -7
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIListRow.tsx +7 -5
|
@@ -50,7 +50,9 @@ export default function UIListRow(props: UIListRowType) {
|
|
|
50
50
|
if (!original.click) {
|
|
51
51
|
return (
|
|
52
52
|
<View key={`k-${index}`} style={getRowStyle()}>
|
|
53
|
-
{
|
|
53
|
+
<UIChildren scope={scope} crud={scope.crud}>
|
|
54
|
+
{props.children}
|
|
55
|
+
</UIChildren>
|
|
54
56
|
</View>
|
|
55
57
|
);
|
|
56
58
|
}
|
|
@@ -64,16 +66,16 @@ export default function UIListRow(props: UIListRowType) {
|
|
|
64
66
|
onClick(item);
|
|
65
67
|
}}
|
|
66
68
|
>
|
|
67
|
-
|
|
69
|
+
<UIChildren scope={scope} crud={scope.crud}>
|
|
70
|
+
{props.children}
|
|
71
|
+
</UIChildren>
|
|
68
72
|
</TouchableHighlight>
|
|
69
73
|
);
|
|
70
74
|
};
|
|
71
75
|
|
|
72
76
|
return (
|
|
73
77
|
<>
|
|
74
|
-
<
|
|
75
|
-
<RowItem />
|
|
76
|
-
</UIChildren>
|
|
78
|
+
<RowItem />
|
|
77
79
|
</>
|
|
78
80
|
);
|
|
79
81
|
}
|