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
@@ -1258,14 +1258,14 @@ var styles$7 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
1258
1258
|
width: '100%',
|
1259
1259
|
gap: 10,
|
1260
1260
|
justifyContent: 'center',
|
1261
|
-
flexDirection: 'row'
|
1261
|
+
flexDirection: 'row',
|
1262
|
+
alignItems: 'center'
|
1262
1263
|
},
|
1263
1264
|
item: {
|
1264
|
-
|
1265
|
-
marginVertical: 8,
|
1265
|
+
margin: 5,
|
1266
1266
|
backgroundColor: 'background',
|
1267
|
-
borderRadius: 8,
|
1268
1267
|
justifyContent: 'center',
|
1268
|
+
alignItems: 'center',
|
1269
1269
|
width: 'auto',
|
1270
1270
|
flexDirection: 'row'
|
1271
1271
|
},
|
@@ -2438,14 +2438,15 @@ elementStyle.quantity = {
|
|
2438
2438
|
})
|
2439
2439
|
};
|
2440
2440
|
elementStyle.toggle = /*#__PURE__*/reactNative.StyleSheet.create({
|
2441
|
+
root: {
|
2442
|
+
height: 45
|
2443
|
+
},
|
2441
2444
|
inner: /*#__PURE__*/_extends({}, box, {
|
2442
2445
|
flex: 1,
|
2443
2446
|
width: '100%',
|
2444
2447
|
gap: 10,
|
2445
2448
|
justifyContent: 'center',
|
2446
2449
|
flexDirection: 'row',
|
2447
|
-
paddingHorizontal: 10,
|
2448
|
-
paddingVertical: 0,
|
2449
2450
|
alignSelf: 'flex-start',
|
2450
2451
|
flexWrap: 'nowrap'
|
2451
2452
|
})
|