@ckeditor/ckeditor5-image 46.0.0-alpha.0 → 46.0.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": "46.0.0-alpha.0",
3
+ "version": "46.0.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": "46.0.0-alpha.0",
17
- "@ckeditor/ckeditor5-core": "46.0.0-alpha.0",
18
- "@ckeditor/ckeditor5-engine": "46.0.0-alpha.0",
19
- "@ckeditor/ckeditor5-icons": "46.0.0-alpha.0",
20
- "@ckeditor/ckeditor5-typing": "46.0.0-alpha.0",
21
- "@ckeditor/ckeditor5-ui": "46.0.0-alpha.0",
22
- "@ckeditor/ckeditor5-undo": "46.0.0-alpha.0",
23
- "@ckeditor/ckeditor5-upload": "46.0.0-alpha.0",
24
- "@ckeditor/ckeditor5-utils": "46.0.0-alpha.0",
25
- "@ckeditor/ckeditor5-widget": "46.0.0-alpha.0",
26
- "ckeditor5": "46.0.0-alpha.0",
16
+ "@ckeditor/ckeditor5-clipboard": "46.0.0-alpha.1",
17
+ "@ckeditor/ckeditor5-core": "46.0.0-alpha.1",
18
+ "@ckeditor/ckeditor5-engine": "46.0.0-alpha.1",
19
+ "@ckeditor/ckeditor5-icons": "46.0.0-alpha.1",
20
+ "@ckeditor/ckeditor5-typing": "46.0.0-alpha.1",
21
+ "@ckeditor/ckeditor5-ui": "46.0.0-alpha.1",
22
+ "@ckeditor/ckeditor5-undo": "46.0.0-alpha.1",
23
+ "@ckeditor/ckeditor5-upload": "46.0.0-alpha.1",
24
+ "@ckeditor/ckeditor5-utils": "46.0.0-alpha.1",
25
+ "@ckeditor/ckeditor5-widget": "46.0.0-alpha.1",
26
+ "ckeditor5": "46.0.0-alpha.1",
27
27
  "es-toolkit": "1.39.5"
28
28
  },
29
29
  "author": "CKSource (http://cksource.com/)",
@@ -92,6 +92,9 @@ declare function getDefaultDropdownDefinitions(pluginCollection: PluginCollectio
92
92
  * Displays a console warning with the 'image-style-configuration-definition-invalid' error.
93
93
  */
94
94
  declare function warnInvalidStyle(info: object): void;
95
+ /**
96
+ * @internal
97
+ */
95
98
  export declare const utils: {
96
99
  normalizeStyles: typeof normalizeStyles;
97
100
  getDefaultStylesConfiguration: typeof getDefaultStylesConfiguration;
@@ -322,6 +322,9 @@ function warnInvalidStyle(info) {
322
322
  */
323
323
  logWarning('image-style-configuration-definition-invalid', info);
324
324
  }
325
+ /**
326
+ * @internal
327
+ */
325
328
  export const utils = {
326
329
  normalizeStyles,
327
330
  getDefaultStylesConfiguration,
@@ -80,6 +80,8 @@ export declare class ImageUploadEditing extends Plugin {
80
80
  private _registerConverters;
81
81
  }
82
82
  /**
83
+ * TODO move this to the clipboard package.
84
+ *
83
85
  * Returns `true` if non-empty `text/html` is included in the data transfer.
84
86
  */
85
87
  export declare function isHtmlInDataTransfer(dataTransfer: ViewDataTransfer): boolean;
@@ -462,6 +462,8 @@ export class ImageUploadEditing extends Plugin {
462
462
  }
463
463
  }
464
464
  /**
465
+ * TODO move this to the clipboard package.
466
+ *
465
467
  * Returns `true` if non-empty `text/html` is included in the data transfer.
466
468
  */
467
469
  export function isHtmlInDataTransfer(dataTransfer) {