react-crud-mobile 1.3.361 → 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 +13 -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 +13 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +14 -2
@@ -2449,12 +2449,15 @@ 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%',
|
2456
2458
|
backgroundColor: 'background',
|
2457
|
-
flex: 1
|
2459
|
+
flex: 1,
|
2460
|
+
gap: 10
|
2458
2461
|
},
|
2459
2462
|
root: {
|
2460
2463
|
width: '100%',
|
@@ -2471,6 +2474,7 @@ elementStyle.input = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
2471
2474
|
flex: 1,
|
2472
2475
|
width: '100%',
|
2473
2476
|
padding: 0,
|
2477
|
+
gap: 10,
|
2474
2478
|
alignSelf: 'flex-start',
|
2475
2479
|
flexDirection: 'row',
|
2476
2480
|
flexWrap: 'wrap'
|
@@ -2499,6 +2503,7 @@ elementStyle.toggle = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
2499
2503
|
inner: /*#__PURE__*/_extends({}, box, {
|
2500
2504
|
flex: 1,
|
2501
2505
|
width: '100%',
|
2506
|
+
gap: 10,
|
2502
2507
|
borderRadius: 2,
|
2503
2508
|
justifyContent: 'center',
|
2504
2509
|
flexDirection: 'row',
|
@@ -2508,6 +2513,7 @@ elementStyle.toggle = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
2508
2513
|
});
|
2509
2514
|
var styles$b = /*#__PURE__*/reactNative.StyleSheet.create({
|
2510
2515
|
root: {
|
2516
|
+
gap: 5,
|
2511
2517
|
flexDirection: 'column',
|
2512
2518
|
flexWrap: 'wrap',
|
2513
2519
|
width: '100%',
|
@@ -2520,12 +2526,15 @@ var styles$b = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
2520
2526
|
color: 'labelColor'
|
2521
2527
|
},
|
2522
2528
|
inner: {
|
2529
|
+
width: '100%',
|
2523
2530
|
flexDirection: 'row',
|
2524
|
-
|
2531
|
+
justifyContent: 'space-between'
|
2525
2532
|
}
|
2526
2533
|
});
|
2527
2534
|
var withChildStyles = /*#__PURE__*/reactNative.StyleSheet.create({
|
2528
|
-
root: {
|
2535
|
+
root: {
|
2536
|
+
gap: 10
|
2537
|
+
},
|
2529
2538
|
label: {
|
2530
2539
|
width: '100%',
|
2531
2540
|
fontWeight: 500,
|