Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 3 roky
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # react-input-autosize
  2. ## v2.2.2 / 2019-01-10
  3. * added UNSAFE prefix to out of date react lifecycle hooks. thanks [RanneyD](https://github.com/ranneyd)
  4. ## v2.2.1 / 2018-01-10
  5. * fixed; invalid logic in SSR support check, thanks [Rakha Kanz Kautsar](https://github.com/rkkautsar)
  6. ## v2.2.0 / 2018-01-09
  7. * added; `extraWidth` prop allows you to customise how much width is added to the detected width
  8. * fixed; SSR support is more robust, thanks [Ivo Bathke](https://github.com/ivoba)
  9. ## v2.1.2 / 2017-11-27
  10. * fixed; `window` reference is now guarded for SSR support, thanks [Wout Mertens](https://github.com/wmertens)
  11. ## v2.1.1 / 2017-11-26
  12. * fixed; `props.id` was overriding the internal `inputId` on the input element, but not being used in the stylesheet
  13. * fixed; IE stylesheet is now only injected when IE is detected in navigator.userAgent
  14. ## v2.1.0 / 2017-11-23
  15. * fixed; inputId wasn't being applied correctly, thanks [Jacco Flenter](https://github.com/flenter)
  16. * added; new `injectStyles` prop controls whether the IE stylesheet it injected
  17. * improved; allow override of `boxSizing` and `width` styles via `inputStyles`, thanks [Mike Fanger](https://github.com/mvf4z7)
  18. * improved; propTypes are now stripped from the production build, thanks [jochenberger](https://github.com/jochenberger)
  19. ## v2.0.1 / 2017-09-13
  20. * fixed; peer dependencies for `prop-types`
  21. ## v2.0.0 / 2017-09-12
  22. * fixed; converted to es6 Class and removed `create-react-class`
  23. * changed; default export is now an es6 module
  24. ### Note:
  25. As of 2.0.0 this package exports an es6 module in the main entry
  26. (`/lib/AutoSizeInput.js`). If you are in an older environment, you'll need to
  27. refer to the `.default` export:
  28. ```js
  29. var AutoSizeInput = require('react-input-autosize').default;
  30. ```
  31. Aside from this, the new version doesn't change any public API.
  32. ## v1.2.0 / 2017-09-12
  33. * added; `inputRef` prop (function, passed the reference to the input node)
  34. * fixed; resize issues in IE11, thanks [Constantine](https://github.com/costagolub)
  35. * fixed; `copyInputStyles()` never running, thanks [Michael Elsdörfer](https://github.com/miracle2k)