docx-wasm 0.0.277-sdt5 → 0.0.278-rc0
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.
|
@@ -196,12 +196,6 @@ export enum HeightRule {
|
|
|
196
196
|
}
|
|
197
197
|
/**
|
|
198
198
|
*/
|
|
199
|
-
export enum HyperlinkType {
|
|
200
|
-
Anchor,
|
|
201
|
-
External,
|
|
202
|
-
}
|
|
203
|
-
/**
|
|
204
|
-
*/
|
|
205
199
|
export enum LevelSuffixType {
|
|
206
200
|
Nothing,
|
|
207
201
|
Space,
|
|
@@ -209,6 +203,16 @@ export enum LevelSuffixType {
|
|
|
209
203
|
}
|
|
210
204
|
/**
|
|
211
205
|
*/
|
|
206
|
+
export enum TabLeaderType {
|
|
207
|
+
Dot,
|
|
208
|
+
Heavy,
|
|
209
|
+
Hyphen,
|
|
210
|
+
MiddleDot,
|
|
211
|
+
None,
|
|
212
|
+
Underscore,
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
*/
|
|
212
216
|
export enum DocGridType {
|
|
213
217
|
Default,
|
|
214
218
|
Lines,
|
|
@@ -390,13 +394,9 @@ export enum AlignmentType {
|
|
|
390
394
|
}
|
|
391
395
|
/**
|
|
392
396
|
*/
|
|
393
|
-
export enum
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
Hyphen,
|
|
397
|
-
MiddleDot,
|
|
398
|
-
None,
|
|
399
|
-
Underscore,
|
|
397
|
+
export enum HyperlinkType {
|
|
398
|
+
Anchor,
|
|
399
|
+
External,
|
|
400
400
|
}
|
|
401
401
|
/**
|
|
402
402
|
*/
|
|
@@ -445,10 +445,10 @@ module.exports.PicAlign = Object.freeze({ Left:0,"0":"Left",Right:1,"1":"Right",
|
|
|
445
445
|
module.exports.HeightRule = Object.freeze({ Auto:0,"0":"Auto",AtLeast:1,"1":"AtLeast",Exact:2,"2":"Exact", });
|
|
446
446
|
/**
|
|
447
447
|
*/
|
|
448
|
-
module.exports.
|
|
448
|
+
module.exports.LevelSuffixType = Object.freeze({ Nothing:0,"0":"Nothing",Space:1,"1":"Space",Tab:2,"2":"Tab", });
|
|
449
449
|
/**
|
|
450
450
|
*/
|
|
451
|
-
module.exports.
|
|
451
|
+
module.exports.TabLeaderType = Object.freeze({ Dot:0,"0":"Dot",Heavy:1,"1":"Heavy",Hyphen:2,"2":"Hyphen",MiddleDot:3,"3":"MiddleDot",None:4,"4":"None",Underscore:5,"5":"Underscore", });
|
|
452
452
|
/**
|
|
453
453
|
*/
|
|
454
454
|
module.exports.DocGridType = Object.freeze({ Default:0,"0":"Default",Lines:1,"1":"Lines",LinesAndChars:2,"2":"LinesAndChars",SnapToChars:3,"3":"SnapToChars", });
|
|
@@ -528,7 +528,7 @@ module.exports.VAlignType = Object.freeze({ Top:0,"0":"Top",Center:1,"1":"Center
|
|
|
528
528
|
module.exports.AlignmentType = Object.freeze({ Both:0,"0":"Both",Center:1,"1":"Center",Distribute:2,"2":"Distribute",Start:3,"3":"Start",End:4,"4":"End",Left:5,"5":"Left",Right:6,"6":"Right",Justified:7,"7":"Justified",Unsupported:8,"8":"Unsupported", });
|
|
529
529
|
/**
|
|
530
530
|
*/
|
|
531
|
-
module.exports.
|
|
531
|
+
module.exports.HyperlinkType = Object.freeze({ Anchor:0,"0":"Anchor",External:1,"1":"External", });
|
|
532
532
|
/**
|
|
533
533
|
*/
|
|
534
534
|
module.exports.VMergeType = Object.freeze({ Continue:0,"0":"Continue",Restart:1,"1":"Restart",Unsupported:2,"2":"Unsupported", });
|
|
Binary file
|
|
@@ -196,12 +196,6 @@ export enum HeightRule {
|
|
|
196
196
|
}
|
|
197
197
|
/**
|
|
198
198
|
*/
|
|
199
|
-
export enum HyperlinkType {
|
|
200
|
-
Anchor,
|
|
201
|
-
External,
|
|
202
|
-
}
|
|
203
|
-
/**
|
|
204
|
-
*/
|
|
205
199
|
export enum LevelSuffixType {
|
|
206
200
|
Nothing,
|
|
207
201
|
Space,
|
|
@@ -209,6 +203,16 @@ export enum LevelSuffixType {
|
|
|
209
203
|
}
|
|
210
204
|
/**
|
|
211
205
|
*/
|
|
206
|
+
export enum TabLeaderType {
|
|
207
|
+
Dot,
|
|
208
|
+
Heavy,
|
|
209
|
+
Hyphen,
|
|
210
|
+
MiddleDot,
|
|
211
|
+
None,
|
|
212
|
+
Underscore,
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
*/
|
|
212
216
|
export enum DocGridType {
|
|
213
217
|
Default,
|
|
214
218
|
Lines,
|
|
@@ -390,13 +394,9 @@ export enum AlignmentType {
|
|
|
390
394
|
}
|
|
391
395
|
/**
|
|
392
396
|
*/
|
|
393
|
-
export enum
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
Hyphen,
|
|
397
|
-
MiddleDot,
|
|
398
|
-
None,
|
|
399
|
-
Underscore,
|
|
397
|
+
export enum HyperlinkType {
|
|
398
|
+
Anchor,
|
|
399
|
+
External,
|
|
400
400
|
}
|
|
401
401
|
/**
|
|
402
402
|
*/
|
|
@@ -446,10 +446,10 @@ export const PicAlign = Object.freeze({ Left:0,"0":"Left",Right:1,"1":"Right",Ce
|
|
|
446
446
|
export const HeightRule = Object.freeze({ Auto:0,"0":"Auto",AtLeast:1,"1":"AtLeast",Exact:2,"2":"Exact", });
|
|
447
447
|
/**
|
|
448
448
|
*/
|
|
449
|
-
export const
|
|
449
|
+
export const LevelSuffixType = Object.freeze({ Nothing:0,"0":"Nothing",Space:1,"1":"Space",Tab:2,"2":"Tab", });
|
|
450
450
|
/**
|
|
451
451
|
*/
|
|
452
|
-
export const
|
|
452
|
+
export const TabLeaderType = Object.freeze({ Dot:0,"0":"Dot",Heavy:1,"1":"Heavy",Hyphen:2,"2":"Hyphen",MiddleDot:3,"3":"MiddleDot",None:4,"4":"None",Underscore:5,"5":"Underscore", });
|
|
453
453
|
/**
|
|
454
454
|
*/
|
|
455
455
|
export const DocGridType = Object.freeze({ Default:0,"0":"Default",Lines:1,"1":"Lines",LinesAndChars:2,"2":"LinesAndChars",SnapToChars:3,"3":"SnapToChars", });
|
|
@@ -529,7 +529,7 @@ export const VAlignType = Object.freeze({ Top:0,"0":"Top",Center:1,"1":"Center",
|
|
|
529
529
|
export const AlignmentType = Object.freeze({ Both:0,"0":"Both",Center:1,"1":"Center",Distribute:2,"2":"Distribute",Start:3,"3":"Start",End:4,"4":"End",Left:5,"5":"Left",Right:6,"6":"Right",Justified:7,"7":"Justified",Unsupported:8,"8":"Unsupported", });
|
|
530
530
|
/**
|
|
531
531
|
*/
|
|
532
|
-
export const
|
|
532
|
+
export const HyperlinkType = Object.freeze({ Anchor:0,"0":"Anchor",External:1,"1":"External", });
|
|
533
533
|
/**
|
|
534
534
|
*/
|
|
535
535
|
export const VMergeType = Object.freeze({ Continue:0,"0":"Continue",Restart:1,"1":"Restart",Unsupported:2,"2":"Unsupported", });
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docx-wasm",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.278-rc0",
|
|
4
4
|
"main": "dist/node/index.js",
|
|
5
5
|
"browser": "dist/web/index.js",
|
|
6
6
|
"author": "bokuweb <bokuweb12@gmail.com>",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/file-saver": "2.0.5",
|
|
29
29
|
"@wasm-tool/wasm-pack-plugin": "1.6.0",
|
|
30
|
-
"adm-zip": "0.5.
|
|
30
|
+
"adm-zip": "0.5.10",
|
|
31
31
|
"cpy-cli": "4.2.0",
|
|
32
32
|
"file-saver": "2.0.5",
|
|
33
|
-
"html-webpack-plugin": "
|
|
33
|
+
"html-webpack-plugin": "5.5.0",
|
|
34
34
|
"jest": "28.1.3",
|
|
35
35
|
"npm-run-all": "4.1.5",
|
|
36
36
|
"text-encoding": "0.7.0",
|