Skip to content

Releases: oblador/react-native-collapsible

1.6.1

30 Mar 09:48
Compare
Choose a tag to compare
  • React 18 type support

1.6.0

29 Apr 18:38
20e40c9
Compare
Choose a tag to compare

New functionality

  • Support for rendering Accordion as a FlatList for better performance of long lists by passing the renderAsFlatlist={true}.
  • Ability to only render content when visible by passing the renderChildrenCollapsed={false}
  • Improved accessibility

Fixes

  • Prevent re-layout during animation for smoother animations.
  • Remove prop types for better web support.
  • Fix crash on Android when height was undefined.

1.5.2

30 Mar 22:29
Compare
Choose a tag to compare

Fixes

  • Fix useNativeDriver was not specified warning in RN 0.62

1.5.1

02 Aug 11:20
afe267b
Compare
Choose a tag to compare

Fixes

  • Fixes bug in typescript where renderFooter would always need to be set e615cee @svbutko

1.5.0

25 Jul 15:05
29a339b
Compare
Choose a tag to compare

Features

Fixes

  • (types): Add disabled prop to typescript definitions on Accordion 6eb0c92 @leiter84

1.4.0

06 Dec 02:27
bff3bfe
Compare
Choose a tag to compare

Features

1.3.0

30 Oct 13:15
a06a3cc
Compare
Choose a tag to compare

1.2.1

17 Oct 00:42
50db0b9
Compare
Choose a tag to compare

Partially revert 40d9c46 to fix errors on ci in #252.

1.2.0

07 Oct 15:23
a642c66
Compare
Choose a tag to compare

Features

Add enablePointerEvents prop to Collapsible 8222cf4 @okb1100

By default, the collapsible disables touch events while collapsing to prevent touches while the animation is closing or opening. Some persons expressed a need to override this behaviour.

Fixes

Handle collapsible unmount during animation 8f79b3e @slorber

While during the collapse animation a user might navigate away from the screen and inadvertently unmount the component. However, the animation will still complete and attempt to setState. This would throw a warning that you shouldn't update an unmounted component.

Other

1.1.0

04 Oct 17:19
Compare
Choose a tag to compare

Features