@harbour-enterprises/superdoc 0.14.13 → 0.14.14-next.2

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.
@@ -26379,7 +26379,7 @@ class DocxExporter {
26379
26379
  }
26380
26380
  }
26381
26381
  _DocxExporter_instances = /* @__PURE__ */ new WeakSet();
26382
- generate_xml_as_list_fn = function(data, debug = falase) {
26382
+ generate_xml_as_list_fn = function(data, debug = false) {
26383
26383
  const json = JSON.parse(JSON.stringify(data));
26384
26384
  const declaration = this.converter.declaration.attributes;
26385
26385
  const xmlTag = `<?xml${Object.entries(declaration).map(([key, value]) => ` ${key}="${value}"`).join("")}?>`;
@@ -28331,7 +28331,7 @@ const _SuperConverter = class _SuperConverter2 {
28331
28331
  return;
28332
28332
  }
28333
28333
  }
28334
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.13") {
28334
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.14-next.2") {
28335
28335
  const customLocation = "docProps/custom.xml";
28336
28336
  if (!docx[customLocation]) {
28337
28337
  docx[customLocation] = generateCustomXml();
@@ -28809,7 +28809,7 @@ function storeSuperdocVersion(docx) {
28809
28809
  function generateCustomXml() {
28810
28810
  return DEFAULT_CUSTOM_XML;
28811
28811
  }
28812
- function generateSuperdocVersion(pid = 2, version2 = "0.14.13") {
28812
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.14-next.2") {
28813
28813
  return {
28814
28814
  type: "element",
28815
28815
  name: "property",
@@ -33732,6 +33732,7 @@ const splitListItem = () => (props) => {
33732
33732
  const paraOffset = $from.parentOffset;
33733
33733
  const beforeCursor = paragraphNode.content.cut(0, paraOffset);
33734
33734
  const afterCursor = paragraphNode.content.cut(paraOffset);
33735
+ let firstList, secondList;
33735
33736
  const listItemHasMultipleParagraphs = listItemNode.childCount > 1;
33736
33737
  if (listItemHasMultipleParagraphs) {
33737
33738
  const paragraphIndex = $from.index(-1);
@@ -33769,19 +33770,19 @@ const splitListItem = () => (props) => {
33769
33770
  { ...listItemNode.attrs },
33770
33771
  Fragment.from(firstListContent)
33771
33772
  );
33772
- var firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
33773
+ firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
33773
33774
  const secondListItem = editor.schema.nodes.listItem.create(
33774
33775
  { ...listItemNode.attrs },
33775
33776
  Fragment.from(secondListContent)
33776
33777
  );
33777
- var secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
33778
+ secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
33778
33779
  } else {
33779
33780
  const firstParagraph = editor.schema.nodes.paragraph.create(paragraphNode.attrs, beforeCursor);
33780
33781
  const firstListItem = editor.schema.nodes.listItem.create({ ...listItemNode.attrs }, firstParagraph);
33781
- var firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
33782
+ firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
33782
33783
  const secondParagraph = editor.schema.nodes.paragraph.create(paragraphNode.attrs, afterCursor);
33783
33784
  const secondListItem = editor.schema.nodes.listItem.create({ ...listItemNode.attrs }, secondParagraph);
33784
- var secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
33785
+ secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
33785
33786
  }
33786
33787
  if (!firstList || !secondList) return false;
33787
33788
  const listStart = matchedParentList.pos;
@@ -42289,7 +42290,6 @@ const createHeaderFooterEditor = ({
42289
42290
  });
42290
42291
  if (appendToBody) document.body.appendChild(editorContainer);
42291
42292
  const headerFooterEditor = new Editor({
42292
- documentMode: editor.options.documentMode,
42293
42293
  role: editor.options.role,
42294
42294
  loadFromSchema: true,
42295
42295
  mode: "docx",
@@ -44051,7 +44051,7 @@ const shouldMigrateList = (listItem) => {
44051
44051
  if (firstChild && firstChild.type.name === "listItem") {
44052
44052
  const { attrs } = firstChild;
44053
44053
  const { level, listNumberingType } = attrs || {};
44054
- if (typeof level === void 0 || !listNumberingType) {
44054
+ if (typeof level === "undefined" || !listNumberingType) {
44055
44055
  return true;
44056
44056
  }
44057
44057
  const childContent = firstChild?.content?.content;
@@ -44906,9 +44906,9 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
44906
44906
  * @returns {boolean} Whether migrations are needed
44907
44907
  */
44908
44908
  static checkIfMigrationsNeeded(data) {
44909
- if (!version) version = "initial";
44910
- const migrations = getNecessaryMigrations(version) || [];
44911
- console.debug("[checkVersionMigrations] Migrations needed:", version, migrations.length);
44909
+ const dataVersion = version || "initial";
44910
+ const migrations = getNecessaryMigrations(dataVersion) || [];
44911
+ console.debug("[checkVersionMigrations] Migrations needed:", dataVersion, migrations.length);
44912
44912
  return migrations.length > 0;
44913
44913
  }
44914
44914
  /**
@@ -44916,7 +44916,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
44916
44916
  * @returns {Object | void} Migration results
44917
44917
  */
44918
44918
  processCollaborationMigrations() {
44919
- console.debug("[checkVersionMigrations] Current editor version", "0.14.13");
44919
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.14-next.2");
44920
44920
  if (!this.options.ydoc) return;
44921
44921
  const metaMap = this.options.ydoc.getMap("meta");
44922
44922
  let docVersion = metaMap.get("version");
@@ -47469,7 +47469,6 @@ const ListItem = Node$1.create({
47469
47469
  },
47470
47470
  styleId: {
47471
47471
  rendered: false,
47472
- keepOnSplit: true,
47473
47472
  keepOnSplit: true
47474
47473
  },
47475
47474
  customFormat: {
@@ -51969,7 +51968,7 @@ const FieldAnnotation = Node$1.create({
51969
51968
  ...node2.attrs,
51970
51969
  // reset displayLabel to default.
51971
51970
  displayLabel,
51972
- // reset attrs ​​for specific types.
51971
+ // reset attrs for specific types.
51973
51972
  imageSrc: null,
51974
51973
  rawHtml: null,
51975
51974
  linkUrl: null
@@ -26396,7 +26396,7 @@ class DocxExporter {
26396
26396
  }
26397
26397
  }
26398
26398
  _DocxExporter_instances = /* @__PURE__ */ new WeakSet();
26399
- generate_xml_as_list_fn = function(data, debug = falase) {
26399
+ generate_xml_as_list_fn = function(data, debug = false) {
26400
26400
  const json = JSON.parse(JSON.stringify(data));
26401
26401
  const declaration = this.converter.declaration.attributes;
26402
26402
  const xmlTag = `<?xml${Object.entries(declaration).map(([key, value]) => ` ${key}="${value}"`).join("")}?>`;
@@ -28348,7 +28348,7 @@ const _SuperConverter = class _SuperConverter2 {
28348
28348
  return;
28349
28349
  }
28350
28350
  }
28351
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.13") {
28351
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.14-next.2") {
28352
28352
  const customLocation = "docProps/custom.xml";
28353
28353
  if (!docx[customLocation]) {
28354
28354
  docx[customLocation] = generateCustomXml();
@@ -28826,7 +28826,7 @@ function storeSuperdocVersion(docx) {
28826
28826
  function generateCustomXml() {
28827
28827
  return DEFAULT_CUSTOM_XML;
28828
28828
  }
28829
- function generateSuperdocVersion(pid = 2, version2 = "0.14.13") {
28829
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.14-next.2") {
28830
28830
  return {
28831
28831
  type: "element",
28832
28832
  name: "property",
@@ -33749,6 +33749,7 @@ const splitListItem = () => (props) => {
33749
33749
  const paraOffset = $from.parentOffset;
33750
33750
  const beforeCursor = paragraphNode.content.cut(0, paraOffset);
33751
33751
  const afterCursor = paragraphNode.content.cut(paraOffset);
33752
+ let firstList, secondList;
33752
33753
  const listItemHasMultipleParagraphs = listItemNode.childCount > 1;
33753
33754
  if (listItemHasMultipleParagraphs) {
33754
33755
  const paragraphIndex = $from.index(-1);
@@ -33786,19 +33787,19 @@ const splitListItem = () => (props) => {
33786
33787
  { ...listItemNode.attrs },
33787
33788
  Fragment.from(firstListContent)
33788
33789
  );
33789
- var firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
33790
+ firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
33790
33791
  const secondListItem = editor.schema.nodes.listItem.create(
33791
33792
  { ...listItemNode.attrs },
33792
33793
  Fragment.from(secondListContent)
33793
33794
  );
33794
- var secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
33795
+ secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
33795
33796
  } else {
33796
33797
  const firstParagraph = editor.schema.nodes.paragraph.create(paragraphNode.attrs, beforeCursor);
33797
33798
  const firstListItem = editor.schema.nodes.listItem.create({ ...listItemNode.attrs }, firstParagraph);
33798
- var firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
33799
+ firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
33799
33800
  const secondParagraph = editor.schema.nodes.paragraph.create(paragraphNode.attrs, afterCursor);
33800
33801
  const secondListItem = editor.schema.nodes.listItem.create({ ...listItemNode.attrs }, secondParagraph);
33801
- var secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
33802
+ secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
33802
33803
  }
33803
33804
  if (!firstList || !secondList) return false;
33804
33805
  const listStart = matchedParentList.pos;
@@ -42306,7 +42307,6 @@ const createHeaderFooterEditor = ({
42306
42307
  });
42307
42308
  if (appendToBody) document.body.appendChild(editorContainer);
42308
42309
  const headerFooterEditor = new Editor({
42309
- documentMode: editor.options.documentMode,
42310
42310
  role: editor.options.role,
42311
42311
  loadFromSchema: true,
42312
42312
  mode: "docx",
@@ -44068,7 +44068,7 @@ const shouldMigrateList = (listItem) => {
44068
44068
  if (firstChild && firstChild.type.name === "listItem") {
44069
44069
  const { attrs } = firstChild;
44070
44070
  const { level, listNumberingType } = attrs || {};
44071
- if (typeof level === void 0 || !listNumberingType) {
44071
+ if (typeof level === "undefined" || !listNumberingType) {
44072
44072
  return true;
44073
44073
  }
44074
44074
  const childContent = firstChild?.content?.content;
@@ -44923,9 +44923,9 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
44923
44923
  * @returns {boolean} Whether migrations are needed
44924
44924
  */
44925
44925
  static checkIfMigrationsNeeded(data) {
44926
- if (!version) version = "initial";
44927
- const migrations = getNecessaryMigrations(version) || [];
44928
- console.debug("[checkVersionMigrations] Migrations needed:", version, migrations.length);
44926
+ const dataVersion = version || "initial";
44927
+ const migrations = getNecessaryMigrations(dataVersion) || [];
44928
+ console.debug("[checkVersionMigrations] Migrations needed:", dataVersion, migrations.length);
44929
44929
  return migrations.length > 0;
44930
44930
  }
44931
44931
  /**
@@ -44933,7 +44933,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
44933
44933
  * @returns {Object | void} Migration results
44934
44934
  */
44935
44935
  processCollaborationMigrations() {
44936
- console.debug("[checkVersionMigrations] Current editor version", "0.14.13");
44936
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.14-next.2");
44937
44937
  if (!this.options.ydoc) return;
44938
44938
  const metaMap = this.options.ydoc.getMap("meta");
44939
44939
  let docVersion = metaMap.get("version");
@@ -47486,7 +47486,6 @@ const ListItem = Node$1.create({
47486
47486
  },
47487
47487
  styleId: {
47488
47488
  rendered: false,
47489
- keepOnSplit: true,
47490
47489
  keepOnSplit: true
47491
47490
  },
47492
47491
  customFormat: {
@@ -51986,7 +51985,7 @@ const FieldAnnotation = Node$1.create({
51986
51985
  ...node2.attrs,
51987
51986
  // reset displayLabel to default.
51988
51987
  displayLabel,
51989
- // reset attrs ​​for specific types.
51988
+ // reset attrs for specific types.
51990
51989
  imageSrc: null,
51991
51990
  rawHtml: null,
51992
51991
  linkUrl: null
@@ -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-C5f6eTMy.js";
3
- import { _ as _export_sfc } from "./chunks/editor-DHiDsdyh.js";
2
+ import { T as TextSelection } from "./chunks/converter-CV2vZYYK.js";
3
+ import { _ as _export_sfc } from "./chunks/editor-Bm6WIL0T.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 = {}) {
@@ -26377,7 +26377,7 @@ class DocxExporter {
26377
26377
  }
26378
26378
  }
26379
26379
  _DocxExporter_instances = new WeakSet();
26380
- generate_xml_as_list_fn = function(data, debug = falase) {
26380
+ generate_xml_as_list_fn = function(data, debug = false) {
26381
26381
  const json = JSON.parse(JSON.stringify(data));
26382
26382
  const declaration = this.converter.declaration.attributes;
26383
26383
  const xmlTag = `<?xml${Object.entries(declaration).map(([key, value]) => ` ${key}="${value}"`).join("")}?>`;
@@ -28329,7 +28329,7 @@ const _SuperConverter = class _SuperConverter {
28329
28329
  return;
28330
28330
  }
28331
28331
  }
28332
- static updateDocumentVersion(docx = this.convertedXml, version = "0.14.13") {
28332
+ static updateDocumentVersion(docx = this.convertedXml, version = "0.14.14-next.2") {
28333
28333
  const customLocation = "docProps/custom.xml";
28334
28334
  if (!docx[customLocation]) {
28335
28335
  docx[customLocation] = generateCustomXml();
@@ -28810,7 +28810,7 @@ function storeSuperdocVersion(docx) {
28810
28810
  function generateCustomXml() {
28811
28811
  return DEFAULT_CUSTOM_XML;
28812
28812
  }
28813
- function generateSuperdocVersion(pid = 2, version = "0.14.13") {
28813
+ function generateSuperdocVersion(pid = 2, version = "0.14.14-next.2") {
28814
28814
  return {
28815
28815
  type: "element",
28816
28816
  name: "property",
@@ -1,4 +1,4 @@
1
- import { H as process$1, ar as commonjsGlobal, I as Buffer, as as getDefaultExportFromCjs, at as getContentTypesFromXml, au as xmljs } from "./converter-C5f6eTMy.js";
1
+ import { H as process$1, ar as commonjsGlobal, I as Buffer, as as getDefaultExportFromCjs, at as getContentTypesFromXml, au as xmljs } from "./converter-CV2vZYYK.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, g as getExtensionConfigField, b as getMarkType, d as getMarksFromSelection, e as getNodeType, f as getSchemaTypeNameByName, S as Schema$1, h as cleanSchemaItem, T as TextSelection, i as canSplit, l as liftTarget, A as AllSelection, j as canJoin, k as joinPoint, N as NodeSelection, m as Selection, r as replaceStep$1, F as Fragment, R as ReplaceAroundStep$1, n as Slice, o as defaultBlockAt$1, p as isTextSelection, q as getMarkRange, s as isMarkActive, t as isNodeActive, u as deleteProps, D as DOMParser$1, v as ReplaceStep, w as NodeRange, x as findWrapping, y as findParentNode, L as ListHelpers, z as isMacOS, B as isIOS, C as DOMSerializer, E as Mark$1, G as dropPoint, H as process$1, I as Buffer2, J as getSchemaTypeByName, K as inputRulesPlugin, O as TrackDeleteMarkName, Q as TrackInsertMarkName, U as v4, V as TrackFormatMarkName, W as comments_module_events, X as findMark, Y as objectIncludes, Z as AddMarkStep, _ as RemoveMarkStep, $ as twipsToLines, a0 as pixelsToTwips, a1 as findParentNodeClosestToPos, a2 as helpers, a3 as posToDOMRect, a4 as CommandService, a5 as SuperConverter, a6 as createDocument, a7 as EditorState, a8 as hasSomeParentWithClass, a9 as isActive, aa as unflattenListsInHtml, ab as parseSizeUnit, ac as minMax, ad as getLineHeightValueString, ae as InputRule, af as kebabCase, ag as generateOrderedListIndex, ah as getListItemStyleDefinitions, ai as docxNumberigHelpers, aj as parseIndentElement, ak as combineIndents, al as getColStyleDeclaration, am as SelectionRange, an as Transform, ao as isInTable$1, ap as createColGroup, aq as generateDocxRandomId } from "./converter-C5f6eTMy.js";
15
+ import { P as PluginKey, a as Plugin, M as Mapping, c as callOrGet, g as getExtensionConfigField, b as getMarkType, d as getMarksFromSelection, e as getNodeType, f as getSchemaTypeNameByName, S as Schema$1, h as cleanSchemaItem, T as TextSelection, i as canSplit, l as liftTarget, A as AllSelection, j as canJoin, k as joinPoint, N as NodeSelection, m as Selection, r as replaceStep$1, F as Fragment, R as ReplaceAroundStep$1, n as Slice, o as defaultBlockAt$1, p as isTextSelection, q as getMarkRange, s as isMarkActive, t as isNodeActive, u as deleteProps, D as DOMParser$1, v as ReplaceStep, w as NodeRange, x as findWrapping, y as findParentNode, L as ListHelpers, z as isMacOS, B as isIOS, C as DOMSerializer, E as Mark$1, G as dropPoint, H as process$1, I as Buffer2, J as getSchemaTypeByName, K as inputRulesPlugin, O as TrackDeleteMarkName, Q as TrackInsertMarkName, U as v4, V as TrackFormatMarkName, W as comments_module_events, X as findMark, Y as objectIncludes, Z as AddMarkStep, _ as RemoveMarkStep, $ as twipsToLines, a0 as pixelsToTwips, a1 as findParentNodeClosestToPos, a2 as helpers, a3 as posToDOMRect, a4 as CommandService, a5 as SuperConverter, a6 as createDocument, a7 as EditorState, a8 as hasSomeParentWithClass, a9 as isActive, aa as unflattenListsInHtml, ab as parseSizeUnit, ac as minMax, ad as getLineHeightValueString, ae as InputRule, af as kebabCase, ag as generateOrderedListIndex, ah as getListItemStyleDefinitions, ai as docxNumberigHelpers, aj as parseIndentElement, ak as combineIndents, al as getColStyleDeclaration, am as SelectionRange, an as Transform, ao as isInTable$1, ap as createColGroup, aq as generateDocxRandomId } from "./converter-CV2vZYYK.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-DucuzM0s.js";
17
+ import { D as DocxZipper } from "./docx-zipper-DIL-peaj.js";
18
18
  var GOOD_LEAF_SIZE = 200;
19
19
  var RopeSequence = function RopeSequence2() {
20
20
  };
@@ -2388,6 +2388,7 @@ const splitListItem = () => (props) => {
2388
2388
  const paraOffset = $from.parentOffset;
2389
2389
  const beforeCursor = paragraphNode.content.cut(0, paraOffset);
2390
2390
  const afterCursor = paragraphNode.content.cut(paraOffset);
2391
+ let firstList, secondList;
2391
2392
  const listItemHasMultipleParagraphs = listItemNode.childCount > 1;
2392
2393
  if (listItemHasMultipleParagraphs) {
2393
2394
  const paragraphIndex = $from.index(-1);
@@ -2425,19 +2426,19 @@ const splitListItem = () => (props) => {
2425
2426
  { ...listItemNode.attrs },
2426
2427
  Fragment.from(firstListContent)
2427
2428
  );
2428
- var firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
2429
+ firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
2429
2430
  const secondListItem = editor.schema.nodes.listItem.create(
2430
2431
  { ...listItemNode.attrs },
2431
2432
  Fragment.from(secondListContent)
2432
2433
  );
2433
- var secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
2434
+ secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
2434
2435
  } else {
2435
2436
  const firstParagraph = editor.schema.nodes.paragraph.create(paragraphNode.attrs, beforeCursor);
2436
2437
  const firstListItem = editor.schema.nodes.listItem.create({ ...listItemNode.attrs }, firstParagraph);
2437
- var firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
2438
+ firstList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(firstListItem));
2438
2439
  const secondParagraph = editor.schema.nodes.paragraph.create(paragraphNode.attrs, afterCursor);
2439
2440
  const secondListItem = editor.schema.nodes.listItem.create({ ...listItemNode.attrs }, secondParagraph);
2440
- var secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
2441
+ secondList = editor.schema.nodes.orderedList.createAndFill(parentListNode.attrs, Fragment.from(secondListItem));
2441
2442
  }
2442
2443
  if (!firstList || !secondList) return false;
2443
2444
  const listStart = matchedParentList.pos;
@@ -10954,7 +10955,6 @@ const createHeaderFooterEditor = ({
10954
10955
  });
10955
10956
  if (appendToBody) document.body.appendChild(editorContainer);
10956
10957
  const headerFooterEditor = new Editor({
10957
- documentMode: editor.options.documentMode,
10958
10958
  role: editor.options.role,
10959
10959
  loadFromSchema: true,
10960
10960
  mode: "docx",
@@ -12716,7 +12716,7 @@ const shouldMigrateList = (listItem) => {
12716
12716
  if (firstChild && firstChild.type.name === "listItem") {
12717
12717
  const { attrs } = firstChild;
12718
12718
  const { level, listNumberingType } = attrs || {};
12719
- if (typeof level === void 0 || !listNumberingType) {
12719
+ if (typeof level === "undefined" || !listNumberingType) {
12720
12720
  return true;
12721
12721
  }
12722
12722
  const childContent = firstChild?.content?.content;
@@ -13599,9 +13599,9 @@ const _Editor = class _Editor extends EventEmitter {
13599
13599
  * @returns {boolean} Whether migrations are needed
13600
13600
  */
13601
13601
  static checkIfMigrationsNeeded(data) {
13602
- if (!version) version = "initial";
13603
- const migrations = getNecessaryMigrations(version) || [];
13604
- console.debug("[checkVersionMigrations] Migrations needed:", version, migrations.length);
13602
+ const dataVersion = version || "initial";
13603
+ const migrations = getNecessaryMigrations(dataVersion) || [];
13604
+ console.debug("[checkVersionMigrations] Migrations needed:", dataVersion, migrations.length);
13605
13605
  return migrations.length > 0;
13606
13606
  }
13607
13607
  /**
@@ -13609,7 +13609,7 @@ const _Editor = class _Editor extends EventEmitter {
13609
13609
  * @returns {Object | void} Migration results
13610
13610
  */
13611
13611
  processCollaborationMigrations() {
13612
- console.debug("[checkVersionMigrations] Current editor version", "0.14.13");
13612
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.14-next.2");
13613
13613
  if (!this.options.ydoc) return;
13614
13614
  const metaMap = this.options.ydoc.getMap("meta");
13615
13615
  let docVersion = metaMap.get("version");
@@ -16299,7 +16299,6 @@ const ListItem = Node$1.create({
16299
16299
  },
16300
16300
  styleId: {
16301
16301
  rendered: false,
16302
- keepOnSplit: true,
16303
16302
  keepOnSplit: true
16304
16303
  },
16305
16304
  customFormat: {
@@ -20799,7 +20798,7 @@ const FieldAnnotation = Node$1.create({
20799
20798
  ...node.attrs,
20800
20799
  // reset displayLabel to default.
20801
20800
  displayLabel,
20802
- // reset attrs ​​for specific types.
20801
+ // reset attrs for specific types.
20803
20802
  imageSrc: null,
20804
20803
  rawHtml: null,
20805
20804
  linkUrl: null
@@ -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 { H as process$1 } from "./converter-C5f6eTMy.js";
3
- import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-DHiDsdyh.js";
2
+ import { H as process$1 } from "./converter-CV2vZYYK.js";
3
+ import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-Bm6WIL0T.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 { a5 } from "./chunks/converter-C5f6eTMy.js";
1
+ import { a5 } from "./chunks/converter-CV2vZYYK.js";
2
2
  export {
3
3
  a5 as SuperConverter
4
4
  };
@@ -1 +1 @@
1
- {"version":3,"file":"splitListItem.d.ts","sourceRoot":"","sources":["../../../src/core/commands/splitListItem.js"],"names":[],"mappings":"AAgBO,kCAA6B,UAAK,aAuIxC"}
1
+ {"version":3,"file":"splitListItem.d.ts","sourceRoot":"","sources":["../../../src/core/commands/splitListItem.js"],"names":[],"mappings":"AAgBO,kCAA6B,UAAK,aA0IxC"}
@@ -1,5 +1,5 @@
1
- import "./chunks/converter-C5f6eTMy.js";
2
- import { D } from "./chunks/docx-zipper-DucuzM0s.js";
1
+ import "./chunks/converter-CV2vZYYK.js";
2
+ import { D } from "./chunks/docx-zipper-DIL-peaj.js";
3
3
  export {
4
4
  D as default
5
5
  };
@@ -1,6 +1,6 @@
1
- import { E } from "./chunks/editor-DHiDsdyh.js";
2
- import "./chunks/converter-C5f6eTMy.js";
3
- import "./chunks/docx-zipper-DucuzM0s.js";
1
+ import { E } from "./chunks/editor-Bm6WIL0T.js";
2
+ import "./chunks/converter-CV2vZYYK.js";
3
+ import "./chunks/docx-zipper-DIL-peaj.js";
4
4
  export {
5
5
  E as Editor
6
6
  };
@@ -1 +1 @@
1
- {"version":3,"file":"list-item.d.ts","sourceRoot":"","sources":["../../../src/extensions/list-item/list-item.js"],"names":[],"mappings":"AAKA,2BAkPG"}
1
+ {"version":3,"file":"list-item.d.ts","sourceRoot":"","sources":["../../../src/extensions/list-item/list-item.js"],"names":[],"mappings":"AAKA,2BAiPG"}
@@ -1 +1 @@
1
- {"version":3,"file":"pagination-helpers.d.ts","sourceRoot":"","sources":["../../../src/extensions/pagination/pagination-helpers.js"],"names":[],"mappings":"AAKA,iDAAqE;AAQ9D,2CAHI,WAAW,OAuCrB;AA8BM;;;;;;;;;QA6EN;AAEM,6EAeN;AAEM;;;;;SAsBN;AAEM;;;8DAoBN;0BA3NyB,mBAAmB"}
1
+ {"version":3,"file":"pagination-helpers.d.ts","sourceRoot":"","sources":["../../../src/extensions/pagination/pagination-helpers.js"],"names":[],"mappings":"AAKA,iDAAqE;AAQ9D,2CAHI,WAAW,OAuCrB;AA8BM;;;;;;;;;QA4EN;AAEM,6EAeN;AAEM;;;;;SAsBN;AAEM;;;8DAoBN;0BA1NyB,mBAAmB"}
@@ -1,4 +1,4 @@
1
- import { J as JSZip } from "./chunks/docx-zipper-DucuzM0s.js";
1
+ import { J as JSZip } from "./chunks/docx-zipper-DIL-peaj.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 { as as getDefaultExportFromCjs, U as v4, T as TextSelection$1, q as getMarkRange, av as vClickOutside, y as findParentNode, aw as getActiveFormatting, ao as isInTable, ax as readFromClipboard, ay as handleClipboardPaste, a as Plugin } from "./chunks/converter-C5f6eTMy.js";
13
- import { a5, d, a2 } from "./chunks/converter-C5f6eTMy.js";
14
- import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, s as startImageUpload, d as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, e as getStarterExtensions, P as Placeholder, f as getRichTextExtensions, M as Mark, h as Extension, A as Attribute, N as Node } from "./chunks/editor-DHiDsdyh.js";
15
- import { k, C, T, i, l, j } from "./chunks/editor-DHiDsdyh.js";
12
+ import { as as getDefaultExportFromCjs, U as v4, T as TextSelection$1, q as getMarkRange, av as vClickOutside, y as findParentNode, aw as getActiveFormatting, ao as isInTable, ax as readFromClipboard, ay as handleClipboardPaste, a as Plugin } from "./chunks/converter-CV2vZYYK.js";
13
+ import { a5, d, a2 } from "./chunks/converter-CV2vZYYK.js";
14
+ import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, s as startImageUpload, d as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, e as getStarterExtensions, P as Placeholder, f as getRichTextExtensions, M as Mark, h as Extension, A as Attribute, N as Node } from "./chunks/editor-Bm6WIL0T.js";
15
+ import { k, C, T, i, l, j } from "./chunks/editor-Bm6WIL0T.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, d as plusIconSvg, e as trashIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, N as NSkeleton } from "./chunks/toolbar-4KoAQ2zZ.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, d as plusIconSvg, e as trashIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, N as NSkeleton } from "./chunks/toolbar-CDRImUlK.js";
18
18
  import AIWriter from "./ai-writer.es.js";
19
- import { D } from "./chunks/docx-zipper-DucuzM0s.js";
19
+ import { D } from "./chunks/docx-zipper-DIL-peaj.js";
20
20
  import { createZip } from "./file-zipper.es.js";
21
21
  var eventemitter3 = { exports: {} };
22
22
  var hasRequiredEventemitter3;
@@ -1,6 +1,6 @@
1
1
  import "vue";
2
- import { T } from "./chunks/toolbar-4KoAQ2zZ.js";
3
- import "./chunks/editor-DHiDsdyh.js";
2
+ import { T } from "./chunks/toolbar-CDRImUlK.js";
3
+ import "./chunks/editor-Bm6WIL0T.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-Dd2aio_k.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-D2X5tnhY.cjs");
4
4
  require("./chunks/vue-CfKg12kH.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-D971SpTa.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-B88X0vir.es.js";
2
2
  import "./chunks/vue-B_OPNNfX.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-Dd2aio_k.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-D2X5tnhY.cjs");
4
4
  const vue = require("./chunks/vue-CfKg12kH.cjs");
5
5
  const jszip = require("./chunks/jszip-DWfnW2xV.cjs");
6
6
  const blankDocx = require("./chunks/blank-docx-CPqX9RF5.cjs");
@@ -47818,7 +47818,7 @@ class SuperDoc extends eventemitter3.EventEmitter {
47818
47818
  this.config.colors = shuffleArray(this.config.colors);
47819
47819
  this.userColorMap = /* @__PURE__ */ new Map();
47820
47820
  this.colorIndex = 0;
47821
- this.version = "0.14.13";
47821
+ this.version = "0.14.14-next.2";
47822
47822
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
47823
47823
  this.superdocId = config.superdocId || uuid.v4();
47824
47824
  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-D971SpTa.es.js";
2
- import { a, S, i, o } from "./chunks/super-editor.es-D971SpTa.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-B88X0vir.es.js";
2
+ import { a, S, i, o } from "./chunks/super-editor.es-B88X0vir.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-B_OPNNfX.es.js";
4
4
  import { B as Buffer$2 } from "./chunks/jszip-BwJb6_S5.es.js";
5
5
  import { B as BlankDOCX } from "./chunks/blank-docx-iwdyG9RH.es.js";
@@ -47801,7 +47801,7 @@ class SuperDoc extends EventEmitter {
47801
47801
  this.config.colors = shuffleArray(this.config.colors);
47802
47802
  this.userColorMap = /* @__PURE__ */ new Map();
47803
47803
  this.colorIndex = 0;
47804
- this.version = "0.14.13";
47804
+ this.version = "0.14.14-next.2";
47805
47805
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
47806
47806
  this.superdocId = config.superdocId || v4();
47807
47807
  this.colors = this.config.colors;