@tiptap/core 3.4.1 → 3.4.3
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 +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/Editor.ts +2 -1
package/dist/index.cjs
CHANGED
|
@@ -4756,13 +4756,14 @@ var Editor = class extends EventEmitter {
|
|
|
4756
4756
|
...(_a = this.options.editorProps) == null ? void 0 : _a.attributes
|
|
4757
4757
|
},
|
|
4758
4758
|
dispatchTransaction: this.dispatchTransaction.bind(this),
|
|
4759
|
-
state: this.editorState
|
|
4759
|
+
state: this.editorState,
|
|
4760
|
+
markViews: this.extensionManager.markViews,
|
|
4761
|
+
nodeViews: this.extensionManager.nodeViews
|
|
4760
4762
|
});
|
|
4761
4763
|
const newState = this.state.reconfigure({
|
|
4762
4764
|
plugins: this.extensionManager.plugins
|
|
4763
4765
|
});
|
|
4764
4766
|
this.view.updateState(newState);
|
|
4765
|
-
this.createNodeViews();
|
|
4766
4767
|
this.prependClass();
|
|
4767
4768
|
this.injectCSS();
|
|
4768
4769
|
const dom = this.view.dom;
|