@umituz/react-native-design-system 4.25.57 → 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.
|
|
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",
|
|
@@ -69,14 +69,10 @@ export const ScreenLayout: React.FC<ScreenLayoutProps> = (props: ScreenLayoutPro
|
|
|
69
69
|
{header}
|
|
70
70
|
<ScrollView
|
|
71
71
|
style={styles.scrollView}
|
|
72
|
-
contentContainerStyle={[
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
scrollEnabled={scrollable}
|
|
77
|
-
showsVerticalScrollIndicator={scrollable && !hideScrollIndicator}
|
|
78
|
-
keyboardShouldPersistTaps={keyboardAvoiding ? 'handled' : 'never'}
|
|
79
|
-
refreshControl={scrollable ? refreshControl : undefined}
|
|
72
|
+
contentContainerStyle={[styles.scrollContent, contentContainerStyle]}
|
|
73
|
+
showsVerticalScrollIndicator={!hideScrollIndicator}
|
|
74
|
+
keyboardShouldPersistTaps="handled"
|
|
75
|
+
refreshControl={refreshControl}
|
|
80
76
|
nestedScrollEnabled
|
|
81
77
|
>
|
|
82
78
|
{children}
|
|
@@ -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}
|