@xignature/docx-editor 1.0.0
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/FindReplaceDialog-QIGO4OJT.mjs +35 -0
- package/dist/FootnotePropertiesDialog-JPXQGUW6.mjs +248 -0
- package/dist/HyperlinkDialog-FKJNYDPU.mjs +33 -0
- package/dist/ImagePositionDialog-GNWPNWDW.mjs +384 -0
- package/dist/ImagePropertiesDialog-X444B4VT.mjs +255 -0
- package/dist/PageSetupDialog-VVADE54Z.mjs +218 -0
- package/dist/SplitCellDialog-7LP6IJIJ.mjs +199 -0
- package/dist/TablePropertiesDialog-OKWY22PF.mjs +194 -0
- package/dist/chunk-625UL7ND.mjs +928 -0
- package/dist/chunk-IAU6OTCV.mjs +969 -0
- package/dist/chunk-K4JMXHBE.mjs +61 -0
- package/dist/chunk-OG6X5JJA.mjs +825 -0
- package/dist/chunk-QGDML3KL.mjs +258 -0
- package/dist/chunk-TSNYN4SV.mjs +589 -0
- package/dist/chunk-VOCY4R5S.mjs +1642 -0
- package/dist/executor-WLWTO7VJ.mjs +8 -0
- package/dist/index.css +483 -0
- package/dist/index.d.mts +8891 -0
- package/dist/index.d.ts +8891 -0
- package/dist/index.js +61000 -0
- package/dist/index.mjs +53887 -0
- package/dist/processTemplate-3HXKJ3EC.mjs +26 -0
- package/dist/selectionRects-I6KGVVI7.mjs +12 -0
- package/package.json +70 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createTemplateProcessor,
|
|
3
|
+
getMissingVariables,
|
|
4
|
+
getTemplateTags,
|
|
5
|
+
previewTemplate,
|
|
6
|
+
processTemplate,
|
|
7
|
+
processTemplateAdvanced,
|
|
8
|
+
processTemplateAndDownload,
|
|
9
|
+
processTemplateAsBlob,
|
|
10
|
+
processTemplateDetailed,
|
|
11
|
+
processTemplate_default,
|
|
12
|
+
validateTemplate
|
|
13
|
+
} from "./chunk-QGDML3KL.mjs";
|
|
14
|
+
export {
|
|
15
|
+
createTemplateProcessor,
|
|
16
|
+
processTemplate_default as default,
|
|
17
|
+
getMissingVariables,
|
|
18
|
+
getTemplateTags,
|
|
19
|
+
previewTemplate,
|
|
20
|
+
processTemplate,
|
|
21
|
+
processTemplateAdvanced,
|
|
22
|
+
processTemplateAndDownload,
|
|
23
|
+
processTemplateAsBlob,
|
|
24
|
+
processTemplateDetailed,
|
|
25
|
+
validateTemplate
|
|
26
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xignature/docx-editor",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A high-performance DOCX editor built with ProseMirror and Tiptap",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public",
|
|
13
|
+
"registry": "https://registry.npmjs.org/"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
17
|
+
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
|
|
18
|
+
"lint": "eslint src/**",
|
|
19
|
+
"test": "echo 'no tests'",
|
|
20
|
+
"format": "prettier --write src/**"
|
|
21
|
+
},
|
|
22
|
+
"peerDependencies": {
|
|
23
|
+
"@heroui/react": ">=2",
|
|
24
|
+
"react": ">=18",
|
|
25
|
+
"react-dom": ">=18"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@tiptap/core": "^3.22.0",
|
|
29
|
+
"@tiptap/extension-gapcursor": "^3.22.0",
|
|
30
|
+
"@tiptap/extension-highlight": "^3.22.0",
|
|
31
|
+
"@tiptap/extension-image": "^3.22.0",
|
|
32
|
+
"@tiptap/extension-link": "^3.22.0",
|
|
33
|
+
"@tiptap/extension-table": "^3.22.0",
|
|
34
|
+
"@tiptap/extension-table-cell": "^3.22.0",
|
|
35
|
+
"@tiptap/extension-table-header": "^3.22.0",
|
|
36
|
+
"@tiptap/extension-table-row": "^3.22.0",
|
|
37
|
+
"@tiptap/extension-text-align": "^3.22.0",
|
|
38
|
+
"@tiptap/extension-underline": "^3.22.0",
|
|
39
|
+
"@tiptap/pm": "^3.22.0",
|
|
40
|
+
"@tiptap/react": "^3.22.0",
|
|
41
|
+
"@tiptap/starter-kit": "^3.22.0",
|
|
42
|
+
"clsx": "^2.1.1",
|
|
43
|
+
"docx": "^9.6.1",
|
|
44
|
+
"docxtemplater": "^3.68.6",
|
|
45
|
+
"framer-motion": "^12.38.0",
|
|
46
|
+
"jszip": "^3.10.1",
|
|
47
|
+
"lucide-react": "^0.294.0",
|
|
48
|
+
"pizzip": "^3.2.0",
|
|
49
|
+
"prosemirror-commands": "^1.7.1",
|
|
50
|
+
"prosemirror-dropcursor": "^1.8.2",
|
|
51
|
+
"prosemirror-history": "^1.5.0",
|
|
52
|
+
"prosemirror-keymap": "^1.2.3",
|
|
53
|
+
"prosemirror-model": "^1.25.4",
|
|
54
|
+
"prosemirror-state": "^1.4.4",
|
|
55
|
+
"prosemirror-tables": "^1.8.5",
|
|
56
|
+
"prosemirror-transform": "^1.12.0",
|
|
57
|
+
"prosemirror-view": "^1.41.8",
|
|
58
|
+
"react-icons": "^4.12.0",
|
|
59
|
+
"sonner": "^2.0.7",
|
|
60
|
+
"tailwind-merge": "^2.6.0",
|
|
61
|
+
"xml-js": "^1.6.11"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@heroui/react": "^2.8.10",
|
|
65
|
+
"@types/react": "19.2.14",
|
|
66
|
+
"@types/react-dom": "19.2.3",
|
|
67
|
+
"tsup": "^8.4.0",
|
|
68
|
+
"typescript": "^5.9.3"
|
|
69
|
+
}
|
|
70
|
+
}
|