@ckeditor/ckeditor5-ckfinder 37.0.0-alpha.1 → 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 +13 -13
- package/src/ckfinder.d.ts +4 -2
- package/src/ckfinderediting.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-ckfinder",
|
|
3
|
-
"version": "37.0.0-alpha.
|
|
3
|
+
"version": "37.0.0-alpha.3",
|
|
4
4
|
"description": "CKFinder integration for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -12,21 +12,21 @@
|
|
|
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-adapter-ckfinder": "^37.0.0-alpha.
|
|
19
|
-
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.
|
|
20
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.
|
|
18
|
+
"@ckeditor/ckeditor5-adapter-ckfinder": "^37.0.0-alpha.3",
|
|
19
|
+
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3",
|
|
20
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
|
|
21
21
|
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
|
|
22
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.
|
|
23
|
-
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.
|
|
24
|
-
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.
|
|
25
|
-
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.
|
|
26
|
-
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.
|
|
27
|
-
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.
|
|
28
|
-
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.
|
|
29
|
-
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.
|
|
22
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
|
|
23
|
+
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
|
|
24
|
+
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.3",
|
|
25
|
+
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.3",
|
|
26
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
|
|
27
|
+
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
|
|
28
|
+
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3",
|
|
29
|
+
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
|
|
30
30
|
"typescript": "^4.8.4",
|
|
31
31
|
"webpack": "^5.58.1",
|
|
32
32
|
"webpack-cli": "^4.9.0"
|
package/src/ckfinder.d.ts
CHANGED
|
@@ -5,7 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module ckfinder/ckfinder
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import CKFinderUI from './ckfinderui';
|
|
10
|
+
import CKFinderEditing from './ckfinderediting';
|
|
9
11
|
/**
|
|
10
12
|
* The CKFinder feature, a bridge between the CKEditor 5 WYSIWYG editor and the
|
|
11
13
|
* [CKFinder](https://ckeditor.com/ckfinder) file manager and uploader.
|
|
@@ -30,5 +32,5 @@ export default class CKFinder extends Plugin {
|
|
|
30
32
|
/**
|
|
31
33
|
* @inheritDoc
|
|
32
34
|
*/
|
|
33
|
-
static get requires():
|
|
35
|
+
static get requires(): readonly ["Link", "CKFinderUploadAdapter", typeof CKFinderEditing, typeof CKFinderUI];
|
|
34
36
|
}
|
package/src/ckfinderediting.d.ts
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module ckfinder/ckfinderediting
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import { Notification } from 'ckeditor5/src/ui';
|
|
9
10
|
/**
|
|
10
11
|
* The CKFinder editing feature. It introduces the {@link module:ckfinder/ckfindercommand~CKFinderCommand CKFinder command}.
|
|
11
12
|
*/
|
|
@@ -17,7 +18,7 @@ export default class CKFinderEditing extends Plugin {
|
|
|
17
18
|
/**
|
|
18
19
|
* @inheritDoc
|
|
19
20
|
*/
|
|
20
|
-
static get requires():
|
|
21
|
+
static get requires(): readonly [typeof Notification, "LinkEditing"];
|
|
21
22
|
/**
|
|
22
23
|
* @inheritDoc
|
|
23
24
|
*/
|