Skip to content

Commit 20921b6

Browse files
committed
0.6.1
1 parent 8c6abd2 commit 20921b6

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

example/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"react-native-reanimated": "~1.7.0",
2525
"react-native-safe-area-context": "0.7.3",
2626
"react-native-screens": "~2.2.0",
27-
"react-native-scroll-bottom-sheet": "^0.6.0",
27+
"react-native-scroll-bottom-sheet": "^0.6.1",
2828
"react-native-web": "~0.11.7"
2929
},
3030
"devDependencies": {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-scroll-bottom-sheet",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "Cross platform scrollable bottom sheet with virtualization support, running at 60 FPS and fully implemented in JS land",
55
"main": "lib/commonjs/index.js",
66
"module": "lib/module/index.js",

src/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import {
1010
SectionListProps,
1111
StyleSheet,
1212
View,
13-
StyleProp,
1413
ViewStyle,
1514
} from 'react-native';
1615
import Animated, {
@@ -161,7 +160,7 @@ type CommonProps = {
161160
/*
162161
* Style to be applied to the container.
163162
*/
164-
containerStyle?: StyleProp<ViewStyle>;
163+
containerStyle?: Animated.AnimateStyle<ViewStyle>;
165164
};
166165

167166
type Props<T> = CommonProps &

0 commit comments

Comments
 (0)