react-crud-mobile 1.3.331 → 1.3.333
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 -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 +2 -1
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIAutoComplete.tsx +17 -17
- package/src/elements/core/UIInput.tsx +2 -1
- package/src/elements/core/UILink.tsx +17 -17
- package/src/elements/core/UIListItem.tsx +32 -32
- package/src/elements/core/UIOption.tsx +17 -17
- package/src/elements/core/UIRadio.tsx +17 -17
- package/src/elements/core/UISlider.tsx +61 -61
- package/src/elements/core/UIStatusBar.tsx +5 -5
- package/src/elements/core/UISwitch.tsx +27 -27
- package/src/hooks/useIsVisible.ts +39 -39
- package/src/utils/MobileUtils.ts +12 -12
@@ -825,8 +825,9 @@ function UIInput(props) {
|
|
825
825
|
css.height = 30;
|
826
826
|
css.fontSize = 12;
|
827
827
|
}
|
828
|
+
css.fontSize = Utils.nvl(element.fontSize, css.fontSize);
|
828
829
|
css = _extends({}, style(type), css, style('input'));
|
829
|
-
css.lineHeight = parseInt(css.fontSize) +
|
830
|
+
css.lineHeight = parseInt(css.fontSize) + 2;
|
830
831
|
//v1
|
831
832
|
return css;
|
832
833
|
});
|