@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-image",
3
- "version": "46.0.1-alpha.5",
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.5",
17
- "@ckeditor/ckeditor5-core": "46.0.1-alpha.5",
18
- "@ckeditor/ckeditor5-engine": "46.0.1-alpha.5",
19
- "@ckeditor/ckeditor5-icons": "46.0.1-alpha.5",
20
- "@ckeditor/ckeditor5-typing": "46.0.1-alpha.5",
21
- "@ckeditor/ckeditor5-ui": "46.0.1-alpha.5",
22
- "@ckeditor/ckeditor5-undo": "46.0.1-alpha.5",
23
- "@ckeditor/ckeditor5-upload": "46.0.1-alpha.5",
24
- "@ckeditor/ckeditor5-utils": "46.0.1-alpha.5",
25
- "@ckeditor/ckeditor5-widget": "46.0.1-alpha.5",
26
- "ckeditor5": "46.0.1-alpha.5",
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/cksource/ckeditor5-commercial/issues/6817
382
+ // See: https://github.com/ckeditor/ckeditor5-commercial/issues/6817
383
383
  if (imageElement.root.rootName !== '$graveyard') {
384
384
  writer.remove(imageElement);
385
385
  }