@ckeditor/ckeditor5-paragraph 27.1.0 → 29.2.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
@@ -1,7 +1,7 @@
1
1
  Software License Agreement
2
2
  ==========================
3
3
 
4
- **CKEditor 5 Paragraph Feature** – https://github.com/ckeditor/ckeditor5-paragraph <br>
4
+ **CKEditor 5 paragraph feature** – https://github.com/ckeditor/ckeditor5-paragraph <br>
5
5
  Copyright (c) 2003-2021, [CKSource](http://cksource.com) Frederico Knabben. 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).
package/README.md CHANGED
@@ -2,8 +2,8 @@ CKEditor 5 paragraph feature
2
2
  ========================================
3
3
 
4
4
  [![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-paragraph.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-paragraph)
5
- [![Dependency Status](https://david-dm.org/ckeditor/ckeditor5-paragraph/status.svg)](https://david-dm.org/ckeditor/ckeditor5-paragraph)
6
- [![devDependency Status](https://david-dm.org/ckeditor/ckeditor5-paragraph/dev-status.svg)](https://david-dm.org/ckeditor/ckeditor5-paragraph?type=dev)
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)
7
7
 
8
8
  This package implements paragraph support for CKEditor 5.
9
9
 
@@ -0,0 +1,17 @@
1
+ {
2
+ "plugins": [
3
+ {
4
+ "name": "Paragraph",
5
+ "className": "Paragraph",
6
+ "description": "Enables support for adding paragraphs to your content.",
7
+ "path": "src/paragraph.js",
8
+ "htmlOutput": [
9
+ {
10
+ "elements": "p",
11
+ "implements": "$block",
12
+ "_comment": "The HTML element may contain classes, styles or attributes that are created by other plugins, which alter the <code>`$block`</code> element."
13
+ }
14
+ ]
15
+ }
16
+ ]
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-paragraph",
3
- "version": "27.1.0",
3
+ "version": "29.2.0",
4
4
  "description": "Paragraph feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,20 +12,20 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "^27.1.0",
16
- "@ckeditor/ckeditor5-ui": "^27.1.0",
17
- "@ckeditor/ckeditor5-utils": "^27.1.0"
15
+ "@ckeditor/ckeditor5-core": "^29.2.0",
16
+ "@ckeditor/ckeditor5-ui": "^29.2.0",
17
+ "@ckeditor/ckeditor5-utils": "^29.2.0"
18
18
  },
19
19
  "devDependencies": {
20
- "@ckeditor/ckeditor5-basic-styles": "^27.1.0",
21
- "@ckeditor/ckeditor5-clipboard": "^27.1.0",
22
- "@ckeditor/ckeditor5-editor-classic": "^27.1.0",
23
- "@ckeditor/ckeditor5-engine": "^27.1.0",
24
- "@ckeditor/ckeditor5-enter": "^27.1.0",
25
- "@ckeditor/ckeditor5-heading": "^27.1.0",
26
- "@ckeditor/ckeditor5-link": "^27.1.0",
27
- "@ckeditor/ckeditor5-typing": "^27.1.0",
28
- "@ckeditor/ckeditor5-undo": "^27.1.0"
20
+ "@ckeditor/ckeditor5-basic-styles": "^29.2.0",
21
+ "@ckeditor/ckeditor5-clipboard": "^29.2.0",
22
+ "@ckeditor/ckeditor5-editor-classic": "^29.2.0",
23
+ "@ckeditor/ckeditor5-engine": "^29.2.0",
24
+ "@ckeditor/ckeditor5-enter": "^29.2.0",
25
+ "@ckeditor/ckeditor5-heading": "^29.2.0",
26
+ "@ckeditor/ckeditor5-link": "^29.2.0",
27
+ "@ckeditor/ckeditor5-typing": "^29.2.0",
28
+ "@ckeditor/ckeditor5-undo": "^29.2.0"
29
29
  },
30
30
  "engines": {
31
31
  "node": ">=12.0.0",
@@ -43,6 +43,7 @@
43
43
  "files": [
44
44
  "lang",
45
45
  "src",
46
- "theme"
46
+ "theme",
47
+ "ckeditor5-metadata.json"
47
48
  ]
48
49
  }