Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-word-count

Package Overview
Dependencies
Maintainers
1
Versions
688
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-word-count - npm Package Compare versions

Comparing version 0.0.1 to 10.0.0

CHANGELOG.md

18

package.json
{
"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 @@ * }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc