@umituz/react-native-design-system 2.6.58 → 2.6.60

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.58",
3
+ "version": "2.6.60",
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",
@@ -90,17 +90,15 @@ export const BottomSheetModal = forwardRef<BottomSheetModalRef, BottomSheetModal
90
90
  statusBarTranslucent
91
91
  >
92
92
  <Pressable style={styles.overlay} onPress={dismiss}>
93
- <View style={styles.container}>
94
- {/* Using a dummy Pressable that covers the container area to consume touches */}
95
- <Pressable
96
- style={StyleSheet.absoluteFill}
97
- onPress={() => {}} // Consumer
98
- />
93
+ <Pressable
94
+ style={styles.container}
95
+ onPress={() => {}} // Consumer to prevent bubbling to overlay
96
+ >
99
97
  <View style={{ flex: 1 }}>
100
98
  <View style={styles.handle} />
101
99
  {children}
102
100
  </View>
103
- </View>
101
+ </Pressable>
104
102
  </Pressable>
105
103
  </Modal>
106
104
  );
@@ -28,7 +28,7 @@ export const getVariantConfig = (
28
28
  };
29
29
  case 'success':
30
30
  return {
31
- icon: 'check-circle',
31
+ icon: 'checkmark-circle-outline',
32
32
  iconColor: 'success',
33
33
  };
34
34
  case 'default':