react-crud-mobile 1.0.696 → 1.0.698
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 -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 +2 -3
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/elements/core/UIAutoComplete.tsx +17 -17
- package/src/elements/core/UIButton.tsx +2 -2
- 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/UISwitch.tsx +27 -27
- package/src/hooks/useIsVisible.ts +39 -39
|
@@ -394,9 +394,9 @@ function UIButton(props) {
|
|
|
394
394
|
},
|
|
395
395
|
button: {
|
|
396
396
|
height: 50,
|
|
397
|
-
paddingHorizontal: 16,
|
|
398
397
|
backgroundColor: color,
|
|
399
398
|
borderRadius: 24,
|
|
399
|
+
gap: 10,
|
|
400
400
|
justifyContent: 'center',
|
|
401
401
|
alignItems: 'center',
|
|
402
402
|
flexDirection: 'row'
|
|
@@ -419,8 +419,7 @@ function UIButton(props) {
|
|
|
419
419
|
};
|
|
420
420
|
} else if (icon) {
|
|
421
421
|
extra.button = {
|
|
422
|
-
padding: 0
|
|
423
|
-
paddingHorizontal: 20
|
|
422
|
+
padding: 0
|
|
424
423
|
};
|
|
425
424
|
}
|
|
426
425
|
return /*#__PURE__*/jsxRuntime.jsx(reactNative.TouchableHighlight, {
|