@ckeditor/ckeditor5-special-characters 37.0.0-alpha.2 → 37.0.0-alpha.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-special-characters",
|
|
3
|
-
"version": "37.0.0-alpha.
|
|
3
|
+
"version": "37.0.0-alpha.3",
|
|
4
4
|
"description": "Special characters feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
],
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"ckeditor5": "^37.0.0-alpha.
|
|
15
|
+
"ckeditor5": "^37.0.0-alpha.3"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.
|
|
19
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.
|
|
18
|
+
"@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.3",
|
|
19
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
|
|
20
20
|
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
|
|
21
|
-
"@ckeditor/ckeditor5-easy-image": "^37.0.0-alpha.
|
|
22
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.
|
|
23
|
-
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.
|
|
24
|
-
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.
|
|
25
|
-
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.
|
|
26
|
-
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.
|
|
27
|
-
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.
|
|
21
|
+
"@ckeditor/ckeditor5-easy-image": "^37.0.0-alpha.3",
|
|
22
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
|
|
23
|
+
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.3",
|
|
24
|
+
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
|
|
25
|
+
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3",
|
|
26
|
+
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3",
|
|
27
|
+
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
|
|
28
28
|
"typescript": "^4.8.4",
|
|
29
29
|
"webpack": "^5.58.1",
|
|
30
30
|
"webpack-cli": "^4.9.0"
|
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/specialcharacters
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin, type
|
|
8
|
+
import { Plugin, type Editor } from 'ckeditor5/src/core';
|
|
9
|
+
import { Typing } from 'ckeditor5/src/typing';
|
|
9
10
|
import '../theme/specialcharacters.css';
|
|
10
11
|
/**
|
|
11
12
|
* The special characters feature.
|
|
@@ -28,7 +29,7 @@ export default class SpecialCharacters extends Plugin {
|
|
|
28
29
|
/**
|
|
29
30
|
* @inheritDoc
|
|
30
31
|
*/
|
|
31
|
-
static get requires():
|
|
32
|
+
static get requires(): readonly [typeof Typing];
|
|
32
33
|
/**
|
|
33
34
|
* @inheritDoc
|
|
34
35
|
*/
|
|
@@ -5,7 +5,12 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module special-characters/specialcharactersessentials
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import SpecialCharactersCurrency from './specialcharacterscurrency';
|
|
10
|
+
import SpecialCharactersMathematical from './specialcharactersmathematical';
|
|
11
|
+
import SpecialCharactersArrows from './specialcharactersarrows';
|
|
12
|
+
import SpecialCharactersLatin from './specialcharacterslatin';
|
|
13
|
+
import SpecialCharactersText from './specialcharacterstext';
|
|
9
14
|
/**
|
|
10
15
|
* A plugin combining a basic set of characters for the special characters plugin.
|
|
11
16
|
*
|
|
@@ -26,5 +31,5 @@ export default class SpecialCharactersEssentials extends Plugin {
|
|
|
26
31
|
/**
|
|
27
32
|
* @inheritDoc
|
|
28
33
|
*/
|
|
29
|
-
static get requires():
|
|
34
|
+
static get requires(): readonly [typeof SpecialCharactersCurrency, typeof SpecialCharactersText, typeof SpecialCharactersMathematical, typeof SpecialCharactersArrows, typeof SpecialCharactersLatin];
|
|
30
35
|
}
|