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.
@@ -1941,11 +1941,16 @@ function UIElement(props) {
1941
1941
  })
1942
1942
  });
1943
1943
  }
1944
- return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
1945
- style: getStyle('container', {
1946
- padding: 5,
1947
- width: '100%'
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
  };