Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-word-count

Package Overview
Dependencies
Maintainers
1
Versions
601
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 10.0.0 to 10.0.1

5

CHANGELOG.md
Changelog
=========
## [10.0.1](https://github.com/ckeditor/ckeditor5-word-count/compare/v10.0.0...v10.0.1) (2019-07-10)
Internal changes only (updated dependencies, documentation, etc.).
## [10.0.0](https://github.com/ckeditor/ckeditor5-word-count/tree/v10.0.0) (2019-07-04)
The initial font feature implementation.

28

package.json
{
"name": "@ckeditor/ckeditor5-word-count",
"version": "10.0.0",
"version": "10.0.1",
"description": "Word count feature for CKEditor 5.",

@@ -13,19 +13,19 @@ "keywords": [

"dependencies": {
"@ckeditor/ckeditor5-core": "^12.2.0",
"@ckeditor/ckeditor5-ui": "^13.0.1",
"@ckeditor/ckeditor5-core": "^12.2.1",
"@ckeditor/ckeditor5-ui": "^13.0.2",
"lodash-es": "^4.17.10"
},
"devDependencies": {
"@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",
"@ckeditor/ckeditor5-basic-styles": "^11.1.3",
"@ckeditor/ckeditor5-block-quote": "^11.1.2",
"@ckeditor/ckeditor5-editor-classic": "^12.1.3",
"@ckeditor/ckeditor5-engine": "^13.2.1",
"@ckeditor/ckeditor5-enter": "^11.0.4",
"@ckeditor/ckeditor5-link": "^11.1.1",
"@ckeditor/ckeditor5-list": "^12.0.4",
"@ckeditor/ckeditor5-paragraph": "^11.0.4",
"@ckeditor/ckeditor5-table": "^13.0.2",
"@ckeditor/ckeditor5-utils": "^13.0.1",
"eslint": "^5.5.0",
"eslint-config-ckeditor5": "^1.0.11",
"eslint-config-ckeditor5": "^2.0.0",
"husky": "^1.3.1",

@@ -32,0 +32,0 @@ "lint-staged": "^7.0.0"

@@ -7,3 +7,3 @@ /**

/**
* @module wordcount/utils
* @module word-count/utils
*/

@@ -10,0 +10,0 @@

@@ -7,3 +7,3 @@ /**

/**
* @module wordcount/wordcount
* @module word-count/wordcount
*/

@@ -23,3 +23,3 @@

*
* Firstly model's data are convert to plain text using {@link module:wordcount/utils.modelElementToPlainText}.
* Firstly model's data are convert to plain text using {@link module:word-count/utils.modelElementToPlainText}.
* Based on such created plain text there are determined amount of words and characters in your text. Please keep in mind

@@ -60,3 +60,3 @@ * that every block in the editor is separate with a newline character, which is included in the calculation.

* @readonly
* @member {Number} module:wordcount/wordcount~WordCount#characters
* @member {Number} module:word-count/wordcount~WordCount#characters
*/

@@ -70,3 +70,3 @@ this.set( 'characters', 0 );

* @readonly
* @member {Number} module:wordcount/wordcount~WordCount#words
* @member {Number} module:word-count/wordcount~WordCount#words
*/

@@ -81,3 +81,3 @@ this.set( 'words', 0 );

* @readonly
* @member {String} module:wordcount/wordcount~WordCount#_wordsLabel
* @member {String} module:word-count/wordcount~WordCount#_wordsLabel
*/

@@ -92,3 +92,3 @@ this.set( '_wordsLabel' );

* @readonly
* @member {String} module:wordcount/wordcount~WordCount#_charactersLabel
* @member {String} module:word-count/wordcount~WordCount#_charactersLabel
*/

@@ -268,3 +268,3 @@ this.set( '_charactersLabel' );

*
* @interface module:wordcount/wordcount~WordCountConfig
* @interface module:word-count/wordcount~WordCountConfig
*/

@@ -274,7 +274,7 @@

* The configuration of the word count feature.
* It is introduced by the {@link module:wordcount/wordcount~WordCount} feature.
* It is introduced by the {@link module:word-count/wordcount~WordCount} feature.
*
* Read more in {@link module:wordcount/wordcount~WordCountConfig}.
* Read more in {@link module:word-count/wordcount~WordCountConfig}.
*
* @member {module:wordcount/wordcount~WordCountConfig} module:core/editor/editorconfig~EditorConfig#wordCount
* @member {module:word-count/wordcount~WordCountConfig} module:core/editor/editorconfig~EditorConfig#wordCount
*/

@@ -284,3 +284,3 @@

* This option allows for hiding the word count. The element obtained through
* {@link module:wordcount/wordcount~WordCount#wordCountContainer} will only preserve
* {@link module:word-count/wordcount~WordCount#wordCountContainer} will only preserve
* the characters part. word count is displayed by default when this configuration option is not defined.

@@ -298,3 +298,3 @@ *

*
* @member {Boolean} module:wordcount/wordcount~WordCountConfig#displayWords
* @member {Boolean} module:word-count/wordcount~WordCountConfig#displayWords
*/

@@ -304,3 +304,3 @@

* This option allows for hiding the character counter. The element obtained through
* {@link module:wordcount/wordcount~WordCount#wordCountContainer} will only preserve
* {@link module:word-count/wordcount~WordCount#wordCountContainer} will only preserve
* the words part. Character counter is displayed by default when this configuration option is not defined.

@@ -318,3 +318,3 @@ *

*
* @member {Boolean} module:wordcount/wordcount~WordCountConfig#displayCharacters
* @member {Boolean} module:word-count/wordcount~WordCountConfig#displayCharacters
*/

@@ -334,3 +334,3 @@

*
* @member {Function} module:wordcount/wordcount~WordCountConfig#onUpdate
* @member {Function} module:word-count/wordcount~WordCountConfig#onUpdate
*/

@@ -340,3 +340,3 @@

* This option allows on providing an HTML element where
* {@link module:wordcount/wordcount~WordCount#wordCountContainer word count container} will be appended automatically.
* {@link module:word-count/wordcount~WordCount#wordCountContainer word count container} will be appended automatically.
*

@@ -347,3 +347,3 @@ * const wordCountConfig = {

*
* @member {HTMLElement} module:wordcount/wordcount~WordCountConfig#container
* @member {HTMLElement} module:word-count/wordcount~WordCountConfig#container
*/
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