@tiptap/core 3.0.0-beta.16 → 3.0.0-beta.17
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/PasteRule.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -2032,7 +2032,7 @@ function pasteRulesPlugin(props) {
|
|
|
2032
2032
|
dropEvent = event;
|
|
2033
2033
|
if (!isDroppedFromProseMirror) {
|
|
2034
2034
|
const dragFromOtherEditor = tiptapDragFromOtherEditor;
|
|
2035
|
-
if (dragFromOtherEditor) {
|
|
2035
|
+
if (dragFromOtherEditor == null ? void 0 : dragFromOtherEditor.isEditable) {
|
|
2036
2036
|
setTimeout(() => {
|
|
2037
2037
|
const selection = dragFromOtherEditor.state.selection;
|
|
2038
2038
|
if (selection) {
|