@ckeditor/ckeditor5-image 46.1.1 → 47.0.0-alpha.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/build/image.js +1 -1
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
- package/src/imageresize/imageresizeediting.d.ts +9 -0
- package/src/imageresize/imageresizeediting.js +13 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-image",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "47.0.0-alpha.0",
|
|
4
4
|
"description": "Image feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,17 +13,17 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@ckeditor/ckeditor5-clipboard": "
|
|
17
|
-
"@ckeditor/ckeditor5-core": "
|
|
18
|
-
"@ckeditor/ckeditor5-engine": "
|
|
19
|
-
"@ckeditor/ckeditor5-icons": "
|
|
20
|
-
"@ckeditor/ckeditor5-typing": "
|
|
21
|
-
"@ckeditor/ckeditor5-ui": "
|
|
22
|
-
"@ckeditor/ckeditor5-undo": "
|
|
23
|
-
"@ckeditor/ckeditor5-upload": "
|
|
24
|
-
"@ckeditor/ckeditor5-utils": "
|
|
25
|
-
"@ckeditor/ckeditor5-widget": "
|
|
26
|
-
"ckeditor5": "
|
|
16
|
+
"@ckeditor/ckeditor5-clipboard": "47.0.0-alpha.0",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "47.0.0-alpha.0",
|
|
18
|
+
"@ckeditor/ckeditor5-engine": "47.0.0-alpha.0",
|
|
19
|
+
"@ckeditor/ckeditor5-icons": "47.0.0-alpha.0",
|
|
20
|
+
"@ckeditor/ckeditor5-typing": "47.0.0-alpha.0",
|
|
21
|
+
"@ckeditor/ckeditor5-ui": "47.0.0-alpha.0",
|
|
22
|
+
"@ckeditor/ckeditor5-undo": "47.0.0-alpha.0",
|
|
23
|
+
"@ckeditor/ckeditor5-upload": "47.0.0-alpha.0",
|
|
24
|
+
"@ckeditor/ckeditor5-utils": "47.0.0-alpha.0",
|
|
25
|
+
"@ckeditor/ckeditor5-widget": "47.0.0-alpha.0",
|
|
26
|
+
"ckeditor5": "47.0.0-alpha.0",
|
|
27
27
|
"es-toolkit": "1.39.5"
|
|
28
28
|
},
|
|
29
29
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -19,10 +19,19 @@ export declare class ImageResizeEditing extends Plugin {
|
|
|
19
19
|
* @inheritDoc
|
|
20
20
|
*/
|
|
21
21
|
static get pluginName(): "ImageResizeEditing";
|
|
22
|
+
/**
|
|
23
|
+
* @inheritDoc
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
static get licenseFeatureCode(): string;
|
|
22
27
|
/**
|
|
23
28
|
* @inheritDoc
|
|
24
29
|
*/
|
|
25
30
|
static get isOfficialPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
static get isPremiumPlugin(): true;
|
|
26
35
|
/**
|
|
27
36
|
* @inheritDoc
|
|
28
37
|
*/
|
|
@@ -25,12 +25,25 @@ export class ImageResizeEditing extends Plugin {
|
|
|
25
25
|
static get pluginName() {
|
|
26
26
|
return 'ImageResizeEditing';
|
|
27
27
|
}
|
|
28
|
+
/**
|
|
29
|
+
* @inheritDoc
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
static get licenseFeatureCode() {
|
|
33
|
+
return 'IR';
|
|
34
|
+
}
|
|
28
35
|
/**
|
|
29
36
|
* @inheritDoc
|
|
30
37
|
*/
|
|
31
38
|
static get isOfficialPlugin() {
|
|
32
39
|
return true;
|
|
33
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* @inheritDoc
|
|
43
|
+
*/
|
|
44
|
+
static get isPremiumPlugin() {
|
|
45
|
+
return true;
|
|
46
|
+
}
|
|
34
47
|
/**
|
|
35
48
|
* @inheritDoc
|
|
36
49
|
*/
|