react-crud-mobile 1.3.362 → 1.3.363
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 +8 -4
- 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 +8 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +9 -3
@@ -2449,7 +2449,9 @@ elementStyle.view = {
|
|
2449
2449
|
inner: {
|
2450
2450
|
width: '100%',
|
2451
2451
|
alignItems: 'normal',
|
2452
|
-
flex: 1
|
2452
|
+
flex: 1,
|
2453
|
+
flexDirection: 'row',
|
2454
|
+
justifyContent: 'space-between'
|
2453
2455
|
},
|
2454
2456
|
container: {
|
2455
2457
|
width: '100%',
|
@@ -2472,9 +2474,9 @@ elementStyle.input = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
2472
2474
|
flex: 1,
|
2473
2475
|
width: '100%',
|
2474
2476
|
padding: 0,
|
2475
|
-
|
2476
|
-
justifyContent: 'space-between',
|
2477
|
+
gap: 10,
|
2477
2478
|
alignSelf: 'flex-start',
|
2479
|
+
flexDirection: 'row',
|
2478
2480
|
flexWrap: 'wrap'
|
2479
2481
|
}
|
2480
2482
|
});
|
@@ -2524,7 +2526,9 @@ var styles$b = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
2524
2526
|
color: 'labelColor'
|
2525
2527
|
},
|
2526
2528
|
inner: {
|
2527
|
-
width: '100%'
|
2529
|
+
width: '100%',
|
2530
|
+
flexDirection: 'row',
|
2531
|
+
justifyContent: 'space-between'
|
2528
2532
|
}
|
2529
2533
|
});
|
2530
2534
|
var withChildStyles = /*#__PURE__*/reactNative.StyleSheet.create({
|