@ckeditor/ckeditor5-image 46.0.1-alpha.5 → 46.0.1-alpha.6
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +12 -12
- package/src/imageupload/imageuploadediting.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-image",
|
|
3
|
-
"version": "46.0.1-alpha.
|
|
3
|
+
"version": "46.0.1-alpha.6",
|
|
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": "46.0.1-alpha.
|
|
17
|
-
"@ckeditor/ckeditor5-core": "46.0.1-alpha.
|
|
18
|
-
"@ckeditor/ckeditor5-engine": "46.0.1-alpha.
|
|
19
|
-
"@ckeditor/ckeditor5-icons": "46.0.1-alpha.
|
|
20
|
-
"@ckeditor/ckeditor5-typing": "46.0.1-alpha.
|
|
21
|
-
"@ckeditor/ckeditor5-ui": "46.0.1-alpha.
|
|
22
|
-
"@ckeditor/ckeditor5-undo": "46.0.1-alpha.
|
|
23
|
-
"@ckeditor/ckeditor5-upload": "46.0.1-alpha.
|
|
24
|
-
"@ckeditor/ckeditor5-utils": "46.0.1-alpha.
|
|
25
|
-
"@ckeditor/ckeditor5-widget": "46.0.1-alpha.
|
|
26
|
-
"ckeditor5": "46.0.1-alpha.
|
|
16
|
+
"@ckeditor/ckeditor5-clipboard": "46.0.1-alpha.6",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "46.0.1-alpha.6",
|
|
18
|
+
"@ckeditor/ckeditor5-engine": "46.0.1-alpha.6",
|
|
19
|
+
"@ckeditor/ckeditor5-icons": "46.0.1-alpha.6",
|
|
20
|
+
"@ckeditor/ckeditor5-typing": "46.0.1-alpha.6",
|
|
21
|
+
"@ckeditor/ckeditor5-ui": "46.0.1-alpha.6",
|
|
22
|
+
"@ckeditor/ckeditor5-undo": "46.0.1-alpha.6",
|
|
23
|
+
"@ckeditor/ckeditor5-upload": "46.0.1-alpha.6",
|
|
24
|
+
"@ckeditor/ckeditor5-utils": "46.0.1-alpha.6",
|
|
25
|
+
"@ckeditor/ckeditor5-widget": "46.0.1-alpha.6",
|
|
26
|
+
"ckeditor5": "46.0.1-alpha.6",
|
|
27
27
|
"es-toolkit": "1.39.5"
|
|
28
28
|
},
|
|
29
29
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -379,7 +379,7 @@ export class ImageUploadEditing extends Plugin {
|
|
|
379
379
|
model.enqueueChange({ isUndoable: false }, writer => {
|
|
380
380
|
for (const imageElement of imageUploadElements.get(loader.id)) {
|
|
381
381
|
// Handle situation when the image has been removed and then `abort` exception was thrown.
|
|
382
|
-
// See: https://github.com/
|
|
382
|
+
// See: https://github.com/ckeditor/ckeditor5-commercial/issues/6817
|
|
383
383
|
if (imageElement.root.rootName !== '$graveyard') {
|
|
384
384
|
writer.remove(imageElement);
|
|
385
385
|
}
|