@harbour-enterprises/superdoc 0.29.0-next.15 → 0.29.0-next.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.
Files changed (42) hide show
  1. package/dist/chunks/{PdfViewer-B7X4xur3.cjs → PdfViewer-DYxoL3aX.cjs} +1 -1
  2. package/dist/chunks/{PdfViewer-BL9hLN-A.es.js → PdfViewer-cB0Wc125.es.js} +1 -1
  3. package/dist/chunks/{index-CCTDIDk7.es.js → index-BkH3Ewpn.es.js} +3 -3
  4. package/dist/chunks/{index-x0B8ORNX--SLHZ7wS.es.js → index-CdXg92JS-CoYVY9yT.es.js} +1 -1
  5. package/dist/chunks/{index-x0B8ORNX-D9kjqjf9.cjs → index-CdXg92JS-rI1se8w8.cjs} +1 -1
  6. package/dist/chunks/{index-CCVmXx2r.cjs → index-Cp4ihfTg.cjs} +3 -3
  7. package/dist/chunks/{super-editor.es-LUVoGFZl.es.js → super-editor.es-DbVz9iFq.es.js} +68 -36
  8. package/dist/chunks/{super-editor.es-BkV-6f5K.cjs → super-editor.es-GK0HIFwy.cjs} +68 -36
  9. package/dist/packages/superdoc/src/core/SuperDoc.d.ts.map +1 -1
  10. package/dist/packages/superdoc/src/core/types/index.d.ts.map +1 -1
  11. package/dist/style.css +12 -12
  12. package/dist/super-editor/ai-writer.es.js +2 -2
  13. package/dist/super-editor/chunks/{converter-Bt0gPwYj.js → converter-BxHd90vg.js} +1 -1
  14. package/dist/super-editor/chunks/{docx-zipper-JVCnlDBn.js → docx-zipper-DRDqDf4t.js} +1 -1
  15. package/dist/super-editor/chunks/{editor-BF7w_sd7.js → editor-BN_AUZwq.js} +65 -38
  16. package/dist/super-editor/chunks/{index-x0B8ORNX.js → index-CdXg92JS.js} +1 -1
  17. package/dist/super-editor/chunks/{toolbar-CI9lB3KI.js → toolbar-CeJfRy_U.js} +2 -2
  18. package/dist/super-editor/converter.es.js +1 -1
  19. package/dist/super-editor/docx-zipper.es.js +2 -2
  20. package/dist/super-editor/editor.es.js +3 -3
  21. package/dist/super-editor/file-zipper.es.js +1 -1
  22. package/dist/super-editor/style.css +12 -12
  23. package/dist/super-editor/super-editor/src/components/pagination-helpers.d.ts.map +1 -1
  24. package/dist/super-editor/super-editor/src/components/toolbar/defaultItems.d.ts.map +1 -1
  25. package/dist/super-editor/super-editor/src/components/toolbar/super-toolbar.d.ts.map +1 -1
  26. package/dist/super-editor/super-editor/src/core/Editor.d.ts.map +1 -1
  27. package/dist/super-editor/super-editor/src/extensions/field-annotation/field-annotation.d.ts.map +1 -1
  28. package/dist/super-editor/super-editor/src/extensions/page-number/page-number.d.ts.map +1 -1
  29. package/dist/super-editor/super-editor/src/extensions/pagination/pagination-helpers.d.ts.map +1 -1
  30. package/dist/super-editor/super-editor/src/extensions/pagination/pagination.d.ts.map +1 -1
  31. package/dist/super-editor/super-editor/src/extensions/track-changes/permission-helpers.d.ts.map +1 -1
  32. package/dist/super-editor/super-editor/src/utils/headless-helpers.d.ts +1 -0
  33. package/dist/super-editor/super-editor/src/utils/headless-helpers.d.ts.map +1 -1
  34. package/dist/super-editor/super-editor.es.js +24 -18
  35. package/dist/super-editor/toolbar.es.js +2 -2
  36. package/dist/super-editor.cjs +1 -1
  37. package/dist/super-editor.es.js +1 -1
  38. package/dist/superdoc.cjs +2 -2
  39. package/dist/superdoc.es.js +2 -2
  40. package/dist/superdoc.umd.js +70 -38
  41. package/dist/superdoc.umd.js.map +1 -1
  42. package/package.json +1 -1
@@ -35781,7 +35781,7 @@ const _SuperConverter = class _SuperConverter2 {
35781
35781
  static getStoredSuperdocVersion(docx) {
35782
35782
  return _SuperConverter2.getStoredCustomProperty(docx, "SuperdocVersion");
35783
35783
  }
35784
- static setStoredSuperdocVersion(docx = this.convertedXml, version2 = "0.29.0-next.15") {
35784
+ static setStoredSuperdocVersion(docx = this.convertedXml, version2 = "0.29.0-next.17") {
35785
35785
  return _SuperConverter2.setStoredCustomProperty(docx, "SuperdocVersion", version2, false);
35786
35786
  }
35787
35787
  /**
@@ -38903,14 +38903,14 @@ class DocxZipper {
38903
38903
  const zip = await this.zip.loadAsync(file);
38904
38904
  return zip;
38905
38905
  }
38906
- async updateZip({ docx, updatedDocs, originalDocxFile, media, fonts, isHeadless }) {
38906
+ async updateZip({ docx, updatedDocs, originalDocxFile, media, fonts, isHeadless: isHeadless2 }) {
38907
38907
  let zip;
38908
38908
  if (originalDocxFile) {
38909
38909
  zip = await this.exportFromOriginalFile(originalDocxFile, updatedDocs, media);
38910
38910
  } else {
38911
38911
  zip = await this.exportFromCollaborativeDocx(docx, updatedDocs, media, fonts);
38912
38912
  }
38913
- const exportType = isHeadless ? "nodebuffer" : "blob";
38913
+ const exportType = isHeadless2 ? "nodebuffer" : "blob";
38914
38914
  return await zip.generateAsync({ type: exportType });
38915
38915
  }
38916
38916
  /**
@@ -50646,9 +50646,15 @@ const applyStyleIsolationClass = (target) => {
50646
50646
  if (!target || !target.classList) return;
50647
50647
  target.classList.add(STYLE_ISOLATION_CLASS);
50648
50648
  };
50649
+ const isHeadless = (editor) => {
50650
+ return editor?.options?.isHeadless ?? false;
50651
+ };
50652
+ const shouldSkipNodeView = (editor) => {
50653
+ return isHeadless(editor);
50654
+ };
50649
50655
  const PaginationPluginKey = new PluginKey("paginationPlugin");
50650
50656
  const initPaginationData = async (editor) => {
50651
- if (!editor.converter) return;
50657
+ if (isHeadless(editor) || !editor.converter) return;
50652
50658
  const sectionData = { headers: {}, footers: {} };
50653
50659
  const headerIds = editor.converter.headerIds.ids;
50654
50660
  const footerIds = editor.converter.footerIds.ids;
@@ -50784,6 +50790,7 @@ const broadcastEditorEvents = (editor, sectionEditor) => {
50784
50790
  });
50785
50791
  };
50786
50792
  const toggleHeaderFooterEditMode = ({ editor, focusedSectionEditor, isEditMode, documentMode }) => {
50793
+ if (isHeadless(editor)) return;
50787
50794
  editor.converter.headerEditors.forEach((item) => {
50788
50795
  item.editor.setEditable(isEditMode, false);
50789
50796
  item.editor.view.dom.setAttribute("aria-readonly", !isEditMode);
@@ -53853,10 +53860,12 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
53853
53860
  };
53854
53861
  if ("orientation" in screen && "addEventListener" in screen.orientation) {
53855
53862
  screen.orientation.addEventListener("change", handleResize);
53856
- } else {
53863
+ } else if (typeof window !== "undefined" && typeof window.matchMedia === "function") {
53857
53864
  window.matchMedia("(orientation: portrait)").addEventListener("change", handleResize);
53858
53865
  }
53859
- window.addEventListener("resize", () => handleResize);
53866
+ if (typeof window !== "undefined" && typeof window.addEventListener === "function") {
53867
+ window.addEventListener("resize", () => handleResize);
53868
+ }
53860
53869
  }
53861
53870
  /**
53862
53871
  * Get document identifier for telemetry (async - may generate hash)
@@ -53970,7 +53979,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
53970
53979
  { default: remarkStringify },
53971
53980
  { default: remarkGfm }
53972
53981
  ] = await Promise.all([
53973
- Promise.resolve().then(() => require("./index-x0B8ORNX-D9kjqjf9.cjs")),
53982
+ Promise.resolve().then(() => require("./index-CdXg92JS-rI1se8w8.cjs")),
53974
53983
  Promise.resolve().then(() => require("./index-DRCvimau-H4Ck3S9a.cjs")),
53975
53984
  Promise.resolve().then(() => require("./index-C_x_N6Uh-Db3CUJMX.cjs")),
53976
53985
  Promise.resolve().then(() => require("./index-D_sWOSiG-BtDZzJ6I.cjs")),
@@ -54022,7 +54031,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
54022
54031
  this.initDefaultStyles();
54023
54032
  hasMadeUpdate = true;
54024
54033
  }
54025
- if (hasMadeUpdate) {
54034
+ if (hasMadeUpdate && !isHeadless(this)) {
54026
54035
  const newTr = this.view.state.tr;
54027
54036
  newTr.setMeta("forceUpdatePagination", true);
54028
54037
  this.view.dispatch(newTr);
@@ -54188,7 +54197,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
54188
54197
  * @returns {Object | void} Migration results
54189
54198
  */
54190
54199
  processCollaborationMigrations() {
54191
- console.debug("[checkVersionMigrations] Current editor version", "0.29.0-next.15");
54200
+ console.debug("[checkVersionMigrations] Current editor version", "0.29.0-next.17");
54192
54201
  if (!this.options.ydoc) return;
54193
54202
  const metaMap = this.options.ydoc.getMap("meta");
54194
54203
  let docVersion = metaMap.get("version");
@@ -54622,16 +54631,18 @@ createView_fn = function(element) {
54622
54631
  handleClick: __privateMethod$1(this, _Editor_instances, handleNodeSelection_fn).bind(this),
54623
54632
  handleDoubleClick: async (view, pos, event) => {
54624
54633
  if (this.options.documentMode !== "editing") return;
54625
- const isHeader = hasSomeParentWithClass(event.target, "pagination-section-header");
54626
- const isFooter = hasSomeParentWithClass(event.target, "pagination-section-footer");
54627
- if (isHeader || isFooter) {
54628
- const eventClone = new event.constructor(event.type);
54629
- event.target.dispatchEvent(eventClone);
54630
- if (this.options.isHeaderOrFooter && this.options.editable) setWordSelection(view, pos);
54631
- return;
54634
+ if (!isHeadless(this)) {
54635
+ const isHeader = hasSomeParentWithClass(event.target, "pagination-section-header");
54636
+ const isFooter = hasSomeParentWithClass(event.target, "pagination-section-footer");
54637
+ if (isHeader || isFooter) {
54638
+ const eventClone = new event.constructor(event.type);
54639
+ event.target.dispatchEvent(eventClone);
54640
+ if (this.options.isHeaderOrFooter && this.options.editable) setWordSelection(view, pos);
54641
+ return;
54642
+ }
54632
54643
  }
54633
54644
  event.stopPropagation();
54634
- if (!this.options.editable) {
54645
+ if (!this.options.editable && !isHeadless(this)) {
54635
54646
  this.setEditable(true, false);
54636
54647
  toggleHeaderFooterEditMode({
54637
54648
  editor: this,
@@ -59267,9 +59278,6 @@ function orderedListSync(editor) {
59267
59278
  }
59268
59279
  });
59269
59280
  }
59270
- const shouldSkipNodeView = (editor) => {
59271
- return editor.options.isHeadless;
59272
- };
59273
59281
  const ListItem = Node$1.create({
59274
59282
  name: "listItem",
59275
59283
  content: "paragraph* block*",
@@ -65241,7 +65249,7 @@ const FieldAnnotation = Node$1.create({
65241
65249
  }
65242
65250
  if (dispatch) {
65243
65251
  commands2.updateFieldAnnotationsAttributes([annotation], attrs);
65244
- if (this.editor.options.pagination) {
65252
+ if (this.editor.options.pagination && !isHeadless(this.editor)) {
65245
65253
  setTimeout(() => {
65246
65254
  const newTr = this.editor.view.state.tr;
65247
65255
  newTr.setMeta("forceUpdatePagination", true);
@@ -67178,7 +67186,9 @@ const PageNumber = Node$1.create({
67178
67186
  const pageNumberNode = schema.nodeFromJSON(pageNumberNodeJSON);
67179
67187
  if (dispatch) {
67180
67188
  tr.replaceSelectionWith(pageNumberNode, false);
67181
- tr.setMeta("forceUpdatePagination", true);
67189
+ if (!isHeadless(editor)) {
67190
+ tr.setMeta("forceUpdatePagination", true);
67191
+ }
67182
67192
  }
67183
67193
  return true;
67184
67194
  }
@@ -75845,6 +75855,10 @@ const Pagination = Extension.create({
75845
75855
  };
75846
75856
  },
75847
75857
  addCommands() {
75858
+ const editor = this.editor;
75859
+ if (isHeadless(editor)) {
75860
+ return {};
75861
+ }
75848
75862
  return {
75849
75863
  insertPageBreak: () => ({ commands: commands2 }) => {
75850
75864
  return commands2.insertContent({
@@ -75855,20 +75869,26 @@ const Pagination = Extension.create({
75855
75869
  * Toggle pagination on/off
75856
75870
  * @returns {void}
75857
75871
  */
75858
- togglePagination: () => ({ tr, state: state2, dispatch, editor }) => {
75872
+ togglePagination: () => ({ tr, state: state2, dispatch, editor: editor2 }) => {
75859
75873
  const isEnabled = PaginationPluginKey.getState(state2)?.isEnabled;
75860
75874
  tr.setMeta(PaginationPluginKey, { isEnabled: !isEnabled });
75861
75875
  if (dispatch) {
75862
75876
  dispatch(tr);
75863
- editor.initDefaultStyles(editor.element, !isEnabled);
75877
+ editor2.initDefaultStyles(editor2.element, !isEnabled);
75864
75878
  return true;
75865
75879
  }
75866
75880
  }
75867
75881
  };
75868
75882
  },
75869
75883
  addShortcuts() {
75884
+ const editor = this.editor;
75885
+ if (isHeadless(editor)) {
75886
+ return {};
75887
+ }
75870
75888
  return {
75871
- "Mod-Enter": () => this.editor.commands.insertPageBreak()
75889
+ "Mod-Enter": () => {
75890
+ return editor.commands.insertPageBreak();
75891
+ }
75872
75892
  };
75873
75893
  },
75874
75894
  /**
@@ -75876,6 +75896,9 @@ const Pagination = Extension.create({
75876
75896
  */
75877
75897
  addPmPlugins() {
75878
75898
  const editor = this.editor;
75899
+ if (isHeadless(editor)) {
75900
+ return [];
75901
+ }
75879
75902
  let isUpdating = false;
75880
75903
  let shouldUpdate = false;
75881
75904
  let hasInitialized = false;
@@ -75891,7 +75914,7 @@ const Pagination = Extension.create({
75891
75914
  isReadyToInit: false,
75892
75915
  decorations: DecorationSet.empty,
75893
75916
  isDebugging,
75894
- isEnabled: editor.options.pagination
75917
+ isEnabled: editor.options.pagination && !isHeadless(editor)
75895
75918
  };
75896
75919
  },
75897
75920
  apply(tr, oldState, prevEditorState, newEditorState) {
@@ -75969,6 +75992,7 @@ const Pagination = Extension.create({
75969
75992
  let previousDecorations = DecorationSet.empty;
75970
75993
  return {
75971
75994
  update: (view) => {
75995
+ if (isHeadless(editor)) return;
75972
75996
  if (!PaginationPluginKey.getState(view.state)?.isEnabled) return;
75973
75997
  if (!shouldUpdate || isUpdating) return;
75974
75998
  const performPaginationUpdate = () => {
@@ -75992,6 +76016,7 @@ const Pagination = Extension.create({
75992
76016
  },
75993
76017
  props: {
75994
76018
  decorations(state2) {
76019
+ if (isHeadless(editor)) return DecorationSet.empty;
75995
76020
  const pluginState = PaginationPluginKey.getState(state2);
75996
76021
  return pluginState.isEnabled ? pluginState.decorations : DecorationSet.empty;
75997
76022
  }
@@ -76360,7 +76385,7 @@ const getHeaderFooterEditorKey = ({ pageNumber, isHeader, isFooter, isFirstHeade
76360
76385
  return void 0;
76361
76386
  };
76362
76387
  const onHeaderFooterDblClick = (editor, currentFocusedSectionEditor) => {
76363
- if (editor.options.documentMode !== "editing") return;
76388
+ if (isHeadless(editor) || editor.options.documentMode !== "editing") return;
76364
76389
  editor.setEditable(false, false);
76365
76390
  toggleHeaderFooterEditMode({
76366
76391
  editor,
@@ -76432,6 +76457,7 @@ function getActualBreakCoords(view, pos, calculatedThreshold) {
76432
76457
  return actualBreak;
76433
76458
  }
76434
76459
  const onImageLoad = (editor) => {
76460
+ if (isHeadless(editor)) return;
76435
76461
  if (typeof requestAnimationFrame !== "function") return;
76436
76462
  requestAnimationFrame(() => {
76437
76463
  const newTr = editor.view.state.tr;
@@ -77271,9 +77297,9 @@ const NodeResizer = Extension.create({
77271
77297
  return {};
77272
77298
  },
77273
77299
  addPmPlugins() {
77274
- const isHeadless = this.editor.options.isHeadless;
77300
+ const isHeadless2 = this.editor.options.isHeadless;
77275
77301
  const hasDocument = typeof document !== "undefined";
77276
- if (isHeadless || !hasDocument) return [];
77302
+ if (isHeadless2 || !hasDocument) return [];
77277
77303
  return [nodeResizer(["image"], this.editor)];
77278
77304
  }
77279
77305
  });
@@ -88566,7 +88592,7 @@ const _hoisted_1$b = {
88566
88592
  key: 0,
88567
88593
  class: "linked-style-buttons"
88568
88594
  };
88569
- const _hoisted_2$8 = ["onClick", "onKeydown"];
88595
+ const _hoisted_2$8 = ["onClick", "onKeydown", "aria-label"];
88570
88596
  const _sfc_main$c = {
88571
88597
  __name: "LinkedStyle",
88572
88598
  props: {
@@ -88611,7 +88637,6 @@ const _sfc_main$c = {
88611
88637
  moveToPreviousStyle(index2);
88612
88638
  break;
88613
88639
  case "Enter":
88614
- console.log("style", style2);
88615
88640
  select(style2);
88616
88641
  break;
88617
88642
  }
@@ -88627,6 +88652,7 @@ const _sfc_main$c = {
88627
88652
  class: vue.normalizeClass(["style-item", { selected: __props.selectedOption === style2.id }]),
88628
88653
  onClick: ($event) => select(style2),
88629
88654
  onKeydown: (event) => handleKeyDown2(event, index2, style2),
88655
+ "aria-label": `Linked style - ${style2.id}`,
88630
88656
  ref_for: true,
88631
88657
  ref_key: "styleRefs",
88632
88658
  ref: styleRefs
@@ -88642,7 +88668,7 @@ const _sfc_main$c = {
88642
88668
  };
88643
88669
  }
88644
88670
  };
88645
- const LinkedStyle = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-698bdb8e"]]);
88671
+ const LinkedStyle = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-9c96d4a1"]]);
88646
88672
  const _hoisted_1$a = {
88647
88673
  key: 0,
88648
88674
  class: "link-title"
@@ -90362,11 +90388,15 @@ const makeDefaultItems = ({
90362
90388
  }
90363
90389
  }
90364
90390
  ],
90365
- onActivate: () => {
90391
+ onActivate: ({ linkedStyleMark }) => {
90392
+ const styles = getQuickFormatList(superToolbar.activeEditor);
90393
+ const selectedStyle = styles?.find((style2) => style2.id === linkedStyleMark?.attrs?.styleId);
90394
+ linkedStyles.label.value = selectedStyle ? selectedStyle.definition.attrs.name : toolbarTexts2.formatText;
90366
90395
  linkedStyles.disabled.value = false;
90367
90396
  },
90368
90397
  onDeactivate: () => {
90369
90398
  linkedStyles.disabled.value = true;
90399
+ linkedStyles.label.value = toolbarTexts2.formatText;
90370
90400
  }
90371
90401
  });
90372
90402
  const renderIcon = (value, selectedValue) => {
@@ -91071,10 +91101,11 @@ class SuperToolbar extends EventEmitter2 {
91071
91101
  item.setDisabled(!canRejectTrackedChanges);
91072
91102
  }
91073
91103
  if (item.name.value === "linkedStyles") {
91104
+ const linkedStyleMark = marks.find((mark) => mark.name === "styleId");
91074
91105
  if (this.activeEditor && !getQuickFormatList(this.activeEditor).length) {
91075
91106
  return item.deactivate();
91076
91107
  } else {
91077
- return item.activate();
91108
+ return item.activate({ linkedStyleMark });
91078
91109
  }
91079
91110
  }
91080
91111
  const rawActiveMark = marks.find((mark) => mark.name === item.name.value);
@@ -92440,7 +92471,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
92440
92471
  }
92441
92472
  });
92442
92473
  function adjustPaginationBreaks(editorElem, editor) {
92443
- if (!editorElem.value || !editor?.value?.options?.scale) return;
92474
+ if (!editorElem.value || !editor?.value?.options?.scale || isHeadless(editor)) return;
92444
92475
  const zoom = editor.value.options.scale;
92445
92476
  const bounds = editorElem.value.getBoundingClientRect();
92446
92477
  const breakNodes = editorElem.value.querySelectorAll(".pagination-break-wrapper");
@@ -92874,6 +92905,7 @@ const _sfc_main$1 = {
92874
92905
  ...props.options
92875
92906
  });
92876
92907
  editor.value.on("paginationUpdate", () => {
92908
+ if (isHeadless(editor.value)) return;
92877
92909
  adjustPaginationBreaks(editorElem, editor);
92878
92910
  });
92879
92911
  editor.value.on("collaborationReady", () => {
@@ -93032,7 +93064,7 @@ const _sfc_main$1 = {
93032
93064
  };
93033
93065
  }
93034
93066
  };
93035
- const SuperEditor = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-9d25f5b3"]]);
93067
+ const SuperEditor = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-cd3558fe"]]);
93036
93068
  const _hoisted_1 = ["innerHTML"];
93037
93069
  const _sfc_main = {
93038
93070
  __name: "SuperInput",
@@ -1 +1 @@
1
- {"version":3,"file":"SuperDoc.d.ts","sourceRoot":"","sources":["../../../../../src/core/SuperDoc.js"],"names":[],"mappings":"AAsBA,6CAA6C;AAC7C,mEAAmE;AACnE,qDAAqD;AACrD,mDAAmD;AACnD,iDAAiD;AACjD,6DAA6D;AAC7D,iDAAiD;AACjD,6DAA6D;AAE7D;;;;;;GAMG;AACH;IACE,4BAA4B;IAC5B,qBADW,KAAK,CAAC,MAAM,CAAC,CACgB;IA0ExC;;OAEG;IACH,oBAFW,MAAM,EAKhB;IA9ED,qBAAqB;IACrB,SADW,MAAM,CACT;IAER,qBAAqB;IACrB,OADW,IAAI,EAAE,CACX;IAEN,4CAA4C;IAC5C,MADW,OAAO,KAAK,EAAE,GAAG,GAAG,SAAS,CACnC;IAEL,4EAA4E;IAC5E,UADW,OAAO,sBAAsB,EAAE,kBAAkB,GAAG,SAAS,CAC/D;IAET,qBAAqB;IACrB,QADW,MAAM,CA0Df;IAmCA,4BAA6B;IAC7B,mBAAmB;IAMnB,gBAA+C;IAC/C,iBAAgC;IAehC,6BAA4B;IAE5B,YAAkB;IAElB,eAAuC;IAEvC;;;;;;;;;;;;0BAkxBkite,aAAa;;;;;;;;;;;6BAA4uJ,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAA44a,aAAa;0BAA/vuB,aAAa;kDAAizX,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAAs7tB,UAAU;kDAAuV,UAAU,aAA+E,UAAU;oCAAgZ,UAAU;;;;;;;;;MAlxBlgqgB;IACxB,gBAAkB;IASlB,qBAAqB;IAErB,kBAA6C;IAC7C,iCAA4C;IAM9C;;;OAGG;IACH,+BAFa,MAAM,CAIlB;IAED;;;MAKC;IAED;;;OAGG;IACH,eAFa,WAAW,GAAG,IAAI,CAO9B;IAsFC,SAAc;IACd,WAAkB;IAKlB,mBAAkC;IAClC,mBAAkC;IAClC,2BAAkD;IAuClD,yBAA2B;IA4B7B;;;;OAIG;IACH,0BAFa,IAAI,CAKhB;IAED;;;;OAIG;IACH,iCAFa,IAAI,CAIhB;IAOC,qBAME;IAGJ;;;;;OAKG;IACH,kCAHG;QAAsB,KAAK,EAAnB,KAAK;QACU,MAAM,EAArB,MAAM;KAChB,QAKA;IAED;;;OAGG;IACH,6BAFa,IAAI,CAIhB;IAED;;;OAGG;IACH,kBAFa,IAAI,CAMhB;IAED;;;;OAIG;IACH,oCAHW,MAAM,GACJ,IAAI,CAIhB;IAED;;;;OAIG;IACH,8BAHW,MAAM,GACJ,IAAI,CAMhB;IAED;;;OAGG;IACH,0BAFa,IAAI,CAIhB;IAED;;;OAGG;IACH,iCAFW,OAAO,QAIjB;IAMD;;;;OAIG;IACH,wBAHW,MAAM,GACJ,IAAI,CAQhB;IAED;;;;OAIG;IACH,eAFa,IAAI,CAOhB;IAED;;;OAGG;IACH,oBAFa,IAAI,CAUhB;IAED;;;;;;;;;;;;OAYG;IACH,iFAPG;QAAuB,UAAU,EAAzB,MAAM;QACU,IAAI,GAApB,MAAM;QACW,UAAU,GAA3B,OAAO;QACc,OAAO,GAA5B,MAAO,IAAI;QACU,aAAa,GAAlC,MAAO,IAAI;KACnB,GAAU,OAAO,CA2BnB;IAIC,oBAAmF;IACnF,sBAAmB;IA2BrB;;;;;OAKG;IACH,yBAHW,OAAO,GACL,IAAI,CAQhB;IAFC,4BAA0E;IAI5E;;;OAGG;IACH,sBAFa,IAAI,CAQhB;IAED;;;;;OAKG;IACH,qCAHG;QAAuB,IAAI;QACJ,QAAQ,EAAvB,MAAM;KAChB,QAOA;IAED;;;;OAIG;IACH,sBAHW,YAAY,GACV,IAAI,CAehB;IAsDD;;;;OAIG;IACH,aAHW,MAAM,GAAG,MAAM,GACb,KAAQ,CAIpB;IAED;;;;OAIG;IACH,8BAFa,IAAI,CAIhB;IAED;;;OAGG;IACH,iBAFW,OAAO,QAUjB;IAED;;;OAGG;IACH,uBAFa,KAAK,CAAC,MAAM,CAAC,CAYzB;IAED;;;;OAIG;IACH,0CAFW,IAAI,QAOd;IAED;;;;OAIG;IACH,8IAHW,YAAY,GACV,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,CA0ChC;IAED;;;;OAIG;IACH,yEAHW;QAAE,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,OAAO,CAAA;KAAE,GAC7C,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAkChC;IAWK,kCAAkC;IAsBxC;;;OAGG;IACH,QAFa,OAAO,CAAC,IAAI,EAAE,CAAC,CAY3B;IAED;;;OAGG;IACH,WAFa,IAAI,CAiChB;IAED;;;OAGG;IACH,SAFa,IAAI,CAahB;IAED;;;;OAIG;IACH,oCAHW,OAAO,GACL,IAAI,CAMhB;;CACF;mBA36Ba,OAAO,SAAS,EAAE,IAAI;8BACtB,OAAO,SAAS,EAAE,eAAe;uBACjC,OAAO,SAAS,EAAE,QAAQ;sBAC1B,OAAO,SAAS,EAAE,OAAO;qBACzB,OAAO,SAAS,EAAE,MAAM;2BACxB,OAAO,SAAS,EAAE,YAAY;qBAC9B,OAAO,SAAS,EAAE,MAAM;2BACxB,OAAO,SAAS,EAAE,YAAY;6BA3Bf,eAAe;0BASlB,4BAA4B;6BAJd,mCAAmC;8BAC7C,iEAAiE"}
1
+ {"version":3,"file":"SuperDoc.d.ts","sourceRoot":"","sources":["../../../../../src/core/SuperDoc.js"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/core/types/index.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/core/types/index.js"],"names":[],"mappings":"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"}
package/dist/style.css CHANGED
@@ -1740,13 +1740,13 @@ on the right if it is inside shape textbox.
1740
1740
  color: #666;
1741
1741
  }
1742
1742
 
1743
- .style-name[data-v-698bdb8e] {
1743
+ .style-name[data-v-9c96d4a1] {
1744
1744
  padding: 16px 10px;
1745
1745
  }
1746
- .style-name[data-v-698bdb8e]:hover {
1746
+ .style-name[data-v-9c96d4a1]:hover {
1747
1747
  background-color: #c8d0d8;
1748
1748
  }
1749
- .linked-style-buttons[data-v-698bdb8e] {
1749
+ .linked-style-buttons[data-v-9c96d4a1] {
1750
1750
  display: flex;
1751
1751
  flex-direction: column;
1752
1752
  width: 100%;
@@ -1757,7 +1757,7 @@ on the right if it is inside shape textbox.
1757
1757
  margin: 0;
1758
1758
  overflow: auto;
1759
1759
  }
1760
- .button-icon[data-v-698bdb8e] {
1760
+ .button-icon[data-v-9c96d4a1] {
1761
1761
  cursor: pointer;
1762
1762
  padding: 5px;
1763
1763
  font-size: 16px;
@@ -1769,10 +1769,10 @@ on the right if it is inside shape textbox.
1769
1769
  align-items: center;
1770
1770
  box-sizing: border-box;
1771
1771
  }
1772
- .button-icon[data-v-698bdb8e]:hover {
1772
+ .button-icon[data-v-9c96d4a1]:hover {
1773
1773
  background-color: #d8dee5;
1774
1774
  }
1775
- .button-icon[data-v-698bdb8e] svg {
1775
+ .button-icon[data-v-9c96d4a1] svg {
1776
1776
  width: 100%;
1777
1777
  height: 100%;
1778
1778
  display: block;
@@ -2321,10 +2321,10 @@ on the right if it is inside shape textbox.
2321
2321
  min-height: 40px;
2322
2322
  }
2323
2323
 
2324
- .editor-element[data-v-9d25f5b3] {
2324
+ .editor-element[data-v-cd3558fe] {
2325
2325
  position: relative;
2326
2326
  }
2327
- .super-editor-container[data-v-9d25f5b3] {
2327
+ .super-editor-container[data-v-cd3558fe] {
2328
2328
  width: auto;
2329
2329
  height: auto;
2330
2330
  min-width: 8in;
@@ -2333,13 +2333,13 @@ on the right if it is inside shape textbox.
2333
2333
  display: flex;
2334
2334
  flex-direction: column;
2335
2335
  }
2336
- .ruler[data-v-9d25f5b3] {
2336
+ .ruler[data-v-cd3558fe] {
2337
2337
  margin-bottom: 2px;
2338
2338
  }
2339
- .super-editor[data-v-9d25f5b3] {
2339
+ .super-editor[data-v-cd3558fe] {
2340
2340
  color: initial;
2341
2341
  }
2342
- .placeholder-editor[data-v-9d25f5b3] {
2342
+ .placeholder-editor[data-v-cd3558fe] {
2343
2343
  position: absolute;
2344
2344
  top: 0;
2345
2345
  left: 0;
@@ -2351,7 +2351,7 @@ on the right if it is inside shape textbox.
2351
2351
  background-color: white;
2352
2352
  box-sizing: border-box;
2353
2353
  }
2354
- .placeholder-title[data-v-9d25f5b3] {
2354
+ .placeholder-title[data-v-cd3558fe] {
2355
2355
  display: flex;
2356
2356
  justify-content: center;
2357
2357
  margin-bottom: 40px;
@@ -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-Bt0gPwYj.js";
3
- import { _ as _export_sfc } from "./chunks/editor-BF7w_sd7.js";
2
+ import { T as TextSelection } from "./chunks/converter-BxHd90vg.js";
3
+ import { _ as _export_sfc } from "./chunks/editor-BN_AUZwq.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 = {}) {
@@ -36045,7 +36045,7 @@ const _SuperConverter = class _SuperConverter {
36045
36045
  static getStoredSuperdocVersion(docx) {
36046
36046
  return _SuperConverter.getStoredCustomProperty(docx, "SuperdocVersion");
36047
36047
  }
36048
- static setStoredSuperdocVersion(docx = this.convertedXml, version = "0.29.0-next.15") {
36048
+ static setStoredSuperdocVersion(docx = this.convertedXml, version = "0.29.0-next.17") {
36049
36049
  return _SuperConverter.setStoredCustomProperty(docx, "SuperdocVersion", version, false);
36050
36050
  }
36051
36051
  /**
@@ -1,4 +1,4 @@
1
- import { p as process$1, az as commonjsGlobal, B as Buffer, aA as getDefaultExportFromCjs, aB as getContentTypesFromXml, aC as xmljs } from "./converter-Bt0gPwYj.js";
1
+ import { p as process$1, az as commonjsGlobal, B as Buffer, aA as getDefaultExportFromCjs, aB as getContentTypesFromXml, aC as xmljs } from "./converter-BxHd90vg.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
  }