@umituz/react-native-bottom-sheet 1.1.9 → 1.1.10

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-bottom-sheet",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "Modern, performant bottom sheets for React Native with preset configurations, keyboard handling, and smooth animations",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -204,7 +204,7 @@ export const BottomSheetModal = forwardRef<BottomSheetModalRef, BottomSheetModal
204
204
  });
205
205
  });
206
206
  });
207
- }, 300); // Increased delay to 300ms to ensure Reanimated is fully initialized
207
+ }, 500); // Increased delay to 500ms to ensure Reanimated is fully initialized
208
208
 
209
209
  return () => {
210
210
  clearTimeout(timer);
@@ -47,7 +47,7 @@ export const SafeBottomSheetModalProvider: React.FC<SafeBottomSheetModalProvider
47
47
  });
48
48
  });
49
49
  });
50
- }, 300); // Delay to ensure Reanimated is fully initialized
50
+ }, 500); // Delay to ensure Reanimated is fully initialized
51
51
 
52
52
  return () => {
53
53
  clearTimeout(timer);