@ckeditor/ckeditor5-word-count
Advanced tools
Comparing version 0.0.1 to 10.0.0
{ | ||
"name": "@ckeditor/ckeditor5-word-count", | ||
"version": "0.0.1", | ||
"version": "10.0.0", | ||
"description": "Word count feature for CKEditor 5.", | ||
@@ -13,9 +13,17 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "^12.1.0", | ||
"@ckeditor/ckeditor5-core": "^12.2.0", | ||
"@ckeditor/ckeditor5-ui": "^13.0.1", | ||
"lodash-es": "^4.17.10" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-engine": "^13.1.1", | ||
"@ckeditor/ckeditor5-paragraph": "^11.0.2", | ||
"@ckeditor/ckeditor5-utils": "^12.1.1", | ||
"@ckeditor/ckeditor5-basic-styles": "^11.1.2", | ||
"@ckeditor/ckeditor5-block-quote": "^11.1.1", | ||
"@ckeditor/ckeditor5-editor-classic": "^12.1.2", | ||
"@ckeditor/ckeditor5-engine": "^13.2.0", | ||
"@ckeditor/ckeditor5-enter": "^11.0.3", | ||
"@ckeditor/ckeditor5-link": "^11.1.0", | ||
"@ckeditor/ckeditor5-list": "^12.0.3", | ||
"@ckeditor/ckeditor5-paragraph": "^11.0.3", | ||
"@ckeditor/ckeditor5-table": "^13.0.1", | ||
"@ckeditor/ckeditor5-utils": "^13.0.0", | ||
"eslint": "^5.5.0", | ||
@@ -22,0 +30,0 @@ "eslint-config-ckeditor5": "^1.0.11", |
@@ -275,8 +275,8 @@ /** | ||
/** | ||
* This option allows for hiding the word counter. The element obtained through | ||
* This option allows for hiding the word count. The element obtained through | ||
* {@link module:wordcount/wordcount~WordCount#wordCountContainer} will only preserve | ||
* the characters part. Word counter is displayed by default when this configuration option is not defined. | ||
* the characters part. word count is displayed by default when this configuration option is not defined. | ||
* | ||
* const wordCountConfig = { | ||
* displayWords = false | ||
* displayWords: false | ||
* } | ||
@@ -299,3 +299,3 @@ * | ||
* const wordCountConfig = { | ||
* displayCharacters = false | ||
* displayCharacters: false | ||
* } | ||
@@ -318,5 +318,5 @@ * | ||
* const wordCountConfig = { | ||
* onUpdate: function( values ) { | ||
* doSthWithWordNumber( values.words ); | ||
* doSthWithCharacterNumber( values.characters ); | ||
* onUpdate: function( stats ) { | ||
* doSthWithWordNumber( stats.words ); | ||
* doSthWithCharacterNumber( stats.characters ); | ||
* } | ||
@@ -323,0 +323,0 @@ * } |
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
31950
24
0
3
14
+ Added@ckeditor/ckeditor5-ui@13.0.2(transitive)
+ Added@ckeditor/ckeditor5-utils@13.0.1(transitive)