editor: generate new patch for @tiptap/core

This commit is contained in:
Abdullah Atta
2022-10-18 10:23:47 +05:00
parent a22be4093d
commit c3badf4846

View File

@@ -1,8 +1,8 @@
diff --git a/node_modules/@tiptap/core/dist/tiptap-core.esm.js b/node_modules/@tiptap/core/dist/tiptap-core.esm.js
index 3739b80..173171c 100644
index 6ef6d0c..fd89f44 100644
--- a/node_modules/@tiptap/core/dist/tiptap-core.esm.js
+++ b/node_modules/@tiptap/core/dist/tiptap-core.esm.js
@@ -2768,8 +2768,7 @@ const Keymap = Extension.create({
@@ -3120,8 +3120,7 @@ const Keymap = Extension.create({
new Plugin({
key: new PluginKey('clearDocument'),
appendTransaction: (transactions, oldState, newState) => {
@@ -12,17 +12,20 @@ index 3739b80..173171c 100644
if (!docChanges) {
return;
}
@@ -2777,10 +2776,11 @@ const Keymap = Extension.create({
@@ -3129,10 +3128,14 @@ const Keymap = Extension.create({
const allFrom = Selection.atStart(oldState.doc).from;
const allEnd = Selection.atEnd(oldState.doc).to;
const allWasSelected = from === allFrom && to === allEnd;
- const isEmpty = newState.doc.textBetween(0, newState.doc.content.size, ' ', ' ').length === 0;
- if (empty || !allWasSelected || !isEmpty) {
+
+ if (empty || !allWasSelected) {
return;
}
+
+ const isEmpty = newState.doc.textBetween(0, newState.doc.content.size, ' ', ' ').length === 0;
+ if (!isEmpty) return;
+
const tr = newState.tr;
const state = createChainableState({
state: newState,