Skip to content

Releases: omahili/react-native-reorderable-list

Release 0.13.0

16 Mar 18:03
v0.13.0
6448f54
Compare
Choose a tag to compare

0.13.0 (2025-03-16)

Bug Fixes

  • disable default scale animation if overridden (a977cc8)

Features

  • use closest center algorithm for items reorder (8f39644), closes #34

BREAKING CHANGES

  • dragReorderThreshold prop is no longer supported and is removed from the API. The closest center algorithm provides a better experience, it fixes the current issues when swapping short and tall items and is more efficient.

Release 0.12.0

09 Mar 19:28
v0.12.0
7bd6c2d
Compare
Choose a tag to compare

0.12.0 (2025-03-09)

Bug Fixes

Features

  • add autoscroll activation delta (181c308)

Release 0.11.0

27 Jan 20:25
v0.11.0
8eac407
Compare
Choose a tag to compare

0.11.0 (2025-01-27)

Features

Release 0.10.0

26 Jan 19:27
v0.10.0
936000f
Compare
Choose a tag to compare

0.10.0 (2025-01-26)

Bug Fixes

Features

  • add autoscrollThresholdOffset prop (0d2a889), closes #28
  • support all view style animations for cell (f019ab1), closes #27

BREAKING CHANGES

  • The scale style animation is now part of the transform property. The default scale animation can be disabled by overriding transform. Similarly, the default opacity animation can be disabled by overriding its value, instead of setting it to false. cellAnimations properties can be either a value or shared value.

Release 0.9.0

19 Jan 16:28
v0.9.0
ba4a43b
Compare
Choose a tag to compare

0.9.0 (2025-01-19)

Features

  • add panEnabled and panActivateAfterLongPress (47803d2), closes #22
  • add useIsActive hook (6e45ada), closes #25

Release 0.8.0

16 Jan 22:49
v0.8.0
0b671c7
Compare
Choose a tag to compare

0.8.0 (2025-01-16)

Features

  • bump peer dependency RNGH (64dcbad)
  • improve performance and add new props (05626ef), closes #18
  • support animated scroll handlers (e40dfae), closes #21

BREAKING CHANGES

  • Updated peer dependency requirement for react-native-gesture-handler to a minimum of 2.12.0
  • onScroll event handlers of ReorderableList and ScrollViewContainer now require animated scroll handlers. For this api to work Reanimated minimum version is bumped to 3.12.0.
  • Items are optimized by reducing shared values in the parent cells and reducing the animated styles. ReorderableListItem animations have moved to the cell itself and are attached to the active cell only. A new prop cellAnimations and onDragStart were added to allow customizing opacity and scale, while ReorderableListItem is removed from the api.

Release 0.7.1

15 Jan 07:19
v0.7.1
b5e0c96
Compare
Choose a tag to compare

0.7.1 (2025-01-15)

Bug Fixes

  • android: slow autoscroll with fabric (0f0f3e4)
  • reading shared value during render (ac43fad), closes #20

Release 0.7.0

15 Dec 22:54
v0.7.0
f12e56d
Compare
Choose a tag to compare

0.7.0 (2024-12-15)

Features

Release 0.6.1

12 Dec 02:38
v0.6.1
ee505ed
Compare
Choose a tag to compare

0.6.1 (2024-12-12)

Bug Fixes

  • use a more stable drag end handling (1035e08)

Release 0.6.0

12 Dec 00:21
v0.6.0
beda466
Compare
Choose a tag to compare

0.6.0 (2024-12-12)

Bug Fixes

  • drag end not triggered if pressed only (45a689e), closes #14

Features

  • add drag end event to root list (d7c19ed), closes #10