react-crud-mobile 1.3.329 → 1.3.331
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 +3 -1
- 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 +3 -1
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIInput.tsx +3 -2
@@ -822,10 +822,12 @@ function UIInput(props) {
|
|
822
822
|
var size = element.size;
|
823
823
|
var css = {};
|
824
824
|
if (size === 'small') {
|
825
|
-
css.height =
|
825
|
+
css.height = 30;
|
826
826
|
css.fontSize = 12;
|
827
827
|
}
|
828
828
|
css = _extends({}, style(type), css, style('input'));
|
829
|
+
css.lineHeight = parseInt(css.fontSize) + 3;
|
830
|
+
//v1
|
829
831
|
return css;
|
830
832
|
});
|
831
833
|
if (defs.autoHeight) {
|