@ckeditor/ckeditor5-enter 32.0.0 → 34.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md CHANGED
@@ -2,7 +2,7 @@ Software License Agreement
2
2
  ==========================
3
3
 
4
4
  **CKEditor 5 enter feature** – https://github.com/ckeditor/ckeditor5-enter <br>
5
- Copyright (c) 2003-2022, [CKSource](http://cksource.com) Holding sp. z o.o. All rights reserved.
5
+ Copyright (c) 2003-2022, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
6
6
 
7
7
  Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html).
8
8
 
@@ -14,4 +14,4 @@ Where not otherwise indicated, all CKEditor content is authored by CKSource engi
14
14
  Trademarks
15
15
  ----------
16
16
 
17
- **CKEditor** is a trademark of [CKSource](http://cksource.com) Holding sp. z o.o. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
17
+ **CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
package/README.md CHANGED
@@ -3,7 +3,8 @@ CKEditor 5 enter feature
3
3
 
4
4
  [![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-enter.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-enter)
5
5
  [![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
6
- [![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://travis-ci.com/ckeditor/ckeditor5)
6
+ [![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://app.travis-ci.com/github/ckeditor/ckeditor5)
7
+ ![Dependency Status](https://img.shields.io/librariesio/release/npm/@ckeditor/ckeditor5-enter)
7
8
 
8
9
  This package implements the <kbd>Enter</kbd> and <kbd>Shift</kbd>+<kbd>Enter</kbd> (soft break) support for CKEditor 5.
9
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-enter",
3
- "version": "32.0.0",
3
+ "version": "34.1.0",
4
4
  "description": "Enter feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,18 +12,18 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "^32.0.0",
16
- "@ckeditor/ckeditor5-engine": "^32.0.0",
17
- "@ckeditor/ckeditor5-utils": "^32.0.0"
15
+ "@ckeditor/ckeditor5-core": "^34.1.0",
16
+ "@ckeditor/ckeditor5-engine": "^34.1.0",
17
+ "@ckeditor/ckeditor5-utils": "^34.1.0"
18
18
  },
19
19
  "devDependencies": {
20
- "@ckeditor/ckeditor5-basic-styles": "^32.0.0",
21
- "@ckeditor/ckeditor5-editor-classic": "^32.0.0",
22
- "@ckeditor/ckeditor5-heading": "^32.0.0",
23
- "@ckeditor/ckeditor5-link": "^32.0.0",
24
- "@ckeditor/ckeditor5-paragraph": "^32.0.0",
25
- "@ckeditor/ckeditor5-typing": "^32.0.0",
26
- "@ckeditor/ckeditor5-undo": "^32.0.0"
20
+ "@ckeditor/ckeditor5-basic-styles": "^34.1.0",
21
+ "@ckeditor/ckeditor5-editor-classic": "^34.1.0",
22
+ "@ckeditor/ckeditor5-heading": "^34.1.0",
23
+ "@ckeditor/ckeditor5-link": "^34.1.0",
24
+ "@ckeditor/ckeditor5-paragraph": "^34.1.0",
25
+ "@ckeditor/ckeditor5-typing": "^34.1.0",
26
+ "@ckeditor/ckeditor5-undo": "^34.1.0"
27
27
  },
28
28
  "engines": {
29
29
  "node": ">=14.0.0",
@@ -13,7 +13,7 @@ import BubblingEventInfo from '@ckeditor/ckeditor5-engine/src/view/observer/bubb
13
13
  import { keyCodes } from '@ckeditor/ckeditor5-utils/src/keyboard';
14
14
 
15
15
  /**
16
- * Enter observer introduces the {@link module:engine/view/document~Document#event:enter} event.
16
+ * Enter observer introduces the {@link module:engine/view/document~Document#event:enter `Document#enter`} event.
17
17
  *
18
18
  * @extends module:engine/view/observer/observer~Observer
19
19
  */