react-crud-mobile 1.3.167 → 1.3.168
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 +4 -0
- 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 +4 -0
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIChildren.tsx +3 -0
- package/src/elements/core/UIListRow.tsx +1 -1
@@ -135,6 +135,9 @@ function UIChildren(props) {
|
|
135
135
|
}
|
136
136
|
return _extends({}, def, css, scope.getStyle(part));
|
137
137
|
};
|
138
|
+
if (props["transient"]) {
|
139
|
+
return /*#__PURE__*/jsxRuntime.jsx(Draw, {});
|
140
|
+
}
|
138
141
|
return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
139
142
|
children: /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
140
143
|
style: getStyle(name),
|
@@ -910,6 +913,7 @@ function UIListRow(props) {
|
|
910
913
|
}
|
911
914
|
return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
912
915
|
children: /*#__PURE__*/jsxRuntime.jsx(UIChildren, {
|
916
|
+
"transient": true,
|
913
917
|
scope: row,
|
914
918
|
crud: row.crud,
|
915
919
|
children: props.children
|