react-crud-mobile 1.3.4 → 1.3.6
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 +10 -5
- 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 +10 -5
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/elements/UIElement.tsx +8 -5
|
@@ -1941,11 +1941,16 @@ function UIElement(props) {
|
|
|
1941
1941
|
})
|
|
1942
1942
|
});
|
|
1943
1943
|
}
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1944
|
+
if (scope.isInput()) {
|
|
1945
|
+
return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
|
1946
|
+
style: getStyle('container', {
|
|
1947
|
+
padding: 5,
|
|
1948
|
+
width: '100%'
|
|
1949
|
+
}),
|
|
1950
|
+
children: props.children
|
|
1951
|
+
});
|
|
1952
|
+
}
|
|
1953
|
+
return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
1949
1954
|
children: props.children
|
|
1950
1955
|
});
|
|
1951
1956
|
};
|