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