@harbour-enterprises/superdoc 0.14.3 → 0.14.4-next.1

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.
@@ -19922,8 +19922,8 @@ function translateList(params2) {
19922
19922
  if (numId !== void 0 && numId !== null) {
19923
19923
  numPrTag = generateNumPrTag(numId, level);
19924
19924
  }
19925
- const paragraphNode = node2.content[0]?.content[0];
19926
- const outputNode = exportSchemaToJson({ ...params2, node: paragraphNode });
19925
+ const collapsedParagraphNode = convertMultipleListItemsIntoSingleNode(listItem);
19926
+ const outputNode = exportSchemaToJson({ ...params2, node: collapsedParagraphNode });
19927
19927
  const pPr = outputNode.elements?.find((n) => n.name === "w:pPr");
19928
19928
  if (pPr && pPr.elements && numPrTag) pPr.elements.unshift(numPrTag);
19929
19929
  const indentTag = restoreIndent(listItem.attrs.indent);
@@ -19939,6 +19939,34 @@ function translateList(params2) {
19939
19939
  }
19940
19940
  return [outputNode];
19941
19941
  }
19942
+ const convertMultipleListItemsIntoSingleNode = (listItem) => {
19943
+ const { content } = listItem;
19944
+ if (!content || content.length === 0) {
19945
+ return null;
19946
+ }
19947
+ const firstParagraph = content[0];
19948
+ const collapsedParagraph = {
19949
+ ...firstParagraph,
19950
+ content: []
19951
+ };
19952
+ content.forEach((item, index2) => {
19953
+ if (item.type === "paragraph") {
19954
+ if (index2 > 0) {
19955
+ collapsedParagraph.content.push({
19956
+ type: "lineBreak",
19957
+ attrs: {},
19958
+ content: []
19959
+ });
19960
+ }
19961
+ if (item.content && item.content.length > 0) {
19962
+ collapsedParagraph.content.push(...item.content);
19963
+ }
19964
+ } else {
19965
+ collapsedParagraph.content.push(item);
19966
+ }
19967
+ });
19968
+ return collapsedParagraph;
19969
+ };
19942
19970
  const restoreIndent = (indent) => {
19943
19971
  const attributes = {};
19944
19972
  if (!indent) indent = {};
@@ -22437,9 +22465,11 @@ const handleAnnotationNode = (params2) => {
22437
22465
  textHighlight: parsedAttrs.fieldTextHighlight
22438
22466
  };
22439
22467
  attrs = attrsFromJSON;
22468
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22440
22469
  } else {
22441
22470
  const attrsFromElements = getAttrsFromElements({ sdtPr, tag, alias });
22442
22471
  attrs = attrsFromElements;
22472
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22443
22473
  }
22444
22474
  const { attrs: marksAsAttrs, marks } = parseAnnotationMarks(sdtContent);
22445
22475
  const allAttrs = { ...attrs, ...marksAsAttrs };
@@ -24315,7 +24345,7 @@ const _SuperConverter = class _SuperConverter2 {
24315
24345
  return;
24316
24346
  }
24317
24347
  }
24318
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.3") {
24348
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.4-next.1") {
24319
24349
  const customLocation = "docProps/custom.xml";
24320
24350
  if (!docx[customLocation]) {
24321
24351
  docx[customLocation] = generateCustomXml();
@@ -24791,7 +24821,7 @@ function storeSuperdocVersion(docx) {
24791
24821
  function generateCustomXml() {
24792
24822
  return DEFAULT_CUSTOM_XML;
24793
24823
  }
24794
- function generateSuperdocVersion(pid = 2, version2 = "0.14.3") {
24824
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.4-next.1") {
24795
24825
  return {
24796
24826
  type: "element",
24797
24827
  name: "property",
@@ -42288,7 +42318,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
42288
42318
  * @returns {Object | void} Migration results
42289
42319
  */
42290
42320
  processCollaborationMigrations() {
42291
- console.debug("[checkVersionMigrations] Current editor version", "0.14.3");
42321
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.4-next.1");
42292
42322
  if (!this.options.ydoc) return;
42293
42323
  const metaMap = this.options.ydoc.getMap("meta");
42294
42324
  let docVersion = metaMap.get("version");
@@ -19905,8 +19905,8 @@ function translateList(params2) {
19905
19905
  if (numId !== void 0 && numId !== null) {
19906
19906
  numPrTag = generateNumPrTag(numId, level);
19907
19907
  }
19908
- const paragraphNode = node2.content[0]?.content[0];
19909
- const outputNode = exportSchemaToJson({ ...params2, node: paragraphNode });
19908
+ const collapsedParagraphNode = convertMultipleListItemsIntoSingleNode(listItem);
19909
+ const outputNode = exportSchemaToJson({ ...params2, node: collapsedParagraphNode });
19910
19910
  const pPr = outputNode.elements?.find((n) => n.name === "w:pPr");
19911
19911
  if (pPr && pPr.elements && numPrTag) pPr.elements.unshift(numPrTag);
19912
19912
  const indentTag = restoreIndent(listItem.attrs.indent);
@@ -19922,6 +19922,34 @@ function translateList(params2) {
19922
19922
  }
19923
19923
  return [outputNode];
19924
19924
  }
19925
+ const convertMultipleListItemsIntoSingleNode = (listItem) => {
19926
+ const { content } = listItem;
19927
+ if (!content || content.length === 0) {
19928
+ return null;
19929
+ }
19930
+ const firstParagraph = content[0];
19931
+ const collapsedParagraph = {
19932
+ ...firstParagraph,
19933
+ content: []
19934
+ };
19935
+ content.forEach((item, index2) => {
19936
+ if (item.type === "paragraph") {
19937
+ if (index2 > 0) {
19938
+ collapsedParagraph.content.push({
19939
+ type: "lineBreak",
19940
+ attrs: {},
19941
+ content: []
19942
+ });
19943
+ }
19944
+ if (item.content && item.content.length > 0) {
19945
+ collapsedParagraph.content.push(...item.content);
19946
+ }
19947
+ } else {
19948
+ collapsedParagraph.content.push(item);
19949
+ }
19950
+ });
19951
+ return collapsedParagraph;
19952
+ };
19925
19953
  const restoreIndent = (indent) => {
19926
19954
  const attributes = {};
19927
19955
  if (!indent) indent = {};
@@ -22420,9 +22448,11 @@ const handleAnnotationNode = (params2) => {
22420
22448
  textHighlight: parsedAttrs.fieldTextHighlight
22421
22449
  };
22422
22450
  attrs = attrsFromJSON;
22451
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22423
22452
  } else {
22424
22453
  const attrsFromElements = getAttrsFromElements({ sdtPr, tag, alias });
22425
22454
  attrs = attrsFromElements;
22455
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22426
22456
  }
22427
22457
  const { attrs: marksAsAttrs, marks } = parseAnnotationMarks(sdtContent);
22428
22458
  const allAttrs = { ...attrs, ...marksAsAttrs };
@@ -24298,7 +24328,7 @@ const _SuperConverter = class _SuperConverter2 {
24298
24328
  return;
24299
24329
  }
24300
24330
  }
24301
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.3") {
24331
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.4-next.1") {
24302
24332
  const customLocation = "docProps/custom.xml";
24303
24333
  if (!docx[customLocation]) {
24304
24334
  docx[customLocation] = generateCustomXml();
@@ -24774,7 +24804,7 @@ function storeSuperdocVersion(docx) {
24774
24804
  function generateCustomXml() {
24775
24805
  return DEFAULT_CUSTOM_XML;
24776
24806
  }
24777
- function generateSuperdocVersion(pid = 2, version2 = "0.14.3") {
24807
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.4-next.1") {
24778
24808
  return {
24779
24809
  type: "element",
24780
24810
  name: "property",
@@ -42271,7 +42301,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
42271
42301
  * @returns {Object | void} Migration results
42272
42302
  */
42273
42303
  processCollaborationMigrations() {
42274
- console.debug("[checkVersionMigrations] Current editor version", "0.14.3");
42304
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.4-next.1");
42275
42305
  if (!this.options.ydoc) return;
42276
42306
  const metaMap = this.options.ydoc.getMap("meta");
42277
42307
  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-BUNdaBQm.js";
3
- import { _ as _export_sfc } from "./chunks/editor-cLVadpo6.js";
2
+ import { T as TextSelection } from "./chunks/converter-CUXU6ES7.js";
3
+ import { _ as _export_sfc } from "./chunks/editor-DhBWeNtJ.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 = {}) {
@@ -19924,8 +19924,8 @@ function translateList(params) {
19924
19924
  if (numId !== void 0 && numId !== null) {
19925
19925
  numPrTag = generateNumPrTag(numId, level);
19926
19926
  }
19927
- const paragraphNode = node2.content[0]?.content[0];
19928
- const outputNode = exportSchemaToJson({ ...params, node: paragraphNode });
19927
+ const collapsedParagraphNode = convertMultipleListItemsIntoSingleNode(listItem);
19928
+ const outputNode = exportSchemaToJson({ ...params, node: collapsedParagraphNode });
19929
19929
  const pPr = outputNode.elements?.find((n) => n.name === "w:pPr");
19930
19930
  if (pPr && pPr.elements && numPrTag) pPr.elements.unshift(numPrTag);
19931
19931
  const indentTag = restoreIndent(listItem.attrs.indent);
@@ -19941,6 +19941,34 @@ function translateList(params) {
19941
19941
  }
19942
19942
  return [outputNode];
19943
19943
  }
19944
+ const convertMultipleListItemsIntoSingleNode = (listItem) => {
19945
+ const { content } = listItem;
19946
+ if (!content || content.length === 0) {
19947
+ return null;
19948
+ }
19949
+ const firstParagraph = content[0];
19950
+ const collapsedParagraph = {
19951
+ ...firstParagraph,
19952
+ content: []
19953
+ };
19954
+ content.forEach((item, index) => {
19955
+ if (item.type === "paragraph") {
19956
+ if (index > 0) {
19957
+ collapsedParagraph.content.push({
19958
+ type: "lineBreak",
19959
+ attrs: {},
19960
+ content: []
19961
+ });
19962
+ }
19963
+ if (item.content && item.content.length > 0) {
19964
+ collapsedParagraph.content.push(...item.content);
19965
+ }
19966
+ } else {
19967
+ collapsedParagraph.content.push(item);
19968
+ }
19969
+ });
19970
+ return collapsedParagraph;
19971
+ };
19944
19972
  const restoreIndent = (indent) => {
19945
19973
  const attributes = {};
19946
19974
  if (!indent) indent = {};
@@ -22439,9 +22467,11 @@ const handleAnnotationNode = (params) => {
22439
22467
  textHighlight: parsedAttrs.fieldTextHighlight
22440
22468
  };
22441
22469
  attrs = attrsFromJSON;
22470
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22442
22471
  } else {
22443
22472
  const attrsFromElements = getAttrsFromElements({ sdtPr, tag, alias });
22444
22473
  attrs = attrsFromElements;
22474
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22445
22475
  }
22446
22476
  const { attrs: marksAsAttrs, marks } = parseAnnotationMarks(sdtContent);
22447
22477
  const allAttrs = { ...attrs, ...marksAsAttrs };
@@ -24317,7 +24347,7 @@ const _SuperConverter = class _SuperConverter {
24317
24347
  return;
24318
24348
  }
24319
24349
  }
24320
- static updateDocumentVersion(docx = this.convertedXml, version = "0.14.3") {
24350
+ static updateDocumentVersion(docx = this.convertedXml, version = "0.14.4-next.1") {
24321
24351
  const customLocation = "docProps/custom.xml";
24322
24352
  if (!docx[customLocation]) {
24323
24353
  docx[customLocation] = generateCustomXml();
@@ -24796,7 +24826,7 @@ function storeSuperdocVersion(docx) {
24796
24826
  function generateCustomXml() {
24797
24827
  return DEFAULT_CUSTOM_XML;
24798
24828
  }
24799
- function generateSuperdocVersion(pid = 2, version = "0.14.3") {
24829
+ function generateSuperdocVersion(pid = 2, version = "0.14.4-next.1") {
24800
24830
  return {
24801
24831
  type: "element",
24802
24832
  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-BUNdaBQm.js";
1
+ import { C as process$1, aa as commonjsGlobal, E as Buffer, ab as getDefaultExportFromCjs, ac as getContentTypesFromXml, ad as xmljs } from "./converter-CUXU6ES7.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-BUNdaBQm.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-CUXU6ES7.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-CcbWRMwD.js";
17
+ import { D as DocxZipper } from "./docx-zipper-CQaskYOM.js";
18
18
  function getMarksFromSelection(state) {
19
19
  const { from: from2, to, empty: empty2 } = state.selection;
20
20
  const marks = [];
@@ -15015,7 +15015,7 @@ const _Editor = class _Editor extends EventEmitter {
15015
15015
  * @returns {Object | void} Migration results
15016
15016
  */
15017
15017
  processCollaborationMigrations() {
15018
- console.debug("[checkVersionMigrations] Current editor version", "0.14.3");
15018
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.4-next.1");
15019
15019
  if (!this.options.ydoc) return;
15020
15020
  const metaMap = this.options.ydoc.getMap("meta");
15021
15021
  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-BUNdaBQm.js";
3
- import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-cLVadpo6.js";
2
+ import { C as process$1 } from "./converter-CUXU6ES7.js";
3
+ import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-DhBWeNtJ.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-BUNdaBQm.js";
1
+ import { X } from "./chunks/converter-CUXU6ES7.js";
2
2
  export {
3
3
  X as SuperConverter
4
4
  };
@@ -1 +1 @@
1
- {"version":3,"file":"exporter.d.ts","sourceRoot":"","sources":["../../../src/core/super-converter/exporter.js"],"names":[],"mappings":"AAwBA;;;;;GAKG;AAEH;;;;;;;;;;;;GAYG;AAEH;;;GAGG;AAEH;;;GAGG;AAEH;;;;GAIG;AAEH;;;;;GAKG;AACH,2CAHW,YAAY,GACV,YAAY,CAwCxB;AA+DD;;;;;GAKG;AACH,qDAFa,YAAY,CAyBxB;AAi8DD;;;;;;;;;EAcC;AA+FD;IACE,4BAEC;IADC,eAA0B;IAG5B,gDAGC;;CAwEF;;;;;;;;;;;;;mBAvyEa,KAAQ;;;;;;UAKR,MAAM;;;;aACN,KAAK,CAAC,UAAU,CAAC;;;;;;;;;;;;;UAMjB,MAAM;;;;cACN,KAAK,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;;;UAgBnB,MAAM"}
1
+ {"version":3,"file":"exporter.d.ts","sourceRoot":"","sources":["../../../src/core/super-converter/exporter.js"],"names":[],"mappings":"AAwBA;;;;;GAKG;AAEH;;;;;;;;;;;;GAYG;AAEH;;;GAGG;AAEH;;;GAGG;AAEH;;;;GAIG;AAEH;;;;;GAKG;AACH,2CAHW,YAAY,GACV,YAAY,CAwCxB;AA+DD;;;;;GAKG;AACH,qDAFa,YAAY,CAyBxB;AAg/DD;;;;;;;;;EAcC;AA+FD;IACE,4BAEC;IADC,eAA0B;IAG5B,gDAGC;;CAwEF;;;;;;;;;;;;;mBAt1Ea,KAAQ;;;;;;UAKR,MAAM;;;;aACN,KAAK,CAAC,UAAU,CAAC;;;;;;;;;;;;;UAMjB,MAAM;;;;cACN,KAAK,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;;;UAgBnB,MAAM"}
@@ -1 +1 @@
1
- {"version":3,"file":"annotationImporter.d.ts","sourceRoot":"","sources":["../../../../../src/core/super-converter/v2/importer/annotationImporter.js"],"names":[],"mappings":"AAGA;;GAEG;AACH,uCAqEE;AAOK,yDA2CN;AAoCD;;GAEG;AACH,8CAGE"}
1
+ {"version":3,"file":"annotationImporter.d.ts","sourceRoot":"","sources":["../../../../../src/core/super-converter/v2/importer/annotationImporter.js"],"names":[],"mappings":"AAGA;;GAEG;AACH,uCAuEE;AAOK,yDA2CN;AAoCD;;GAEG;AACH,8CAGE"}
@@ -1,5 +1,5 @@
1
- import "./chunks/converter-BUNdaBQm.js";
2
- import { D } from "./chunks/docx-zipper-CcbWRMwD.js";
1
+ import "./chunks/converter-CUXU6ES7.js";
2
+ import { D } from "./chunks/docx-zipper-CQaskYOM.js";
3
3
  export {
4
4
  D as default
5
5
  };
@@ -1,6 +1,6 @@
1
- import { E } from "./chunks/editor-cLVadpo6.js";
2
- import "./chunks/converter-BUNdaBQm.js";
3
- import "./chunks/docx-zipper-CcbWRMwD.js";
1
+ import { E } from "./chunks/editor-DhBWeNtJ.js";
2
+ import "./chunks/converter-CUXU6ES7.js";
3
+ import "./chunks/docx-zipper-CQaskYOM.js";
4
4
  export {
5
5
  E as Editor
6
6
  };
@@ -1,4 +1,4 @@
1
- import { J as JSZip } from "./chunks/docx-zipper-CcbWRMwD.js";
1
+ import { J as JSZip } from "./chunks/docx-zipper-CQaskYOM.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, ae as vClickOutside, af as readFromClipboard, T as TextSelection, ag as serializeSelectionToClipboard, ah as writeToClipboard, a as Plugin } from "./chunks/converter-BUNdaBQm.js";
13
- import { X } from "./chunks/converter-BUNdaBQm.js";
14
- import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, f as findParentNode, c as getFileOpener, s as startImageUpload, d as getActiveFormatting, i as isInTable, e as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, h as getStarterExtensions, P as Placeholder, j as getRichTextExtensions, M as Mark, k as Extension, A as Attribute, N as Node } from "./chunks/editor-cLVadpo6.js";
15
- import { o, C, T, m, q, p, l, n } from "./chunks/editor-cLVadpo6.js";
12
+ import { ab as getDefaultExportFromCjs, J as v4, ae as vClickOutside, af as readFromClipboard, T as TextSelection, ag as serializeSelectionToClipboard, ah as writeToClipboard, a as Plugin } from "./chunks/converter-CUXU6ES7.js";
13
+ import { X } from "./chunks/converter-CUXU6ES7.js";
14
+ import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, f as findParentNode, c as getFileOpener, s as startImageUpload, d as getActiveFormatting, i as isInTable, e as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, h as getStarterExtensions, P as Placeholder, j as getRichTextExtensions, M as Mark, k as Extension, A as Attribute, N as Node } from "./chunks/editor-DhBWeNtJ.js";
15
+ import { o, C, T, m, q, p, l, n } from "./chunks/editor-DhBWeNtJ.js";
16
16
  import { ref, onMounted, createElementBlock, openBlock, normalizeClass, unref, Fragment, renderList, createElementVNode, withModifiers, toDisplayString, createCommentVNode, normalizeStyle, computed, createTextVNode, createVNode, h, withDirectives, withKeys, vModelText, createApp, markRaw, watch, 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-D6058PE2.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-CWQZpMFW.js";
18
18
  import AIWriter from "./ai-writer.es.js";
19
- import { D } from "./chunks/docx-zipper-CcbWRMwD.js";
19
+ import { D } from "./chunks/docx-zipper-CQaskYOM.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-D6058PE2.js";
3
- import "./chunks/editor-cLVadpo6.js";
2
+ import { T } from "./chunks/toolbar-CWQZpMFW.js";
3
+ import "./chunks/editor-DhBWeNtJ.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-DFA0B24n.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-AskbUH1O.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-DdMdbR-r.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-BFK0pgtL.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-DFA0B24n.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-AskbUH1O.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");
@@ -47807,7 +47807,7 @@ class SuperDoc extends eventemitter3.EventEmitter {
47807
47807
  this.config.colors = shuffleArray(this.config.colors);
47808
47808
  this.userColorMap = /* @__PURE__ */ new Map();
47809
47809
  this.colorIndex = 0;
47810
- this.version = "0.14.3";
47810
+ this.version = "0.14.4-next.1";
47811
47811
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
47812
47812
  this.superdocId = config.superdocId || uuid.v4();
47813
47813
  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-DdMdbR-r.es.js";
2
- import { a, S, i, o } from "./chunks/super-editor.es-DdMdbR-r.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-BFK0pgtL.es.js";
2
+ import { a, S, i, o } from "./chunks/super-editor.es-BFK0pgtL.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";
@@ -47790,7 +47790,7 @@ class SuperDoc extends EventEmitter {
47790
47790
  this.config.colors = shuffleArray(this.config.colors);
47791
47791
  this.userColorMap = /* @__PURE__ */ new Map();
47792
47792
  this.colorIndex = 0;
47793
- this.version = "0.14.3";
47793
+ this.version = "0.14.4-next.1";
47794
47794
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
47795
47795
  this.superdocId = config.superdocId || v4();
47796
47796
  this.colors = this.config.colors;
@@ -27300,8 +27300,8 @@
27300
27300
  if (numId !== void 0 && numId !== null) {
27301
27301
  numPrTag = generateNumPrTag(numId, level);
27302
27302
  }
27303
- const paragraphNode = node2.content[0]?.content[0];
27304
- const outputNode = exportSchemaToJson({ ...params2, node: paragraphNode });
27303
+ const collapsedParagraphNode = convertMultipleListItemsIntoSingleNode(listItem);
27304
+ const outputNode = exportSchemaToJson({ ...params2, node: collapsedParagraphNode });
27305
27305
  const pPr = outputNode.elements?.find((n) => n.name === "w:pPr");
27306
27306
  if (pPr && pPr.elements && numPrTag) pPr.elements.unshift(numPrTag);
27307
27307
  const indentTag = restoreIndent(listItem.attrs.indent);
@@ -27317,6 +27317,34 @@
27317
27317
  }
27318
27318
  return [outputNode];
27319
27319
  }
27320
+ const convertMultipleListItemsIntoSingleNode = (listItem) => {
27321
+ const { content } = listItem;
27322
+ if (!content || content.length === 0) {
27323
+ return null;
27324
+ }
27325
+ const firstParagraph = content[0];
27326
+ const collapsedParagraph = {
27327
+ ...firstParagraph,
27328
+ content: []
27329
+ };
27330
+ content.forEach((item, index2) => {
27331
+ if (item.type === "paragraph") {
27332
+ if (index2 > 0) {
27333
+ collapsedParagraph.content.push({
27334
+ type: "lineBreak",
27335
+ attrs: {},
27336
+ content: []
27337
+ });
27338
+ }
27339
+ if (item.content && item.content.length > 0) {
27340
+ collapsedParagraph.content.push(...item.content);
27341
+ }
27342
+ } else {
27343
+ collapsedParagraph.content.push(item);
27344
+ }
27345
+ });
27346
+ return collapsedParagraph;
27347
+ };
27320
27348
  const restoreIndent = (indent) => {
27321
27349
  const attributes = {};
27322
27350
  if (!indent) indent = {};
@@ -29815,9 +29843,11 @@
29815
29843
  textHighlight: parsedAttrs.fieldTextHighlight
29816
29844
  };
29817
29845
  attrs = attrsFromJSON;
29846
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
29818
29847
  } else {
29819
29848
  const attrsFromElements = getAttrsFromElements({ sdtPr, tag, alias });
29820
29849
  attrs = attrsFromElements;
29850
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
29821
29851
  }
29822
29852
  const { attrs: marksAsAttrs, marks } = parseAnnotationMarks(sdtContent);
29823
29853
  const allAttrs = { ...attrs, ...marksAsAttrs };
@@ -31693,7 +31723,7 @@
31693
31723
  return;
31694
31724
  }
31695
31725
  }
31696
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.3") {
31726
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.4-next.1") {
31697
31727
  const customLocation = "docProps/custom.xml";
31698
31728
  if (!docx[customLocation]) {
31699
31729
  docx[customLocation] = generateCustomXml();
@@ -32169,7 +32199,7 @@
32169
32199
  function generateCustomXml() {
32170
32200
  return DEFAULT_CUSTOM_XML;
32171
32201
  }
32172
- function generateSuperdocVersion(pid = 2, version2 = "0.14.3") {
32202
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.4-next.1") {
32173
32203
  return {
32174
32204
  type: "element",
32175
32205
  name: "property",
@@ -49666,7 +49696,7 @@
49666
49696
  * @returns {Object | void} Migration results
49667
49697
  */
49668
49698
  processCollaborationMigrations() {
49669
- console.debug("[checkVersionMigrations] Current editor version", "0.14.3");
49699
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.4-next.1");
49670
49700
  if (!this.options.ydoc) return;
49671
49701
  const metaMap = this.options.ydoc.getMap("meta");
49672
49702
  let docVersion = metaMap.get("version");
@@ -95396,7 +95426,7 @@ ${style2}
95396
95426
  this.config.colors = shuffleArray(this.config.colors);
95397
95427
  this.userColorMap = /* @__PURE__ */ new Map();
95398
95428
  this.colorIndex = 0;
95399
- this.version = "0.14.3";
95429
+ this.version = "0.14.4-next.1";
95400
95430
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
95401
95431
  this.superdocId = config.superdocId || v4();
95402
95432
  this.colors = this.config.colors;