Skip to content

Latest commit

History

History
143 lines (75 loc) 路 6.73 KB

CHANGELOG.md

File metadata and controls

143 lines (75 loc) 路 6.73 KB

react-native-reanimated-carousel

4.0.0-alpha.12

Patch Changes

  • #574 86da6ac Thanks @nmassey! - Fixed an issue where endWithSpring used outdated data from useSharedValue after onGestureEnd, causing incorrect carousel behavior on direction reversal.

4.0.0-alpha.11

Patch Changes

4.0.0-alpha.10

Patch Changes

  • #560 c181174 Thanks @dohooo! - Add a new props minScrollDistancePerSwipe to set the minimum scroll instance to make carousel scroll.

4.0.0-alpha.9

Patch Changes

4.0.0-alpha.8

Patch Changes

4.0.0-alpha.7

Patch Changes

  • #510 b3cc591 Thanks @dohooo! - Support to specific direction to auto play.

  • #510 b3cc591 Thanks @dohooo! - Modify the preority of windowSize settings. If you define the windowSize prop, Carousel will ignore the itemsCount. (windowSize > itemsCount)

4.0.0-alpha.6

Minor Changes

  • #507 c6d58e5 Thanks @dohooo! - Support to fix the scroll direction through new API, fixedDirection.

Patch Changes

4.0.0-alpha.5

Patch Changes

4.0.0-alpha.4

Patch Changes

  • #498 096ac75 Thanks @dohooo! - re-calculate when window size changed in browser. (re-bump for alpha.3)

4.0.0-alpha.3

Patch Changes

4.0.0-alpha.2

Patch Changes

  • #494 6b849ec Thanks @dohooo! - Removed the reset logic when user change the defaultIndex prop. (We couldn't update the handlerOffset value when user change the defaultIndex. Because the carousel component already be a non-controlled component. So the subsequent changes of defaultIndex will be ignored.)

4.0.0-alpha.1

Patch Changes

  • #492 978b59f Thanks @dohooo! - feat: change the way of PanGestureHandler modification from panGestureHandlerProps to onConfigurePanGesture.

    e.g.

    <Carousel
      onConfigurePanGesture={(gestureChain) => {
        gestureChain.activeOffsetX([-10, 10]);
      }}
    />
  • #492 c015873 Thanks @dohooo! - Fixed an issue where the enable props couldn't set to false.

4.0.0-alpha.0

Major Changes

3.5.1

Patch Changes

  • 870b130: Fixed ref unsable issue.

3.5.0

Minor Changes

  • c117a3a: Reducing default seetings for Android. (gestureHandlerRootHOC)

3.4.0

Minor Changes

  • 8ea24ca: Added maxScrollDistancePerSwipe props.

3.3.2

Patch Changes

  • 0237ae8: Solved the crush issue.

3.3.1

Patch Changes

  • b09fb81: chore: only push the lib to npm.

3.3.0

Minor Changes

  • 677b37b: 馃殌 Support to test.

3.2.0

Minor Changes

  • 01184e9: 馃殌 Add new props overscrollEnabled to support scrolling management.