react-crud-mobile 1.3.564 → 1.3.566
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/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/elements/UIElement.tsx +1 -1
- package/src/elements/core/UIOrder.tsx +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-crud-mobile",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.566",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Uma biblioteca de componentes para React Native v1",
|
|
6
6
|
"author": "juarez",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@react-navigation/native": "^7.1.18",
|
|
43
43
|
"expo-localization": "^17.0.7",
|
|
44
44
|
"expo-status-bar": "~3.0.8",
|
|
45
|
-
"react-crud-utils": "0.2.
|
|
45
|
+
"react-crud-utils": "0.2.24",
|
|
46
46
|
"react-native-reanimated": "~4.1.0",
|
|
47
47
|
"react-native-safe-area-context": "^5.6.1",
|
|
48
48
|
"react-native-screens": "~4.16.0",
|
|
@@ -680,12 +680,12 @@ let boxStyle = StyleSheet.create({
|
|
|
680
680
|
width: '100%',
|
|
681
681
|
},
|
|
682
682
|
box: {
|
|
683
|
-
borderWidth: 1,
|
|
684
683
|
borderColor: '#dedede',
|
|
685
684
|
borderStyle: 'solid',
|
|
686
685
|
backgroundColor: 'white',
|
|
687
686
|
borderRadius: 10,
|
|
688
687
|
width: '100%',
|
|
688
|
+
borderWidth: 0,
|
|
689
689
|
// Keep the iOS shadow aligned with Android's elevation: a subtle
|
|
690
690
|
// downward cast reads more naturally than a shadow spread evenly around
|
|
691
691
|
// the card.
|
|
@@ -231,11 +231,11 @@ const styles = StyleSheet.create({
|
|
|
231
231
|
paddingHorizontal: 12,
|
|
232
232
|
alignItems: 'center',
|
|
233
233
|
flexDirection: 'row',
|
|
234
|
-
elevation:
|
|
235
|
-
shadowColor: '#
|
|
236
|
-
shadowOffset: { width: 0, height:
|
|
237
|
-
shadowOpacity: 0.
|
|
238
|
-
shadowRadius:
|
|
234
|
+
elevation: 1,
|
|
235
|
+
shadowColor: '#000',
|
|
236
|
+
shadowOffset: { width: 0, height: 1 },
|
|
237
|
+
shadowOpacity: 0.04,
|
|
238
|
+
shadowRadius: 3,
|
|
239
239
|
},
|
|
240
240
|
handle: { width: 40, alignItems: 'center', justifyContent: 'center' },
|
|
241
241
|
handleText: { fontSize: 22, color: '#666' },
|