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
@@ -2440,7 +2440,9 @@ elementStyle.view = {
|
|
2440
2440
|
inner: {
|
2441
2441
|
width: '100%',
|
2442
2442
|
alignItems: 'normal',
|
2443
|
-
flex: 1
|
2443
|
+
flex: 1,
|
2444
|
+
flexDirection: 'row',
|
2445
|
+
justifyContent: 'space-between'
|
2444
2446
|
},
|
2445
2447
|
container: {
|
2446
2448
|
width: '100%',
|
@@ -2463,9 +2465,9 @@ elementStyle.input = /*#__PURE__*/StyleSheet.create({
|
|
2463
2465
|
flex: 1,
|
2464
2466
|
width: '100%',
|
2465
2467
|
padding: 0,
|
2466
|
-
|
2467
|
-
justifyContent: 'space-between',
|
2468
|
+
gap: 10,
|
2468
2469
|
alignSelf: 'flex-start',
|
2470
|
+
flexDirection: 'row',
|
2469
2471
|
flexWrap: 'wrap'
|
2470
2472
|
}
|
2471
2473
|
});
|
@@ -2515,7 +2517,9 @@ var styles$b = /*#__PURE__*/StyleSheet.create({
|
|
2515
2517
|
color: 'labelColor'
|
2516
2518
|
},
|
2517
2519
|
inner: {
|
2518
|
-
width: '100%'
|
2520
|
+
width: '100%',
|
2521
|
+
flexDirection: 'row',
|
2522
|
+
justifyContent: 'space-between'
|
2519
2523
|
}
|
2520
2524
|
});
|
2521
2525
|
var withChildStyles = /*#__PURE__*/StyleSheet.create({
|