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
@@ -831,10 +831,12 @@ function UIInput(props) {
|
|
831
831
|
var size = element.size;
|
832
832
|
var css = {};
|
833
833
|
if (size === 'small') {
|
834
|
-
css.height =
|
834
|
+
css.height = 30;
|
835
835
|
css.fontSize = 12;
|
836
836
|
}
|
837
837
|
css = _extends({}, style(type), css, style('input'));
|
838
|
+
css.lineHeight = parseInt(css.fontSize) + 3;
|
839
|
+
//v1
|
838
840
|
return css;
|
839
841
|
});
|
840
842
|
if (defs.autoHeight) {
|