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