@harbour-enterprises/superdoc 1.0.0-beta.27 → 1.0.0-beta.29
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.
- package/dist/chunks/{PdfViewer-iCAmPXap.cjs → PdfViewer-DWBkw4lb.cjs} +1 -1
- package/dist/chunks/{PdfViewer-DGrlCXZ4.es.js → PdfViewer-tNr66QJz.es.js} +1 -1
- package/dist/chunks/{index-B9InP_01-Xwm9fBmW.es.js → index-C-fdgXvG-CG001xE6.es.js} +1 -1
- package/dist/chunks/{index-B9InP_01-BiyU244m.cjs → index-C-fdgXvG-CIkJMNA_.cjs} +1 -1
- package/dist/chunks/{index-DqPOJm-d.es.js → index-C6yeAWhT.es.js} +3 -4
- package/dist/chunks/{index-0fejVel3.cjs → index-DDwDzZCu.cjs} +3 -4
- package/dist/chunks/{super-editor.es-BU2yH1Gu.cjs → super-editor.es-CbWugsqL.cjs} +204 -63
- package/dist/chunks/{super-editor.es-C7-Cnj9g.es.js → super-editor.es-DUQSn16o.es.js} +204 -63
- package/dist/packages/superdoc/src/core/SuperDoc.d.ts.map +1 -1
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-Djir61CW.js → converter-GXPldmlh.js} +5 -3
- package/dist/super-editor/chunks/{docx-zipper-CHXUPlGv.js → docx-zipper-D7QUJRNp.js} +1 -1
- package/dist/super-editor/chunks/{editor-DFDdrZ-w.js → editor-DaDga3Ye.js} +201 -62
- package/dist/super-editor/chunks/{index-B9InP_01.js → index-C-fdgXvG.js} +1 -1
- package/dist/super-editor/chunks/{toolbar-D1rWwsr9.js → toolbar-DjueghNO.js} +2 -2
- package/dist/super-editor/converter.es.js +1 -1
- package/dist/super-editor/docx-zipper.es.js +2 -2
- package/dist/super-editor/editor.es.js +3 -3
- package/dist/super-editor/file-zipper.es.js +1 -1
- package/dist/super-editor/super-editor.es.js +6 -6
- package/dist/super-editor/toolbar.es.js +2 -2
- package/dist/super-editor.cjs +1 -1
- package/dist/super-editor.es.js +1 -1
- package/dist/superdoc.cjs +2 -2
- package/dist/superdoc.es.js +2 -2
- package/dist/superdoc.umd.js +206 -66
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -39178,7 +39178,9 @@ const INLINE_PARENT_NAMES = /* @__PURE__ */ new Set([
|
|
|
39178
39178
|
"w:fldSimple",
|
|
39179
39179
|
"w:proofErr",
|
|
39180
39180
|
"w:del",
|
|
39181
|
-
"w:ins"
|
|
39181
|
+
"w:ins",
|
|
39182
|
+
"w:p"
|
|
39183
|
+
// Paragraph is an inline container; unknown children must be inline-safe
|
|
39182
39184
|
]);
|
|
39183
39185
|
const INLINE_NODE_NAMES = /* @__PURE__ */ new Set([
|
|
39184
39186
|
"m:oMathPara",
|
|
@@ -39191,7 +39193,7 @@ const INLINE_NODE_NAMES = /* @__PURE__ */ new Set([
|
|
|
39191
39193
|
"m:sup",
|
|
39192
39194
|
"m:sSup"
|
|
39193
39195
|
]);
|
|
39194
|
-
const BLOCK_BOUNDARY_NAMES = /* @__PURE__ */ new Set(["w:
|
|
39196
|
+
const BLOCK_BOUNDARY_NAMES = /* @__PURE__ */ new Set(["w:body", "w:tbl", "w:tc", "w:tr"]);
|
|
39195
39197
|
const isInlineContext = (path = [], currentNodeName) => {
|
|
39196
39198
|
if (currentNodeName && INLINE_NODE_NAMES.has(currentNodeName)) {
|
|
39197
39199
|
return true;
|
|
@@ -41839,7 +41841,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
41839
41841
|
static getStoredSuperdocVersion(docx) {
|
|
41840
41842
|
return _SuperConverter2.getStoredCustomProperty(docx, "SuperdocVersion");
|
|
41841
41843
|
}
|
|
41842
|
-
static setStoredSuperdocVersion(docx = this.convertedXml, version2 = "1.0.0-beta.
|
|
41844
|
+
static setStoredSuperdocVersion(docx = this.convertedXml, version2 = "1.0.0-beta.29") {
|
|
41843
41845
|
return _SuperConverter2.setStoredCustomProperty(docx, "SuperdocVersion", version2, false);
|
|
41844
41846
|
}
|
|
41845
41847
|
/**
|
|
@@ -59012,7 +59014,7 @@ const isHeadless = (editor) => {
|
|
|
59012
59014
|
const shouldSkipNodeView = (editor) => {
|
|
59013
59015
|
return isHeadless(editor);
|
|
59014
59016
|
};
|
|
59015
|
-
const summaryVersion = "1.0.0-beta.
|
|
59017
|
+
const summaryVersion = "1.0.0-beta.29";
|
|
59016
59018
|
const nodeKeys = ["group", "content", "marks", "inline", "atom", "defining", "code", "tableRole", "summary"];
|
|
59017
59019
|
const markKeys = ["group", "inclusive", "excludes", "spanning", "code"];
|
|
59018
59020
|
function mapAttributes(attrs) {
|
|
@@ -59801,7 +59803,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
59801
59803
|
{ default: remarkStringify },
|
|
59802
59804
|
{ default: remarkGfm }
|
|
59803
59805
|
] = await Promise.all([
|
|
59804
|
-
import("./index-
|
|
59806
|
+
import("./index-C-fdgXvG-CG001xE6.es.js"),
|
|
59805
59807
|
import("./index-DRCvimau-Cw339678.es.js"),
|
|
59806
59808
|
import("./index-C_x_N6Uh-DJn8hIEt.es.js"),
|
|
59807
59809
|
import("./index-D_sWOSiG-DE96TaT5.es.js"),
|
|
@@ -60006,7 +60008,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
60006
60008
|
* Process collaboration migrations
|
|
60007
60009
|
*/
|
|
60008
60010
|
processCollaborationMigrations() {
|
|
60009
|
-
console.debug("[checkVersionMigrations] Current editor version", "1.0.0-beta.
|
|
60011
|
+
console.debug("[checkVersionMigrations] Current editor version", "1.0.0-beta.29");
|
|
60010
60012
|
if (!this.options.ydoc) return;
|
|
60011
60013
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
60012
60014
|
let docVersion = metaMap.get("version");
|
|
@@ -60875,7 +60877,8 @@ function publishSectionMetadata(sectionRanges, options) {
|
|
|
60875
60877
|
sectionIndex: section.sectionIndex,
|
|
60876
60878
|
headerRefs: section.headerRefs,
|
|
60877
60879
|
footerRefs: section.footerRefs,
|
|
60878
|
-
numbering: section.numbering
|
|
60880
|
+
numbering: section.numbering,
|
|
60881
|
+
titlePg: section.titlePg
|
|
60879
60882
|
});
|
|
60880
60883
|
});
|
|
60881
60884
|
}
|
|
@@ -62034,6 +62037,7 @@ const DEFAULT_HYPERLINK_CONFIG = {
|
|
|
62034
62037
|
enableRichHyperlinks: false
|
|
62035
62038
|
};
|
|
62036
62039
|
const applyMarksToRun = (run2, marks, hyperlinkConfig = DEFAULT_HYPERLINK_CONFIG, themeColors) => {
|
|
62040
|
+
const isTabRun2 = run2.kind === "tab";
|
|
62037
62041
|
marks.forEach((mark) => {
|
|
62038
62042
|
const forwardedDataAttrs = extractDataAttributes(mark.attrs);
|
|
62039
62043
|
try {
|
|
@@ -62066,11 +62070,15 @@ const applyMarksToRun = (run2, marks, hyperlinkConfig = DEFAULT_HYPERLINK_CONFIG
|
|
|
62066
62070
|
break;
|
|
62067
62071
|
}
|
|
62068
62072
|
case "textStyle":
|
|
62069
|
-
|
|
62073
|
+
if (!isTabRun2) {
|
|
62074
|
+
applyTextStyleMark(run2, mark.attrs ?? {}, themeColors);
|
|
62075
|
+
}
|
|
62070
62076
|
break;
|
|
62071
62077
|
case "commentMark":
|
|
62072
62078
|
case "comment": {
|
|
62073
|
-
|
|
62079
|
+
if (!isTabRun2) {
|
|
62080
|
+
pushCommentAnnotation(run2, mark.attrs ?? {});
|
|
62081
|
+
}
|
|
62074
62082
|
break;
|
|
62075
62083
|
}
|
|
62076
62084
|
case "underline": {
|
|
@@ -62097,31 +62105,33 @@ const applyMarksToRun = (run2, marks, hyperlinkConfig = DEFAULT_HYPERLINK_CONFIG
|
|
|
62097
62105
|
run2.highlight = resolveColorFromAttributes(mark.attrs ?? {}, themeColors);
|
|
62098
62106
|
break;
|
|
62099
62107
|
case "link": {
|
|
62100
|
-
|
|
62101
|
-
|
|
62102
|
-
|
|
62103
|
-
|
|
62104
|
-
|
|
62105
|
-
|
|
62106
|
-
|
|
62107
|
-
|
|
62108
|
-
|
|
62109
|
-
|
|
62110
|
-
|
|
62111
|
-
|
|
62112
|
-
} else if (typeof attrs.href === "string" && attrs.href.trim()) {
|
|
62113
|
-
try {
|
|
62114
|
-
const sanitized = sanitizeHref(attrs.href);
|
|
62115
|
-
if (sanitized && sanitized.href) {
|
|
62116
|
-
const legacyLink = {
|
|
62117
|
-
href: sanitized.href,
|
|
62118
|
-
title: typeof attrs.title === "string" ? attrs.title : void 0
|
|
62119
|
-
};
|
|
62120
|
-
run2.link = migrateLegacyLink(legacyLink);
|
|
62108
|
+
if (!isTabRun2) {
|
|
62109
|
+
const attrs = mark.attrs ?? {};
|
|
62110
|
+
if (hyperlinkConfig.enableRichHyperlinks) {
|
|
62111
|
+
try {
|
|
62112
|
+
const link = buildFlowRunLink(attrs);
|
|
62113
|
+
if (link) {
|
|
62114
|
+
run2.link = link;
|
|
62115
|
+
}
|
|
62116
|
+
} catch (error) {
|
|
62117
|
+
if (process$1$1.env.NODE_ENV === "development") {
|
|
62118
|
+
console.warn("[PM-Adapter] Failed to build rich hyperlink:", error);
|
|
62119
|
+
}
|
|
62121
62120
|
}
|
|
62122
|
-
}
|
|
62123
|
-
|
|
62124
|
-
|
|
62121
|
+
} else if (typeof attrs.href === "string" && attrs.href.trim()) {
|
|
62122
|
+
try {
|
|
62123
|
+
const sanitized = sanitizeHref(attrs.href);
|
|
62124
|
+
if (sanitized && sanitized.href) {
|
|
62125
|
+
const legacyLink = {
|
|
62126
|
+
href: sanitized.href,
|
|
62127
|
+
title: typeof attrs.title === "string" ? attrs.title : void 0
|
|
62128
|
+
};
|
|
62129
|
+
run2.link = migrateLegacyLink(legacyLink);
|
|
62130
|
+
}
|
|
62131
|
+
} catch (error) {
|
|
62132
|
+
if (process$1$1.env.NODE_ENV === "development") {
|
|
62133
|
+
console.warn("[PM-Adapter] Failed to sanitize link href:", error);
|
|
62134
|
+
}
|
|
62125
62135
|
}
|
|
62126
62136
|
}
|
|
62127
62137
|
}
|
|
@@ -62135,7 +62145,7 @@ const applyMarksToRun = (run2, marks, hyperlinkConfig = DEFAULT_HYPERLINK_CONFIG
|
|
|
62135
62145
|
console.warn(`[PM-Adapter] Failed to apply mark ${mark.type}:`, error);
|
|
62136
62146
|
}
|
|
62137
62147
|
}
|
|
62138
|
-
if (forwardedDataAttrs) {
|
|
62148
|
+
if (forwardedDataAttrs && !isTabRun2) {
|
|
62139
62149
|
run2.dataAttrs = { ...run2.dataAttrs ?? {}, ...forwardedDataAttrs };
|
|
62140
62150
|
}
|
|
62141
62151
|
});
|
|
@@ -62157,14 +62167,14 @@ function textNodeToRun(textNode, positions, defaultFont, defaultSize, inheritedM
|
|
|
62157
62167
|
}
|
|
62158
62168
|
return run2;
|
|
62159
62169
|
}
|
|
62160
|
-
function tabNodeToRun(node, positions, tabIndex, paragraph) {
|
|
62170
|
+
function tabNodeToRun(node, positions, tabIndex, paragraph, inheritedMarks = []) {
|
|
62161
62171
|
const pos = positions.get(node);
|
|
62162
62172
|
if (!pos) return null;
|
|
62163
62173
|
const paragraphAttrs = paragraph.attrs ?? {};
|
|
62164
62174
|
const paragraphProps = typeof paragraphAttrs.paragraphProperties === "object" && paragraphAttrs.paragraphProperties !== null ? paragraphAttrs.paragraphProperties : {};
|
|
62165
62175
|
const tabStops = Array.isArray(paragraphAttrs.tabStops) && paragraphAttrs.tabStops.length ? paragraphAttrs.tabStops : Array.isArray(paragraphProps.tabStops) ? paragraphProps.tabStops : void 0;
|
|
62166
62176
|
const indent = paragraphAttrs.indent ?? paragraphProps.indent ?? void 0;
|
|
62167
|
-
|
|
62177
|
+
const run2 = {
|
|
62168
62178
|
kind: "tab",
|
|
62169
62179
|
text: " ",
|
|
62170
62180
|
pmStart: pos.start,
|
|
@@ -62174,6 +62184,11 @@ function tabNodeToRun(node, positions, tabIndex, paragraph) {
|
|
|
62174
62184
|
indent,
|
|
62175
62185
|
leader: node.attrs?.leader ?? null
|
|
62176
62186
|
};
|
|
62187
|
+
const marks = [...node.marks ?? [], ...inheritedMarks ?? []];
|
|
62188
|
+
if (marks.length > 0) {
|
|
62189
|
+
applyMarksToRun(run2, marks);
|
|
62190
|
+
}
|
|
62191
|
+
return run2;
|
|
62177
62192
|
}
|
|
62178
62193
|
function tokenNodeToRun(node, positions, defaultFont, defaultSize, inheritedMarks = [], token, hyperlinkConfig = DEFAULT_HYPERLINK_CONFIG$1, themeColors) {
|
|
62179
62194
|
const run2 = {
|
|
@@ -64000,9 +64015,26 @@ const hydrateParagraphStyleAttrs = (para, context, preResolved) => {
|
|
|
64000
64015
|
if (isHeadingStyle && (!resolvedIndent || Object.keys(resolvedIndent).length === 0 || onlyFirstLineIndent)) {
|
|
64001
64016
|
resolvedIndent = { firstLine: 0, hanging: 0, left: resolvedIndent?.left, right: resolvedIndent?.right };
|
|
64002
64017
|
}
|
|
64018
|
+
let resolvedSpacing = cloneIfObject(resolvedAsRecord.spacing);
|
|
64019
|
+
const tableStyleParagraphProps = context.tableStyleParagraphProps;
|
|
64020
|
+
if (tableStyleParagraphProps?.spacing) {
|
|
64021
|
+
const tableSpacing = tableStyleParagraphProps.spacing;
|
|
64022
|
+
const paragraphHasExplicitSpacing = Boolean(spacing);
|
|
64023
|
+
if (!paragraphHasExplicitSpacing) {
|
|
64024
|
+
resolvedSpacing = {
|
|
64025
|
+
...resolvedSpacing,
|
|
64026
|
+
...tableSpacing
|
|
64027
|
+
};
|
|
64028
|
+
} else {
|
|
64029
|
+
resolvedSpacing = {
|
|
64030
|
+
...tableSpacing,
|
|
64031
|
+
...resolvedSpacing
|
|
64032
|
+
};
|
|
64033
|
+
}
|
|
64034
|
+
}
|
|
64003
64035
|
const hydrated = {
|
|
64004
64036
|
resolved,
|
|
64005
|
-
spacing:
|
|
64037
|
+
spacing: resolvedSpacing,
|
|
64006
64038
|
indent: resolvedIndent,
|
|
64007
64039
|
borders: cloneIfObject(resolvedExtended.borders),
|
|
64008
64040
|
shading: cloneIfObject(resolvedExtended.shading),
|
|
@@ -64901,11 +64933,12 @@ const computeParagraphAttrs = (para, styleContext, listCounterContext, converter
|
|
|
64901
64933
|
}
|
|
64902
64934
|
}
|
|
64903
64935
|
paragraphAttrs.wordLayout = wordLayout;
|
|
64904
|
-
if (enrichedNumberingProps.resolvedLevelIndent
|
|
64936
|
+
if (enrichedNumberingProps.resolvedLevelIndent) {
|
|
64905
64937
|
const resolvedIndentPx = convertIndentTwipsToPx(enrichedNumberingProps.resolvedLevelIndent);
|
|
64938
|
+
const baseIndent = resolvedIndentPx ?? enrichedNumberingProps.resolvedLevelIndent;
|
|
64906
64939
|
paragraphAttrs.indent = {
|
|
64907
|
-
...
|
|
64908
|
-
...
|
|
64940
|
+
...baseIndent,
|
|
64941
|
+
...normalizedIndent ?? {}
|
|
64909
64942
|
};
|
|
64910
64943
|
}
|
|
64911
64944
|
}
|
|
@@ -65970,7 +66003,7 @@ function paragraphToFlowBlocks$1(para, nextBlockId, positions, defaultFont, defa
|
|
|
65970
66003
|
return;
|
|
65971
66004
|
}
|
|
65972
66005
|
if (node.type === "tab") {
|
|
65973
|
-
const tabRun = tabNodeToRun(node, positions, tabOrdinal, para);
|
|
66006
|
+
const tabRun = tabNodeToRun(node, positions, tabOrdinal, para, inheritedMarks);
|
|
65974
66007
|
tabOrdinal += 1;
|
|
65975
66008
|
if (tabRun) {
|
|
65976
66009
|
currentRuns.push(tabRun);
|
|
@@ -66665,6 +66698,10 @@ const hydrateTableStyleAttrs = (tableNode, context) => {
|
|
|
66665
66698
|
hydration.justification = referenced.justification;
|
|
66666
66699
|
}
|
|
66667
66700
|
}
|
|
66701
|
+
const paragraphProps = extractTableStyleParagraphProps(styleId, context.docx);
|
|
66702
|
+
if (paragraphProps) {
|
|
66703
|
+
hydration.paragraphProps = paragraphProps;
|
|
66704
|
+
}
|
|
66668
66705
|
}
|
|
66669
66706
|
if (Object.keys(hydration).length > 0) {
|
|
66670
66707
|
return hydration;
|
|
@@ -66715,6 +66752,51 @@ const normalizeTableWidth = (value) => {
|
|
|
66715
66752
|
}
|
|
66716
66753
|
return { width: raw, type: measurement.type };
|
|
66717
66754
|
};
|
|
66755
|
+
const extractTableStyleParagraphProps = (styleId, docx) => {
|
|
66756
|
+
try {
|
|
66757
|
+
const stylesXml = docx["word/styles.xml"];
|
|
66758
|
+
if (!stylesXml?.elements?.[0]?.elements) return void 0;
|
|
66759
|
+
const styleElements = stylesXml.elements[0].elements.filter((el) => el.name === "w:style");
|
|
66760
|
+
const styleTag = styleElements.find((el) => el.attributes?.["w:styleId"] === styleId);
|
|
66761
|
+
if (!styleTag?.elements) {
|
|
66762
|
+
return void 0;
|
|
66763
|
+
}
|
|
66764
|
+
const pPr = styleTag.elements.find((el) => el.name === "w:pPr");
|
|
66765
|
+
if (!pPr?.elements) {
|
|
66766
|
+
return void 0;
|
|
66767
|
+
}
|
|
66768
|
+
const spacingEl = pPr.elements.find((el) => el.name === "w:spacing");
|
|
66769
|
+
if (!spacingEl?.attributes) {
|
|
66770
|
+
return void 0;
|
|
66771
|
+
}
|
|
66772
|
+
const attrs = spacingEl.attributes;
|
|
66773
|
+
const spacing = {};
|
|
66774
|
+
const before = parseIntSafe(attrs["w:before"]);
|
|
66775
|
+
const after = parseIntSafe(attrs["w:after"]);
|
|
66776
|
+
const line = parseIntSafe(attrs["w:line"]);
|
|
66777
|
+
const rawLineRule = attrs["w:lineRule"];
|
|
66778
|
+
const lineRule = rawLineRule === "auto" || rawLineRule === "exact" || rawLineRule === "atLeast" ? rawLineRule : void 0;
|
|
66779
|
+
if (before != null) spacing.before = twipsToPx$1(before);
|
|
66780
|
+
if (after != null) spacing.after = twipsToPx$1(after);
|
|
66781
|
+
if (line != null) {
|
|
66782
|
+
if (lineRule === "auto") {
|
|
66783
|
+
spacing.line = line / 240;
|
|
66784
|
+
} else {
|
|
66785
|
+
spacing.line = twipsToPx$1(line);
|
|
66786
|
+
}
|
|
66787
|
+
}
|
|
66788
|
+
if (lineRule) spacing.lineRule = lineRule;
|
|
66789
|
+
const result = Object.keys(spacing).length > 0 ? { spacing } : void 0;
|
|
66790
|
+
return result;
|
|
66791
|
+
} catch (err) {
|
|
66792
|
+
return void 0;
|
|
66793
|
+
}
|
|
66794
|
+
};
|
|
66795
|
+
const parseIntSafe = (value) => {
|
|
66796
|
+
if (value == null) return void 0;
|
|
66797
|
+
const num = typeof value === "number" ? value : parseInt(String(value), 10);
|
|
66798
|
+
return Number.isFinite(num) ? num : void 0;
|
|
66799
|
+
};
|
|
66718
66800
|
const isTableRowNode = (node) => node.type === "tableRow" || node.type === "table_row";
|
|
66719
66801
|
const isTableCellNode = (node) => node.type === "tableCell" || node.type === "table_cell" || node.type === "tableHeader" || node.type === "table_header";
|
|
66720
66802
|
const normalizeRowHeight = (rowProps) => {
|
|
@@ -66734,11 +66816,15 @@ const normalizeRowHeight = (rowProps) => {
|
|
|
66734
66816
|
};
|
|
66735
66817
|
};
|
|
66736
66818
|
const parseTableCell = (args) => {
|
|
66737
|
-
const { cellNode, rowIndex, cellIndex, context, defaultCellPadding } = args;
|
|
66819
|
+
const { cellNode, rowIndex, cellIndex, context, defaultCellPadding, tableStyleParagraphProps } = args;
|
|
66738
66820
|
if (!isTableCellNode(cellNode) || !Array.isArray(cellNode.content)) {
|
|
66739
66821
|
return null;
|
|
66740
66822
|
}
|
|
66741
66823
|
const blocks = [];
|
|
66824
|
+
const cellConverterContext = tableStyleParagraphProps ? {
|
|
66825
|
+
...context.converterContext,
|
|
66826
|
+
tableStyleParagraphProps
|
|
66827
|
+
} : context.converterContext;
|
|
66742
66828
|
for (const childNode of cellNode.content) {
|
|
66743
66829
|
if (childNode.type === "paragraph") {
|
|
66744
66830
|
const paragraphBlocks = context.paragraphToFlowBlocks(
|
|
@@ -66749,11 +66835,13 @@ const parseTableCell = (args) => {
|
|
|
66749
66835
|
context.defaultSize,
|
|
66750
66836
|
context.styleContext,
|
|
66751
66837
|
void 0,
|
|
66838
|
+
// listCounterContext
|
|
66752
66839
|
context.trackedChanges,
|
|
66753
66840
|
context.bookmarks,
|
|
66754
66841
|
context.hyperlinkConfig,
|
|
66755
66842
|
context.themeColors,
|
|
66756
|
-
|
|
66843
|
+
cellConverterContext
|
|
66844
|
+
// converterContext at position 12
|
|
66757
66845
|
);
|
|
66758
66846
|
const paragraph = paragraphBlocks.find((b2) => b2.kind === "paragraph");
|
|
66759
66847
|
if (paragraph) {
|
|
@@ -66796,7 +66884,7 @@ const parseTableCell = (args) => {
|
|
|
66796
66884
|
};
|
|
66797
66885
|
};
|
|
66798
66886
|
const parseTableRow = (args) => {
|
|
66799
|
-
const { rowNode, rowIndex, context, defaultCellPadding } = args;
|
|
66887
|
+
const { rowNode, rowIndex, context, defaultCellPadding, tableStyleParagraphProps } = args;
|
|
66800
66888
|
if (!isTableRowNode(rowNode) || !Array.isArray(rowNode.content)) {
|
|
66801
66889
|
return null;
|
|
66802
66890
|
}
|
|
@@ -66807,7 +66895,8 @@ const parseTableRow = (args) => {
|
|
|
66807
66895
|
rowIndex,
|
|
66808
66896
|
cellIndex,
|
|
66809
66897
|
context,
|
|
66810
|
-
defaultCellPadding
|
|
66898
|
+
defaultCellPadding,
|
|
66899
|
+
tableStyleParagraphProps
|
|
66811
66900
|
});
|
|
66812
66901
|
if (parsedCell) {
|
|
66813
66902
|
cells.push(parsedCell);
|
|
@@ -66916,13 +67005,15 @@ function tableNodeToBlock$1(node, nextBlockId, positions, defaultFont, defaultSi
|
|
|
66916
67005
|
};
|
|
66917
67006
|
const hydratedTableStyle = hydrateTableStyleAttrs(node, converterContext);
|
|
66918
67007
|
const defaultCellPadding = hydratedTableStyle?.cellPadding;
|
|
67008
|
+
const tableStyleParagraphProps = hydratedTableStyle?.paragraphProps;
|
|
66919
67009
|
const rows = [];
|
|
66920
67010
|
node.content.forEach((rowNode, rowIndex) => {
|
|
66921
67011
|
const parsedRow = parseTableRow({
|
|
66922
67012
|
rowNode,
|
|
66923
67013
|
rowIndex,
|
|
66924
67014
|
context: parserDeps,
|
|
66925
|
-
defaultCellPadding
|
|
67015
|
+
defaultCellPadding,
|
|
67016
|
+
tableStyleParagraphProps
|
|
66926
67017
|
});
|
|
66927
67018
|
if (parsedRow) {
|
|
66928
67019
|
rows.push(parsedRow);
|
|
@@ -67178,7 +67269,7 @@ function toFlowBlocks(pmDoc, options) {
|
|
|
67178
67269
|
blocks.push(sectionBreak);
|
|
67179
67270
|
recordBlockKind(sectionBreak.kind);
|
|
67180
67271
|
}
|
|
67181
|
-
const paragraphConverter = (para, nextBlockId2, positions2, defaultFont2, defaultSize2, context, listCounterContext, trackedChanges, bookmarks2, hyperlinkConfig2) => paragraphToFlowBlocks(
|
|
67272
|
+
const paragraphConverter = (para, nextBlockId2, positions2, defaultFont2, defaultSize2, context, listCounterContext, trackedChanges, bookmarks2, hyperlinkConfig2, themeColorsParam, converterCtx) => paragraphToFlowBlocks(
|
|
67182
67273
|
para,
|
|
67183
67274
|
nextBlockId2,
|
|
67184
67275
|
positions2,
|
|
@@ -67189,8 +67280,8 @@ function toFlowBlocks(pmDoc, options) {
|
|
|
67189
67280
|
trackedChanges,
|
|
67190
67281
|
bookmarks2,
|
|
67191
67282
|
hyperlinkConfig2,
|
|
67192
|
-
themeColors,
|
|
67193
|
-
converterContext
|
|
67283
|
+
themeColorsParam ?? themeColors,
|
|
67284
|
+
converterCtx ?? converterContext
|
|
67194
67285
|
);
|
|
67195
67286
|
const tableConverter = (node, nextBlockId2, positions2, defaultFont2, defaultSize2, context, trackedChanges, bookmarks2, hyperlinkConfig2, themeColorsParam, converterCtx) => tableNodeToBlock(
|
|
67196
67287
|
node,
|
|
@@ -67970,9 +68061,7 @@ function buildMultiSectionIdentifier(sectionMetadata, pageStyles2) {
|
|
|
67970
68061
|
odd: section.footerRefs.odd ?? null
|
|
67971
68062
|
});
|
|
67972
68063
|
}
|
|
67973
|
-
|
|
67974
|
-
const hasFirstFooter = Boolean(section.footerRefs?.first);
|
|
67975
|
-
if (hasFirstHeader || hasFirstFooter) {
|
|
68064
|
+
if (section.titlePg === true) {
|
|
67976
68065
|
identifier.sectionTitlePg.set(idx, true);
|
|
67977
68066
|
}
|
|
67978
68067
|
}
|
|
@@ -69179,14 +69268,35 @@ function layoutTableBlock({
|
|
|
69179
69268
|
const headerHeight = headerCount > 0 ? sumRowHeights(measure.rows, 0, headerCount) : 0;
|
|
69180
69269
|
let state2 = ensurePage();
|
|
69181
69270
|
const availableHeight = state2.contentBottom - state2.cursorY;
|
|
69182
|
-
|
|
69183
|
-
|
|
69184
|
-
|
|
69185
|
-
|
|
69186
|
-
|
|
69187
|
-
|
|
69188
|
-
|
|
69189
|
-
|
|
69271
|
+
const hasPriorFragments = state2.page.fragments.length > 0;
|
|
69272
|
+
const hasMeasuredRows = measure.rows.length > 0 && block.rows.length > 0;
|
|
69273
|
+
if (hasMeasuredRows && hasPriorFragments) {
|
|
69274
|
+
const firstRowCantSplit = block.rows[0]?.attrs?.tableRowProperties?.cantSplit === true;
|
|
69275
|
+
const firstRowHeight = measure.rows[0]?.height ?? measure.totalHeight ?? 0;
|
|
69276
|
+
if (firstRowCantSplit) {
|
|
69277
|
+
if (firstRowHeight > availableHeight) {
|
|
69278
|
+
state2 = advanceColumn(state2);
|
|
69279
|
+
}
|
|
69280
|
+
} else {
|
|
69281
|
+
const partial = computePartialRow(0, block.rows[0], measure, availableHeight);
|
|
69282
|
+
const madeProgress = partial.toLineByCell.some(
|
|
69283
|
+
(toLine, idx) => toLine > (partial.fromLineByCell[idx] || 0)
|
|
69284
|
+
);
|
|
69285
|
+
const hasRenderableHeight = partial.partialHeight > 0;
|
|
69286
|
+
if (!madeProgress || !hasRenderableHeight) {
|
|
69287
|
+
state2 = advanceColumn(state2);
|
|
69288
|
+
}
|
|
69289
|
+
}
|
|
69290
|
+
} else if (hasPriorFragments) {
|
|
69291
|
+
let minRequiredHeight = 0;
|
|
69292
|
+
if (measure.rows.length > 0) {
|
|
69293
|
+
minRequiredHeight = sumRowHeights(measure.rows, 0, 1);
|
|
69294
|
+
} else if (measure.totalHeight > 0) {
|
|
69295
|
+
minRequiredHeight = measure.totalHeight;
|
|
69296
|
+
}
|
|
69297
|
+
if (minRequiredHeight > availableHeight) {
|
|
69298
|
+
state2 = advanceColumn(state2);
|
|
69299
|
+
}
|
|
69190
69300
|
}
|
|
69191
69301
|
let currentRow = 0;
|
|
69192
69302
|
let isTableContinuation = false;
|
|
@@ -69251,7 +69361,7 @@ function layoutTableBlock({
|
|
|
69251
69361
|
return fromLine < totalLines;
|
|
69252
69362
|
});
|
|
69253
69363
|
const fragmentHeight2 = continuationPartialRow.partialHeight + (repeatHeaderCount > 0 ? headerHeight : 0);
|
|
69254
|
-
if (fragmentHeight2 > 0) {
|
|
69364
|
+
if (fragmentHeight2 > 0 && madeProgress) {
|
|
69255
69365
|
const fragment2 = {
|
|
69256
69366
|
kind: "table",
|
|
69257
69367
|
blockId: block.id,
|
|
@@ -77760,9 +77870,16 @@ const _DomPainter = class _DomPainter2 {
|
|
|
77760
77870
|
tabEl.style.width = `${actualTabWidth}px`;
|
|
77761
77871
|
tabEl.style.height = `${line.lineHeight}px`;
|
|
77762
77872
|
tabEl.style.display = "inline-block";
|
|
77763
|
-
tabEl.style.visibility = "hidden";
|
|
77764
77873
|
tabEl.style.pointerEvents = "none";
|
|
77765
77874
|
tabEl.style.zIndex = "1";
|
|
77875
|
+
if (baseRun.underline) {
|
|
77876
|
+
const underlineStyle = baseRun.underline.style ?? "single";
|
|
77877
|
+
const underlineColor = baseRun.underline.color ?? "#000000";
|
|
77878
|
+
const borderStyle = underlineStyle === "double" ? "double" : "solid";
|
|
77879
|
+
tabEl.style.borderBottom = `1px ${borderStyle} ${underlineColor}`;
|
|
77880
|
+
} else {
|
|
77881
|
+
tabEl.style.visibility = "hidden";
|
|
77882
|
+
}
|
|
77766
77883
|
if (styleId) {
|
|
77767
77884
|
tabEl.setAttribute("styleid", styleId);
|
|
77768
77885
|
}
|
|
@@ -77840,6 +77957,28 @@ const _DomPainter = class _DomPainter2 {
|
|
|
77840
77957
|
}
|
|
77841
77958
|
} else {
|
|
77842
77959
|
runsForLine.forEach((run2) => {
|
|
77960
|
+
if (run2.kind === "tab") {
|
|
77961
|
+
const tabEl = this.doc.createElement("span");
|
|
77962
|
+
tabEl.classList.add("superdoc-tab");
|
|
77963
|
+
const tabWidth = run2.width ?? 48;
|
|
77964
|
+
tabEl.style.display = "inline-block";
|
|
77965
|
+
tabEl.style.width = `${tabWidth}px`;
|
|
77966
|
+
tabEl.style.height = `${line.lineHeight}px`;
|
|
77967
|
+
tabEl.style.verticalAlign = "bottom";
|
|
77968
|
+
if (run2.underline) {
|
|
77969
|
+
const underlineStyle = run2.underline.style ?? "single";
|
|
77970
|
+
const underlineColor = run2.underline.color ?? "#000000";
|
|
77971
|
+
const borderStyle = underlineStyle === "double" ? "double" : "solid";
|
|
77972
|
+
tabEl.style.borderBottom = `1px ${borderStyle} ${underlineColor}`;
|
|
77973
|
+
}
|
|
77974
|
+
if (styleId) {
|
|
77975
|
+
tabEl.setAttribute("styleid", styleId);
|
|
77976
|
+
}
|
|
77977
|
+
if (run2.pmStart != null) tabEl.dataset.pmStart = String(run2.pmStart);
|
|
77978
|
+
if (run2.pmEnd != null) tabEl.dataset.pmEnd = String(run2.pmEnd);
|
|
77979
|
+
el.appendChild(tabEl);
|
|
77980
|
+
return;
|
|
77981
|
+
}
|
|
77843
77982
|
const elem = this.renderRun(run2, context, trackedConfig);
|
|
77844
77983
|
if (elem) {
|
|
77845
77984
|
if (styleId) {
|
|
@@ -78928,8 +79067,10 @@ async function measureParagraphBlock(block, maxWidth) {
|
|
|
78928
79067
|
const indentRight = sanitizePositive(indent?.right);
|
|
78929
79068
|
const firstLine = indent?.firstLine ?? 0;
|
|
78930
79069
|
const hanging = indent?.hanging ?? 0;
|
|
79070
|
+
const isWordLayoutList = Boolean(wordLayout?.marker);
|
|
78931
79071
|
const suppressFirstLine = block.attrs?.suppressFirstLineIndent === true;
|
|
78932
|
-
const
|
|
79072
|
+
const rawFirstLineOffset = suppressFirstLine ? 0 : firstLine - hanging;
|
|
79073
|
+
const firstLineOffset = isWordLayoutList ? 0 : rawFirstLineOffset;
|
|
78933
79074
|
const contentWidth = Math.max(1, maxWidth - indentLeft - indentRight);
|
|
78934
79075
|
const initialAvailableWidth = Math.max(1, contentWidth - firstLineOffset);
|
|
78935
79076
|
const tabStops = buildTabStopsPx(
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SuperDoc.d.ts","sourceRoot":"","sources":["../../../../../src/core/SuperDoc.js"],"names":[],"mappings":"AAqBA,6CAA6C;AAC7C,mEAAmE;AACnE,qDAAqD;AACrD,mDAAmD;AACnD,iDAAiD;AACjD,6DAA6D;AAC7D,iDAAiD;AACjD,6DAA6D;AAE7D;;;;;;GAMG;AACH;IACE,4BAA4B;IAC5B,qBADW,KAAK,CAAC,MAAM,CAAC,CACgB;IA4ExC;;OAEG;IACH,oBAFW,MAAM,EAKhB;IAhFD,qBAAqB;IACrB,SADW,MAAM,CACT;IAER,qBAAqB;IACrB,OADW,IAAI,EAAE,CACX;IAEN,4CAA4C;IAC5C,MADW,OAAO,KAAK,EAAE,GAAG,GAAG,SAAS,CACnC;IAEL,4EAA4E;IAC5E,UADW,OAAO,sBAAsB,EAAE,kBAAkB,GAAG,SAAS,CAC/D;IAET,qBAAqB;IACrB,QADW,MAAM,CA4Df;IAiDA,wCAA6B;IAC7B,+BAAmB;IAMnB,gBAA+C;IAC/C,6BAAgC;IAchC,yCAA4B;IAE5B,YAAkB;IAElB,2BAAuC;IAEvC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAAwB;IACxB,4BAAkB;IASlB,iCAAqB;IAErB,8BAA6C;IAC7C,oDAA4C;IAM9C;;;OAGG;IACH,+BAFa,MAAM,CAIlB;IAED;;;MAKC;IAED;;;OAGG;IACH,eAFa,WAAW,GAAG,IAAI,CAO9B;IAsFC,SAAc;IACd,WAAkB;IAKlB,mBAAkC;IAClC,mBAAkC;IAClC,2BAAkD;IAuClD,qCAA2B;IA4B7B;;;;OAIG;IACH,oBAHW,MAAM,GACJ,IAAI,CAKhB;IAED;;;;OAIG;IACH,iCAFa,IAAI,CAIhB;IAED;;;;;OAKG;IACH,kCAHG;QAAsB,KAAK,EAAnB,KAAK;QACU,MAAM,EAArB,MAAM;KAChB,QAKA;IAED;;;OAGG;IACH,6BAFa,IAAI,CAIhB;IAED;;;OAGG;IACH,kBAFa,IAAI,CAMhB;IAED;;;;OAIG;IACH,oCAHW,MAAM,GACJ,IAAI,CAIhB;IAED;;;;OAIG;IACH,8BAHW,MAAM,GACJ,IAAI,CAMhB;IAED;;;OAGG;IACH,0BAFa,IAAI,CAIhB;IAED;;;OAGG;IACH,iCAFW,OAAO,QAIjB;IAMD;;;;OAIG;IACH,wBAHW,MAAM,GACJ,IAAI,CAQhB;IAED;;;;OAIG;IACH,eAFa,IAAI,CAOhB;IAED;;;;;;;;;;;;OAYG;IACH,iFAPG;QAAuB,UAAU,EAAzB,MAAM;QACU,IAAI;QACH,UAAU;QACN,OAAO;QACP,aAAa;KAC1C,GAAU,OAAO,CA2BnB;IAIC,oBAAmF;IACnF;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"SuperDoc.d.ts","sourceRoot":"","sources":["../../../../../src/core/SuperDoc.js"],"names":[],"mappings":"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"}
|
|
@@ -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-
|
|
3
|
-
import { _ as _export_sfc } from "./chunks/editor-
|
|
2
|
+
import { T as TextSelection } from "./chunks/converter-GXPldmlh.js";
|
|
3
|
+
import { _ as _export_sfc } from "./chunks/editor-DaDga3Ye.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 = {}) {
|
|
@@ -39184,7 +39184,9 @@ const INLINE_PARENT_NAMES = /* @__PURE__ */ new Set([
|
|
|
39184
39184
|
"w:fldSimple",
|
|
39185
39185
|
"w:proofErr",
|
|
39186
39186
|
"w:del",
|
|
39187
|
-
"w:ins"
|
|
39187
|
+
"w:ins",
|
|
39188
|
+
"w:p"
|
|
39189
|
+
// Paragraph is an inline container; unknown children must be inline-safe
|
|
39188
39190
|
]);
|
|
39189
39191
|
const INLINE_NODE_NAMES = /* @__PURE__ */ new Set([
|
|
39190
39192
|
"m:oMathPara",
|
|
@@ -39197,7 +39199,7 @@ const INLINE_NODE_NAMES = /* @__PURE__ */ new Set([
|
|
|
39197
39199
|
"m:sup",
|
|
39198
39200
|
"m:sSup"
|
|
39199
39201
|
]);
|
|
39200
|
-
const BLOCK_BOUNDARY_NAMES = /* @__PURE__ */ new Set(["w:
|
|
39202
|
+
const BLOCK_BOUNDARY_NAMES = /* @__PURE__ */ new Set(["w:body", "w:tbl", "w:tc", "w:tr"]);
|
|
39201
39203
|
const isInlineContext = (path = [], currentNodeName) => {
|
|
39202
39204
|
if (currentNodeName && INLINE_NODE_NAMES.has(currentNodeName)) {
|
|
39203
39205
|
return true;
|
|
@@ -42120,7 +42122,7 @@ const _SuperConverter = class _SuperConverter {
|
|
|
42120
42122
|
static getStoredSuperdocVersion(docx) {
|
|
42121
42123
|
return _SuperConverter.getStoredCustomProperty(docx, "SuperdocVersion");
|
|
42122
42124
|
}
|
|
42123
|
-
static setStoredSuperdocVersion(docx = this.convertedXml, version = "1.0.0-beta.
|
|
42125
|
+
static setStoredSuperdocVersion(docx = this.convertedXml, version = "1.0.0-beta.29") {
|
|
42124
42126
|
return _SuperConverter.setStoredCustomProperty(docx, "SuperdocVersion", version, false);
|
|
42125
42127
|
}
|
|
42126
42128
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { p as process$1, aJ as commonjsGlobal, B as Buffer, aK as getDefaultExportFromCjs, aL as getContentTypesFromXml, aM as xmljs } from "./converter-
|
|
1
|
+
import { p as process$1, aJ as commonjsGlobal, B as Buffer, aK as getDefaultExportFromCjs, aL as getContentTypesFromXml, aM as xmljs } from "./converter-GXPldmlh.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
|
}
|