react-crud-mobile 1.0.781 → 1.0.783
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/UIElement.tsx +1 -0
- package/src/elements/core/UIInput.tsx +1 -1
|
@@ -646,7 +646,7 @@ function UIInput(props) {
|
|
|
646
646
|
var CustomIcon = function CustomIcon() {
|
|
647
647
|
var icon = el.icon;
|
|
648
648
|
if (icon) {
|
|
649
|
-
if (icon === 'string') {
|
|
649
|
+
if (typeof icon === 'string') {
|
|
650
650
|
return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
651
651
|
children: el.icon && /*#__PURE__*/jsxRuntime.jsx(vectorIcons.Ionicons, {
|
|
652
652
|
name: el.icon,
|
|
@@ -1692,6 +1692,7 @@ function UIElement(props) {
|
|
|
1692
1692
|
alignSelf: 'flex-start',
|
|
1693
1693
|
flexDirection: 'row',
|
|
1694
1694
|
display: 'flex',
|
|
1695
|
+
justifyContent: 'space-between',
|
|
1695
1696
|
width: '100%'
|
|
1696
1697
|
}),
|
|
1697
1698
|
children: [/*#__PURE__*/jsxRuntime.jsx(reactNative.Text, {
|