react-crud-mobile 1.3.318 → 1.3.320
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 +6 -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 +6 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +2 -1
- package/src/elements/core/UIToggle.tsx +3 -2
@@ -1257,18 +1257,19 @@ var styles$7 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
1257
1257
|
container: {
|
1258
1258
|
flex: 1,
|
1259
1259
|
width: '100%',
|
1260
|
-
gap: 10,
|
1261
1260
|
justifyContent: 'center',
|
1262
1261
|
flexDirection: 'row',
|
1263
1262
|
alignItems: 'center'
|
1264
1263
|
},
|
1265
1264
|
item: {
|
1266
|
-
margin: 5,
|
1267
1265
|
backgroundColor: 'background',
|
1268
1266
|
justifyContent: 'center',
|
1269
1267
|
alignItems: 'center',
|
1270
1268
|
width: 'auto',
|
1271
|
-
flexDirection: 'row'
|
1269
|
+
flexDirection: 'row',
|
1270
|
+
flex: 1,
|
1271
|
+
padding: 5,
|
1272
|
+
borderRadius: 2
|
1272
1273
|
},
|
1273
1274
|
text: {
|
1274
1275
|
fontSize: 15,
|
@@ -2440,12 +2441,13 @@ elementStyle.quantity = {
|
|
2440
2441
|
};
|
2441
2442
|
elementStyle.toggle = /*#__PURE__*/reactNative.StyleSheet.create({
|
2442
2443
|
root: {
|
2443
|
-
height:
|
2444
|
+
height: 'auto'
|
2444
2445
|
},
|
2445
2446
|
inner: /*#__PURE__*/_extends({}, box, {
|
2446
2447
|
flex: 1,
|
2447
2448
|
width: '100%',
|
2448
2449
|
gap: 10,
|
2450
|
+
borderRadius: 2,
|
2449
2451
|
justifyContent: 'center',
|
2450
2452
|
flexDirection: 'row',
|
2451
2453
|
alignSelf: 'flex-start',
|