react-crud-mobile 1.3.360 → 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 +9 -3
- 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 +9 -3
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +8 -2
@@ -2445,7 +2445,8 @@ elementStyle.view = {
|
|
2445
2445
|
container: {
|
2446
2446
|
width: '100%',
|
2447
2447
|
backgroundColor: 'background',
|
2448
|
-
flex: 1
|
2448
|
+
flex: 1,
|
2449
|
+
gap: 10
|
2449
2450
|
},
|
2450
2451
|
root: {
|
2451
2452
|
width: '100%',
|
@@ -2462,8 +2463,9 @@ elementStyle.input = /*#__PURE__*/StyleSheet.create({
|
|
2462
2463
|
flex: 1,
|
2463
2464
|
width: '100%',
|
2464
2465
|
padding: 0,
|
2465
|
-
alignSelf: 'flex-start',
|
2466
2466
|
flexDirection: 'row',
|
2467
|
+
justifyContent: 'space-between',
|
2468
|
+
alignSelf: 'flex-start',
|
2467
2469
|
flexWrap: 'wrap'
|
2468
2470
|
}
|
2469
2471
|
});
|
@@ -2490,6 +2492,7 @@ elementStyle.toggle = /*#__PURE__*/StyleSheet.create({
|
|
2490
2492
|
inner: /*#__PURE__*/_extends({}, box, {
|
2491
2493
|
flex: 1,
|
2492
2494
|
width: '100%',
|
2495
|
+
gap: 10,
|
2493
2496
|
borderRadius: 2,
|
2494
2497
|
justifyContent: 'center',
|
2495
2498
|
flexDirection: 'row',
|
@@ -2499,6 +2502,7 @@ elementStyle.toggle = /*#__PURE__*/StyleSheet.create({
|
|
2499
2502
|
});
|
2500
2503
|
var styles$b = /*#__PURE__*/StyleSheet.create({
|
2501
2504
|
root: {
|
2505
|
+
gap: 5,
|
2502
2506
|
flexDirection: 'column',
|
2503
2507
|
flexWrap: 'wrap',
|
2504
2508
|
width: '100%',
|
@@ -2515,7 +2519,9 @@ var styles$b = /*#__PURE__*/StyleSheet.create({
|
|
2515
2519
|
}
|
2516
2520
|
});
|
2517
2521
|
var withChildStyles = /*#__PURE__*/StyleSheet.create({
|
2518
|
-
root: {
|
2522
|
+
root: {
|
2523
|
+
gap: 10
|
2524
|
+
},
|
2519
2525
|
label: {
|
2520
2526
|
width: '100%',
|
2521
2527
|
fontWeight: 500,
|