react-crud-mobile 1.3.315 → 1.3.317
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 +7 -6
- 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 +7 -6
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/elements/UIElement.tsx +3 -2
- package/src/elements/core/UIAutoComplete.tsx +17 -17
- package/src/elements/core/UILink.tsx +17 -17
- package/src/elements/core/UIListItem.tsx +32 -32
- package/src/elements/core/UIOption.tsx +17 -17
- package/src/elements/core/UIRadio.tsx +17 -17
- package/src/elements/core/UISlider.tsx +61 -61
- package/src/elements/core/UIStatusBar.tsx +5 -5
- package/src/elements/core/UISwitch.tsx +27 -27
- package/src/elements/core/UIToggle.tsx +3 -3
- package/src/hooks/useIsVisible.ts +39 -39
- package/src/utils/MobileUtils.ts +12 -12
@@ -1249,14 +1249,14 @@ var styles$7 = /*#__PURE__*/StyleSheet.create({
|
|
1249
1249
|
width: '100%',
|
1250
1250
|
gap: 10,
|
1251
1251
|
justifyContent: 'center',
|
1252
|
-
flexDirection: 'row'
|
1252
|
+
flexDirection: 'row',
|
1253
|
+
alignItems: 'center'
|
1253
1254
|
},
|
1254
1255
|
item: {
|
1255
|
-
|
1256
|
-
marginVertical: 8,
|
1256
|
+
margin: 5,
|
1257
1257
|
backgroundColor: 'background',
|
1258
|
-
borderRadius: 8,
|
1259
1258
|
justifyContent: 'center',
|
1259
|
+
alignItems: 'center',
|
1260
1260
|
width: 'auto',
|
1261
1261
|
flexDirection: 'row'
|
1262
1262
|
},
|
@@ -2429,14 +2429,15 @@ elementStyle.quantity = {
|
|
2429
2429
|
})
|
2430
2430
|
};
|
2431
2431
|
elementStyle.toggle = /*#__PURE__*/StyleSheet.create({
|
2432
|
+
root: {
|
2433
|
+
height: 45
|
2434
|
+
},
|
2432
2435
|
inner: /*#__PURE__*/_extends({}, box, {
|
2433
2436
|
flex: 1,
|
2434
2437
|
width: '100%',
|
2435
2438
|
gap: 10,
|
2436
2439
|
justifyContent: 'center',
|
2437
2440
|
flexDirection: 'row',
|
2438
|
-
paddingHorizontal: 10,
|
2439
|
-
paddingVertical: 0,
|
2440
2441
|
alignSelf: 'flex-start',
|
2441
2442
|
flexWrap: 'nowrap'
|
2442
2443
|
})
|