docx-wasm 0.0.259 → 0.0.260
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.
|
@@ -160,15 +160,6 @@ export enum PageOrientationType {
|
|
|
160
160
|
}
|
|
161
161
|
/**
|
|
162
162
|
*/
|
|
163
|
-
export enum SectionType {
|
|
164
|
-
NextPage,
|
|
165
|
-
NextColumn,
|
|
166
|
-
Continuous,
|
|
167
|
-
EvenPage,
|
|
168
|
-
OddPage,
|
|
169
|
-
}
|
|
170
|
-
/**
|
|
171
|
-
*/
|
|
172
163
|
export enum TableAlignmentType {
|
|
173
164
|
Center,
|
|
174
165
|
Left,
|
|
@@ -254,6 +245,30 @@ export enum FontPitchType {
|
|
|
254
245
|
}
|
|
255
246
|
/**
|
|
256
247
|
*/
|
|
248
|
+
export enum SectionType {
|
|
249
|
+
NextPage,
|
|
250
|
+
NextColumn,
|
|
251
|
+
Continuous,
|
|
252
|
+
EvenPage,
|
|
253
|
+
OddPage,
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
*/
|
|
257
|
+
export enum StyleType {
|
|
258
|
+
Paragraph,
|
|
259
|
+
Character,
|
|
260
|
+
Numbering,
|
|
261
|
+
Table,
|
|
262
|
+
Unsupported,
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
*/
|
|
266
|
+
export enum TableLayoutType {
|
|
267
|
+
Fixed,
|
|
268
|
+
Autofit,
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
*/
|
|
257
272
|
export enum WidthType {
|
|
258
273
|
Dxa,
|
|
259
274
|
Auto,
|
|
@@ -345,21 +360,6 @@ export enum RelativeFromVType {
|
|
|
345
360
|
}
|
|
346
361
|
/**
|
|
347
362
|
*/
|
|
348
|
-
export enum StyleType {
|
|
349
|
-
Paragraph,
|
|
350
|
-
Character,
|
|
351
|
-
Numbering,
|
|
352
|
-
Table,
|
|
353
|
-
Unsupported,
|
|
354
|
-
}
|
|
355
|
-
/**
|
|
356
|
-
*/
|
|
357
|
-
export enum TableLayoutType {
|
|
358
|
-
Fixed,
|
|
359
|
-
Autofit,
|
|
360
|
-
}
|
|
361
|
-
/**
|
|
362
|
-
*/
|
|
363
363
|
export enum DocGridType {
|
|
364
364
|
Default,
|
|
365
365
|
Lines,
|
|
@@ -423,9 +423,6 @@ module.exports.VMergeType = Object.freeze({ Continue:0,"0":"Continue",Restart:1,
|
|
|
423
423
|
module.exports.PageOrientationType = Object.freeze({ Landscape:0,"0":"Landscape",Portrait:1,"1":"Portrait", });
|
|
424
424
|
/**
|
|
425
425
|
*/
|
|
426
|
-
module.exports.SectionType = Object.freeze({ NextPage:0,"0":"NextPage",NextColumn:1,"1":"NextColumn",Continuous:2,"2":"Continuous",EvenPage:3,"3":"EvenPage",OddPage:4,"4":"OddPage", });
|
|
427
|
-
/**
|
|
428
|
-
*/
|
|
429
426
|
module.exports.TableAlignmentType = Object.freeze({ Center:0,"0":"Center",Left:1,"1":"Left",Right:2,"2":"Right", });
|
|
430
427
|
/**
|
|
431
428
|
*/
|
|
@@ -447,6 +444,15 @@ module.exports.TabLeaderType = Object.freeze({ Dot:0,"0":"Dot",Heavy:1,"1":"Heav
|
|
|
447
444
|
module.exports.FontPitchType = Object.freeze({ Default:0,"0":"Default",Fixed:1,"1":"Fixed",Variable:2,"2":"Variable", });
|
|
448
445
|
/**
|
|
449
446
|
*/
|
|
447
|
+
module.exports.SectionType = Object.freeze({ NextPage:0,"0":"NextPage",NextColumn:1,"1":"NextColumn",Continuous:2,"2":"Continuous",EvenPage:3,"3":"EvenPage",OddPage:4,"4":"OddPage", });
|
|
448
|
+
/**
|
|
449
|
+
*/
|
|
450
|
+
module.exports.StyleType = Object.freeze({ Paragraph:0,"0":"Paragraph",Character:1,"1":"Character",Numbering:2,"2":"Numbering",Table:3,"3":"Table",Unsupported:4,"4":"Unsupported", });
|
|
451
|
+
/**
|
|
452
|
+
*/
|
|
453
|
+
module.exports.TableLayoutType = Object.freeze({ Fixed:0,"0":"Fixed",Autofit:1,"1":"Autofit", });
|
|
454
|
+
/**
|
|
455
|
+
*/
|
|
450
456
|
module.exports.WidthType = Object.freeze({ Dxa:0,"0":"Dxa",Auto:1,"1":"Auto",Pct:2,"2":"Pct",Nil:3,"3":"Nil",Unsupported:4,"4":"Unsupported", });
|
|
451
457
|
/**
|
|
452
458
|
*/
|
|
@@ -506,12 +512,6 @@ RightMargin:7,"7":"RightMargin", });
|
|
|
506
512
|
module.exports.RelativeFromVType = Object.freeze({ BottomMargin:0,"0":"BottomMargin",InsideMargin:1,"1":"InsideMargin",Line:2,"2":"Line",Margin:3,"3":"Margin",OutsizeMargin:4,"4":"OutsizeMargin",Page:5,"5":"Page",Paragraph:6,"6":"Paragraph",TopMargin:7,"7":"TopMargin", });
|
|
507
513
|
/**
|
|
508
514
|
*/
|
|
509
|
-
module.exports.StyleType = Object.freeze({ Paragraph:0,"0":"Paragraph",Character:1,"1":"Character",Numbering:2,"2":"Numbering",Table:3,"3":"Table",Unsupported:4,"4":"Unsupported", });
|
|
510
|
-
/**
|
|
511
|
-
*/
|
|
512
|
-
module.exports.TableLayoutType = Object.freeze({ Fixed:0,"0":"Fixed",Autofit:1,"1":"Autofit", });
|
|
513
|
-
/**
|
|
514
|
-
*/
|
|
515
515
|
module.exports.DocGridType = Object.freeze({ Default:0,"0":"Default",Lines:1,"1":"Lines",LinesAndChars:2,"2":"LinesAndChars",SnapToChars:3,"3":"SnapToChars", });
|
|
516
516
|
/**
|
|
517
517
|
*/
|
|
Binary file
|
|
@@ -160,15 +160,6 @@ export enum PageOrientationType {
|
|
|
160
160
|
}
|
|
161
161
|
/**
|
|
162
162
|
*/
|
|
163
|
-
export enum SectionType {
|
|
164
|
-
NextPage,
|
|
165
|
-
NextColumn,
|
|
166
|
-
Continuous,
|
|
167
|
-
EvenPage,
|
|
168
|
-
OddPage,
|
|
169
|
-
}
|
|
170
|
-
/**
|
|
171
|
-
*/
|
|
172
163
|
export enum TableAlignmentType {
|
|
173
164
|
Center,
|
|
174
165
|
Left,
|
|
@@ -254,6 +245,30 @@ export enum FontPitchType {
|
|
|
254
245
|
}
|
|
255
246
|
/**
|
|
256
247
|
*/
|
|
248
|
+
export enum SectionType {
|
|
249
|
+
NextPage,
|
|
250
|
+
NextColumn,
|
|
251
|
+
Continuous,
|
|
252
|
+
EvenPage,
|
|
253
|
+
OddPage,
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
*/
|
|
257
|
+
export enum StyleType {
|
|
258
|
+
Paragraph,
|
|
259
|
+
Character,
|
|
260
|
+
Numbering,
|
|
261
|
+
Table,
|
|
262
|
+
Unsupported,
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
*/
|
|
266
|
+
export enum TableLayoutType {
|
|
267
|
+
Fixed,
|
|
268
|
+
Autofit,
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
*/
|
|
257
272
|
export enum WidthType {
|
|
258
273
|
Dxa,
|
|
259
274
|
Auto,
|
|
@@ -345,21 +360,6 @@ export enum RelativeFromVType {
|
|
|
345
360
|
}
|
|
346
361
|
/**
|
|
347
362
|
*/
|
|
348
|
-
export enum StyleType {
|
|
349
|
-
Paragraph,
|
|
350
|
-
Character,
|
|
351
|
-
Numbering,
|
|
352
|
-
Table,
|
|
353
|
-
Unsupported,
|
|
354
|
-
}
|
|
355
|
-
/**
|
|
356
|
-
*/
|
|
357
|
-
export enum TableLayoutType {
|
|
358
|
-
Fixed,
|
|
359
|
-
Autofit,
|
|
360
|
-
}
|
|
361
|
-
/**
|
|
362
|
-
*/
|
|
363
363
|
export enum DocGridType {
|
|
364
364
|
Default,
|
|
365
365
|
Lines,
|
|
@@ -424,9 +424,6 @@ export const VMergeType = Object.freeze({ Continue:0,"0":"Continue",Restart:1,"1
|
|
|
424
424
|
export const PageOrientationType = Object.freeze({ Landscape:0,"0":"Landscape",Portrait:1,"1":"Portrait", });
|
|
425
425
|
/**
|
|
426
426
|
*/
|
|
427
|
-
export const SectionType = Object.freeze({ NextPage:0,"0":"NextPage",NextColumn:1,"1":"NextColumn",Continuous:2,"2":"Continuous",EvenPage:3,"3":"EvenPage",OddPage:4,"4":"OddPage", });
|
|
428
|
-
/**
|
|
429
|
-
*/
|
|
430
427
|
export const TableAlignmentType = Object.freeze({ Center:0,"0":"Center",Left:1,"1":"Left",Right:2,"2":"Right", });
|
|
431
428
|
/**
|
|
432
429
|
*/
|
|
@@ -448,6 +445,15 @@ export const TabLeaderType = Object.freeze({ Dot:0,"0":"Dot",Heavy:1,"1":"Heavy"
|
|
|
448
445
|
export const FontPitchType = Object.freeze({ Default:0,"0":"Default",Fixed:1,"1":"Fixed",Variable:2,"2":"Variable", });
|
|
449
446
|
/**
|
|
450
447
|
*/
|
|
448
|
+
export const SectionType = Object.freeze({ NextPage:0,"0":"NextPage",NextColumn:1,"1":"NextColumn",Continuous:2,"2":"Continuous",EvenPage:3,"3":"EvenPage",OddPage:4,"4":"OddPage", });
|
|
449
|
+
/**
|
|
450
|
+
*/
|
|
451
|
+
export const StyleType = Object.freeze({ Paragraph:0,"0":"Paragraph",Character:1,"1":"Character",Numbering:2,"2":"Numbering",Table:3,"3":"Table",Unsupported:4,"4":"Unsupported", });
|
|
452
|
+
/**
|
|
453
|
+
*/
|
|
454
|
+
export const TableLayoutType = Object.freeze({ Fixed:0,"0":"Fixed",Autofit:1,"1":"Autofit", });
|
|
455
|
+
/**
|
|
456
|
+
*/
|
|
451
457
|
export const WidthType = Object.freeze({ Dxa:0,"0":"Dxa",Auto:1,"1":"Auto",Pct:2,"2":"Pct",Nil:3,"3":"Nil",Unsupported:4,"4":"Unsupported", });
|
|
452
458
|
/**
|
|
453
459
|
*/
|
|
@@ -507,12 +513,6 @@ RightMargin:7,"7":"RightMargin", });
|
|
|
507
513
|
export const RelativeFromVType = Object.freeze({ BottomMargin:0,"0":"BottomMargin",InsideMargin:1,"1":"InsideMargin",Line:2,"2":"Line",Margin:3,"3":"Margin",OutsizeMargin:4,"4":"OutsizeMargin",Page:5,"5":"Page",Paragraph:6,"6":"Paragraph",TopMargin:7,"7":"TopMargin", });
|
|
508
514
|
/**
|
|
509
515
|
*/
|
|
510
|
-
export const StyleType = Object.freeze({ Paragraph:0,"0":"Paragraph",Character:1,"1":"Character",Numbering:2,"2":"Numbering",Table:3,"3":"Table",Unsupported:4,"4":"Unsupported", });
|
|
511
|
-
/**
|
|
512
|
-
*/
|
|
513
|
-
export const TableLayoutType = Object.freeze({ Fixed:0,"0":"Fixed",Autofit:1,"1":"Autofit", });
|
|
514
|
-
/**
|
|
515
|
-
*/
|
|
516
516
|
export const DocGridType = Object.freeze({ Default:0,"0":"Default",Lines:1,"1":"Lines",LinesAndChars:2,"2":"LinesAndChars",SnapToChars:3,"3":"SnapToChars", });
|
|
517
517
|
/**
|
|
518
518
|
*/
|
|
Binary file
|