docx-wasm 0.0.274-image-test2 → 0.0.274-image-test3
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.
|
@@ -197,6 +197,22 @@ export enum VMergeType {
|
|
|
197
197
|
}
|
|
198
198
|
/**
|
|
199
199
|
*/
|
|
200
|
+
export enum BreakType {
|
|
201
|
+
Page,
|
|
202
|
+
Column,
|
|
203
|
+
TextWrapping,
|
|
204
|
+
Unsupported,
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
*/
|
|
208
|
+
export enum FieldCharType {
|
|
209
|
+
Begin,
|
|
210
|
+
Separate,
|
|
211
|
+
End,
|
|
212
|
+
Unsupported,
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
*/
|
|
200
216
|
export enum LineSpacingType {
|
|
201
217
|
Auto,
|
|
202
218
|
AtLeast,
|
|
@@ -260,14 +276,6 @@ export enum TextDirectionType {
|
|
|
260
276
|
}
|
|
261
277
|
/**
|
|
262
278
|
*/
|
|
263
|
-
export enum BreakType {
|
|
264
|
-
Page,
|
|
265
|
-
Column,
|
|
266
|
-
TextWrapping,
|
|
267
|
-
Unsupported,
|
|
268
|
-
}
|
|
269
|
-
/**
|
|
270
|
-
*/
|
|
271
279
|
export enum VertAlignType {
|
|
272
280
|
Baseline,
|
|
273
281
|
SuperScript,
|
|
@@ -408,14 +416,6 @@ export enum DocGridType {
|
|
|
408
416
|
}
|
|
409
417
|
/**
|
|
410
418
|
*/
|
|
411
|
-
export enum FieldCharType {
|
|
412
|
-
Begin,
|
|
413
|
-
Separate,
|
|
414
|
-
End,
|
|
415
|
-
Unsupported,
|
|
416
|
-
}
|
|
417
|
-
/**
|
|
418
|
-
*/
|
|
419
419
|
export enum RelativeFromHType {
|
|
420
420
|
/**
|
|
421
421
|
* Specifies that the horizontal positioning shall be
|
|
@@ -446,6 +446,12 @@ module.exports.HyperlinkType = Object.freeze({ Anchor:0,"0":"Anchor",External:1,
|
|
|
446
446
|
module.exports.VMergeType = Object.freeze({ Continue:0,"0":"Continue",Restart:1,"1":"Restart",Unsupported:2,"2":"Unsupported", });
|
|
447
447
|
/**
|
|
448
448
|
*/
|
|
449
|
+
module.exports.BreakType = Object.freeze({ Page:0,"0":"Page",Column:1,"1":"Column",TextWrapping:2,"2":"TextWrapping",Unsupported:3,"3":"Unsupported", });
|
|
450
|
+
/**
|
|
451
|
+
*/
|
|
452
|
+
module.exports.FieldCharType = Object.freeze({ Begin:0,"0":"Begin",Separate:1,"1":"Separate",End:2,"2":"End",Unsupported:3,"3":"Unsupported", });
|
|
453
|
+
/**
|
|
454
|
+
*/
|
|
449
455
|
module.exports.LineSpacingType = Object.freeze({ Auto:0,"0":"Auto",AtLeast:1,"1":"AtLeast",Exact:2,"2":"Exact", });
|
|
450
456
|
/**
|
|
451
457
|
*/
|
|
@@ -455,9 +461,6 @@ module.exports.ShdType = Object.freeze({ Nil:0,"0":"Nil",Clear:1,"1":"Clear",Sol
|
|
|
455
461
|
module.exports.TextDirectionType = Object.freeze({ Lr:0,"0":"Lr",LrV:1,"1":"LrV",Rl:2,"2":"Rl",RlV:3,"3":"RlV",Tb:4,"4":"Tb",TbV:5,"5":"TbV",TbRlV:6,"6":"TbRlV",TbRl:7,"7":"TbRl",BtLr:8,"8":"BtLr",LrTbV:9,"9":"LrTbV", });
|
|
456
462
|
/**
|
|
457
463
|
*/
|
|
458
|
-
module.exports.BreakType = Object.freeze({ Page:0,"0":"Page",Column:1,"1":"Column",TextWrapping:2,"2":"TextWrapping",Unsupported:3,"3":"Unsupported", });
|
|
459
|
-
/**
|
|
460
|
-
*/
|
|
461
464
|
module.exports.VertAlignType = Object.freeze({ Baseline:0,"0":"Baseline",SuperScript:1,"1":"SuperScript",SubScript:2,"2":"SubScript",Unsupported:3,"3":"Unsupported", });
|
|
462
465
|
/**
|
|
463
466
|
*/
|
|
@@ -500,9 +503,6 @@ module.exports.WidthType = Object.freeze({ Dxa:0,"0":"Dxa",Auto:1,"1":"Auto",Pct
|
|
|
500
503
|
module.exports.DocGridType = Object.freeze({ Default:0,"0":"Default",Lines:1,"1":"Lines",LinesAndChars:2,"2":"LinesAndChars",SnapToChars:3,"3":"SnapToChars", });
|
|
501
504
|
/**
|
|
502
505
|
*/
|
|
503
|
-
module.exports.FieldCharType = Object.freeze({ Begin:0,"0":"Begin",Separate:1,"1":"Separate",End:2,"2":"End",Unsupported:3,"3":"Unsupported", });
|
|
504
|
-
/**
|
|
505
|
-
*/
|
|
506
506
|
module.exports.RelativeFromHType = Object.freeze({
|
|
507
507
|
/**
|
|
508
508
|
* Specifies that the horizontal positioning shall be
|
|
Binary file
|
|
@@ -197,6 +197,22 @@ export enum VMergeType {
|
|
|
197
197
|
}
|
|
198
198
|
/**
|
|
199
199
|
*/
|
|
200
|
+
export enum BreakType {
|
|
201
|
+
Page,
|
|
202
|
+
Column,
|
|
203
|
+
TextWrapping,
|
|
204
|
+
Unsupported,
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
*/
|
|
208
|
+
export enum FieldCharType {
|
|
209
|
+
Begin,
|
|
210
|
+
Separate,
|
|
211
|
+
End,
|
|
212
|
+
Unsupported,
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
*/
|
|
200
216
|
export enum LineSpacingType {
|
|
201
217
|
Auto,
|
|
202
218
|
AtLeast,
|
|
@@ -260,14 +276,6 @@ export enum TextDirectionType {
|
|
|
260
276
|
}
|
|
261
277
|
/**
|
|
262
278
|
*/
|
|
263
|
-
export enum BreakType {
|
|
264
|
-
Page,
|
|
265
|
-
Column,
|
|
266
|
-
TextWrapping,
|
|
267
|
-
Unsupported,
|
|
268
|
-
}
|
|
269
|
-
/**
|
|
270
|
-
*/
|
|
271
279
|
export enum VertAlignType {
|
|
272
280
|
Baseline,
|
|
273
281
|
SuperScript,
|
|
@@ -408,14 +416,6 @@ export enum DocGridType {
|
|
|
408
416
|
}
|
|
409
417
|
/**
|
|
410
418
|
*/
|
|
411
|
-
export enum FieldCharType {
|
|
412
|
-
Begin,
|
|
413
|
-
Separate,
|
|
414
|
-
End,
|
|
415
|
-
Unsupported,
|
|
416
|
-
}
|
|
417
|
-
/**
|
|
418
|
-
*/
|
|
419
419
|
export enum RelativeFromHType {
|
|
420
420
|
/**
|
|
421
421
|
* Specifies that the horizontal positioning shall be
|
|
@@ -447,6 +447,12 @@ export const HyperlinkType = Object.freeze({ Anchor:0,"0":"Anchor",External:1,"1
|
|
|
447
447
|
export const VMergeType = Object.freeze({ Continue:0,"0":"Continue",Restart:1,"1":"Restart",Unsupported:2,"2":"Unsupported", });
|
|
448
448
|
/**
|
|
449
449
|
*/
|
|
450
|
+
export const BreakType = Object.freeze({ Page:0,"0":"Page",Column:1,"1":"Column",TextWrapping:2,"2":"TextWrapping",Unsupported:3,"3":"Unsupported", });
|
|
451
|
+
/**
|
|
452
|
+
*/
|
|
453
|
+
export const FieldCharType = Object.freeze({ Begin:0,"0":"Begin",Separate:1,"1":"Separate",End:2,"2":"End",Unsupported:3,"3":"Unsupported", });
|
|
454
|
+
/**
|
|
455
|
+
*/
|
|
450
456
|
export const LineSpacingType = Object.freeze({ Auto:0,"0":"Auto",AtLeast:1,"1":"AtLeast",Exact:2,"2":"Exact", });
|
|
451
457
|
/**
|
|
452
458
|
*/
|
|
@@ -456,9 +462,6 @@ export const ShdType = Object.freeze({ Nil:0,"0":"Nil",Clear:1,"1":"Clear",Solid
|
|
|
456
462
|
export const TextDirectionType = Object.freeze({ Lr:0,"0":"Lr",LrV:1,"1":"LrV",Rl:2,"2":"Rl",RlV:3,"3":"RlV",Tb:4,"4":"Tb",TbV:5,"5":"TbV",TbRlV:6,"6":"TbRlV",TbRl:7,"7":"TbRl",BtLr:8,"8":"BtLr",LrTbV:9,"9":"LrTbV", });
|
|
457
463
|
/**
|
|
458
464
|
*/
|
|
459
|
-
export const BreakType = Object.freeze({ Page:0,"0":"Page",Column:1,"1":"Column",TextWrapping:2,"2":"TextWrapping",Unsupported:3,"3":"Unsupported", });
|
|
460
|
-
/**
|
|
461
|
-
*/
|
|
462
465
|
export const VertAlignType = Object.freeze({ Baseline:0,"0":"Baseline",SuperScript:1,"1":"SuperScript",SubScript:2,"2":"SubScript",Unsupported:3,"3":"Unsupported", });
|
|
463
466
|
/**
|
|
464
467
|
*/
|
|
@@ -501,9 +504,6 @@ export const WidthType = Object.freeze({ Dxa:0,"0":"Dxa",Auto:1,"1":"Auto",Pct:2
|
|
|
501
504
|
export const DocGridType = Object.freeze({ Default:0,"0":"Default",Lines:1,"1":"Lines",LinesAndChars:2,"2":"LinesAndChars",SnapToChars:3,"3":"SnapToChars", });
|
|
502
505
|
/**
|
|
503
506
|
*/
|
|
504
|
-
export const FieldCharType = Object.freeze({ Begin:0,"0":"Begin",Separate:1,"1":"Separate",End:2,"2":"End",Unsupported:3,"3":"Unsupported", });
|
|
505
|
-
/**
|
|
506
|
-
*/
|
|
507
507
|
export const RelativeFromHType = Object.freeze({
|
|
508
508
|
/**
|
|
509
509
|
* Specifies that the horizontal positioning shall be
|
|
Binary file
|