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
@@ -1248,18 +1248,19 @@ var styles$7 = /*#__PURE__*/StyleSheet.create({
|
|
1248
1248
|
container: {
|
1249
1249
|
flex: 1,
|
1250
1250
|
width: '100%',
|
1251
|
-
gap: 10,
|
1252
1251
|
justifyContent: 'center',
|
1253
1252
|
flexDirection: 'row',
|
1254
1253
|
alignItems: 'center'
|
1255
1254
|
},
|
1256
1255
|
item: {
|
1257
|
-
margin: 5,
|
1258
1256
|
backgroundColor: 'background',
|
1259
1257
|
justifyContent: 'center',
|
1260
1258
|
alignItems: 'center',
|
1261
1259
|
width: 'auto',
|
1262
|
-
flexDirection: 'row'
|
1260
|
+
flexDirection: 'row',
|
1261
|
+
flex: 1,
|
1262
|
+
padding: 5,
|
1263
|
+
borderRadius: 2
|
1263
1264
|
},
|
1264
1265
|
text: {
|
1265
1266
|
fontSize: 15,
|
@@ -2431,12 +2432,13 @@ elementStyle.quantity = {
|
|
2431
2432
|
};
|
2432
2433
|
elementStyle.toggle = /*#__PURE__*/StyleSheet.create({
|
2433
2434
|
root: {
|
2434
|
-
height:
|
2435
|
+
height: 'auto'
|
2435
2436
|
},
|
2436
2437
|
inner: /*#__PURE__*/_extends({}, box, {
|
2437
2438
|
flex: 1,
|
2438
2439
|
width: '100%',
|
2439
2440
|
gap: 10,
|
2441
|
+
borderRadius: 2,
|
2440
2442
|
justifyContent: 'center',
|
2441
2443
|
flexDirection: 'row',
|
2442
2444
|
alignSelf: 'flex-start',
|