@harbour-enterprises/superdoc 0.14.1 → 0.14.2-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.
@@ -22420,9 +22420,11 @@ const handleAnnotationNode = (params2) => {
22420
22420
  textHighlight: parsedAttrs.fieldTextHighlight
22421
22421
  };
22422
22422
  attrs = attrsFromJSON;
22423
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22423
22424
  } else {
22424
22425
  const attrsFromElements = getAttrsFromElements({ sdtPr, tag, alias });
22425
22426
  attrs = attrsFromElements;
22427
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22426
22428
  }
22427
22429
  const { attrs: marksAsAttrs, marks } = parseAnnotationMarks(sdtContent);
22428
22430
  const allAttrs = { ...attrs, ...marksAsAttrs };
@@ -24298,7 +24300,7 @@ const _SuperConverter = class _SuperConverter2 {
24298
24300
  return;
24299
24301
  }
24300
24302
  }
24301
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.1") {
24303
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.2-next.2") {
24302
24304
  const customLocation = "docProps/custom.xml";
24303
24305
  if (!docx[customLocation]) {
24304
24306
  docx[customLocation] = generateCustomXml();
@@ -24774,7 +24776,7 @@ function storeSuperdocVersion(docx) {
24774
24776
  function generateCustomXml() {
24775
24777
  return DEFAULT_CUSTOM_XML;
24776
24778
  }
24777
- function generateSuperdocVersion(pid = 2, version2 = "0.14.1") {
24779
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.2-next.2") {
24778
24780
  return {
24779
24781
  type: "element",
24780
24782
  name: "property",
@@ -42271,7 +42273,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
42271
42273
  * @returns {Object | void} Migration results
42272
42274
  */
42273
42275
  processCollaborationMigrations() {
42274
- console.debug("[checkVersionMigrations] Current editor version", "0.14.1");
42276
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.2-next.2");
42275
42277
  if (!this.options.ydoc) return;
42276
42278
  const metaMap = this.options.ydoc.getMap("meta");
42277
42279
  let docVersion = metaMap.get("version");
@@ -44558,7 +44560,7 @@ init_fn2 = function() {
44558
44560
  this.contentDOM.className = "sd-editor-list-item-content-dom";
44559
44561
  let contentLeft = visibleIndent.left;
44560
44562
  if (visibleIndent.left === absoluteLeft) {
44561
- contentLeft = absoluteLeft + 48;
44563
+ absoluteLeft -= 24;
44562
44564
  }
44563
44565
  this.contentDOM.style.marginLeft = `${contentLeft}px`;
44564
44566
  this.numberingDOM.style.left = `${absoluteLeft}px`;
@@ -44642,9 +44644,16 @@ function orderedListSync(editor) {
44642
44644
  if (!shouldProcess) return null;
44643
44645
  newState.doc.descendants((node2, pos) => {
44644
44646
  if (node2.type.name !== "listItem") return;
44645
- const { level: attrLvl, numId: attrNumId, styleId, start: start2 } = node2.attrs;
44647
+ const { level: attrLvl, numId: attrNumId, styleId } = node2.attrs;
44646
44648
  const level = parseInt(attrLvl);
44647
44649
  const numId = parseInt(attrNumId);
44650
+ const {
44651
+ lvlText,
44652
+ customFormat,
44653
+ listNumberingType,
44654
+ start: numberingDefStart
44655
+ } = ListHelpers.getListDefinitionDetails({ numId, level, editor });
44656
+ const start2 = parseInt(numberingDefStart) || 1;
44648
44657
  if (!listMap.has(numId)) {
44649
44658
  const generatedLevels = {};
44650
44659
  const initialPath = docxNumberigHelpers.generateListPath(level, numId, styleId, generatedLevels, docx);
@@ -44654,6 +44663,15 @@ function orderedListSync(editor) {
44654
44663
  let currentListLevels = [...listMap.get(numId)];
44655
44664
  if (!listInitialized.get(numId)) {
44656
44665
  listInitialized.set(numId, true);
44666
+ if (typeof start2 === "number") {
44667
+ while (currentListLevels.length <= level) {
44668
+ currentListLevels.push(0);
44669
+ }
44670
+ currentListLevels[level] = start2;
44671
+ for (let i = level + 1; i < currentListLevels.length; i++) {
44672
+ currentListLevels[i] = 0;
44673
+ }
44674
+ }
44657
44675
  } else {
44658
44676
  while (currentListLevels.length <= level) {
44659
44677
  currentListLevels.push(0);
@@ -44667,11 +44685,6 @@ function orderedListSync(editor) {
44667
44685
  currentListLevels = [1];
44668
44686
  }
44669
44687
  listMap.set(numId, currentListLevels);
44670
- const {
44671
- lvlText,
44672
- customFormat,
44673
- listNumberingType
44674
- } = ListHelpers.getListDefinitionDetails({ numId, level, editor });
44675
44688
  const updatedAttrs = {
44676
44689
  ...node2.attrs,
44677
44690
  listLevel: [...currentListLevels],
@@ -22437,9 +22437,11 @@ const handleAnnotationNode = (params2) => {
22437
22437
  textHighlight: parsedAttrs.fieldTextHighlight
22438
22438
  };
22439
22439
  attrs = attrsFromJSON;
22440
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22440
22441
  } else {
22441
22442
  const attrsFromElements = getAttrsFromElements({ sdtPr, tag, alias });
22442
22443
  attrs = attrsFromElements;
22444
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22443
22445
  }
22444
22446
  const { attrs: marksAsAttrs, marks } = parseAnnotationMarks(sdtContent);
22445
22447
  const allAttrs = { ...attrs, ...marksAsAttrs };
@@ -24315,7 +24317,7 @@ const _SuperConverter = class _SuperConverter2 {
24315
24317
  return;
24316
24318
  }
24317
24319
  }
24318
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.1") {
24320
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.2-next.2") {
24319
24321
  const customLocation = "docProps/custom.xml";
24320
24322
  if (!docx[customLocation]) {
24321
24323
  docx[customLocation] = generateCustomXml();
@@ -24791,7 +24793,7 @@ function storeSuperdocVersion(docx) {
24791
24793
  function generateCustomXml() {
24792
24794
  return DEFAULT_CUSTOM_XML;
24793
24795
  }
24794
- function generateSuperdocVersion(pid = 2, version2 = "0.14.1") {
24796
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.2-next.2") {
24795
24797
  return {
24796
24798
  type: "element",
24797
24799
  name: "property",
@@ -42288,7 +42290,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
42288
42290
  * @returns {Object | void} Migration results
42289
42291
  */
42290
42292
  processCollaborationMigrations() {
42291
- console.debug("[checkVersionMigrations] Current editor version", "0.14.1");
42293
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.2-next.2");
42292
42294
  if (!this.options.ydoc) return;
42293
42295
  const metaMap = this.options.ydoc.getMap("meta");
42294
42296
  let docVersion = metaMap.get("version");
@@ -44575,7 +44577,7 @@ init_fn2 = function() {
44575
44577
  this.contentDOM.className = "sd-editor-list-item-content-dom";
44576
44578
  let contentLeft = visibleIndent.left;
44577
44579
  if (visibleIndent.left === absoluteLeft) {
44578
- contentLeft = absoluteLeft + 48;
44580
+ absoluteLeft -= 24;
44579
44581
  }
44580
44582
  this.contentDOM.style.marginLeft = `${contentLeft}px`;
44581
44583
  this.numberingDOM.style.left = `${absoluteLeft}px`;
@@ -44659,9 +44661,16 @@ function orderedListSync(editor) {
44659
44661
  if (!shouldProcess) return null;
44660
44662
  newState.doc.descendants((node2, pos) => {
44661
44663
  if (node2.type.name !== "listItem") return;
44662
- const { level: attrLvl, numId: attrNumId, styleId, start: start2 } = node2.attrs;
44664
+ const { level: attrLvl, numId: attrNumId, styleId } = node2.attrs;
44663
44665
  const level = parseInt(attrLvl);
44664
44666
  const numId = parseInt(attrNumId);
44667
+ const {
44668
+ lvlText,
44669
+ customFormat,
44670
+ listNumberingType,
44671
+ start: numberingDefStart
44672
+ } = ListHelpers.getListDefinitionDetails({ numId, level, editor });
44673
+ const start2 = parseInt(numberingDefStart) || 1;
44665
44674
  if (!listMap.has(numId)) {
44666
44675
  const generatedLevels = {};
44667
44676
  const initialPath = docxNumberigHelpers.generateListPath(level, numId, styleId, generatedLevels, docx);
@@ -44671,6 +44680,15 @@ function orderedListSync(editor) {
44671
44680
  let currentListLevels = [...listMap.get(numId)];
44672
44681
  if (!listInitialized.get(numId)) {
44673
44682
  listInitialized.set(numId, true);
44683
+ if (typeof start2 === "number") {
44684
+ while (currentListLevels.length <= level) {
44685
+ currentListLevels.push(0);
44686
+ }
44687
+ currentListLevels[level] = start2;
44688
+ for (let i = level + 1; i < currentListLevels.length; i++) {
44689
+ currentListLevels[i] = 0;
44690
+ }
44691
+ }
44674
44692
  } else {
44675
44693
  while (currentListLevels.length <= level) {
44676
44694
  currentListLevels.push(0);
@@ -44684,11 +44702,6 @@ function orderedListSync(editor) {
44684
44702
  currentListLevels = [1];
44685
44703
  }
44686
44704
  listMap.set(numId, currentListLevels);
44687
- const {
44688
- lvlText,
44689
- customFormat,
44690
- listNumberingType
44691
- } = ListHelpers.getListDefinitionDetails({ numId, level, editor });
44692
44705
  const updatedAttrs = {
44693
44706
  ...node2.attrs,
44694
44707
  listLevel: [...currentListLevels],
@@ -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-lDN4qk7B.js";
3
- import { _ as _export_sfc } from "./chunks/editor-CdC1w9aD.js";
2
+ import { T as TextSelection } from "./chunks/converter-dFE2Jr2b.js";
3
+ import { _ as _export_sfc } from "./chunks/editor-CGEU-2b7.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 = {}) {
@@ -22439,9 +22439,11 @@ const handleAnnotationNode = (params) => {
22439
22439
  textHighlight: parsedAttrs.fieldTextHighlight
22440
22440
  };
22441
22441
  attrs = attrsFromJSON;
22442
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22442
22443
  } else {
22443
22444
  const attrsFromElements = getAttrsFromElements({ sdtPr, tag, alias });
22444
22445
  attrs = attrsFromElements;
22446
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
22445
22447
  }
22446
22448
  const { attrs: marksAsAttrs, marks } = parseAnnotationMarks(sdtContent);
22447
22449
  const allAttrs = { ...attrs, ...marksAsAttrs };
@@ -24317,7 +24319,7 @@ const _SuperConverter = class _SuperConverter {
24317
24319
  return;
24318
24320
  }
24319
24321
  }
24320
- static updateDocumentVersion(docx = this.convertedXml, version = "0.14.1") {
24322
+ static updateDocumentVersion(docx = this.convertedXml, version = "0.14.2-next.2") {
24321
24323
  const customLocation = "docProps/custom.xml";
24322
24324
  if (!docx[customLocation]) {
24323
24325
  docx[customLocation] = generateCustomXml();
@@ -24796,7 +24798,7 @@ function storeSuperdocVersion(docx) {
24796
24798
  function generateCustomXml() {
24797
24799
  return DEFAULT_CUSTOM_XML;
24798
24800
  }
24799
- function generateSuperdocVersion(pid = 2, version = "0.14.1") {
24801
+ function generateSuperdocVersion(pid = 2, version = "0.14.2-next.2") {
24800
24802
  return {
24801
24803
  type: "element",
24802
24804
  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-lDN4qk7B.js";
1
+ import { C as process$1, aa as commonjsGlobal, E as Buffer, ab as getDefaultExportFromCjs, ac as getContentTypesFromXml, ad as xmljs } from "./converter-dFE2Jr2b.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-lDN4qk7B.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-dFE2Jr2b.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-DDy7E5Kd.js";
17
+ import { D as DocxZipper } from "./docx-zipper-BsY1xnjc.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.1");
15018
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.2-next.2");
15019
15019
  if (!this.options.ydoc) return;
15020
15020
  const metaMap = this.options.ydoc.getMap("meta");
15021
15021
  let docVersion = metaMap.get("version");
@@ -17439,7 +17439,7 @@ init_fn2 = function() {
17439
17439
  this.contentDOM.className = "sd-editor-list-item-content-dom";
17440
17440
  let contentLeft = visibleIndent.left;
17441
17441
  if (visibleIndent.left === absoluteLeft) {
17442
- contentLeft = absoluteLeft + 48;
17442
+ absoluteLeft -= 24;
17443
17443
  }
17444
17444
  this.contentDOM.style.marginLeft = `${contentLeft}px`;
17445
17445
  this.numberingDOM.style.left = `${absoluteLeft}px`;
@@ -17523,9 +17523,16 @@ function orderedListSync(editor) {
17523
17523
  if (!shouldProcess) return null;
17524
17524
  newState.doc.descendants((node, pos) => {
17525
17525
  if (node.type.name !== "listItem") return;
17526
- const { level: attrLvl, numId: attrNumId, styleId, start: start2 } = node.attrs;
17526
+ const { level: attrLvl, numId: attrNumId, styleId } = node.attrs;
17527
17527
  const level = parseInt(attrLvl);
17528
17528
  const numId = parseInt(attrNumId);
17529
+ const {
17530
+ lvlText,
17531
+ customFormat,
17532
+ listNumberingType,
17533
+ start: numberingDefStart
17534
+ } = ListHelpers.getListDefinitionDetails({ numId, level, editor });
17535
+ const start2 = parseInt(numberingDefStart) || 1;
17529
17536
  if (!listMap.has(numId)) {
17530
17537
  const generatedLevels = {};
17531
17538
  const initialPath = docxNumberigHelpers.generateListPath(level, numId, styleId, generatedLevels, docx);
@@ -17535,6 +17542,15 @@ function orderedListSync(editor) {
17535
17542
  let currentListLevels = [...listMap.get(numId)];
17536
17543
  if (!listInitialized.get(numId)) {
17537
17544
  listInitialized.set(numId, true);
17545
+ if (typeof start2 === "number") {
17546
+ while (currentListLevels.length <= level) {
17547
+ currentListLevels.push(0);
17548
+ }
17549
+ currentListLevels[level] = start2;
17550
+ for (let i = level + 1; i < currentListLevels.length; i++) {
17551
+ currentListLevels[i] = 0;
17552
+ }
17553
+ }
17538
17554
  } else {
17539
17555
  while (currentListLevels.length <= level) {
17540
17556
  currentListLevels.push(0);
@@ -17548,11 +17564,6 @@ function orderedListSync(editor) {
17548
17564
  currentListLevels = [1];
17549
17565
  }
17550
17566
  listMap.set(numId, currentListLevels);
17551
- const {
17552
- lvlText,
17553
- customFormat,
17554
- listNumberingType
17555
- } = ListHelpers.getListDefinitionDetails({ numId, level, editor });
17556
17567
  const updatedAttrs = {
17557
17568
  ...node.attrs,
17558
17569
  listLevel: [...currentListLevels],
@@ -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-lDN4qk7B.js";
3
- import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-CdC1w9aD.js";
2
+ import { C as process$1 } from "./converter-dFE2Jr2b.js";
3
+ import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-CGEU-2b7.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-lDN4qk7B.js";
1
+ import { X } from "./chunks/converter-dFE2Jr2b.js";
2
2
  export {
3
3
  X as SuperConverter
4
4
  };
@@ -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-lDN4qk7B.js";
2
- import { D } from "./chunks/docx-zipper-DDy7E5Kd.js";
1
+ import "./chunks/converter-dFE2Jr2b.js";
2
+ import { D } from "./chunks/docx-zipper-BsY1xnjc.js";
3
3
  export {
4
4
  D as default
5
5
  };
@@ -1,6 +1,6 @@
1
- import { E } from "./chunks/editor-CdC1w9aD.js";
2
- import "./chunks/converter-lDN4qk7B.js";
3
- import "./chunks/docx-zipper-DDy7E5Kd.js";
1
+ import { E } from "./chunks/editor-CGEU-2b7.js";
2
+ import "./chunks/converter-dFE2Jr2b.js";
3
+ import "./chunks/docx-zipper-BsY1xnjc.js";
4
4
  export {
5
5
  E as Editor
6
6
  };
@@ -1 +1 @@
1
- {"version":3,"file":"ListItemNodeView.d.ts","sourceRoot":"","sources":["../../../src/extensions/list-item/ListItemNodeView.js"],"names":[],"mappings":"AAUA;;;;;;GAMG;AAEH;;;;;;;GAOG;AACH;IACE,mEASC;IARC,UAAgB;IAChB,YAAoB;IACpB,iBAA8B;IAC9B,UAAuB;IACvB,YAAoB;IAsCpB,mBAAuC;IAWvC,8BAAkD;IAOlD,2BAA+C;IAiBjD,uBAAwB,UAAK,UAG5B;IAED,gBAEC;;CACF;AAkGM,2CAJI,QAAQ,aACR,QAAQ,sBACN,YAAY,CAgBxB;;;;;WArNa,MAAM;;;;YACN,MAAM;;;;gBACN,MAAM;;;;cACN,MAAM"}
1
+ {"version":3,"file":"ListItemNodeView.d.ts","sourceRoot":"","sources":["../../../src/extensions/list-item/ListItemNodeView.js"],"names":[],"mappings":"AAUA;;;;;;GAMG;AAEH;;;;;;;GAOG;AACH;IACE,mEASC;IARC,UAAgB;IAChB,YAAoB;IACpB,iBAA8B;IAC9B,UAAuB;IACvB,YAAoB;IAsCpB,mBAAuC;IAWvC,8BAAkD;IAOlD,2BAA+C;IAsBjD,uBAAwB,UAAK,UAG5B;IAED,gBAEC;;CACF;AAkGM,2CAJI,QAAQ,aACR,QAAQ,sBACN,YAAY,CAgBxB;;;;;WA1Na,MAAM;;;;YACN,MAAM;;;;gBACN,MAAM;;;;cACN,MAAM"}
@@ -1 +1 @@
1
- {"version":3,"file":"orderedListSyncPlugin.d.ts","sourceRoot":"","sources":["../../../../src/extensions/ordered-list/helpers/orderedListSyncPlugin.js"],"names":[],"mappings":"AAMA,0DA2GC;AAED,mCAEC;AAjHD,sDAAyE;uBAJvC,mBAAmB;0BAAnB,mBAAmB"}
1
+ {"version":3,"file":"orderedListSyncPlugin.d.ts","sourceRoot":"","sources":["../../../../src/extensions/ordered-list/helpers/orderedListSyncPlugin.js"],"names":[],"mappings":"AAMA,0DAyHC;AAED,mCAEC;AA/HD,sDAAyE;uBAJvC,mBAAmB;0BAAnB,mBAAmB"}
@@ -1,4 +1,4 @@
1
- import { J as JSZip } from "./chunks/docx-zipper-DDy7E5Kd.js";
1
+ import { J as JSZip } from "./chunks/docx-zipper-BsY1xnjc.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-lDN4qk7B.js";
13
- import { X } from "./chunks/converter-lDN4qk7B.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-CdC1w9aD.js";
15
- import { o, C, T, m, q, p, l, n } from "./chunks/editor-CdC1w9aD.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-dFE2Jr2b.js";
13
+ import { X } from "./chunks/converter-dFE2Jr2b.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-CGEU-2b7.js";
15
+ import { o, C, T, m, q, p, l, n } from "./chunks/editor-CGEU-2b7.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-DWeKpUzO.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-R0GEOSnM.js";
18
18
  import AIWriter from "./ai-writer.es.js";
19
- import { D } from "./chunks/docx-zipper-DDy7E5Kd.js";
19
+ import { D } from "./chunks/docx-zipper-BsY1xnjc.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-DWeKpUzO.js";
3
- import "./chunks/editor-CdC1w9aD.js";
2
+ import { T } from "./chunks/toolbar-R0GEOSnM.js";
3
+ import "./chunks/editor-CGEU-2b7.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-ChVAl6Pp.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-DDBiIC2f.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-9-vZ3Vvr.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-BWlm5Ej1.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-ChVAl6Pp.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-DDBiIC2f.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.1";
47810
+ this.version = "0.14.2-next.2";
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-9-vZ3Vvr.es.js";
2
- import { a, S, i, o } from "./chunks/super-editor.es-9-vZ3Vvr.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-BWlm5Ej1.es.js";
2
+ import { a, S, i, o } from "./chunks/super-editor.es-BWlm5Ej1.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.1";
47793
+ this.version = "0.14.2-next.2";
47794
47794
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
47795
47795
  this.superdocId = config.superdocId || v4();
47796
47796
  this.colors = this.config.colors;
@@ -29815,9 +29815,11 @@
29815
29815
  textHighlight: parsedAttrs.fieldTextHighlight
29816
29816
  };
29817
29817
  attrs = attrsFromJSON;
29818
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
29818
29819
  } else {
29819
29820
  const attrsFromElements = getAttrsFromElements({ sdtPr, tag, alias });
29820
29821
  attrs = attrsFromElements;
29822
+ console.debug("Import annotation attrs", { asJSON: processAsJSON, attrs });
29821
29823
  }
29822
29824
  const { attrs: marksAsAttrs, marks } = parseAnnotationMarks(sdtContent);
29823
29825
  const allAttrs = { ...attrs, ...marksAsAttrs };
@@ -31693,7 +31695,7 @@
31693
31695
  return;
31694
31696
  }
31695
31697
  }
31696
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.1") {
31698
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.2-next.2") {
31697
31699
  const customLocation = "docProps/custom.xml";
31698
31700
  if (!docx[customLocation]) {
31699
31701
  docx[customLocation] = generateCustomXml();
@@ -32169,7 +32171,7 @@
32169
32171
  function generateCustomXml() {
32170
32172
  return DEFAULT_CUSTOM_XML;
32171
32173
  }
32172
- function generateSuperdocVersion(pid = 2, version2 = "0.14.1") {
32174
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.2-next.2") {
32173
32175
  return {
32174
32176
  type: "element",
32175
32177
  name: "property",
@@ -49666,7 +49668,7 @@
49666
49668
  * @returns {Object | void} Migration results
49667
49669
  */
49668
49670
  processCollaborationMigrations() {
49669
- console.debug("[checkVersionMigrations] Current editor version", "0.14.1");
49671
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.2-next.2");
49670
49672
  if (!this.options.ydoc) return;
49671
49673
  const metaMap = this.options.ydoc.getMap("meta");
49672
49674
  let docVersion = metaMap.get("version");
@@ -51953,7 +51955,7 @@
51953
51955
  this.contentDOM.className = "sd-editor-list-item-content-dom";
51954
51956
  let contentLeft = visibleIndent.left;
51955
51957
  if (visibleIndent.left === absoluteLeft) {
51956
- contentLeft = absoluteLeft + 48;
51958
+ absoluteLeft -= 24;
51957
51959
  }
51958
51960
  this.contentDOM.style.marginLeft = `${contentLeft}px`;
51959
51961
  this.numberingDOM.style.left = `${absoluteLeft}px`;
@@ -52037,9 +52039,16 @@
52037
52039
  if (!shouldProcess) return null;
52038
52040
  newState.doc.descendants((node2, pos) => {
52039
52041
  if (node2.type.name !== "listItem") return;
52040
- const { level: attrLvl, numId: attrNumId, styleId, start: start2 } = node2.attrs;
52042
+ const { level: attrLvl, numId: attrNumId, styleId } = node2.attrs;
52041
52043
  const level = parseInt(attrLvl);
52042
52044
  const numId = parseInt(attrNumId);
52045
+ const {
52046
+ lvlText,
52047
+ customFormat,
52048
+ listNumberingType,
52049
+ start: numberingDefStart
52050
+ } = ListHelpers.getListDefinitionDetails({ numId, level, editor });
52051
+ const start2 = parseInt(numberingDefStart) || 1;
52043
52052
  if (!listMap.has(numId)) {
52044
52053
  const generatedLevels = {};
52045
52054
  const initialPath = docxNumberigHelpers.generateListPath(level, numId, styleId, generatedLevels, docx);
@@ -52049,6 +52058,15 @@
52049
52058
  let currentListLevels = [...listMap.get(numId)];
52050
52059
  if (!listInitialized.get(numId)) {
52051
52060
  listInitialized.set(numId, true);
52061
+ if (typeof start2 === "number") {
52062
+ while (currentListLevels.length <= level) {
52063
+ currentListLevels.push(0);
52064
+ }
52065
+ currentListLevels[level] = start2;
52066
+ for (let i2 = level + 1; i2 < currentListLevels.length; i2++) {
52067
+ currentListLevels[i2] = 0;
52068
+ }
52069
+ }
52052
52070
  } else {
52053
52071
  while (currentListLevels.length <= level) {
52054
52072
  currentListLevels.push(0);
@@ -52062,11 +52080,6 @@
52062
52080
  currentListLevels = [1];
52063
52081
  }
52064
52082
  listMap.set(numId, currentListLevels);
52065
- const {
52066
- lvlText,
52067
- customFormat,
52068
- listNumberingType
52069
- } = ListHelpers.getListDefinitionDetails({ numId, level, editor });
52070
52083
  const updatedAttrs = {
52071
52084
  ...node2.attrs,
52072
52085
  listLevel: [...currentListLevels],
@@ -95385,7 +95398,7 @@ ${style2}
95385
95398
  this.config.colors = shuffleArray(this.config.colors);
95386
95399
  this.userColorMap = /* @__PURE__ */ new Map();
95387
95400
  this.colorIndex = 0;
95388
- this.version = "0.14.1";
95401
+ this.version = "0.14.2-next.2";
95389
95402
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
95390
95403
  this.superdocId = config.superdocId || v4();
95391
95404
  this.colors = this.config.colors;