@ckeditor/ckeditor5-image 45.1.0 → 45.2.0-alpha.1

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": "45.1.0",
3
+ "version": "45.2.0-alpha.1",
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": "45.1.0",
17
- "@ckeditor/ckeditor5-core": "45.1.0",
18
- "@ckeditor/ckeditor5-engine": "45.1.0",
19
- "@ckeditor/ckeditor5-icons": "45.1.0",
20
- "@ckeditor/ckeditor5-typing": "45.1.0",
21
- "@ckeditor/ckeditor5-ui": "45.1.0",
22
- "@ckeditor/ckeditor5-undo": "45.1.0",
23
- "@ckeditor/ckeditor5-upload": "45.1.0",
24
- "@ckeditor/ckeditor5-utils": "45.1.0",
25
- "@ckeditor/ckeditor5-widget": "45.1.0",
26
- "ckeditor5": "45.1.0",
16
+ "@ckeditor/ckeditor5-clipboard": "45.2.0-alpha.1",
17
+ "@ckeditor/ckeditor5-core": "45.2.0-alpha.1",
18
+ "@ckeditor/ckeditor5-engine": "45.2.0-alpha.1",
19
+ "@ckeditor/ckeditor5-icons": "45.2.0-alpha.1",
20
+ "@ckeditor/ckeditor5-typing": "45.2.0-alpha.1",
21
+ "@ckeditor/ckeditor5-ui": "45.2.0-alpha.1",
22
+ "@ckeditor/ckeditor5-undo": "45.2.0-alpha.1",
23
+ "@ckeditor/ckeditor5-upload": "45.2.0-alpha.1",
24
+ "@ckeditor/ckeditor5-utils": "45.2.0-alpha.1",
25
+ "@ckeditor/ckeditor5-widget": "45.2.0-alpha.1",
26
+ "ckeditor5": "45.2.0-alpha.1",
27
27
  "es-toolkit": "1.32.0"
28
28
  },
29
29
  "author": "CKSource (http://cksource.com/)",
@@ -146,7 +146,6 @@ export default class ImageUploadEditing extends Plugin {
146
146
  if (!uploadImageCommand.isAccessAllowed) {
147
147
  const notification = editor.plugins.get('Notification');
148
148
  const t = editor.locale.t;
149
- // eslint-disable-next-line max-len
150
149
  notification.showWarning(t('You have no image upload permissions.'), {
151
150
  namespace: 'image'
152
151
  });
@@ -5,7 +5,6 @@
5
5
  /**
6
6
  * @module image/imageupload/imageuploadprogress
7
7
  */
8
- /* globals setTimeout */
9
8
  import { Plugin } from 'ckeditor5/src/core.js';
10
9
  import { FileRepository } from 'ckeditor5/src/upload.js';
11
10
  import '../../theme/imageuploadprogress.css';