React Native Sectioned Multi Select Versions Save

a multi (or single) select component with support for sub categories, search, chips.

v0.7.3

4 years ago

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

4 years ago

0.7.2 - 2019-10-14

Fixed

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

v0.7.1

4 years ago

Added

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

v0.7.0

4 years ago

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

5 years ago
  • 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

5 years ago
  • 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

5 years ago

0.6.5 - 2019-02-19

Added

  • added unselectedIconComponent #93

v0.6.4

5 years ago

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

5 years ago

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)