@ckeditor/ckeditor5-clipboard 43.2.0-alpha.6 → 43.2.0-alpha.7

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": "43.2.0-alpha.6",
3
+ "version": "43.2.0-alpha.7",
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": "43.2.0-alpha.6",
17
- "@ckeditor/ckeditor5-engine": "43.2.0-alpha.6",
18
- "@ckeditor/ckeditor5-ui": "43.2.0-alpha.6",
19
- "@ckeditor/ckeditor5-utils": "43.2.0-alpha.6",
20
- "@ckeditor/ckeditor5-widget": "43.2.0-alpha.6",
16
+ "@ckeditor/ckeditor5-core": "43.2.0-alpha.7",
17
+ "@ckeditor/ckeditor5-engine": "43.2.0-alpha.7",
18
+ "@ckeditor/ckeditor5-ui": "43.2.0-alpha.7",
19
+ "@ckeditor/ckeditor5-utils": "43.2.0-alpha.7",
20
+ "@ckeditor/ckeditor5-widget": "43.2.0-alpha.7",
21
21
  "lodash-es": "4.17.21"
22
22
  },
23
23
  "author": "CKSource (http://cksource.com/)",
package/src/index.d.ts CHANGED
@@ -8,6 +8,7 @@
8
8
  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
+ export { default as plainTextToHtml } from './utils/plaintexttohtml.js';
11
12
  export type { ClipboardEventData } from './clipboardobserver.js';
12
13
  export { default as DragDrop } from './dragdrop.js';
13
14
  export { default as PastePlainText } from './pasteplaintext.js';
package/src/index.js CHANGED
@@ -8,6 +8,7 @@
8
8
  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
+ export { default as plainTextToHtml } from './utils/plaintexttohtml.js';
11
12
  export { default as DragDrop } from './dragdrop.js';
12
13
  export { default as PastePlainText } from './pasteplaintext.js';
13
14
  export { default as DragDropTarget } from './dragdroptarget.js';