@umituz/react-native-bottom-sheet 1.1.8 → 1.1.9
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.
|
|
3
|
+
"version": "1.1.9",
|
|
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",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@gorhom/bottom-sheet": ">=5.0.0",
|
|
33
33
|
"@umituz/react-native-design-system": "*",
|
|
34
|
-
"@umituz/react-native-theme": "*",
|
|
34
|
+
"@umituz/react-native-design-system-theme": "*",
|
|
35
35
|
"react": ">=18.2.0",
|
|
36
36
|
"react-native": ">=0.74.0",
|
|
37
37
|
"react-native-gesture-handler": ">=2.16.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@types/react": "^18.2.45",
|
|
44
44
|
"@types/react-native": "^0.73.0",
|
|
45
45
|
"@umituz/react-native-design-system": "latest",
|
|
46
|
-
"@umituz/react-native-theme": "latest",
|
|
46
|
+
"@umituz/react-native-design-system-theme": "latest",
|
|
47
47
|
"react": "^18.2.0",
|
|
48
48
|
"react-native": "^0.74.0",
|
|
49
49
|
"react-native-gesture-handler": "~2.16.1",
|
|
@@ -36,7 +36,7 @@ import GorhomBottomSheet, {
|
|
|
36
36
|
BottomSheetBackdrop,
|
|
37
37
|
type BottomSheetBackdropProps,
|
|
38
38
|
} from '@gorhom/bottom-sheet';
|
|
39
|
-
import { useAppDesignTokens } from '@umituz/react-native-theme';
|
|
39
|
+
import { useAppDesignTokens } from '@umituz/react-native-design-system-theme';
|
|
40
40
|
import type {
|
|
41
41
|
BottomSheetConfig,
|
|
42
42
|
BottomSheetPreset,
|
|
@@ -202,7 +202,7 @@ export const BottomSheet = forwardRef<BottomSheetRef, BottomSheetProps>(
|
|
|
202
202
|
});
|
|
203
203
|
});
|
|
204
204
|
});
|
|
205
|
-
},
|
|
205
|
+
}, 500); // Increased delay to 500ms to ensure Reanimated is fully initialized
|
|
206
206
|
|
|
207
207
|
return () => {
|
|
208
208
|
clearTimeout(timer);
|
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
BottomSheetBackdrop,
|
|
39
39
|
type BottomSheetBackdropProps,
|
|
40
40
|
} from '@gorhom/bottom-sheet';
|
|
41
|
-
import { useAppDesignTokens } from '@umituz/react-native-theme';
|
|
41
|
+
import { useAppDesignTokens } from '@umituz/react-native-design-system-theme';
|
|
42
42
|
import type {
|
|
43
43
|
BottomSheetConfig,
|
|
44
44
|
BottomSheetPreset,
|