@umituz/react-native-design-system 4.25.58 → 4.25.59

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": "4.25.58",
3
+ "version": "4.25.59",
4
4
  "description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive, safe area, exception, infinite scroll, UUID, image, timezone, offline, onboarding, and loading utilities",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -71,7 +71,7 @@ export const ScreenLayout: React.FC<ScreenLayoutProps> = (props: ScreenLayoutPro
71
71
  style={styles.scrollView}
72
72
  contentContainerStyle={[styles.scrollContent, contentContainerStyle]}
73
73
  showsVerticalScrollIndicator={!hideScrollIndicator}
74
- keyboardShouldPersistTaps={keyboardAvoiding ? 'handled' : 'never'}
74
+ keyboardShouldPersistTaps="handled"
75
75
  refreshControl={refreshControl}
76
76
  nestedScrollEnabled
77
77
  >
@@ -108,7 +108,7 @@ export const FilterBottomSheet = forwardRef<BottomSheetModalRef, FilterBottomShe
108
108
  </TouchableOpacity>
109
109
  </View>
110
110
 
111
- <ScrollView style={styles.scrollView} showsVerticalScrollIndicator={false}>
111
+ <ScrollView style={styles.scrollView} showsVerticalScrollIndicator={false} keyboardShouldPersistTaps="handled">
112
112
  {categories.map(renderCategory)}
113
113
  </ScrollView>
114
114
 
@@ -57,7 +57,7 @@ export const FilterSheet: React.FC<FilterSheetProps> = ({
57
57
  tokens={tokens}
58
58
  />
59
59
 
60
- <ScrollView style={styles.optionsList} showsVerticalScrollIndicator={false}>
60
+ <ScrollView style={styles.optionsList} showsVerticalScrollIndicator={false} keyboardShouldPersistTaps="handled">
61
61
  {options.map((option) => (
62
62
  <FilterSheetOption
63
63
  key={option.id}
@@ -34,6 +34,7 @@ export function FilterGroup<T = string>({
34
34
  <ScrollView
35
35
  horizontal
36
36
  showsHorizontalScrollIndicator={false}
37
+ keyboardShouldPersistTaps="handled"
37
38
  style={[styles.container, style]}
38
39
  contentContainerStyle={[styles.content, contentContainerStyle]}
39
40
  >