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.
@@ -818,7 +818,15 @@ function UIInput(props) {
818
818
  };
819
819
  //v4
820
820
  var defs = _extends({}, Utils.nvl(decode[type], {}), element.inputProps);
821
- var inputStyle = _extends({}, style('input'), style(type));
821
+ var inputStyle = Utils.call(function () {
822
+ var css = _extends({}, style('input'), style(type));
823
+ var size = element.size;
824
+ if (size === 'small') {
825
+ css.height = 30;
826
+ css.fontSize = 12;
827
+ }
828
+ return css;
829
+ });
822
830
  if (defs.autoHeight) {
823
831
  defs.onContentSizeChange = function (event) {
824
832
  setHeight(event.nativeEvent.contentSize.height);
@@ -1259,7 +1267,8 @@ var styles$7 = /*#__PURE__*/StyleSheet.create({
1259
1267
  justifyContent: 'center',
1260
1268
  flexDirection: 'row',
1261
1269
  alignItems: 'center',
1262
- margin: 3
1270
+ margin: 3,
1271
+ gap: 5
1263
1272
  },
1264
1273
  item: {
1265
1274
  backgroundColor: 'background',