@umituz/react-native-ai-generation-content 1.12.34 → 1.12.35

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-ai-generation-content",
3
- "version": "1.12.34",
3
+ "version": "1.12.35",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -64,10 +64,21 @@ export const FilterBottomSheet = forwardRef<BottomSheetModal, FilterBottomSheetP
64
64
  );
65
65
  }, [onFilterPress, selectedIds, styles]);
66
66
 
67
+ const backgroundStyle = useMemo(() => ({
68
+ backgroundColor: tokens.colors.surface,
69
+ }), [tokens.colors.surface]);
70
+
71
+ const handleIndicatorStyle = useMemo(() => ({
72
+ backgroundColor: tokens.colors.outline,
73
+ }), [tokens.colors.outline]);
74
+
67
75
  return (
68
76
  <BottomSheetModal
69
77
  ref={ref}
70
78
  snapPoints={snapPoints}
79
+ backgroundStyle={backgroundStyle}
80
+ handleIndicatorStyle={handleIndicatorStyle}
81
+ enablePanDownToClose
71
82
  >
72
83
  <View style={styles.header}>
73
84
  <AtomicText style={styles.headerTitle}>{title}</AtomicText>