@ckeditor/ckeditor5-ckbox 37.0.0-alpha.1 → 37.0.0-alpha.3

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-ckbox",
3
- "version": "37.0.0-alpha.1",
3
+ "version": "37.0.0-alpha.3",
4
4
  "description": "CKBox integration for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,23 +12,23 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "ckeditor5": "^37.0.0-alpha.1"
15
+ "ckeditor5": "^37.0.0-alpha.3"
16
16
  },
17
17
  "devDependencies": {
18
- "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.1",
19
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
20
- "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.1",
21
- "@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.1",
18
+ "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3",
19
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
20
+ "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3",
21
+ "@ckeditor/ckeditor5-cloud-services": "^37.0.0-alpha.3",
22
22
  "@ckeditor/ckeditor5-dev-utils": "^35.0.0",
23
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
24
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
25
- "@ckeditor/ckeditor5-image": "^37.0.0-alpha.1",
26
- "@ckeditor/ckeditor5-link": "^37.0.0-alpha.1",
27
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
28
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
29
- "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1",
30
- "@ckeditor/ckeditor5-upload": "^37.0.0-alpha.1",
31
- "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
23
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
24
+ "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
25
+ "@ckeditor/ckeditor5-image": "^37.0.0-alpha.3",
26
+ "@ckeditor/ckeditor5-link": "^37.0.0-alpha.3",
27
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
28
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
29
+ "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3",
30
+ "@ckeditor/ckeditor5-upload": "^37.0.0-alpha.3",
31
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
32
32
  "typescript": "^4.8.4",
33
33
  "webpack": "^5.58.1",
34
34
  "webpack-cli": "^4.9.0"
package/src/ckbox.d.ts CHANGED
@@ -5,7 +5,9 @@
5
5
  /**
6
6
  * @module ckbox/ckbox
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import CKBoxUI from './ckboxui';
10
+ import CKBoxEditing from './ckboxediting';
9
11
  /**
10
12
  * The CKBox feature, a bridge between the CKEditor 5 WYSIWYG editor and the CKBox file manager and uploader.
11
13
  *
@@ -27,5 +29,5 @@ export default class CKBox extends Plugin {
27
29
  /**
28
30
  * @inheritDoc
29
31
  */
30
- static get requires(): PluginDependencies;
32
+ static get requires(): readonly [typeof CKBoxEditing, typeof CKBoxUI];
31
33
  }
@@ -6,7 +6,8 @@
6
6
  * @module ckbox/ckboxediting
7
7
  */
8
8
  import type { InitializedToken } from '@ckeditor/ckeditor5-cloud-services';
9
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
9
+ import { Plugin } from 'ckeditor5/src/core';
10
+ import CKBoxUploadAdapter from './ckboxuploadadapter';
10
11
  /**
11
12
  * The CKBox editing feature. It introduces the {@link module:ckbox/ckboxcommand~CKBoxCommand CKBox command} and
12
13
  * {@link module:ckbox/ckboxuploadadapter~CKBoxUploadAdapter CKBox upload adapter}.
@@ -23,7 +24,7 @@ export default class CKBoxEditing extends Plugin {
23
24
  /**
24
25
  * @inheritDoc
25
26
  */
26
- static get requires(): PluginDependencies;
27
+ static get requires(): readonly ["CloudServices", "LinkEditing", "PictureEditing", typeof CKBoxUploadAdapter];
27
28
  /**
28
29
  * @inheritDoc
29
30
  */
@@ -5,7 +5,9 @@
5
5
  /**
6
6
  * @module ckbox/ckboxuploadadapter
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import { FileRepository } from 'ckeditor5/src/upload';
10
+ import CKBoxEditing from './ckboxediting';
9
11
  /**
10
12
  * A plugin that enables file uploads in CKEditor 5 using the CKBox server–side connector.
11
13
  * See the {@glink features/images/image-upload/ckbox CKBox file manager integration} guide to learn how to configure
@@ -19,7 +21,7 @@ export default class CKBoxUploadAdapter extends Plugin {
19
21
  /**
20
22
  * @inheritDoc
21
23
  */
22
- static get requires(): PluginDependencies;
24
+ static get requires(): readonly ["ImageUploadEditing", "ImageUploadProgress", typeof FileRepository, typeof CKBoxEditing];
23
25
  /**
24
26
  * @inheritDoc
25
27
  */