@ckeditor/ckeditor5-word-count
Advanced tools
Comparing version 23.0.0 to 23.1.0
{ | ||
"name": "@ckeditor/ckeditor5-word-count", | ||
"version": "23.0.0", | ||
"version": "23.1.0", | ||
"description": "Word count and character count features for CKEditor 5.", | ||
@@ -13,17 +13,17 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "^23.0.0", | ||
"@ckeditor/ckeditor5-ui": "^23.0.0", | ||
"@ckeditor/ckeditor5-core": "^23.1.0", | ||
"@ckeditor/ckeditor5-ui": "^23.1.0", | ||
"lodash-es": "^4.17.15" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-basic-styles": "^23.0.0", | ||
"@ckeditor/ckeditor5-block-quote": "^23.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^23.0.0", | ||
"@ckeditor/ckeditor5-engine": "^23.0.0", | ||
"@ckeditor/ckeditor5-enter": "^23.0.0", | ||
"@ckeditor/ckeditor5-link": "^23.0.0", | ||
"@ckeditor/ckeditor5-list": "^23.0.0", | ||
"@ckeditor/ckeditor5-paragraph": "^23.0.0", | ||
"@ckeditor/ckeditor5-table": "^23.0.0", | ||
"@ckeditor/ckeditor5-utils": "^23.0.0" | ||
"@ckeditor/ckeditor5-basic-styles": "^23.1.0", | ||
"@ckeditor/ckeditor5-block-quote": "^23.1.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^23.1.0", | ||
"@ckeditor/ckeditor5-engine": "^23.1.0", | ||
"@ckeditor/ckeditor5-enter": "^23.1.0", | ||
"@ckeditor/ckeditor5-link": "^23.1.0", | ||
"@ckeditor/ckeditor5-list": "^23.1.0", | ||
"@ckeditor/ckeditor5-paragraph": "^23.1.0", | ||
"@ckeditor/ckeditor5-table": "^23.1.0", | ||
"@ckeditor/ckeditor5-utils": "^23.1.0" | ||
}, | ||
@@ -30,0 +30,0 @@ "engines": { |
@@ -206,3 +206,3 @@ /** | ||
this.bind( '_wordsLabel' ).to( this, 'words', words => { | ||
return t( 'Words: %0', [ words ] ); | ||
return t( 'Words: %0', words ); | ||
} ); | ||
@@ -225,3 +225,3 @@ | ||
this.bind( '_charactersLabel' ).to( this, 'characters', words => { | ||
return t( 'Characters: %0', [ words ] ); | ||
return t( 'Characters: %0', words ); | ||
} ); | ||
@@ -228,0 +228,0 @@ |
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
58545
47