@umituz/react-native-design-system 2.6.51 → 2.6.52
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-design-system",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.52",
|
|
4
4
|
"description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive and safe area utilities",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -76,6 +76,9 @@ export const BottomSheetModal = forwardRef<BottomSheetModalRef, BottomSheetModal
|
|
|
76
76
|
marginTop: 12,
|
|
77
77
|
marginBottom: 8,
|
|
78
78
|
},
|
|
79
|
+
content: {
|
|
80
|
+
flex: 1,
|
|
81
|
+
},
|
|
79
82
|
});
|
|
80
83
|
|
|
81
84
|
return (
|
|
@@ -88,7 +91,7 @@ export const BottomSheetModal = forwardRef<BottomSheetModalRef, BottomSheetModal
|
|
|
88
91
|
>
|
|
89
92
|
<Pressable style={styles.overlay} onPress={dismiss}>
|
|
90
93
|
<View style={styles.container}>
|
|
91
|
-
<Pressable onPress={(e) => e.stopPropagation()}>
|
|
94
|
+
<Pressable onPress={(e) => e.stopPropagation()} style={styles.content}>
|
|
92
95
|
<View style={styles.handle} />
|
|
93
96
|
{children}
|
|
94
97
|
</Pressable>
|