react-crud-mobile 1.3.325 → 1.3.327

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.
@@ -827,7 +827,15 @@ function UIInput(props) {
827
827
  };
828
828
  //v4
829
829
  var defs = _extends({}, reactCrudUtils.Utils.nvl(decode[type], {}), element.inputProps);
830
- var inputStyle = _extends({}, style('input'), style(type));
830
+ var inputStyle = reactCrudUtils.Utils.call(function () {
831
+ var css = _extends({}, style('input'), style(type));
832
+ var size = element.size;
833
+ if (size === 'small') {
834
+ css.height = 30;
835
+ css.fontSize = 12;
836
+ }
837
+ return css;
838
+ });
831
839
  if (defs.autoHeight) {
832
840
  defs.onContentSizeChange = function (event) {
833
841
  setHeight(event.nativeEvent.contentSize.height);
@@ -1268,7 +1276,8 @@ var styles$7 = /*#__PURE__*/reactNative.StyleSheet.create({
1268
1276
  justifyContent: 'center',
1269
1277
  flexDirection: 'row',
1270
1278
  alignItems: 'center',
1271
- margin: 3
1279
+ margin: 3,
1280
+ gap: 5
1272
1281
  },
1273
1282
  item: {
1274
1283
  backgroundColor: 'background',