Added a showFilter
prop to hide the filter input if you just want to use this component for selection [#15]
Breaking: Now requires React >= 0.14.9.
Changed: use React.Component
and the prop-types module to avoid deprecation warnings [#11] [jarekwg]
Changed: link to unpkg for UMD build distribution.
Changed UMD build directory.
Removed dist/
directory from GitHub in favour of npmcdn.
Breaking: Now requires React 0.14.
Re-bundled with latest Browserify (9.x) and React (0.13.x), but still compatible with React 0.12.x.
Added: new buttonActive
property for the classNames
prop - this will be
used when one or more options are selected, otherwise button
will be used.
Changed: classNames
prop no longer has to provide all properties - defaults
will be used where not provided.
Added: double-clicking now adds the selected option to the selection.
Breaking: If you want selected options to no longer appear in the select,
you now must either pass them back to FilteredMultiSelect
via its
selectedOptions
prop or manually remove them from list that gets passed as its
options
prop.
Fixed: FilteredMultiSelect
will now re-render if its options
prop is
replaced with another object, or options.length
changes.
Removed React from package.json dependencies
- it's now only in
peerDependencies
.
No code changes - version bump to get correct package.json metadata into npm.
Initial version.