Skip to content

Releases: RusinovAnton/react-select3

Search input display changed

17 Dec 19:34
Compare
Choose a tag to compare

Not so breaking change

  • search input now hidden on minimumResults even if search.show is true.
    Previously behavior of search.minimumResults prop wasn't obvious -
    search.show would override it. Now search input will show only when:
    • search.show is true,
    • there are some options passed
    • search.minimumResult prop is set and options.length is equal or more than its value.

Misc

  • add prettier for sourcecode

React v16

13 Nov 22:56
Compare
Choose a tag to compare

Now compatible with React v16 (#5)

IE bugfixes

01 Aug 09:48
Compare
Choose a tag to compare
  • change usage of window.scrollY to window.pageYOffset
  • change usage of Array.prototype.find() to lodash.find()
  • change event listener from 'blur' to 'focusout' to be able to get event.relatedTarget

Styles and build process rewrite

14 Jul 08:15
Compare
Choose a tag to compare
  • Build is now based on npm scripts and rollup
  • scss sources are now more flexible with more consistent mixins and variables names and usage

3.3.8

31 Jan 20:37
Compare
Choose a tag to compare
  • Improve docs readability
  • Upgrade lint rules, fix code in accordance to them

Fix for onblur issues

26 Jan 09:11
Compare
Choose a tag to compare
  • Select being focused after click on other input
  • Select dropdown is not being closed onblur

Select node added

25 Jan 16:19
Compare
Choose a tag to compare
  • Dummy select node added to be able get FormData using Select component.
  • Fix type checking of endpoint prop

I would use it on production now

25 Jan 14:16
Compare
Choose a tag to compare

Extracting fetch functionality

24 Jan 14:55
Compare
Choose a tag to compare

Now there are simple Select component and FetchComponent which can request options from server

Roadmap:

  • Docs
  • option groups
  • multiselect
  • more tests