Comparing version 1.0.4 to 1.0.6
@@ -0,1 +1,18 @@ | ||
# 1.0.6 | ||
Documentation clarifications and bug fixes. | ||
- Fix attaching toolbar to `<select>` without themes [#997](https://github.com/quilljs/quill/issues/997) | ||
- Link `code` icon to `code-block` [#998](https://github.com/quilljs/quill/issues/998) | ||
- Fix undo stack when at size limit [#1001](https://github.com/quilljs/quill/pull/1001) | ||
- Fix bug where `formatLine` did not ignore inline formats [8a7190](https://github.com/quilljs/parchment/commit/8a71905b2dd02d003edb02a15fdc727b26914e49) | ||
Thanks to [@dropfen](https://github.com/dropfen), [@evansolomon](https://github.com/evansolomon), [@hallaathrad](https://github.com/hallaathrad), [@janyksteenbeek](https://github.com/janyksteenbeek), [@jackmu95](https://github.com/jackmu95), [@marktron](https://github.com/marktron), [@mcat-ee](https://github.com/mcat-ee), [@unhammer](https://github.com/unhammer), and [@zeke](https://github.com/zeke) for contributions to this release! | ||
# 1.0.5 | ||
Became 1.0.6 with a build/deploy fix. | ||
# 1.0.4 | ||
@@ -2,0 +19,0 @@ |
@@ -61,3 +61,3 @@ import Parchment from 'parchment'; | ||
if (this.stack.undo.length > this.options.maxStack) { | ||
this.stack.undo.unshift(); | ||
this.stack.undo.shift(); | ||
} | ||
@@ -64,0 +64,0 @@ } |
@@ -33,5 +33,2 @@ import extend from 'extend'; | ||
}); | ||
this.container.addEventListener('mousedown', function(e) { | ||
e.preventDefault(); // Prevent blur | ||
}); | ||
[].forEach.call(this.container.querySelectorAll('button, select'), (input) => { | ||
@@ -38,0 +35,0 @@ this.attach(input); |
{ | ||
"name": "quill", | ||
"version": "1.0.4", | ||
"description": "Cross browser rich text editor", | ||
"version": "1.0.6", | ||
"description": "Your powerful, rich text editor", | ||
"author": "Jason Chen <jhchen7@gmail.com>", | ||
@@ -35,21 +35,21 @@ "homepage": "http://quilljs.com", | ||
"dependencies": { | ||
"clone": "~1.0.2", | ||
"clone": "~2.0.0", | ||
"deep-equal": "~1.0.1", | ||
"eventemitter3": "~1.2.0", | ||
"eventemitter3": "~2.0.1", | ||
"extend": "~3.0.0", | ||
"parchment": "1.0.0", | ||
"parchment": "1.0.1", | ||
"rich-text": "~3.0.2" | ||
}, | ||
"devDependencies": { | ||
"babel-core": "^6.14.0", | ||
"babel-core": "^6.16.0", | ||
"babel-loader": "^6.2.5", | ||
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5", | ||
"babel-plugin-istanbul": "^2.0.1", | ||
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0", | ||
"babel-preset-es2015": "^6.14.0", | ||
"css-loader": "~0.25.0", | ||
"extract-text-webpack-plugin": "^1.0.1", | ||
"html-loader": "~0.4.3", | ||
"http-proxy": "^1.14.0", | ||
"istanbul-instrumenter-loader": "~0.2.0", | ||
"jasmine-core": "^2.5.0", | ||
"karma": "^1.2.0", | ||
"html-loader": "~0.4.4", | ||
"http-proxy": "^1.15.1", | ||
"jasmine-core": "^2.5.2", | ||
"karma": "^1.3.0", | ||
"karma-chrome-launcher": "^2.0.0", | ||
@@ -59,3 +59,3 @@ "karma-coverage": "^1.1.1", | ||
"karma-sauce-launcher": "^1.0.0", | ||
"lodash": "^4.15.0", | ||
"lodash": "^4.16.2", | ||
"style-loader": "~0.13.1", | ||
@@ -65,8 +65,8 @@ "stylus": "~0.54.5", | ||
"ts-loader": "~0.8.2", | ||
"typescript": "^1.8.10", | ||
"wdio-jasmine-framework": "~0.2.5", | ||
"typescript": "^2.0.3", | ||
"wdio-jasmine-framework": "~0.2.6", | ||
"webdriver-manager": "^10.2.3", | ||
"webdriverio": "^4.2.11", | ||
"webdriverio": "^4.2.16", | ||
"webpack": "^1.13.2", | ||
"webpack-dev-server": "^1.15.1" | ||
"webpack-dev-server": "^1.16.1" | ||
}, | ||
@@ -73,0 +73,0 @@ "license": "BSD-3-Clause", |
@@ -12,2 +12,3 @@ module.exports = { | ||
'clean' : require('../assets/icons/clean.svg'), | ||
'code' : require('../assets/icons/code.svg'), | ||
'code-block': require('../assets/icons/code.svg'), | ||
@@ -14,0 +15,0 @@ 'color' : require('../assets/icons/color.svg'), |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2068191
21826
+ Addedclone@2.0.0(transitive)
+ Addedeventemitter3@2.0.3(transitive)
+ Addedparchment@1.0.1(transitive)
- Removedclone@1.0.4(transitive)
- Removedeventemitter3@1.2.0(transitive)
- Removedparchment@1.0.0(transitive)
Updatedclone@~2.0.0
Updatedeventemitter3@~2.0.1
Updatedparchment@1.0.1