react-crud-mobile 1.0.666 → 1.0.668
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 +4 -2
- 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 +4 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIListRow.tsx +2 -0
|
@@ -792,13 +792,15 @@ var stylesList = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
|
792
792
|
width: '100%',
|
|
793
793
|
backgroundColor: '#f5f5f5',
|
|
794
794
|
gap: 10,
|
|
795
|
-
borderRadius: 8
|
|
795
|
+
borderRadius: 8,
|
|
796
|
+
justifyContent: 'center'
|
|
796
797
|
}
|
|
797
798
|
});
|
|
798
799
|
var stylesRepeat = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
799
800
|
row: {
|
|
800
801
|
padding: 0,
|
|
801
|
-
width: '100%'
|
|
802
|
+
width: '100%',
|
|
803
|
+
justifyContent: 'center'
|
|
802
804
|
}
|
|
803
805
|
});
|
|
804
806
|
|