@harbour-enterprises/superdoc 0.14.6 → 0.14.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.
@@ -24305,7 +24305,7 @@ const _SuperConverter = class _SuperConverter2 {
24305
24305
  return;
24306
24306
  }
24307
24307
  }
24308
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.6") {
24308
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.7") {
24309
24309
  const customLocation = "docProps/custom.xml";
24310
24310
  if (!docx[customLocation]) {
24311
24311
  docx[customLocation] = generateCustomXml();
@@ -24781,7 +24781,7 @@ function storeSuperdocVersion(docx) {
24781
24781
  function generateCustomXml() {
24782
24782
  return DEFAULT_CUSTOM_XML;
24783
24783
  }
24784
- function generateSuperdocVersion(pid = 2, version2 = "0.14.6") {
24784
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.7") {
24785
24785
  return {
24786
24786
  type: "element",
24787
24787
  name: "property",
@@ -41416,7 +41416,6 @@ const Collaboration = Extension.create({
41416
41416
  if (!this.editor.options.ydoc) return [];
41417
41417
  this.options.ydoc = this.editor.options.ydoc;
41418
41418
  const undoPlugin = createUndoPlugin();
41419
- initDocumentLockHandler(this.options.ydoc, this.editor);
41420
41419
  initSyncListener(this.options.ydoc, this.editor, this);
41421
41420
  initDocumentListener({ ydoc: this.options.ydoc, editor: this.editor });
41422
41421
  const [syncPlugin, fragment] = createSyncPlugin(this.options.ydoc, this.editor);
@@ -41486,24 +41485,6 @@ const createUndoPlugin = () => {
41486
41485
  const yUndoPluginInstance = yUndoPlugin();
41487
41486
  return yUndoPluginInstance;
41488
41487
  };
41489
- const initDocumentLockHandler = (ydoc, editor) => {
41490
- const metaMap = ydoc.getMap("meta");
41491
- metaMap.observe((event) => {
41492
- const lockedBy = metaMap.get("lockedBy");
41493
- const isLocked = metaMap.get("locked");
41494
- if (!editor.options.user || !lockedBy) return;
41495
- const emitEvent = lockedBy?.email !== editor.options.user?.email;
41496
- const editableChanged = editor.options.editable !== !isLocked;
41497
- if (!emitEvent || !editableChanged) return;
41498
- if (isLocked) {
41499
- console.debug("--- Locking editor ---", lockedBy, editor.options.user);
41500
- } else {
41501
- console.debug("--- Unlocking editor ---", lockedBy);
41502
- }
41503
- editor.setEditable(!isLocked);
41504
- editor.emit("locked", { editor, isLocked, lockedBy });
41505
- });
41506
- };
41507
41488
  const checkDocxChanged = (transaction) => {
41508
41489
  for (const [key, value] of transaction.changed?.entries()) {
41509
41490
  if (value instanceof Set && value.has("docx")) {
@@ -42476,7 +42457,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
42476
42457
  * @returns {Object | void} Migration results
42477
42458
  */
42478
42459
  processCollaborationMigrations() {
42479
- console.debug("[checkVersionMigrations] Current editor version", "0.14.6");
42460
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.7");
42480
42461
  if (!this.options.ydoc) return;
42481
42462
  const metaMap = this.options.ydoc.getMap("meta");
42482
42463
  let docVersion = metaMap.get("version");
@@ -24322,7 +24322,7 @@ const _SuperConverter = class _SuperConverter2 {
24322
24322
  return;
24323
24323
  }
24324
24324
  }
24325
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.6") {
24325
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.7") {
24326
24326
  const customLocation = "docProps/custom.xml";
24327
24327
  if (!docx[customLocation]) {
24328
24328
  docx[customLocation] = generateCustomXml();
@@ -24798,7 +24798,7 @@ function storeSuperdocVersion(docx) {
24798
24798
  function generateCustomXml() {
24799
24799
  return DEFAULT_CUSTOM_XML;
24800
24800
  }
24801
- function generateSuperdocVersion(pid = 2, version2 = "0.14.6") {
24801
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.7") {
24802
24802
  return {
24803
24803
  type: "element",
24804
24804
  name: "property",
@@ -41433,7 +41433,6 @@ const Collaboration = Extension.create({
41433
41433
  if (!this.editor.options.ydoc) return [];
41434
41434
  this.options.ydoc = this.editor.options.ydoc;
41435
41435
  const undoPlugin = createUndoPlugin();
41436
- initDocumentLockHandler(this.options.ydoc, this.editor);
41437
41436
  initSyncListener(this.options.ydoc, this.editor, this);
41438
41437
  initDocumentListener({ ydoc: this.options.ydoc, editor: this.editor });
41439
41438
  const [syncPlugin, fragment] = createSyncPlugin(this.options.ydoc, this.editor);
@@ -41503,24 +41502,6 @@ const createUndoPlugin = () => {
41503
41502
  const yUndoPluginInstance = yUndoPlugin();
41504
41503
  return yUndoPluginInstance;
41505
41504
  };
41506
- const initDocumentLockHandler = (ydoc, editor) => {
41507
- const metaMap = ydoc.getMap("meta");
41508
- metaMap.observe((event) => {
41509
- const lockedBy = metaMap.get("lockedBy");
41510
- const isLocked = metaMap.get("locked");
41511
- if (!editor.options.user || !lockedBy) return;
41512
- const emitEvent = lockedBy?.email !== editor.options.user?.email;
41513
- const editableChanged = editor.options.editable !== !isLocked;
41514
- if (!emitEvent || !editableChanged) return;
41515
- if (isLocked) {
41516
- console.debug("--- Locking editor ---", lockedBy, editor.options.user);
41517
- } else {
41518
- console.debug("--- Unlocking editor ---", lockedBy);
41519
- }
41520
- editor.setEditable(!isLocked);
41521
- editor.emit("locked", { editor, isLocked, lockedBy });
41522
- });
41523
- };
41524
41505
  const checkDocxChanged = (transaction) => {
41525
41506
  for (const [key, value] of transaction.changed?.entries()) {
41526
41507
  if (value instanceof Set && value.has("docx")) {
@@ -42493,7 +42474,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
42493
42474
  * @returns {Object | void} Migration results
42494
42475
  */
42495
42476
  processCollaborationMigrations() {
42496
- console.debug("[checkVersionMigrations] Current editor version", "0.14.6");
42477
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.7");
42497
42478
  if (!this.options.ydoc) return;
42498
42479
  const metaMap = this.options.ydoc.getMap("meta");
42499
42480
  let docVersion = metaMap.get("version");
@@ -1,6 +1,6 @@
1
1
  import { ref, onMounted, onUnmounted, computed, createElementBlock, openBlock, withModifiers, createElementVNode, withDirectives, unref, vModelText, createCommentVNode, nextTick } from "vue";
2
- import { T as TextSelection } from "./chunks/converter-B2ax5VaL.js";
3
- import { _ as _export_sfc } from "./chunks/editor-DOPbbzSk.js";
2
+ import { T as TextSelection } from "./chunks/converter-IhS6v0mT.js";
3
+ import { _ as _export_sfc } from "./chunks/editor-2hZibMK7.js";
4
4
  const DEFAULT_API_ENDPOINT = "https://sd-dev-express-gateway-i6xtm.ondigitalocean.app/insights";
5
5
  const SYSTEM_PROMPT = "You are an expert copywriter and you are immersed in a document editor. You are to provide document related text responses based on the user prompts. Only write what is asked for. Do not provide explanations. Try to keep placeholders as short as possible. Do not output your prompt. Your instructions are: ";
6
6
  async function baseInsightsFetch(payload, options = {}) {
@@ -24324,7 +24324,7 @@ const _SuperConverter = class _SuperConverter {
24324
24324
  return;
24325
24325
  }
24326
24326
  }
24327
- static updateDocumentVersion(docx = this.convertedXml, version = "0.14.6") {
24327
+ static updateDocumentVersion(docx = this.convertedXml, version = "0.14.7") {
24328
24328
  const customLocation = "docProps/custom.xml";
24329
24329
  if (!docx[customLocation]) {
24330
24330
  docx[customLocation] = generateCustomXml();
@@ -24803,7 +24803,7 @@ function storeSuperdocVersion(docx) {
24803
24803
  function generateCustomXml() {
24804
24804
  return DEFAULT_CUSTOM_XML;
24805
24805
  }
24806
- function generateSuperdocVersion(pid = 2, version = "0.14.6") {
24806
+ function generateSuperdocVersion(pid = 2, version = "0.14.7") {
24807
24807
  return {
24808
24808
  type: "element",
24809
24809
  name: "property",
@@ -1,4 +1,4 @@
1
- import { C as process$1, aa as commonjsGlobal, E as Buffer, ab as getDefaultExportFromCjs, ac as getContentTypesFromXml, ad as xmljs } from "./converter-B2ax5VaL.js";
1
+ import { C as process$1, aa as commonjsGlobal, E as Buffer, ab as getDefaultExportFromCjs, ac as getContentTypesFromXml, ad as xmljs } from "./converter-IhS6v0mT.js";
2
2
  function commonjsRequire(path) {
3
3
  throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
4
4
  }
@@ -12,9 +12,9 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
12
12
  var _Attribute_static, getGlobalAttributes_fn, getNodeAndMarksAttributes_fn, _Schema_static, createNodesSchema_fn, createMarksSchema_fn, _events, _ExtensionService_instances, setupExtensions_fn, attachEditorEvents_fn, _commandService, _css, _Editor_instances, initContainerElement_fn, init_fn, initRichText_fn, onFocus_fn, checkHeadless_fn, insertNewFileData_fn, registerPluginByNameIfNotExists_fn, createExtensionService_fn, createCommandService_fn, createConverter_fn, initMedia_fn, initFonts_fn, createSchema_fn, generatePmData_fn, createDocFromHTML_fn, createView_fn, onCollaborationReady_fn, initComments_fn, dispatchTransaction_fn, handleNodeSelection_fn, prepareDocumentForImport_fn, prepareDocumentForExport_fn, endCollaboration_fn, _ListItemNodeView_instances, init_fn2, _FieldAnnotationView_instances, createAnnotation_fn, _AutoPageNumberNodeView_instances, renderDom_fn, scheduleUpdateNodeStyle_fn;
13
13
  import * as Y from "yjs";
14
14
  import { UndoManager, Item as Item$1, ContentType, Text as Text$1, XmlElement, encodeStateAsUpdate } from "yjs";
15
- import { P as PluginKey, a as Plugin, M as Mapping, c as callOrGet, i as isEmptyObject, S as Schema$1, T as TextSelection, b as canSplit, l as liftTarget, A as AllSelection, d as canJoin, j as joinPoint, N as NodeSelection, e as Selection, r as replaceStep$1, F as Fragment, R as ReplaceAroundStep$1, f as Slice, o as objectIncludes, g as deleteProps, D as DOMParser$1, h as ReplaceStep, k as NodeRange, m as findWrapping, n as generateDocxRandomId, p as minMax, q as chainableEditorState, s as generateRandom32BitHex, t as getStyleTagFromStyleId, u as getAbstractDefinition, v as getDefinitionForLevel, w as isMacOS, x as isIOS, y as DOMSerializer, z as Mark$1, B as dropPoint, C as process$1, E as Buffer2, G as inputRulesPlugin, H as TrackDeleteMarkName, I as TrackInsertMarkName, J as v4, K as TrackFormatMarkName, L as comments_module_events, O as AddMarkStep, Q as RemoveMarkStep, U as twipsToLines, V as pixelsToTwips, W as CommandService, X as SuperConverter, Y as EditorState, Z as hasSomeParentWithClass, _ as parseSizeUnit, $ as getLineHeightValueString, a0 as InputRule, a1 as toKebabCase, a2 as kebabCase, a3 as docxNumberigHelpers, a4 as parseIndentElement, a5 as combineIndents, a6 as getColStyleDeclaration, a7 as SelectionRange, a8 as Transform, a9 as createColGroup } from "./converter-B2ax5VaL.js";
15
+ import { P as PluginKey, a as Plugin, M as Mapping, c as callOrGet, i as isEmptyObject, S as Schema$1, T as TextSelection, b as canSplit, l as liftTarget, A as AllSelection, d as canJoin, j as joinPoint, N as NodeSelection, e as Selection, r as replaceStep$1, F as Fragment, R as ReplaceAroundStep$1, f as Slice, o as objectIncludes, g as deleteProps, D as DOMParser$1, h as ReplaceStep, k as NodeRange, m as findWrapping, n as generateDocxRandomId, p as minMax, q as chainableEditorState, s as generateRandom32BitHex, t as getStyleTagFromStyleId, u as getAbstractDefinition, v as getDefinitionForLevel, w as isMacOS, x as isIOS, y as DOMSerializer, z as Mark$1, B as dropPoint, C as process$1, E as Buffer2, G as inputRulesPlugin, H as TrackDeleteMarkName, I as TrackInsertMarkName, J as v4, K as TrackFormatMarkName, L as comments_module_events, O as AddMarkStep, Q as RemoveMarkStep, U as twipsToLines, V as pixelsToTwips, W as CommandService, X as SuperConverter, Y as EditorState, Z as hasSomeParentWithClass, _ as parseSizeUnit, $ as getLineHeightValueString, a0 as InputRule, a1 as toKebabCase, a2 as kebabCase, a3 as docxNumberigHelpers, a4 as parseIndentElement, a5 as combineIndents, a6 as getColStyleDeclaration, a7 as SelectionRange, a8 as Transform, a9 as createColGroup } from "./converter-IhS6v0mT.js";
16
16
  import { ref, computed, createElementBlock, openBlock, withModifiers, Fragment as Fragment$1, renderList, normalizeClass, createCommentVNode, toDisplayString, createElementVNode, createApp } from "vue";
17
- import { D as DocxZipper } from "./docx-zipper-LcofGdUl.js";
17
+ import { D as DocxZipper } from "./docx-zipper-gNmyiLXr.js";
18
18
  function getMarksFromSelection(state) {
19
19
  const { from: from2, to, empty: empty2 } = state.selection;
20
20
  const marks = [];
@@ -14125,7 +14125,6 @@ const Collaboration = Extension.create({
14125
14125
  if (!this.editor.options.ydoc) return [];
14126
14126
  this.options.ydoc = this.editor.options.ydoc;
14127
14127
  const undoPlugin = createUndoPlugin();
14128
- initDocumentLockHandler(this.options.ydoc, this.editor);
14129
14128
  initSyncListener(this.options.ydoc, this.editor, this);
14130
14129
  initDocumentListener({ ydoc: this.options.ydoc, editor: this.editor });
14131
14130
  const [syncPlugin, fragment] = createSyncPlugin(this.options.ydoc, this.editor);
@@ -14195,24 +14194,6 @@ const createUndoPlugin = () => {
14195
14194
  const yUndoPluginInstance = yUndoPlugin();
14196
14195
  return yUndoPluginInstance;
14197
14196
  };
14198
- const initDocumentLockHandler = (ydoc, editor) => {
14199
- const metaMap = ydoc.getMap("meta");
14200
- metaMap.observe((event) => {
14201
- const lockedBy = metaMap.get("lockedBy");
14202
- const isLocked = metaMap.get("locked");
14203
- if (!editor.options.user || !lockedBy) return;
14204
- const emitEvent = lockedBy?.email !== editor.options.user?.email;
14205
- const editableChanged = editor.options.editable !== !isLocked;
14206
- if (!emitEvent || !editableChanged) return;
14207
- if (isLocked) {
14208
- console.debug("--- Locking editor ---", lockedBy, editor.options.user);
14209
- } else {
14210
- console.debug("--- Unlocking editor ---", lockedBy);
14211
- }
14212
- editor.setEditable(!isLocked);
14213
- editor.emit("locked", { editor, isLocked, lockedBy });
14214
- });
14215
- };
14216
14197
  const checkDocxChanged = (transaction) => {
14217
14198
  for (const [key, value] of transaction.changed?.entries()) {
14218
14199
  if (value instanceof Set && value.has("docx")) {
@@ -15213,7 +15194,7 @@ const _Editor = class _Editor extends EventEmitter {
15213
15194
  * @returns {Object | void} Migration results
15214
15195
  */
15215
15196
  processCollaborationMigrations() {
15216
- console.debug("[checkVersionMigrations] Current editor version", "0.14.6");
15197
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.7");
15217
15198
  if (!this.options.ydoc) return;
15218
15199
  const metaMap = this.options.ydoc.getMap("meta");
15219
15200
  let docVersion = metaMap.get("version");
@@ -1,6 +1,6 @@
1
1
  import { computed, createElementBlock, openBlock, createElementVNode, createCommentVNode, normalizeClass, normalizeStyle, ref, withKeys, unref, withModifiers, createBlock, toDisplayString, withDirectives, vModelText, nextTick, getCurrentInstance, createVNode, readonly, watch, onMounted, onBeforeUnmount, reactive, onBeforeMount, inject, onActivated, onDeactivated, createTextVNode, Fragment, Comment, defineComponent, provide, h, Teleport, toRef, renderSlot, isVNode, shallowRef, watchEffect, mergeProps, Transition, vShow, cloneVNode, Text, renderList, withCtx } from "vue";
2
- import { C as process$1 } from "./converter-B2ax5VaL.js";
3
- import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-DOPbbzSk.js";
2
+ import { C as process$1 } from "./converter-IhS6v0mT.js";
3
+ import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-2hZibMK7.js";
4
4
  const sanitizeNumber = (value, defaultNumber) => {
5
5
  let sanitized = value.replace(/[^0-9.]/g, "");
6
6
  sanitized = parseFloat(sanitized);
@@ -1,4 +1,4 @@
1
- import { X } from "./chunks/converter-B2ax5VaL.js";
1
+ import { X } from "./chunks/converter-IhS6v0mT.js";
2
2
  export {
3
3
  X as SuperConverter
4
4
  };
@@ -1,5 +1,5 @@
1
- import "./chunks/converter-B2ax5VaL.js";
2
- import { D } from "./chunks/docx-zipper-LcofGdUl.js";
1
+ import "./chunks/converter-IhS6v0mT.js";
2
+ import { D } from "./chunks/docx-zipper-gNmyiLXr.js";
3
3
  export {
4
4
  D as default
5
5
  };
@@ -1,6 +1,6 @@
1
- import { E } from "./chunks/editor-DOPbbzSk.js";
2
- import "./chunks/converter-B2ax5VaL.js";
3
- import "./chunks/docx-zipper-LcofGdUl.js";
1
+ import { E } from "./chunks/editor-2hZibMK7.js";
2
+ import "./chunks/converter-IhS6v0mT.js";
3
+ import "./chunks/docx-zipper-gNmyiLXr.js";
4
4
  export {
5
5
  E as Editor
6
6
  };
@@ -1 +1 @@
1
- {"version":3,"file":"collaboration.d.ts","sourceRoot":"","sources":["../../../src/extensions/collaboration/collaboration.js"],"names":[],"mappings":"AAMA,oDAAqE;AAErE,gCA+EG;AAEI,gEAQN;AAEM,gEASN;AAkFM,oFAIN;0BAjMyB,mBAAmB"}
1
+ {"version":3,"file":"collaboration.d.ts","sourceRoot":"","sources":["../../../src/extensions/collaboration/collaboration.js"],"names":[],"mappings":"AAMA,oDAAqE;AAErE,gCA6EG;AAEI,gEAQN;AAEM,gEASN;AAkFM,oFAIN;0BA/LyB,mBAAmB"}
@@ -1,4 +1,4 @@
1
- import { J as JSZip } from "./chunks/docx-zipper-LcofGdUl.js";
1
+ import { J as JSZip } from "./chunks/docx-zipper-gNmyiLXr.js";
2
2
  async function createZip(blobs, fileNames) {
3
3
  const zip = new JSZip();
4
4
  blobs.forEach((blob, index) => {
@@ -9,14 +9,14 @@ var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read fr
9
9
  var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
10
10
  var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
11
11
  var _SuperToolbar_instances, initToolbarGroups_fn, _interceptedCommands, makeToolbarItems_fn, initDefaultFonts_fn, updateHighlightColors_fn, deactivateAll_fn, updateToolbarHistory_fn, runCommandWithArgumentOnly_fn;
12
- import { ab as getDefaultExportFromCjs, J as v4, T as TextSelection$1, ae as vClickOutside, af as readFromClipboard, ag as handleClipboardPaste, a as Plugin } from "./chunks/converter-B2ax5VaL.js";
13
- import { X } from "./chunks/converter-B2ax5VaL.js";
14
- import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getMarkRange, f as findParentNode, d as getFileOpener, s as startImageUpload, e as getActiveFormatting, i as isInTable, h as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, j as getStarterExtensions, P as Placeholder, k as getRichTextExtensions, M as Mark, l as Extension, A as Attribute, N as Node } from "./chunks/editor-DOPbbzSk.js";
15
- import { p, C, T, n, t, q, m, o } from "./chunks/editor-DOPbbzSk.js";
12
+ import { ab as getDefaultExportFromCjs, J as v4, T as TextSelection$1, ae as vClickOutside, af as readFromClipboard, ag as handleClipboardPaste, a as Plugin } from "./chunks/converter-IhS6v0mT.js";
13
+ import { X } from "./chunks/converter-IhS6v0mT.js";
14
+ import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getMarkRange, f as findParentNode, d as getFileOpener, s as startImageUpload, e as getActiveFormatting, i as isInTable, h as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, j as getStarterExtensions, P as Placeholder, k as getRichTextExtensions, M as Mark, l as Extension, A as Attribute, N as Node } from "./chunks/editor-2hZibMK7.js";
15
+ import { p, C, T, n, t, q, m, o } from "./chunks/editor-2hZibMK7.js";
16
16
  import { ref, onMounted, createElementBlock, openBlock, normalizeClass, unref, Fragment, renderList, createElementVNode, withModifiers, toDisplayString, createCommentVNode, normalizeStyle, computed, watch, withDirectives, withKeys, vModelText, createTextVNode, createVNode, h, createApp, markRaw, nextTick, onBeforeUnmount, reactive, onUnmounted, renderSlot, shallowRef, createBlock, withCtx, resolveDynamicComponent, normalizeProps, guardReactiveProps } from "vue";
17
- import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, m as magicWandIcon, l as linkIconSvg, a as tableIconSvg, b as scissorsIconSvg, c as copyIconSvg, p as pasteIconSvg, N as NSkeleton } from "./chunks/toolbar-CH2P5CIe.js";
17
+ import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, m as magicWandIcon, l as linkIconSvg, a as tableIconSvg, b as scissorsIconSvg, c as copyIconSvg, p as pasteIconSvg, N as NSkeleton } from "./chunks/toolbar-E-AyHLN-.js";
18
18
  import AIWriter from "./ai-writer.es.js";
19
- import { D } from "./chunks/docx-zipper-LcofGdUl.js";
19
+ import { D } from "./chunks/docx-zipper-gNmyiLXr.js";
20
20
  import { createZip } from "./file-zipper.es.js";
21
21
  var eventemitter3 = { exports: {} };
22
22
  (function(module) {
@@ -1,6 +1,6 @@
1
1
  import "vue";
2
- import { T } from "./chunks/toolbar-CH2P5CIe.js";
3
- import "./chunks/editor-DOPbbzSk.js";
2
+ import { T } from "./chunks/toolbar-E-AyHLN-.js";
3
+ import "./chunks/editor-2hZibMK7.js";
4
4
  export {
5
5
  T as default
6
6
  };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const superEditor_es = require("./chunks/super-editor.es-DPUj_PUn.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-CJsHeyFd.cjs");
4
4
  require("./chunks/vue-tQYF719J.cjs");
5
5
  exports.AIWriter = superEditor_es.AIWriter;
6
6
  exports.AnnotatorHelpers = superEditor_es.AnnotatorHelpers;
@@ -1,4 +1,4 @@
1
- import { A, a, _, C, D, E, b, c, S, d, e, f, T, g, h, i, j, k, l, m, n, o, p } from "./chunks/super-editor.es-VmdJa8vG.es.js";
1
+ import { A, a, _, C, D, E, b, c, S, d, e, f, T, g, h, i, j, k, l, m, n, o, p } from "./chunks/super-editor.es-BjO3sMMu.es.js";
2
2
  import "./chunks/vue-lU0o_RlU.es.js";
3
3
  export {
4
4
  A as AIWriter,
package/dist/superdoc.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
- const superEditor_es = require("./chunks/super-editor.es-DPUj_PUn.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-CJsHeyFd.cjs");
4
4
  const vue = require("./chunks/vue-tQYF719J.cjs");
5
5
  const jszip = require("./chunks/jszip-D5XoMX4C.cjs");
6
6
  const blankDocx = require("./chunks/blank-docx-CPqX9RF5.cjs");
@@ -47810,7 +47810,7 @@ class SuperDoc extends eventemitter3.EventEmitter {
47810
47810
  this.config.colors = shuffleArray(this.config.colors);
47811
47811
  this.userColorMap = /* @__PURE__ */ new Map();
47812
47812
  this.colorIndex = 0;
47813
- this.version = "0.14.6";
47813
+ this.version = "0.14.7";
47814
47814
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
47815
47815
  this.superdocId = config.superdocId || uuid.v4();
47816
47816
  this.colors = this.config.colors;
@@ -1,5 +1,5 @@
1
- import { p as index$1, C as CommentsPluginKey, g as TrackChangesBasePluginKey, E as Editor, m as getRichTextExtensions, e as SuperInput, d as SuperEditor, A as AIWriter, f as SuperToolbar, h as createZip } from "./chunks/super-editor.es-VmdJa8vG.es.js";
2
- import { a, S, i, o } from "./chunks/super-editor.es-VmdJa8vG.es.js";
1
+ import { p as index$1, C as CommentsPluginKey, g as TrackChangesBasePluginKey, E as Editor, m as getRichTextExtensions, e as SuperInput, d as SuperEditor, A as AIWriter, f as SuperToolbar, h as createZip } from "./chunks/super-editor.es-BjO3sMMu.es.js";
2
+ import { a, S, i, o } from "./chunks/super-editor.es-BjO3sMMu.es.js";
3
3
  import { a0 as effectScope, r as ref, $ as markRaw, p as process$1, a1 as toRaw, a as computed, a2 as isRef, a3 as isReactive, D as toRef, i as inject, q as getCurrentInstance, l as watch, y as unref, a4 as hasInjectionContext, N as reactive, u as nextTick, a5 as getCurrentScope, a6 as onScopeDispose, a7 as toRefs, g as global$1, K as shallowRef, O as readonly, j as onMounted, k as onBeforeUnmount, h as onBeforeMount, U as onActivated, s as onDeactivated, A as createTextVNode, F as Fragment, R as Comment, m as defineComponent, E as provide, I as withDirectives, C as h, V as Teleport, S as renderSlot, W as isVNode, J as watchEffect, P as Transition, G as mergeProps, Q as vShow, H as cloneVNode, T as Text, b as createElementBlock, o as openBlock, t as toDisplayString, x as createVNode, z as withCtx, f as createBaseVNode, B as normalizeStyle, e as createCommentVNode, v as createBlock, w as withModifiers, n as normalizeClass, a8 as resolveDirective, d as renderList, c as createApp, X as onUnmounted, Y as resolveDynamicComponent } from "./chunks/vue-lU0o_RlU.es.js";
4
4
  import { B as Buffer$2 } from "./chunks/jszip-CYDYUNnI.es.js";
5
5
  import { B as BlankDOCX } from "./chunks/blank-docx-iwdyG9RH.es.js";
@@ -47793,7 +47793,7 @@ class SuperDoc extends EventEmitter {
47793
47793
  this.config.colors = shuffleArray(this.config.colors);
47794
47794
  this.userColorMap = /* @__PURE__ */ new Map();
47795
47795
  this.colorIndex = 0;
47796
- this.version = "0.14.6";
47796
+ this.version = "0.14.7";
47797
47797
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
47798
47798
  this.superdocId = config.superdocId || v4();
47799
47799
  this.colors = this.config.colors;
@@ -31700,7 +31700,7 @@
31700
31700
  return;
31701
31701
  }
31702
31702
  }
31703
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.6") {
31703
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.7") {
31704
31704
  const customLocation = "docProps/custom.xml";
31705
31705
  if (!docx[customLocation]) {
31706
31706
  docx[customLocation] = generateCustomXml();
@@ -32176,7 +32176,7 @@
32176
32176
  function generateCustomXml() {
32177
32177
  return DEFAULT_CUSTOM_XML;
32178
32178
  }
32179
- function generateSuperdocVersion(pid = 2, version2 = "0.14.6") {
32179
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.7") {
32180
32180
  return {
32181
32181
  type: "element",
32182
32182
  name: "property",
@@ -48811,7 +48811,6 @@
48811
48811
  if (!this.editor.options.ydoc) return [];
48812
48812
  this.options.ydoc = this.editor.options.ydoc;
48813
48813
  const undoPlugin = createUndoPlugin();
48814
- initDocumentLockHandler(this.options.ydoc, this.editor);
48815
48814
  initSyncListener(this.options.ydoc, this.editor, this);
48816
48815
  initDocumentListener({ ydoc: this.options.ydoc, editor: this.editor });
48817
48816
  const [syncPlugin, fragment] = createSyncPlugin(this.options.ydoc, this.editor);
@@ -48881,24 +48880,6 @@
48881
48880
  const yUndoPluginInstance = yUndoPlugin();
48882
48881
  return yUndoPluginInstance;
48883
48882
  };
48884
- const initDocumentLockHandler = (ydoc, editor) => {
48885
- const metaMap = ydoc.getMap("meta");
48886
- metaMap.observe((event) => {
48887
- const lockedBy = metaMap.get("lockedBy");
48888
- const isLocked = metaMap.get("locked");
48889
- if (!editor.options.user || !lockedBy) return;
48890
- const emitEvent = lockedBy?.email !== editor.options.user?.email;
48891
- const editableChanged = editor.options.editable !== !isLocked;
48892
- if (!emitEvent || !editableChanged) return;
48893
- if (isLocked) {
48894
- console.debug("--- Locking editor ---", lockedBy, editor.options.user);
48895
- } else {
48896
- console.debug("--- Unlocking editor ---", lockedBy);
48897
- }
48898
- editor.setEditable(!isLocked);
48899
- editor.emit("locked", { editor, isLocked, lockedBy });
48900
- });
48901
- };
48902
48883
  const checkDocxChanged = (transaction) => {
48903
48884
  for (const [key, value] of transaction.changed?.entries()) {
48904
48885
  if (value instanceof Set && value.has("docx")) {
@@ -49871,7 +49852,7 @@
49871
49852
  * @returns {Object | void} Migration results
49872
49853
  */
49873
49854
  processCollaborationMigrations() {
49874
- console.debug("[checkVersionMigrations] Current editor version", "0.14.6");
49855
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.7");
49875
49856
  if (!this.options.ydoc) return;
49876
49857
  const metaMap = this.options.ydoc.getMap("meta");
49877
49858
  let docVersion = metaMap.get("version");
@@ -95819,7 +95800,7 @@ ${style2}
95819
95800
  this.config.colors = shuffleArray(this.config.colors);
95820
95801
  this.userColorMap = /* @__PURE__ */ new Map();
95821
95802
  this.colorIndex = 0;
95822
- this.version = "0.14.6";
95803
+ this.version = "0.14.7";
95823
95804
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
95824
95805
  this.superdocId = config.superdocId || v4();
95825
95806
  this.colors = this.config.colors;