react-crud-mobile 1.3.342 → 1.3.344
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 -3
- 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 -3
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIInput.tsx +3 -3
@@ -796,7 +796,7 @@ function UIInput(props) {
|
|
796
796
|
setValue(v);
|
797
797
|
};
|
798
798
|
var style = function style(part, extra) {
|
799
|
-
return _extends({}, scope.getStyle(part, styles$6[part]
|
799
|
+
return _extends({}, scope.getStyle(part, _extends({}, styles$6[part], extra)));
|
800
800
|
};
|
801
801
|
var CustomIcon = function CustomIcon() {
|
802
802
|
var icon = el.icon;
|
@@ -837,11 +837,11 @@ function UIInput(props) {
|
|
837
837
|
var size = element.size;
|
838
838
|
var css = {};
|
839
839
|
if (size === 'small') {
|
840
|
-
css.height =
|
840
|
+
css.height = 35;
|
841
841
|
css.fontSize = 12;
|
842
842
|
}
|
843
843
|
css.fontSize = Utils.nvl(element.fontSize, css.fontSize);
|
844
|
-
css = _extends({}, style(type),
|
844
|
+
css = _extends({}, style(type), style('input', css));
|
845
845
|
css.lineHeight = parseInt(css.fontSize) + 2;
|
846
846
|
//v1
|
847
847
|
return css;
|