@ckeditor/ckeditor5-typing 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 +1 -1
- package/README.md +2 -2
- package/ckeditor5-metadata.json +11 -0
- package/package.json +18 -17
package/LICENSE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Software License Agreement
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
|
-
**CKEditor 5
|
|
4
|
+
**CKEditor 5 typing feature** – https://github.com/ckeditor/ckeditor5-typing <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 typing feature
|
|
|
2
2
|
========================================
|
|
3
3
|
|
|
4
4
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-typing)
|
|
5
|
-
[](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
|
6
|
+
[](https://travis-ci.com/ckeditor/ckeditor5)
|
|
7
7
|
|
|
8
8
|
This package implements support for typing (inputting and deleting text) in CKEditor 5. It also includes the automatic text transformations (autocorrect) feature that lets you automatically turn predefined snippets into their improved forms.
|
|
9
9
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"plugins": [
|
|
3
|
+
{
|
|
4
|
+
"name": "Text transformation",
|
|
5
|
+
"className": "TextTransformation",
|
|
6
|
+
"description": "Enables support for the autocorrection. It automatically turns predefined snippets into their typographically improved forms. For example, (tm) becomes ™ and 1/2 becomes ½.",
|
|
7
|
+
"docs": "features/text-transformation.html",
|
|
8
|
+
"path": "src/texttransformation.js"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-typing",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "29.2.0",
|
|
4
4
|
"description": "Typing feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -12,24 +12,24 @@
|
|
|
12
12
|
],
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@ckeditor/ckeditor5-core": "^
|
|
16
|
-
"@ckeditor/ckeditor5-engine": "^
|
|
17
|
-
"@ckeditor/ckeditor5-utils": "^
|
|
15
|
+
"@ckeditor/ckeditor5-core": "^29.2.0",
|
|
16
|
+
"@ckeditor/ckeditor5-engine": "^29.2.0",
|
|
17
|
+
"@ckeditor/ckeditor5-utils": "^29.2.0",
|
|
18
18
|
"lodash-es": "^4.17.15"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@ckeditor/ckeditor5-basic-styles": "^
|
|
22
|
-
"@ckeditor/ckeditor5-block-quote": "^
|
|
23
|
-
"@ckeditor/ckeditor5-editor-classic": "^
|
|
24
|
-
"@ckeditor/ckeditor5-enter": "^
|
|
25
|
-
"@ckeditor/ckeditor5-essentials": "^
|
|
26
|
-
"@ckeditor/ckeditor5-heading": "^
|
|
27
|
-
"@ckeditor/ckeditor5-image": "^
|
|
28
|
-
"@ckeditor/ckeditor5-link": "^
|
|
29
|
-
"@ckeditor/ckeditor5-list": "^
|
|
30
|
-
"@ckeditor/ckeditor5-paragraph": "^
|
|
31
|
-
"@ckeditor/ckeditor5-undo": "^
|
|
32
|
-
"@ckeditor/ckeditor5-code-block": "^
|
|
21
|
+
"@ckeditor/ckeditor5-basic-styles": "^29.2.0",
|
|
22
|
+
"@ckeditor/ckeditor5-block-quote": "^29.2.0",
|
|
23
|
+
"@ckeditor/ckeditor5-editor-classic": "^29.2.0",
|
|
24
|
+
"@ckeditor/ckeditor5-enter": "^29.2.0",
|
|
25
|
+
"@ckeditor/ckeditor5-essentials": "^29.2.0",
|
|
26
|
+
"@ckeditor/ckeditor5-heading": "^29.2.0",
|
|
27
|
+
"@ckeditor/ckeditor5-image": "^29.2.0",
|
|
28
|
+
"@ckeditor/ckeditor5-link": "^29.2.0",
|
|
29
|
+
"@ckeditor/ckeditor5-list": "^29.2.0",
|
|
30
|
+
"@ckeditor/ckeditor5-paragraph": "^29.2.0",
|
|
31
|
+
"@ckeditor/ckeditor5-undo": "^29.2.0",
|
|
32
|
+
"@ckeditor/ckeditor5-code-block": "^29.2.0"
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
35
|
"node": ">=12.0.0",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"files": [
|
|
48
48
|
"lang",
|
|
49
49
|
"src",
|
|
50
|
-
"theme"
|
|
50
|
+
"theme",
|
|
51
|
+
"ckeditor5-metadata.json"
|
|
51
52
|
]
|
|
52
53
|
}
|