@tiptap/core 3.6.4 → 3.6.5

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.js CHANGED
@@ -4502,6 +4502,9 @@ var Editor = class extends EventEmitter {
4502
4502
  },
4503
4503
  {
4504
4504
  get: (obj, key) => {
4505
+ if (this.editorView) {
4506
+ return this.editorView[key];
4507
+ }
4505
4508
  if (key === "state") {
4506
4509
  return this.editorState;
4507
4510
  }