Skip to content

Releases: zenoamaro/react-quill

v1.1.0

04 Aug 17:13
Compare
Choose a tag to compare
  • Add support for React 16 and onwards by depending on prop-types and create-react-class (#181 @mikecousins)
  • Allow setting contents with a Quill Delta via the value prop (#101)
  • Add onFocus/onBlur props (#110)
  • Add tabindex support (#232)

v1.0.0-rc.3

21 Jun 19:41
Compare
Choose a tag to compare
v1.0.0-rc.3 Pre-release
Pre-release
  • Removes inline Parchment formats for font-size and font-family #217
  • Upgrades Quill to 1.2.6

Version 1.0.0-beta-5

10 Apr 00:17
Compare
Choose a tag to compare
Version 1.0.0-beta-5 Pre-release
Pre-release
  • Fixes issue #179 where rerendering with modifed content would lose an edit. Thanks to @rpellerin for the bug and fix!

Version 1.0.0-beta-4

27 Mar 00:23
Compare
Choose a tag to compare
Version 1.0.0-beta-4 Pre-release
Pre-release
  • Fixes #147 where sending new props caused a re-render that left old toolbars as an artifact.
  • Introduces a whitelist of cleanProps (such as className) that don't cause the editor to be recreated when they change. Improves render performance.

Version 1.0.0-beta-3

03 Mar 09:17
Compare
Choose a tag to compare
Version 1.0.0-beta-3 Pre-release
Pre-release
  • Fixes onChange callback not being sent deltas for change events

  • Adds documentation for custom toolbars and custom formats to README

  • Points main in package.json at distributable

  • 2017-03-07 Upload new tarball. Previous was empty due to yarnpkg/yarn#2851.

Version 1.0.0-beta-2

26 Feb 20:55
Compare
Choose a tag to compare
Version 1.0.0-beta-2 Pre-release
Pre-release

Continues the 1.0.0 beta release cycle.

Changes since 1.0.0-beta-1

  • Add test suite
  • Bugfixes

See the Changelog for details and upgrade path.

Version 0.4.0

04 Feb 20:34
Compare
Choose a tag to compare

This release finally adds support for React 0.14.
⚠️ Shims to support older versions of React have been removed.

  • React 0.14 support (@jacktrades, #49)
  • Removed shims for React 0.12 and 0.13
  • Bumped Quill.js to v0.20.1
  • Normal and smaller sizes are not swapped anymore. (#63)
  • Various toolbar choice items are now correctly ordered.
  • Added image tooltips to the default set of modules (@kairxa, #54)
  • Fixed extra white-space in classnames (@asiniy, #67)
  • Published the Quill namespace on ReactQuill (@Sajam, #60)
  • Quill stylesheets are now linked to dist/ for convenience. (#70)
  • Exposed editor accessor methods in change events. (#33)

Version 0.3.0

04 Feb 20:33
Compare
Choose a tag to compare
  • Bumped Quill.js to v0.2.0
  • Exposed focus and blur public methods from component.
  • Exposed getEditor public method to retrieve the backing Quill instance from the component.
  • Added callbacks for listening to keyboard events.
  • Added tooltips for toolbar choice controls (@bird512).
  • Added support for child nodes in toolbar items (@1000hz).
  • Added support for custom formats in the configuration (@csk157).
  • Added an option to disable the toolbar entirely by passing false to toolbar.
  • Added an option to disable styles entirely by passing false to style (@kkerr1).
  • Fixed an issue where the Quill would duplicate React IDs inside the toolbar leading to errors. Fixes #15.
  • Fixes an issue where the editor could be used while null (@brucedlukens).
  • Fixes an issue where null would be set on the editor. Fixes #48.
  • Fixes an issue where the editor would be instantiated with the wrong value. Fixes #50.
  • Avoiding parsing Quill's dist directory with webpack.

Version 0.2.2

04 Aug 13:51
Compare
Choose a tag to compare
  • Added missing modules propType and documentation.
  • Children are now cloned so ReactQuill can own their refs. Fixes #20.

Version 0.2.1

31 Jul 11:05
Compare
Choose a tag to compare
  • Link toolbar button and module are now enabled by default. Fixes #19.