@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/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
export { default as Clipboard } from './clipboard.js';
|
|
13
13
|
export { default as ClipboardPipeline, type ClipboardContentInsertionEvent, type ClipboardContentInsertionData, type ClipboardInputTransformationEvent, type ClipboardInputTransformationData, type ClipboardOutputTransformationEvent, type ClipboardOutputTransformationData, type ViewDocumentClipboardOutputEvent } from './clipboardpipeline.js';
|
|
14
14
|
export { default as ClipboardMarkersUtils, type ClipboardMarkerRestrictedAction, type ClipboardMarkerConfiguration } from './clipboardmarkersutils.js';
|
|
15
|
+
export { default as plainTextToHtml } from './utils/plaintexttohtml.js';
|
|
15
16
|
export type { ClipboardEventData } from './clipboardobserver.js';
|
|
16
17
|
export { default as DragDrop } from './dragdrop.js';
|
|
17
18
|
export { default as PastePlainText } from './pasteplaintext.js';
|
package/dist/index.js
CHANGED
|
@@ -2144,5 +2144,5 @@ const toPx = /* #__PURE__ */ toUnit('px');
|
|
|
2144
2144
|
}
|
|
2145
2145
|
}
|
|
2146
2146
|
|
|
2147
|
-
export { Clipboard, ClipboardMarkersUtils, ClipboardPipeline, DragDrop, DragDropBlockToolbar, DragDropTarget, PastePlainText };
|
|
2147
|
+
export { Clipboard, ClipboardMarkersUtils, ClipboardPipeline, DragDrop, DragDropBlockToolbar, DragDropTarget, PastePlainText, plainTextToHtml };
|
|
2148
2148
|
//# sourceMappingURL=index.js.map
|