react-crud-mobile 1.3.343 → 1.3.345
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 +2 -2
- 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 +2 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIInput.tsx +2 -2
@@ -840,13 +840,13 @@ function UIInput(props) {
|
|
840
840
|
}
|
841
841
|
}
|
842
842
|
};
|
843
|
-
//
|
843
|
+
//v5
|
844
844
|
var defs = _extends({}, reactCrudUtils.Utils.nvl(decode[type], {}), element.inputProps);
|
845
845
|
var inputStyle = reactCrudUtils.Utils.call(function () {
|
846
846
|
var size = element.size;
|
847
847
|
var css = {};
|
848
848
|
if (size === 'small') {
|
849
|
-
css.height =
|
849
|
+
css.height = 35;
|
850
850
|
css.fontSize = 12;
|
851
851
|
}
|
852
852
|
css.fontSize = reactCrudUtils.Utils.nvl(element.fontSize, css.fontSize);
|