Skip to content

Releases: renrizzolo/react-native-sectioned-multi-select

v0.7.3

05 Dec 03:46
Compare
Choose a tag to compare

0.7.3 - 2019-11-28

Fixed

  • remove ScrollView that wraps the FlatList #151 (the style prop remains as scrollView for now but the element is a View)

v0.7.2

14 Oct 00:11
Compare
Choose a tag to compare

0.7.2 - 2019-10-14

Fixed

  • remove deprecated componentWillReceiveProps #147
  • fix subitem iconRenderer usage #142

v0.7.1

01 Aug 06:35
Compare
Choose a tag to compare

Added

  • added itemsFlatListProps and subItemsFlatListProps to be able to pass in custom FlatList props object

v0.7.0

01 Aug 06:34
Compare
Choose a tag to compare

0.7.0 - 2019-06-25

Fixed

  • fixed regression with backdrop / SafeAreaView. Styles: modalWrapper wraps the modal and backdrop is the backdrop view inside it.

Added

  • Added iconRenderer prop. Material Icons is no longer required to be installed fo the lib to work. You can pass iconRenderer your own icon component function.
  • Added Recipes doc with more details customization examples.

Changed

  • Made readme example more concise
  • cleand up example app style

v0.6.7

02 May 01:27
Compare
Choose a tag to compare
  • fixed bug with backdropView + modalWithTouchable taking touches from select list. The backdrop view is now absolutely positioned & a sibling of the list (instead of being the parent of the list).
  • fixed a couple of cases where items didn't update / future proofed chip remove working inside modal

v0.6.6

01 May 06:22
Compare
Choose a tag to compare
  • added parentChipsRemoveChildren boolean prop. If true, pressing a parent chip's remove button will remove all of its selected children.
  • added parentChipContainer and parentChipText to styles, so you can style parent item chips differently.
  • added selectedIconOnLeft boolean prop. If true, selected icons show to the left of the text. #104
  • added selectedSubItem to styles
  • renderSelectText can now return a component or a string.

v0.6.5

19 Feb 03:25
Compare
Choose a tag to compare

0.6.5 - 2019-02-19

Added

  • added unselectedIconComponent #93

0.6.4

17 Jan 01:38
Compare
Choose a tag to compare

Added

  • added ability to show an icon before the item text #87. Use prop iconKey, then add the key to your item as either a string (to show a material icons Icon component by name), object (to show an image e.g {uri: 'imageUrl' }, or a number (that is returned from require('./localimage.png') )). use style key itemIconStyle to style the Icon / Image
  • added autoFocus prop (bool) #86, to autofocus the search input when the modal is opened.

v0.6.3

01 Jan 23:27
Compare
Choose a tag to compare

0.6.3 - 2018-11-27

Added

  • Add modalWithTouchable prop. Set to true to wrap the backdrop in a TouchableWithoutFeedback, which will close the selector (also fires onToggleSelector(false)) #76

Fixed

  • select element not displaying on ios (flex/regression)