@docen/docx 0.3.4 → 0.3.5
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/converters/docx.mjs +3 -1
- package/package.json +3 -3
package/dist/converters/docx.mjs
CHANGED
|
@@ -343,6 +343,7 @@ var DocxManager = class {
|
|
|
343
343
|
compiledCells.push({
|
|
344
344
|
verticalMerge: "continue",
|
|
345
345
|
columnSpan: span.colspan,
|
|
346
|
+
...span.borders ? { borders: span.borders } : {},
|
|
346
347
|
children: [{ paragraph: "" }]
|
|
347
348
|
});
|
|
348
349
|
colIdx += span.colspan;
|
|
@@ -357,7 +358,8 @@ var DocxManager = class {
|
|
|
357
358
|
newSpans.push({
|
|
358
359
|
colStart: colIdx,
|
|
359
360
|
colspan: cs,
|
|
360
|
-
remainingRows: rs - 1
|
|
361
|
+
remainingRows: rs - 1,
|
|
362
|
+
borders: cell.borders
|
|
361
363
|
});
|
|
362
364
|
}
|
|
363
365
|
compiledCells.push(cell);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docen/docx",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "DOCX editor and converter powered by @office-open/docx with Tiptap editing layer, supporting bidirectional conversion between DOCX, HTML, and Markdown",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"converter",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@office-open/core": "0.10.
|
|
63
|
-
"@office-open/docx": "0.10.
|
|
62
|
+
"@office-open/core": "0.10.12",
|
|
63
|
+
"@office-open/docx": "0.10.12",
|
|
64
64
|
"@tiptap/core": "3.27.1",
|
|
65
65
|
"@tiptap/extension-blockquote": "3.27.1",
|
|
66
66
|
"@tiptap/extension-bold": "3.27.1",
|