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
@@ -834,8 +834,9 @@ function UIInput(props) {
|
|
834
834
|
css.height = 30;
|
835
835
|
css.fontSize = 12;
|
836
836
|
}
|
837
|
+
css.fontSize = reactCrudUtils.Utils.nvl(element.fontSize, css.fontSize);
|
837
838
|
css = _extends({}, style(type), css, style('input'));
|
838
|
-
css.lineHeight = parseInt(css.fontSize) +
|
839
|
+
css.lineHeight = parseInt(css.fontSize) + 2;
|
839
840
|
//v1
|
840
841
|
return css;
|
841
842
|
});
|