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
|
@@ -697,7 +697,11 @@ function UIListRow(props) {
|
|
|
697
697
|
if (!original.click) {
|
|
698
698
|
return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
|
699
699
|
style: getRowStyle(),
|
|
700
|
-
children:
|
|
700
|
+
children: /*#__PURE__*/jsxRuntime.jsx(UIChildren, {
|
|
701
|
+
scope: scope,
|
|
702
|
+
crud: scope.crud,
|
|
703
|
+
children: props.children
|
|
704
|
+
})
|
|
701
705
|
}, "k-" + index);
|
|
702
706
|
}
|
|
703
707
|
return /*#__PURE__*/jsxRuntime.jsx(reactNative.TouchableHighlight, {
|
|
@@ -707,17 +711,15 @@ function UIListRow(props) {
|
|
|
707
711
|
e.stopPropagation();
|
|
708
712
|
onClick(item);
|
|
709
713
|
},
|
|
710
|
-
children: /*#__PURE__*/jsxRuntime.jsx(
|
|
714
|
+
children: /*#__PURE__*/jsxRuntime.jsx(UIChildren, {
|
|
715
|
+
scope: scope,
|
|
716
|
+
crud: scope.crud,
|
|
711
717
|
children: props.children
|
|
712
718
|
})
|
|
713
719
|
}, "k-" + index);
|
|
714
720
|
};
|
|
715
721
|
return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
716
|
-
children: /*#__PURE__*/jsxRuntime.jsx(
|
|
717
|
-
scope: scope,
|
|
718
|
-
crud: scope.crud,
|
|
719
|
-
children: /*#__PURE__*/jsxRuntime.jsx(RowItem, {})
|
|
720
|
-
})
|
|
722
|
+
children: /*#__PURE__*/jsxRuntime.jsx(RowItem, {})
|
|
721
723
|
});
|
|
722
724
|
}
|
|
723
725
|
|