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
@@ -2440,12 +2440,15 @@ 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%',
|
2447
2449
|
backgroundColor: 'background',
|
2448
|
-
flex: 1
|
2450
|
+
flex: 1,
|
2451
|
+
gap: 10
|
2449
2452
|
},
|
2450
2453
|
root: {
|
2451
2454
|
width: '100%',
|
@@ -2462,6 +2465,7 @@ elementStyle.input = /*#__PURE__*/StyleSheet.create({
|
|
2462
2465
|
flex: 1,
|
2463
2466
|
width: '100%',
|
2464
2467
|
padding: 0,
|
2468
|
+
gap: 10,
|
2465
2469
|
alignSelf: 'flex-start',
|
2466
2470
|
flexDirection: 'row',
|
2467
2471
|
flexWrap: 'wrap'
|
@@ -2490,6 +2494,7 @@ elementStyle.toggle = /*#__PURE__*/StyleSheet.create({
|
|
2490
2494
|
inner: /*#__PURE__*/_extends({}, box, {
|
2491
2495
|
flex: 1,
|
2492
2496
|
width: '100%',
|
2497
|
+
gap: 10,
|
2493
2498
|
borderRadius: 2,
|
2494
2499
|
justifyContent: 'center',
|
2495
2500
|
flexDirection: 'row',
|
@@ -2499,6 +2504,7 @@ elementStyle.toggle = /*#__PURE__*/StyleSheet.create({
|
|
2499
2504
|
});
|
2500
2505
|
var styles$b = /*#__PURE__*/StyleSheet.create({
|
2501
2506
|
root: {
|
2507
|
+
gap: 5,
|
2502
2508
|
flexDirection: 'column',
|
2503
2509
|
flexWrap: 'wrap',
|
2504
2510
|
width: '100%',
|
@@ -2511,12 +2517,15 @@ var styles$b = /*#__PURE__*/StyleSheet.create({
|
|
2511
2517
|
color: 'labelColor'
|
2512
2518
|
},
|
2513
2519
|
inner: {
|
2520
|
+
width: '100%',
|
2514
2521
|
flexDirection: 'row',
|
2515
|
-
|
2522
|
+
justifyContent: 'space-between'
|
2516
2523
|
}
|
2517
2524
|
});
|
2518
2525
|
var withChildStyles = /*#__PURE__*/StyleSheet.create({
|
2519
|
-
root: {
|
2526
|
+
root: {
|
2527
|
+
gap: 10
|
2528
|
+
},
|
2520
2529
|
label: {
|
2521
2530
|
width: '100%',
|
2522
2531
|
fontWeight: 500,
|