Skip to content

Releases: Andarist/react-textarea-autosize

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.