Skip to content

Commit 805d354

Browse files
committed
Version 0.3.0
1 parent 1f210cd commit 805d354

File tree

6 files changed

+42
-13
lines changed

6 files changed

+42
-13
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
Changelog
22
=========
33

4+
v0.3.0
5+
------
6+
- Bumped Quill.js to v0.2.0
7+
- Exposed `focus` and `blur` public methods from component.
8+
- Exposed `getEditor` public method to retrieve the backing Quill instance from the component.
9+
- Added callbacks for listening to keyboard events.
10+
- Added tooltips for toolbar choice controls (@bird512).
11+
- Added support for child nodes in toolbar items (@1000hz).
12+
- Added support for custom formats in the configuration (@csk157).
13+
- Added an option to disable the toolbar entirely by passing `false` to `toolbar`.
14+
- Added an option to disable styles entirely by passing `false` to `style` (@kkerr1).
15+
- Fixed an issue where the Quill would duplicate React IDs inside the toolbar leading to errors. Fixes #15.
16+
- Fixes an issue where the editor could be used while null (@brucedlukens).
17+
- Fixes an issue where null would be set on the editor. Fixes #48.
18+
- Fixes an issue where the editor would be instantiated with the wrong value. Fixes #50.
19+
- Avoiding parsing Quill's `dist` directory with webpack.
20+
421
v0.2.2
522
------
623
- Added missing `modules` propType and documentation.
@@ -57,4 +74,4 @@ v0.0.2
5774

5875
v0.0.1
5976
------
60-
- Initial version.
77+
- Initial version.

README.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -246,27 +246,39 @@ More tasks are available on the [Makefile](Makefile):
246246

247247
Changelog
248248
---------
249+
#### v0.3.0
250+
- Bumped Quill.js to v0.2.0
251+
- Exposed `focus` and `blur` public methods from component.
252+
- Exposed `getEditor` public method to retrieve the backing Quill instance from the component.
253+
- Added callbacks for listening to keyboard events.
254+
- Added tooltips for toolbar choice controls (@bird512).
255+
- Added support for child nodes in toolbar items (@1000hz).
256+
- Added support for custom formats in the configuration (@csk157).
257+
- Added an option to disable the toolbar entirely by passing `false` to `toolbar`.
258+
- Added an option to disable styles entirely by passing `false` to `style` (@kkerr1).
259+
- Fixed an issue where the Quill would duplicate React IDs inside the toolbar leading to errors. Fixes #15.
260+
- Fixes an issue where the editor could be used while null (@brucedlukens).
261+
- Fixes an issue where null would be set on the editor. Fixes #48.
262+
- Fixes an issue where the editor would be instantiated with the wrong value. Fixes #50.
263+
- Avoiding parsing Quill's `dist` directory with webpack.
264+
249265
#### v0.2.2
250266
- Added missing `modules` propType and documentation.
251267
- Children are now cloned so ReactQuill can own their refs. Fixes #20.
252268

253269
#### v0.2.1
254270
- Link toolbar button and module are now enabled by default. Fixes #19.
255271

256-
#### v0.2.0
257-
- Fix React warnings about unique `key` props in toolbar (@Janekk).
258-
- Sending `delta` and `source` from editor change events. Fixes #17.
259-
- Rewritten uncontrolled and semi-controlled operation. Should fix #9, #10 and #14.
260-
- Editor props can now be changed after mounting.
261-
- Added callback for selection change event. Closes #12.
262-
263272
[Full changelog](CHANGELOG.md)
264273

265274

266275
Roadmap
267276
-------
277+
- [ ] ES6 rewrite
278+
- [ ] React 0.14 support
268279
- [ ] First-class support for modules
269-
- [ ] Better API for custom controls?
280+
- [ ] Better API for custom controls
281+
- [ ] Tests!
270282

271283

272284
License

dist/react-quill.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-quill.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-quill",
3-
"version": "0.2.2",
3+
"version": "0.3.0",
44
"description": "The Quill rich-text editor as a React component.",
55
"author": "zenoamaro <[email protected]>",
66
"homepage": "https://github.com/zenoamaro/react-quill",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
React-Quill v0.2.2
2+
React-Quill v0.3.0
33
https://github.com/zenoamaro/react-quill
44
*/
55
module.exports = require('./component');

0 commit comments

Comments
 (0)