react-crud-mobile 1.3.348 → 1.3.350

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.
@@ -487,10 +487,10 @@ function UIButton(props) {
487
487
  style: buttonStyle,
488
488
  children: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
489
489
  children: [icon && /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
490
- children: /*#__PURE__*/jsxRuntime.jsx(vectorIcons.Ionicons, {
490
+ children: /*#__PURE__*/jsxRuntime.jsx(UI.Icon, {
491
491
  size: reactCrudUtils.Utils.nvl(element.iconSize, 30),
492
492
  style: iconStyle,
493
- name: icon
493
+ value: icon
494
494
  })
495
495
  }), label && /*#__PURE__*/jsxRuntime.jsx(reactNative.Text, {
496
496
  style: buttonLabel,
@@ -846,7 +846,7 @@ function UIInput(props) {
846
846
  var size = element.size;
847
847
  var css = {};
848
848
  if (size === 'small') {
849
- css.height = 35;
849
+ css.height = 30;
850
850
  css.fontSize = 12;
851
851
  }
852
852
  css.fontSize = reactCrudUtils.Utils.nvl(element.fontSize, css.fontSize);
@@ -896,6 +896,7 @@ var styles$6 = /*#__PURE__*/reactNative.StyleSheet.create({
896
896
  input: {
897
897
  marginHorizontal: 0,
898
898
  marginVertical: 0,
899
+ paddingVertical: 0,
899
900
  height: 40,
900
901
  width: '100%',
901
902
  flex: 1