@harbour-enterprises/superdoc 0.14.11-next.2 → 0.14.11-next.3

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.
@@ -26524,7 +26524,7 @@ const _SuperConverter = class _SuperConverter2 {
26524
26524
  return;
26525
26525
  }
26526
26526
  }
26527
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.11-next.2") {
26527
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.11-next.3") {
26528
26528
  const customLocation = "docProps/custom.xml";
26529
26529
  if (!docx[customLocation]) {
26530
26530
  docx[customLocation] = generateCustomXml();
@@ -26999,7 +26999,7 @@ function storeSuperdocVersion(docx) {
26999
26999
  function generateCustomXml() {
27000
27000
  return DEFAULT_CUSTOM_XML;
27001
27001
  }
27002
- function generateSuperdocVersion(pid = 2, version2 = "0.14.11-next.2") {
27002
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.11-next.3") {
27003
27003
  return {
27004
27004
  type: "element",
27005
27005
  name: "property",
@@ -43085,7 +43085,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
43085
43085
  * @returns {Object | void} Migration results
43086
43086
  */
43087
43087
  processCollaborationMigrations() {
43088
- console.debug("[checkVersionMigrations] Current editor version", "0.14.11-next.2");
43088
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.11-next.3");
43089
43089
  if (!this.options.ydoc) return;
43090
43090
  const metaMap = this.options.ydoc.getMap("meta");
43091
43091
  let docVersion = metaMap.get("version");
@@ -56573,8 +56573,11 @@ function generateInternalPageBreaks(doc2, view, editor, sectionData) {
56573
56573
  let currentPos = pos;
56574
56574
  coords = view?.coordsAtPos(currentPos);
56575
56575
  if (!coords) return;
56576
- let shouldAddPageBreak = coords.bottom > pageHeightThreshold;
56577
56576
  let isHardBreakNode = currentNode.type.name === "hardBreak";
56577
+ let isListItemNode = currentNode.type.name === "listItem";
56578
+ const endPos = currentPos + currentNode.nodeSize;
56579
+ const endCoords = view.coordsAtPos(endPos);
56580
+ let shouldAddPageBreak = currentNode.isBlock && isListItemNode ? endCoords && endCoords.bottom > pageHeightThreshold : coords.bottom > pageHeightThreshold;
56578
56581
  const paragraphSectPrBreak = currentNode.attrs?.pageBreakSource;
56579
56582
  if (paragraphSectPrBreak === "sectPr") {
56580
56583
  const nextNode = doc2.nodeAt(currentPos + currentNode.nodeSize);
@@ -56603,11 +56606,15 @@ function generateInternalPageBreaks(doc2, view, editor, sectionData) {
56603
56606
  const table = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "table");
56604
56607
  const tableRow = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "tableRow");
56605
56608
  let isInTable2 = table || tableRow ? true : false;
56606
- const {
56609
+ let {
56607
56610
  top: actualBreakTop,
56608
56611
  bottom: actualBreakBottom,
56609
56612
  pos: breakPos
56610
56613
  } = getActualBreakCoords(view, currentPos, pageHeightThreshold);
56614
+ const $breakPos = view.state.doc.resolve(breakPos);
56615
+ if ($breakPos.parent.type.name === "listItem") {
56616
+ breakPos = $breakPos.before($breakPos.depth);
56617
+ }
56611
56618
  const footerId2 = getHeaderFooterId(currentPageNumber, "footerIds", editor, currentNode);
56612
56619
  currentPageNumber++;
56613
56620
  const headerId2 = getHeaderFooterId(currentPageNumber, "headerIds", editor);
@@ -26507,7 +26507,7 @@ const _SuperConverter = class _SuperConverter2 {
26507
26507
  return;
26508
26508
  }
26509
26509
  }
26510
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.11-next.2") {
26510
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.11-next.3") {
26511
26511
  const customLocation = "docProps/custom.xml";
26512
26512
  if (!docx[customLocation]) {
26513
26513
  docx[customLocation] = generateCustomXml();
@@ -26982,7 +26982,7 @@ function storeSuperdocVersion(docx) {
26982
26982
  function generateCustomXml() {
26983
26983
  return DEFAULT_CUSTOM_XML;
26984
26984
  }
26985
- function generateSuperdocVersion(pid = 2, version2 = "0.14.11-next.2") {
26985
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.11-next.3") {
26986
26986
  return {
26987
26987
  type: "element",
26988
26988
  name: "property",
@@ -43068,7 +43068,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
43068
43068
  * @returns {Object | void} Migration results
43069
43069
  */
43070
43070
  processCollaborationMigrations() {
43071
- console.debug("[checkVersionMigrations] Current editor version", "0.14.11-next.2");
43071
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.11-next.3");
43072
43072
  if (!this.options.ydoc) return;
43073
43073
  const metaMap = this.options.ydoc.getMap("meta");
43074
43074
  let docVersion = metaMap.get("version");
@@ -56556,8 +56556,11 @@ function generateInternalPageBreaks(doc2, view, editor, sectionData) {
56556
56556
  let currentPos = pos;
56557
56557
  coords = view?.coordsAtPos(currentPos);
56558
56558
  if (!coords) return;
56559
- let shouldAddPageBreak = coords.bottom > pageHeightThreshold;
56560
56559
  let isHardBreakNode = currentNode.type.name === "hardBreak";
56560
+ let isListItemNode = currentNode.type.name === "listItem";
56561
+ const endPos = currentPos + currentNode.nodeSize;
56562
+ const endCoords = view.coordsAtPos(endPos);
56563
+ let shouldAddPageBreak = currentNode.isBlock && isListItemNode ? endCoords && endCoords.bottom > pageHeightThreshold : coords.bottom > pageHeightThreshold;
56561
56564
  const paragraphSectPrBreak = currentNode.attrs?.pageBreakSource;
56562
56565
  if (paragraphSectPrBreak === "sectPr") {
56563
56566
  const nextNode = doc2.nodeAt(currentPos + currentNode.nodeSize);
@@ -56586,11 +56589,15 @@ function generateInternalPageBreaks(doc2, view, editor, sectionData) {
56586
56589
  const table = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "table");
56587
56590
  const tableRow = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "tableRow");
56588
56591
  let isInTable2 = table || tableRow ? true : false;
56589
- const {
56592
+ let {
56590
56593
  top: actualBreakTop,
56591
56594
  bottom: actualBreakBottom,
56592
56595
  pos: breakPos
56593
56596
  } = getActualBreakCoords(view, currentPos, pageHeightThreshold);
56597
+ const $breakPos = view.state.doc.resolve(breakPos);
56598
+ if ($breakPos.parent.type.name === "listItem") {
56599
+ breakPos = $breakPos.before($breakPos.depth);
56600
+ }
56594
56601
  const footerId2 = getHeaderFooterId(currentPageNumber, "footerIds", editor, currentNode);
56595
56602
  currentPageNumber++;
56596
56603
  const headerId2 = getHeaderFooterId(currentPageNumber, "headerIds", editor);
@@ -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-CQNqayVP.js";
3
- import { _ as _export_sfc } from "./chunks/editor-DX5JQvPu.js";
2
+ import { T as TextSelection } from "./chunks/converter-CyyhULws.js";
3
+ import { _ as _export_sfc } from "./chunks/editor-DtsS7_5g.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 = {}) {
@@ -26526,7 +26526,7 @@ const _SuperConverter = class _SuperConverter {
26526
26526
  return;
26527
26527
  }
26528
26528
  }
26529
- static updateDocumentVersion(docx = this.convertedXml, version = "0.14.11-next.2") {
26529
+ static updateDocumentVersion(docx = this.convertedXml, version = "0.14.11-next.3") {
26530
26530
  const customLocation = "docProps/custom.xml";
26531
26531
  if (!docx[customLocation]) {
26532
26532
  docx[customLocation] = generateCustomXml();
@@ -27004,7 +27004,7 @@ function storeSuperdocVersion(docx) {
27004
27004
  function generateCustomXml() {
27005
27005
  return DEFAULT_CUSTOM_XML;
27006
27006
  }
27007
- function generateSuperdocVersion(pid = 2, version = "0.14.11-next.2") {
27007
+ function generateSuperdocVersion(pid = 2, version = "0.14.11-next.3") {
27008
27008
  return {
27009
27009
  type: "element",
27010
27010
  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-CQNqayVP.js";
1
+ import { H as process$1, ar as commonjsGlobal, I as Buffer, as as getDefaultExportFromCjs, at as getContentTypesFromXml, au as xmljs } from "./converter-CyyhULws.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-CQNqayVP.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-CyyhULws.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-X5Vqittk.js";
17
+ import { D as DocxZipper } from "./docx-zipper-Cy59SMxI.js";
18
18
  var GOOD_LEAF_SIZE = 200;
19
19
  var RopeSequence = function RopeSequence2() {
20
20
  };
@@ -13604,7 +13604,7 @@ const _Editor = class _Editor extends EventEmitter {
13604
13604
  * @returns {Object | void} Migration results
13605
13605
  */
13606
13606
  processCollaborationMigrations() {
13607
- console.debug("[checkVersionMigrations] Current editor version", "0.14.11-next.2");
13607
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.11-next.3");
13608
13608
  if (!this.options.ydoc) return;
13609
13609
  const metaMap = this.options.ydoc.getMap("meta");
13610
13610
  let docVersion = metaMap.get("version");
@@ -27229,8 +27229,11 @@ function generateInternalPageBreaks(doc2, view, editor, sectionData) {
27229
27229
  let currentPos = pos;
27230
27230
  coords = view?.coordsAtPos(currentPos);
27231
27231
  if (!coords) return;
27232
- let shouldAddPageBreak = coords.bottom > pageHeightThreshold;
27233
27232
  let isHardBreakNode = currentNode.type.name === "hardBreak";
27233
+ let isListItemNode = currentNode.type.name === "listItem";
27234
+ const endPos = currentPos + currentNode.nodeSize;
27235
+ const endCoords = view.coordsAtPos(endPos);
27236
+ let shouldAddPageBreak = currentNode.isBlock && isListItemNode ? endCoords && endCoords.bottom > pageHeightThreshold : coords.bottom > pageHeightThreshold;
27234
27237
  const paragraphSectPrBreak = currentNode.attrs?.pageBreakSource;
27235
27238
  if (paragraphSectPrBreak === "sectPr") {
27236
27239
  const nextNode = doc2.nodeAt(currentPos + currentNode.nodeSize);
@@ -27259,11 +27262,15 @@ function generateInternalPageBreaks(doc2, view, editor, sectionData) {
27259
27262
  const table = findParentNodeClosestToPos($currentPos, (node2) => node2.type.name === "table");
27260
27263
  const tableRow = findParentNodeClosestToPos($currentPos, (node2) => node2.type.name === "tableRow");
27261
27264
  let isInTable2 = table || tableRow ? true : false;
27262
- const {
27265
+ let {
27263
27266
  top: actualBreakTop,
27264
27267
  bottom: actualBreakBottom,
27265
27268
  pos: breakPos
27266
27269
  } = getActualBreakCoords(view, currentPos, pageHeightThreshold);
27270
+ const $breakPos = view.state.doc.resolve(breakPos);
27271
+ if ($breakPos.parent.type.name === "listItem") {
27272
+ breakPos = $breakPos.before($breakPos.depth);
27273
+ }
27267
27274
  const footerId2 = getHeaderFooterId(currentPageNumber, "footerIds", editor, currentNode);
27268
27275
  currentPageNumber++;
27269
27276
  const headerId2 = getHeaderFooterId(currentPageNumber, "headerIds", editor);
@@ -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-CQNqayVP.js";
3
- import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-DX5JQvPu.js";
2
+ import { H as process$1 } from "./converter-CyyhULws.js";
3
+ import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-DtsS7_5g.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-CQNqayVP.js";
1
+ import { a5 } from "./chunks/converter-CyyhULws.js";
2
2
  export {
3
3
  a5 as SuperConverter
4
4
  };
@@ -1,5 +1,5 @@
1
- import "./chunks/converter-CQNqayVP.js";
2
- import { D } from "./chunks/docx-zipper-X5Vqittk.js";
1
+ import "./chunks/converter-CyyhULws.js";
2
+ import { D } from "./chunks/docx-zipper-Cy59SMxI.js";
3
3
  export {
4
4
  D as default
5
5
  };
@@ -1,6 +1,6 @@
1
- import { E } from "./chunks/editor-DX5JQvPu.js";
2
- import "./chunks/converter-CQNqayVP.js";
3
- import "./chunks/docx-zipper-X5Vqittk.js";
1
+ import { E } from "./chunks/editor-DtsS7_5g.js";
2
+ import "./chunks/converter-CyyhULws.js";
3
+ import "./chunks/docx-zipper-Cy59SMxI.js";
4
4
  export {
5
5
  E as Editor
6
6
  };
@@ -1,4 +1,4 @@
1
- import { J as JSZip } from "./chunks/docx-zipper-X5Vqittk.js";
1
+ import { J as JSZip } from "./chunks/docx-zipper-Cy59SMxI.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-CQNqayVP.js";
13
- import { a5, d, a2 } from "./chunks/converter-CQNqayVP.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-DX5JQvPu.js";
15
- import { k, C, T, i, l, j } from "./chunks/editor-DX5JQvPu.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-CyyhULws.js";
13
+ import { a5, d, a2 } from "./chunks/converter-CyyhULws.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-DtsS7_5g.js";
15
+ import { k, C, T, i, l, j } from "./chunks/editor-DtsS7_5g.js";
16
16
  import { ref, onMounted, createElementBlock, openBlock, normalizeClass, unref, Fragment, renderList, createElementVNode, withModifiers, toDisplayString, createCommentVNode, normalizeStyle, computed, watch, withDirectives, withKeys, vModelText, createTextVNode, createVNode, h, createApp, markRaw, nextTick, onBeforeUnmount, reactive, onUnmounted, renderSlot, shallowRef, createBlock, withCtx, resolveDynamicComponent, normalizeProps, guardReactiveProps } from "vue";
17
- import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, m as magicWandIcon, l as linkIconSvg, a as tableIconSvg, b as scissorsIconSvg, c as copyIconSvg, p as pasteIconSvg, N as NSkeleton } from "./chunks/toolbar-C7Z4ZqsQ.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-chk6iZpk.js";
18
18
  import AIWriter from "./ai-writer.es.js";
19
- import { D } from "./chunks/docx-zipper-X5Vqittk.js";
19
+ import { D } from "./chunks/docx-zipper-Cy59SMxI.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-C7Z4ZqsQ.js";
3
- import "./chunks/editor-DX5JQvPu.js";
2
+ import { T } from "./chunks/toolbar-chk6iZpk.js";
3
+ import "./chunks/editor-DtsS7_5g.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-CgSBdB83.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-H9njIR7G.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--wqtzzjM.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-jY5-x3AK.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-CgSBdB83.cjs");
3
+ const superEditor_es = require("./chunks/super-editor.es-H9njIR7G.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");
@@ -47815,7 +47815,7 @@ class SuperDoc extends eventemitter3.EventEmitter {
47815
47815
  this.config.colors = shuffleArray(this.config.colors);
47816
47816
  this.userColorMap = /* @__PURE__ */ new Map();
47817
47817
  this.colorIndex = 0;
47818
- this.version = "0.14.11-next.2";
47818
+ this.version = "0.14.11-next.3";
47819
47819
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
47820
47820
  this.superdocId = config.superdocId || uuid.v4();
47821
47821
  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--wqtzzjM.es.js";
2
- import { a, S, i, o } from "./chunks/super-editor.es--wqtzzjM.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-jY5-x3AK.es.js";
2
+ import { a, S, i, o } from "./chunks/super-editor.es-jY5-x3AK.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";
@@ -47798,7 +47798,7 @@ class SuperDoc extends EventEmitter {
47798
47798
  this.config.colors = shuffleArray(this.config.colors);
47799
47799
  this.userColorMap = /* @__PURE__ */ new Map();
47800
47800
  this.colorIndex = 0;
47801
- this.version = "0.14.11-next.2";
47801
+ this.version = "0.14.11-next.3";
47802
47802
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
47803
47803
  this.superdocId = config.superdocId || v4();
47804
47804
  this.colors = this.config.colors;
@@ -33902,7 +33902,7 @@
33902
33902
  return;
33903
33903
  }
33904
33904
  }
33905
- static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.11-next.2") {
33905
+ static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.11-next.3") {
33906
33906
  const customLocation = "docProps/custom.xml";
33907
33907
  if (!docx[customLocation]) {
33908
33908
  docx[customLocation] = generateCustomXml();
@@ -34377,7 +34377,7 @@
34377
34377
  function generateCustomXml() {
34378
34378
  return DEFAULT_CUSTOM_XML;
34379
34379
  }
34380
- function generateSuperdocVersion(pid = 2, version2 = "0.14.11-next.2") {
34380
+ function generateSuperdocVersion(pid = 2, version2 = "0.14.11-next.3") {
34381
34381
  return {
34382
34382
  type: "element",
34383
34383
  name: "property",
@@ -50463,7 +50463,7 @@
50463
50463
  * @returns {Object | void} Migration results
50464
50464
  */
50465
50465
  processCollaborationMigrations() {
50466
- console.debug("[checkVersionMigrations] Current editor version", "0.14.11-next.2");
50466
+ console.debug("[checkVersionMigrations] Current editor version", "0.14.11-next.3");
50467
50467
  if (!this.options.ydoc) return;
50468
50468
  const metaMap = this.options.ydoc.getMap("meta");
50469
50469
  let docVersion = metaMap.get("version");
@@ -63951,8 +63951,11 @@
63951
63951
  let currentPos = pos;
63952
63952
  coords = view?.coordsAtPos(currentPos);
63953
63953
  if (!coords) return;
63954
- let shouldAddPageBreak = coords.bottom > pageHeightThreshold;
63955
63954
  let isHardBreakNode = currentNode.type.name === "hardBreak";
63955
+ let isListItemNode = currentNode.type.name === "listItem";
63956
+ const endPos = currentPos + currentNode.nodeSize;
63957
+ const endCoords = view.coordsAtPos(endPos);
63958
+ let shouldAddPageBreak = currentNode.isBlock && isListItemNode ? endCoords && endCoords.bottom > pageHeightThreshold : coords.bottom > pageHeightThreshold;
63956
63959
  const paragraphSectPrBreak = currentNode.attrs?.pageBreakSource;
63957
63960
  if (paragraphSectPrBreak === "sectPr") {
63958
63961
  const nextNode = doc2.nodeAt(currentPos + currentNode.nodeSize);
@@ -63981,11 +63984,15 @@
63981
63984
  const table = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "table");
63982
63985
  const tableRow = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "tableRow");
63983
63986
  let isInTable2 = table || tableRow ? true : false;
63984
- const {
63987
+ let {
63985
63988
  top: actualBreakTop,
63986
63989
  bottom: actualBreakBottom,
63987
63990
  pos: breakPos
63988
63991
  } = getActualBreakCoords(view, currentPos, pageHeightThreshold);
63992
+ const $breakPos = view.state.doc.resolve(breakPos);
63993
+ if ($breakPos.parent.type.name === "listItem") {
63994
+ breakPos = $breakPos.before($breakPos.depth);
63995
+ }
63989
63996
  const footerId2 = getHeaderFooterId(currentPageNumber, "footerIds", editor, currentNode);
63990
63997
  currentPageNumber++;
63991
63998
  const headerId2 = getHeaderFooterId(currentPageNumber, "headerIds", editor);
@@ -96249,7 +96256,7 @@ ${style2}
96249
96256
  this.config.colors = shuffleArray(this.config.colors);
96250
96257
  this.userColorMap = /* @__PURE__ */ new Map();
96251
96258
  this.colorIndex = 0;
96252
- this.version = "0.14.11-next.2";
96259
+ this.version = "0.14.11-next.3";
96253
96260
  console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
96254
96261
  this.superdocId = config.superdocId || v4();
96255
96262
  this.colors = this.config.colors;