@ckeditor/ckeditor5-clipboard 44.2.1-alpha.0 → 44.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-clipboard",
3
- "version": "44.2.1-alpha.0",
3
+ "version": "44.3.0-alpha.0",
4
4
  "description": "Clipboard integration feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,11 +13,11 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "44.2.1-alpha.0",
17
- "@ckeditor/ckeditor5-engine": "44.2.1-alpha.0",
18
- "@ckeditor/ckeditor5-ui": "44.2.1-alpha.0",
19
- "@ckeditor/ckeditor5-utils": "44.2.1-alpha.0",
20
- "@ckeditor/ckeditor5-widget": "44.2.1-alpha.0",
16
+ "@ckeditor/ckeditor5-core": "44.3.0-alpha.0",
17
+ "@ckeditor/ckeditor5-engine": "44.3.0-alpha.0",
18
+ "@ckeditor/ckeditor5-ui": "44.3.0-alpha.0",
19
+ "@ckeditor/ckeditor5-utils": "44.3.0-alpha.0",
20
+ "@ckeditor/ckeditor5-widget": "44.3.0-alpha.0",
21
21
  "lodash-es": "4.17.21"
22
22
  },
23
23
  "author": "CKSource (http://cksource.com/)",
@@ -35,7 +35,6 @@
35
35
  "src/**/*.js",
36
36
  "src/**/*.d.ts",
37
37
  "theme",
38
- "ckeditor5-metadata.json",
39
38
  "CHANGELOG.md"
40
39
  ],
41
40
  "types": "src/index.d.ts",
@@ -57,7 +56,6 @@
57
56
  },
58
57
  "./lang/*": "./lang/*",
59
58
  "./theme/*": "./theme/*",
60
- "./ckeditor5-metadata.json": "./ckeditor5-metadata.json",
61
59
  "./package.json": "./package.json"
62
60
  }
63
61
  }
package/src/index.d.ts CHANGED
@@ -9,6 +9,7 @@ export { default as Clipboard } from './clipboard.js';
9
9
  export { default as ClipboardPipeline, type ClipboardContentInsertionEvent, type ClipboardContentInsertionData, type ClipboardInputTransformationEvent, type ClipboardInputTransformationData, type ClipboardOutputTransformationEvent, type ClipboardOutputTransformationData, type ViewDocumentClipboardOutputEvent } from './clipboardpipeline.js';
10
10
  export { default as ClipboardMarkersUtils, type ClipboardMarkerRestrictedAction, type ClipboardMarkerConfiguration } from './clipboardmarkersutils.js';
11
11
  export { default as plainTextToHtml } from './utils/plaintexttohtml.js';
12
+ export { default as viewToPlainText } from './utils/viewtoplaintext.js';
12
13
  export type { ClipboardEventData } from './clipboardobserver.js';
13
14
  export { default as DragDrop } from './dragdrop.js';
14
15
  export { default as PastePlainText } from './pasteplaintext.js';
package/src/index.js CHANGED
@@ -9,6 +9,7 @@ export { default as Clipboard } from './clipboard.js';
9
9
  export { default as ClipboardPipeline } from './clipboardpipeline.js';
10
10
  export { default as ClipboardMarkersUtils } from './clipboardmarkersutils.js';
11
11
  export { default as plainTextToHtml } from './utils/plaintexttohtml.js';
12
+ export { default as viewToPlainText } from './utils/viewtoplaintext.js';
12
13
  export { default as DragDrop } from './dragdrop.js';
13
14
  export { default as PastePlainText } from './pasteplaintext.js';
14
15
  export { default as DragDropTarget } from './dragdroptarget.js';