Skip to content

Releases: Andarist/react-textarea-autosize

v4.2.0

02 May 15:49
Compare
Choose a tag to compare
  • added es build, more suitable for es6 modules aware tools like rollup and webpack2
  • switched to babel's loose mode
  • fixed inputRef being passed to the underlaying element which caused unused properties warning

v4.1.0

02 May 15:48
Compare
Choose a tag to compare
  • switched to using PropTypes from external package (fixed React 15.5.0 deprecation warning)
  • added new prop - inputRef which gets passed as ref callback to the underlaying element

v4.0.5

02 May 15:48
Compare
Choose a tag to compare
  • decided not to support IE8 ever (previous status - PR welcomed)
  • reverted the change using '' instead of 'x' to calculate the height of empty textarea

v4.0.4

02 May 15:47
Compare
Choose a tag to compare
  • fixed unused properties warning in React 15.2.0 by passing only DOM props to the underlaying element

v4.0.2

02 May 15:47
Compare
Choose a tag to compare
  • passing height: 0 to the underlaying element when state was not yet set (initial render situation)

v4.0.0

03 May 08:17
Compare
Choose a tag to compare
  • [BREAKING] Code is now built using Babel 6.

    That means that CommonJS code consuming react-textarea-autosize package should
    change their require calls from:

    var Textarea = require('react-textarea-autosize')
    

    to:

    var Textarea = require('react-textarea-autosize').default
    
  • [MINOR] Support for React 15.