You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,23 @@
1
1
# react-native-reanimated-carousel
2
2
3
+
## 4.0.0-alpha.1
4
+
5
+
### Patch Changes
6
+
7
+
-[#492](https://github.com/dohooo/react-native-reanimated-carousel/pull/492)[`978b59f`](https://github.com/dohooo/react-native-reanimated-carousel/commit/978b59f0f2d8a96fe1d1de1a1c9fb205fd051cfb) Thanks [@dohooo](https://github.com/dohooo)! - feat: change the way of PanGestureHandler modification from panGestureHandlerProps to onConfigurePanGesture.
8
+
9
+
e.g.
10
+
11
+
```tsx
12
+
<Carousel
13
+
onConfigurePanGesture={(gestureChain) => {
14
+
gestureChain.activeOffsetX([-10, 10]);
15
+
}}
16
+
/>
17
+
```
18
+
19
+
- [#492](https://github.com/dohooo/react-native-reanimated-carousel/pull/492) [`c015873`](https://github.com/dohooo/react-native-reanimated-carousel/commit/c015873b7a8f4f357b7342c250220ea9968d8b58) Thanks [@dohooo](https://github.com/dohooo)! - Fixed an issue where the enable props couldn't set to false.
0 commit comments