docx-wasm 0.4.18-rc25 → 0.4.18-rc26
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/node/pkg/docx_wasm.d.ts +218 -218
- package/dist/node/pkg/docx_wasm.js +41 -41
- package/dist/node/pkg/docx_wasm_bg.wasm +0 -0
- package/dist/web/pkg/docx_wasm.d.ts +218 -218
- package/dist/web/pkg/docx_wasm_bg.js +41 -41
- package/dist/web/pkg/docx_wasm_bg.wasm +0 -0
- package/package.json +1 -1
|
@@ -176,136 +176,62 @@ export function createDocx(): Docx;
|
|
|
176
176
|
export function createFooter(): Footer;
|
|
177
177
|
/**
|
|
178
178
|
*/
|
|
179
|
-
export enum
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
Dotted,
|
|
186
|
-
Dashed,
|
|
187
|
-
DotDash,
|
|
188
|
-
DotDotDash,
|
|
189
|
-
Triple,
|
|
190
|
-
ThinThickSmallGap,
|
|
191
|
-
ThickThinSmallGap,
|
|
192
|
-
ThinThickThinSmallGap,
|
|
193
|
-
ThinThickMediumGap,
|
|
194
|
-
ThickThinMediumGap,
|
|
195
|
-
ThinThickThinMediumGap,
|
|
196
|
-
ThinThickLargeGap,
|
|
197
|
-
ThickThinLargeGap,
|
|
198
|
-
ThinThickThinLargeGap,
|
|
199
|
-
Wave,
|
|
200
|
-
DoubleWave,
|
|
201
|
-
DashSmallGap,
|
|
202
|
-
DashDotStroked,
|
|
203
|
-
ThreeDEmboss,
|
|
204
|
-
ThreeDEngrave,
|
|
205
|
-
Outset,
|
|
206
|
-
Inset,
|
|
207
|
-
Apples,
|
|
208
|
-
ArchedScallops,
|
|
209
|
-
BabyPacifier,
|
|
210
|
-
BabyRattle,
|
|
211
|
-
}
|
|
212
|
-
/**
|
|
213
|
-
*/
|
|
214
|
-
export enum CharacterSpacingValues {
|
|
215
|
-
DoNotCompress,
|
|
216
|
-
CompressPunctuation,
|
|
217
|
-
CompressPunctuationAndJapaneseKana,
|
|
218
|
-
Unsupported,
|
|
219
|
-
}
|
|
220
|
-
/**
|
|
221
|
-
*/
|
|
222
|
-
export enum DocGridType {
|
|
223
|
-
Default,
|
|
224
|
-
Lines,
|
|
225
|
-
LinesAndChars,
|
|
226
|
-
SnapToChars,
|
|
227
|
-
}
|
|
228
|
-
/**
|
|
229
|
-
*/
|
|
230
|
-
export enum DrawingPositionType {
|
|
231
|
-
Anchor,
|
|
232
|
-
Inline,
|
|
233
|
-
}
|
|
234
|
-
/**
|
|
235
|
-
*/
|
|
236
|
-
export enum PicAlign {
|
|
179
|
+
export enum AlignmentType {
|
|
180
|
+
Both,
|
|
181
|
+
Center,
|
|
182
|
+
Distribute,
|
|
183
|
+
Start,
|
|
184
|
+
End,
|
|
237
185
|
Left,
|
|
238
186
|
Right,
|
|
239
|
-
|
|
240
|
-
Bottom,
|
|
241
|
-
Top,
|
|
242
|
-
}
|
|
243
|
-
/**
|
|
244
|
-
*/
|
|
245
|
-
export enum HeightRule {
|
|
246
|
-
Auto,
|
|
247
|
-
AtLeast,
|
|
248
|
-
Exact,
|
|
187
|
+
Justified,
|
|
249
188
|
}
|
|
250
189
|
/**
|
|
251
190
|
*/
|
|
252
|
-
export enum
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
Exact,
|
|
191
|
+
export enum PageOrientationType {
|
|
192
|
+
Landscape,
|
|
193
|
+
Portrait,
|
|
256
194
|
}
|
|
257
195
|
/**
|
|
258
196
|
*/
|
|
259
|
-
export enum
|
|
260
|
-
|
|
261
|
-
|
|
197
|
+
export enum PositionalTabAlignmentType {
|
|
198
|
+
Center,
|
|
199
|
+
Left,
|
|
200
|
+
Right,
|
|
262
201
|
}
|
|
263
202
|
/**
|
|
264
203
|
*/
|
|
265
|
-
export enum
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
204
|
+
export enum TabValueType {
|
|
205
|
+
Bar,
|
|
206
|
+
Center,
|
|
207
|
+
Clear,
|
|
208
|
+
Decimal,
|
|
209
|
+
End,
|
|
210
|
+
Right,
|
|
211
|
+
Num,
|
|
212
|
+
Start,
|
|
213
|
+
Left,
|
|
271
214
|
}
|
|
272
215
|
/**
|
|
273
216
|
*/
|
|
274
|
-
export enum
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
Numbering,
|
|
278
|
-
Table,
|
|
217
|
+
export enum VMergeType {
|
|
218
|
+
Continue,
|
|
219
|
+
Restart,
|
|
279
220
|
Unsupported,
|
|
280
221
|
}
|
|
281
222
|
/**
|
|
282
223
|
*/
|
|
283
|
-
export enum
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
Nil,
|
|
224
|
+
export enum CharacterSpacingValues {
|
|
225
|
+
DoNotCompress,
|
|
226
|
+
CompressPunctuation,
|
|
227
|
+
CompressPunctuationAndJapaneseKana,
|
|
288
228
|
Unsupported,
|
|
289
229
|
}
|
|
290
230
|
/**
|
|
291
231
|
*/
|
|
292
|
-
export enum
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
Distribute,
|
|
296
|
-
Start,
|
|
297
|
-
End,
|
|
298
|
-
Left,
|
|
299
|
-
Right,
|
|
300
|
-
Justified,
|
|
301
|
-
}
|
|
302
|
-
/**
|
|
303
|
-
*/
|
|
304
|
-
export enum FieldCharType {
|
|
305
|
-
Begin,
|
|
306
|
-
Separate,
|
|
307
|
-
End,
|
|
308
|
-
Unsupported,
|
|
232
|
+
export enum PositionalTabRelativeTo {
|
|
233
|
+
Indent,
|
|
234
|
+
Margin,
|
|
309
235
|
}
|
|
310
236
|
/**
|
|
311
237
|
*/
|
|
@@ -369,80 +295,34 @@ export enum RelativeFromVType {
|
|
|
369
295
|
}
|
|
370
296
|
/**
|
|
371
297
|
*/
|
|
372
|
-
export enum
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
Solid,
|
|
376
|
-
HorzStripe,
|
|
377
|
-
VertStripe,
|
|
378
|
-
ReverseDiagStripe,
|
|
379
|
-
DiagStripe,
|
|
380
|
-
HorzCross,
|
|
381
|
-
DiagCross,
|
|
382
|
-
ThinHorzStripe,
|
|
383
|
-
ThinVertStripe,
|
|
384
|
-
ThinReverseDiagStripe,
|
|
385
|
-
ThinDiagStripe,
|
|
386
|
-
ThinHorzCross,
|
|
387
|
-
ThinDiagCross,
|
|
388
|
-
Pct5,
|
|
389
|
-
Pct10,
|
|
390
|
-
Pct12,
|
|
391
|
-
Pct15,
|
|
392
|
-
Pct20,
|
|
393
|
-
Pct25,
|
|
394
|
-
Pct30,
|
|
395
|
-
Pct35,
|
|
396
|
-
Pct37,
|
|
397
|
-
Pct40,
|
|
398
|
-
Pct45,
|
|
399
|
-
Pct50,
|
|
400
|
-
Pct55,
|
|
401
|
-
Pct60,
|
|
402
|
-
Pct62,
|
|
403
|
-
Pct65,
|
|
404
|
-
Pct70,
|
|
405
|
-
Pct75,
|
|
406
|
-
Pct80,
|
|
407
|
-
Pct85,
|
|
408
|
-
Pct87,
|
|
409
|
-
Pct90,
|
|
410
|
-
Pct95,
|
|
411
|
-
}
|
|
412
|
-
/**
|
|
413
|
-
*/
|
|
414
|
-
export enum TextAlignmentType {
|
|
415
|
-
Auto,
|
|
416
|
-
Baseline,
|
|
417
|
-
Bottom,
|
|
418
|
-
Center,
|
|
419
|
-
Top,
|
|
298
|
+
export enum SpecialIndentKind {
|
|
299
|
+
FirstLine,
|
|
300
|
+
Hanging,
|
|
420
301
|
}
|
|
421
302
|
/**
|
|
422
303
|
*/
|
|
423
|
-
export enum
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
304
|
+
export enum StyleType {
|
|
305
|
+
Paragraph,
|
|
306
|
+
Character,
|
|
307
|
+
Numbering,
|
|
308
|
+
Table,
|
|
427
309
|
Unsupported,
|
|
428
310
|
}
|
|
429
311
|
/**
|
|
430
312
|
*/
|
|
431
|
-
export enum
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
export enum PageOrientationType {
|
|
438
|
-
Landscape,
|
|
439
|
-
Portrait,
|
|
313
|
+
export enum WidthType {
|
|
314
|
+
Dxa,
|
|
315
|
+
Auto,
|
|
316
|
+
Pct,
|
|
317
|
+
Nil,
|
|
318
|
+
Unsupported,
|
|
440
319
|
}
|
|
441
320
|
/**
|
|
442
321
|
*/
|
|
443
|
-
export enum
|
|
444
|
-
|
|
445
|
-
|
|
322
|
+
export enum LevelSuffixType {
|
|
323
|
+
Nothing,
|
|
324
|
+
Space,
|
|
325
|
+
Tab,
|
|
446
326
|
}
|
|
447
327
|
/**
|
|
448
328
|
*/
|
|
@@ -453,24 +333,38 @@ export enum TableAlignmentType {
|
|
|
453
333
|
}
|
|
454
334
|
/**
|
|
455
335
|
*/
|
|
456
|
-
export enum
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
336
|
+
export enum HeightRule {
|
|
337
|
+
Auto,
|
|
338
|
+
AtLeast,
|
|
339
|
+
Exact,
|
|
460
340
|
}
|
|
461
341
|
/**
|
|
462
342
|
*/
|
|
463
|
-
export enum
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
Unsupported,
|
|
343
|
+
export enum LineSpacingType {
|
|
344
|
+
Auto,
|
|
345
|
+
AtLeast,
|
|
346
|
+
Exact,
|
|
468
347
|
}
|
|
469
348
|
/**
|
|
470
349
|
*/
|
|
471
|
-
export enum
|
|
472
|
-
|
|
473
|
-
|
|
350
|
+
export enum TextDirectionType {
|
|
351
|
+
Lr,
|
|
352
|
+
LrV,
|
|
353
|
+
Rl,
|
|
354
|
+
RlV,
|
|
355
|
+
Tb,
|
|
356
|
+
TbV,
|
|
357
|
+
TbRlV,
|
|
358
|
+
TbRl,
|
|
359
|
+
BtLr,
|
|
360
|
+
LrTbV,
|
|
361
|
+
}
|
|
362
|
+
/**
|
|
363
|
+
*/
|
|
364
|
+
export enum VertAlignType {
|
|
365
|
+
Baseline,
|
|
366
|
+
SuperScript,
|
|
367
|
+
SubScript,
|
|
474
368
|
Unsupported,
|
|
475
369
|
}
|
|
476
370
|
/**
|
|
@@ -507,6 +401,41 @@ export enum ParagraphBorderPosition {
|
|
|
507
401
|
}
|
|
508
402
|
/**
|
|
509
403
|
*/
|
|
404
|
+
export enum FontPitchType {
|
|
405
|
+
Default,
|
|
406
|
+
Fixed,
|
|
407
|
+
Variable,
|
|
408
|
+
}
|
|
409
|
+
/**
|
|
410
|
+
*/
|
|
411
|
+
export enum SectionType {
|
|
412
|
+
NextPage,
|
|
413
|
+
NextColumn,
|
|
414
|
+
Continuous,
|
|
415
|
+
EvenPage,
|
|
416
|
+
OddPage,
|
|
417
|
+
}
|
|
418
|
+
/**
|
|
419
|
+
*/
|
|
420
|
+
export enum TabLeaderType {
|
|
421
|
+
Dot,
|
|
422
|
+
Heavy,
|
|
423
|
+
Hyphen,
|
|
424
|
+
MiddleDot,
|
|
425
|
+
None,
|
|
426
|
+
Underscore,
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
*/
|
|
430
|
+
export enum TextAlignmentType {
|
|
431
|
+
Auto,
|
|
432
|
+
Baseline,
|
|
433
|
+
Bottom,
|
|
434
|
+
Center,
|
|
435
|
+
Top,
|
|
436
|
+
}
|
|
437
|
+
/**
|
|
438
|
+
*/
|
|
510
439
|
export enum BreakType {
|
|
511
440
|
Page,
|
|
512
441
|
Column,
|
|
@@ -515,23 +444,33 @@ export enum BreakType {
|
|
|
515
444
|
}
|
|
516
445
|
/**
|
|
517
446
|
*/
|
|
518
|
-
export enum
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
447
|
+
export enum DocGridType {
|
|
448
|
+
Default,
|
|
449
|
+
Lines,
|
|
450
|
+
LinesAndChars,
|
|
451
|
+
SnapToChars,
|
|
522
452
|
}
|
|
523
453
|
/**
|
|
524
454
|
*/
|
|
525
|
-
export enum
|
|
526
|
-
|
|
455
|
+
export enum TableLayoutType {
|
|
456
|
+
Fixed,
|
|
457
|
+
Autofit,
|
|
458
|
+
}
|
|
459
|
+
/**
|
|
460
|
+
*/
|
|
461
|
+
export enum VAlignType {
|
|
462
|
+
Top,
|
|
527
463
|
Center,
|
|
528
|
-
|
|
529
|
-
|
|
464
|
+
Bottom,
|
|
465
|
+
Unsupported,
|
|
466
|
+
}
|
|
467
|
+
/**
|
|
468
|
+
*/
|
|
469
|
+
export enum FieldCharType {
|
|
470
|
+
Begin,
|
|
471
|
+
Separate,
|
|
530
472
|
End,
|
|
531
|
-
|
|
532
|
-
Num,
|
|
533
|
-
Start,
|
|
534
|
-
Left,
|
|
473
|
+
Unsupported,
|
|
535
474
|
}
|
|
536
475
|
/**
|
|
537
476
|
*/
|
|
@@ -541,34 +480,95 @@ export enum HyperlinkType {
|
|
|
541
480
|
}
|
|
542
481
|
/**
|
|
543
482
|
*/
|
|
544
|
-
export enum
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
483
|
+
export enum BorderType {
|
|
484
|
+
Nil,
|
|
485
|
+
None,
|
|
486
|
+
Single,
|
|
487
|
+
Thick,
|
|
488
|
+
Double,
|
|
489
|
+
Dotted,
|
|
490
|
+
Dashed,
|
|
491
|
+
DotDash,
|
|
492
|
+
DotDotDash,
|
|
493
|
+
Triple,
|
|
494
|
+
ThinThickSmallGap,
|
|
495
|
+
ThickThinSmallGap,
|
|
496
|
+
ThinThickThinSmallGap,
|
|
497
|
+
ThinThickMediumGap,
|
|
498
|
+
ThickThinMediumGap,
|
|
499
|
+
ThinThickThinMediumGap,
|
|
500
|
+
ThinThickLargeGap,
|
|
501
|
+
ThickThinLargeGap,
|
|
502
|
+
ThinThickThinLargeGap,
|
|
503
|
+
Wave,
|
|
504
|
+
DoubleWave,
|
|
505
|
+
DashSmallGap,
|
|
506
|
+
DashDotStroked,
|
|
507
|
+
ThreeDEmboss,
|
|
508
|
+
ThreeDEngrave,
|
|
509
|
+
Outset,
|
|
510
|
+
Inset,
|
|
511
|
+
Apples,
|
|
512
|
+
ArchedScallops,
|
|
513
|
+
BabyPacifier,
|
|
514
|
+
BabyRattle,
|
|
548
515
|
}
|
|
549
516
|
/**
|
|
550
517
|
*/
|
|
551
|
-
export enum
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
Hyphen,
|
|
555
|
-
MiddleDot,
|
|
556
|
-
None,
|
|
557
|
-
Underscore,
|
|
518
|
+
export enum DrawingPositionType {
|
|
519
|
+
Anchor,
|
|
520
|
+
Inline,
|
|
558
521
|
}
|
|
559
522
|
/**
|
|
560
523
|
*/
|
|
561
|
-
export enum
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
524
|
+
export enum PicAlign {
|
|
525
|
+
Left,
|
|
526
|
+
Right,
|
|
527
|
+
Center,
|
|
528
|
+
Bottom,
|
|
529
|
+
Top,
|
|
530
|
+
}
|
|
531
|
+
/**
|
|
532
|
+
*/
|
|
533
|
+
export enum ShdType {
|
|
534
|
+
Nil,
|
|
535
|
+
Clear,
|
|
536
|
+
Solid,
|
|
537
|
+
HorzStripe,
|
|
538
|
+
VertStripe,
|
|
539
|
+
ReverseDiagStripe,
|
|
540
|
+
DiagStripe,
|
|
541
|
+
HorzCross,
|
|
542
|
+
DiagCross,
|
|
543
|
+
ThinHorzStripe,
|
|
544
|
+
ThinVertStripe,
|
|
545
|
+
ThinReverseDiagStripe,
|
|
546
|
+
ThinDiagStripe,
|
|
547
|
+
ThinHorzCross,
|
|
548
|
+
ThinDiagCross,
|
|
549
|
+
Pct5,
|
|
550
|
+
Pct10,
|
|
551
|
+
Pct12,
|
|
552
|
+
Pct15,
|
|
553
|
+
Pct20,
|
|
554
|
+
Pct25,
|
|
555
|
+
Pct30,
|
|
556
|
+
Pct35,
|
|
557
|
+
Pct37,
|
|
558
|
+
Pct40,
|
|
559
|
+
Pct45,
|
|
560
|
+
Pct50,
|
|
561
|
+
Pct55,
|
|
562
|
+
Pct60,
|
|
563
|
+
Pct62,
|
|
564
|
+
Pct65,
|
|
565
|
+
Pct70,
|
|
566
|
+
Pct75,
|
|
567
|
+
Pct80,
|
|
568
|
+
Pct85,
|
|
569
|
+
Pct87,
|
|
570
|
+
Pct90,
|
|
571
|
+
Pct95,
|
|
572
572
|
}
|
|
573
573
|
/**
|
|
574
574
|
*/
|
|
@@ -504,45 +504,27 @@ module.exports.createFooter = function() {
|
|
|
504
504
|
|
|
505
505
|
/**
|
|
506
506
|
*/
|
|
507
|
-
module.exports.
|
|
508
|
-
/**
|
|
509
|
-
*/
|
|
510
|
-
module.exports.CharacterSpacingValues = Object.freeze({ DoNotCompress:0,"0":"DoNotCompress",CompressPunctuation:1,"1":"CompressPunctuation",CompressPunctuationAndJapaneseKana:2,"2":"CompressPunctuationAndJapaneseKana",Unsupported:3,"3":"Unsupported", });
|
|
507
|
+
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", });
|
|
511
508
|
/**
|
|
512
509
|
*/
|
|
513
|
-
module.exports.
|
|
510
|
+
module.exports.PageOrientationType = Object.freeze({ Landscape:0,"0":"Landscape",Portrait:1,"1":"Portrait", });
|
|
514
511
|
/**
|
|
515
512
|
*/
|
|
516
|
-
module.exports.
|
|
513
|
+
module.exports.PositionalTabAlignmentType = Object.freeze({ Center:0,"0":"Center",Left:1,"1":"Left",Right:2,"2":"Right", });
|
|
517
514
|
/**
|
|
518
515
|
*/
|
|
519
|
-
module.exports.
|
|
516
|
+
module.exports.TabValueType = Object.freeze({ Bar:0,"0":"Bar",Center:1,"1":"Center",Clear:2,"2":"Clear",Decimal:3,"3":"Decimal",End:4,"4":"End",Right:5,"5":"Right",Num:6,"6":"Num",Start:7,"7":"Start",Left:8,"8":"Left", });
|
|
520
517
|
/**
|
|
521
518
|
*/
|
|
522
|
-
module.exports.
|
|
519
|
+
module.exports.VMergeType = Object.freeze({ Continue:0,"0":"Continue",Restart:1,"1":"Restart",Unsupported:2,"2":"Unsupported", });
|
|
523
520
|
/**
|
|
524
521
|
*/
|
|
525
|
-
module.exports.
|
|
522
|
+
module.exports.CharacterSpacingValues = Object.freeze({ DoNotCompress:0,"0":"DoNotCompress",CompressPunctuation:1,"1":"CompressPunctuation",CompressPunctuationAndJapaneseKana:2,"2":"CompressPunctuationAndJapaneseKana",Unsupported:3,"3":"Unsupported", });
|
|
526
523
|
/**
|
|
527
524
|
*/
|
|
528
525
|
module.exports.PositionalTabRelativeTo = Object.freeze({ Indent:0,"0":"Indent",Margin:1,"1":"Margin", });
|
|
529
526
|
/**
|
|
530
527
|
*/
|
|
531
|
-
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", });
|
|
532
|
-
/**
|
|
533
|
-
*/
|
|
534
|
-
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", });
|
|
535
|
-
/**
|
|
536
|
-
*/
|
|
537
|
-
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", });
|
|
538
|
-
/**
|
|
539
|
-
*/
|
|
540
|
-
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", });
|
|
541
|
-
/**
|
|
542
|
-
*/
|
|
543
|
-
module.exports.FieldCharType = Object.freeze({ Begin:0,"0":"Begin",Separate:1,"1":"Separate",End:2,"2":"End",Unsupported:3,"3":"Unsupported", });
|
|
544
|
-
/**
|
|
545
|
-
*/
|
|
546
528
|
module.exports.RelativeFromHType = Object.freeze({
|
|
547
529
|
/**
|
|
548
530
|
* Specifies that the horizontal positioning shall be
|
|
@@ -593,34 +575,31 @@ RightMargin:7,"7":"RightMargin", });
|
|
|
593
575
|
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", });
|
|
594
576
|
/**
|
|
595
577
|
*/
|
|
596
|
-
module.exports.
|
|
597
|
-
/**
|
|
598
|
-
*/
|
|
599
|
-
module.exports.TextAlignmentType = Object.freeze({ Auto:0,"0":"Auto",Baseline:1,"1":"Baseline",Bottom:2,"2":"Bottom",Center:3,"3":"Center",Top:4,"4":"Top", });
|
|
578
|
+
module.exports.SpecialIndentKind = Object.freeze({ FirstLine:0,"0":"FirstLine",Hanging:1,"1":"Hanging", });
|
|
600
579
|
/**
|
|
601
580
|
*/
|
|
602
|
-
module.exports.
|
|
581
|
+
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", });
|
|
603
582
|
/**
|
|
604
583
|
*/
|
|
605
|
-
module.exports.
|
|
584
|
+
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", });
|
|
606
585
|
/**
|
|
607
586
|
*/
|
|
608
|
-
module.exports.
|
|
587
|
+
module.exports.LevelSuffixType = Object.freeze({ Nothing:0,"0":"Nothing",Space:1,"1":"Space",Tab:2,"2":"Tab", });
|
|
609
588
|
/**
|
|
610
589
|
*/
|
|
611
|
-
module.exports.
|
|
590
|
+
module.exports.TableAlignmentType = Object.freeze({ Center:0,"0":"Center",Left:1,"1":"Left",Right:2,"2":"Right", });
|
|
612
591
|
/**
|
|
613
592
|
*/
|
|
614
|
-
module.exports.
|
|
593
|
+
module.exports.HeightRule = Object.freeze({ Auto:0,"0":"Auto",AtLeast:1,"1":"AtLeast",Exact:2,"2":"Exact", });
|
|
615
594
|
/**
|
|
616
595
|
*/
|
|
617
|
-
module.exports.
|
|
596
|
+
module.exports.LineSpacingType = Object.freeze({ Auto:0,"0":"Auto",AtLeast:1,"1":"AtLeast",Exact:2,"2":"Exact", });
|
|
618
597
|
/**
|
|
619
598
|
*/
|
|
620
|
-
module.exports.
|
|
599
|
+
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", });
|
|
621
600
|
/**
|
|
622
601
|
*/
|
|
623
|
-
module.exports.
|
|
602
|
+
module.exports.VertAlignType = Object.freeze({ Baseline:0,"0":"Baseline",SuperScript:1,"1":"SuperScript",SubScript:2,"2":"SubScript",Unsupported:3,"3":"Unsupported", });
|
|
624
603
|
/**
|
|
625
604
|
*/
|
|
626
605
|
module.exports.TableBorderPosition = Object.freeze({ Left:0,"0":"Left",Right:1,"1":"Right",Top:2,"2":"Top",Bottom:3,"3":"Bottom",InsideH:4,"4":"InsideH",InsideV:5,"5":"InsideV", });
|
|
@@ -632,25 +611,46 @@ module.exports.TableCellBorderPosition = Object.freeze({ Left:0,"0":"Left",Right
|
|
|
632
611
|
module.exports.ParagraphBorderPosition = Object.freeze({ Left:0,"0":"Left",Right:1,"1":"Right",Top:2,"2":"Top",Bottom:3,"3":"Bottom",Between:4,"4":"Between",Bar:5,"5":"Bar", });
|
|
633
612
|
/**
|
|
634
613
|
*/
|
|
614
|
+
module.exports.FontPitchType = Object.freeze({ Default:0,"0":"Default",Fixed:1,"1":"Fixed",Variable:2,"2":"Variable", });
|
|
615
|
+
/**
|
|
616
|
+
*/
|
|
617
|
+
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", });
|
|
618
|
+
/**
|
|
619
|
+
*/
|
|
620
|
+
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", });
|
|
621
|
+
/**
|
|
622
|
+
*/
|
|
623
|
+
module.exports.TextAlignmentType = Object.freeze({ Auto:0,"0":"Auto",Baseline:1,"1":"Baseline",Bottom:2,"2":"Bottom",Center:3,"3":"Center",Top:4,"4":"Top", });
|
|
624
|
+
/**
|
|
625
|
+
*/
|
|
635
626
|
module.exports.BreakType = Object.freeze({ Page:0,"0":"Page",Column:1,"1":"Column",TextWrapping:2,"2":"TextWrapping",Unsupported:3,"3":"Unsupported", });
|
|
636
627
|
/**
|
|
637
628
|
*/
|
|
638
|
-
module.exports.
|
|
629
|
+
module.exports.DocGridType = Object.freeze({ Default:0,"0":"Default",Lines:1,"1":"Lines",LinesAndChars:2,"2":"LinesAndChars",SnapToChars:3,"3":"SnapToChars", });
|
|
639
630
|
/**
|
|
640
631
|
*/
|
|
641
|
-
module.exports.
|
|
632
|
+
module.exports.TableLayoutType = Object.freeze({ Fixed:0,"0":"Fixed",Autofit:1,"1":"Autofit", });
|
|
633
|
+
/**
|
|
634
|
+
*/
|
|
635
|
+
module.exports.VAlignType = Object.freeze({ Top:0,"0":"Top",Center:1,"1":"Center",Bottom:2,"2":"Bottom",Unsupported:3,"3":"Unsupported", });
|
|
636
|
+
/**
|
|
637
|
+
*/
|
|
638
|
+
module.exports.FieldCharType = Object.freeze({ Begin:0,"0":"Begin",Separate:1,"1":"Separate",End:2,"2":"End",Unsupported:3,"3":"Unsupported", });
|
|
642
639
|
/**
|
|
643
640
|
*/
|
|
644
641
|
module.exports.HyperlinkType = Object.freeze({ Anchor:0,"0":"Anchor",External:1,"1":"External", });
|
|
645
642
|
/**
|
|
646
643
|
*/
|
|
647
|
-
module.exports.
|
|
644
|
+
module.exports.BorderType = Object.freeze({ Nil:0,"0":"Nil",None:1,"1":"None",Single:2,"2":"Single",Thick:3,"3":"Thick",Double:4,"4":"Double",Dotted:5,"5":"Dotted",Dashed:6,"6":"Dashed",DotDash:7,"7":"DotDash",DotDotDash:8,"8":"DotDotDash",Triple:9,"9":"Triple",ThinThickSmallGap:10,"10":"ThinThickSmallGap",ThickThinSmallGap:11,"11":"ThickThinSmallGap",ThinThickThinSmallGap:12,"12":"ThinThickThinSmallGap",ThinThickMediumGap:13,"13":"ThinThickMediumGap",ThickThinMediumGap:14,"14":"ThickThinMediumGap",ThinThickThinMediumGap:15,"15":"ThinThickThinMediumGap",ThinThickLargeGap:16,"16":"ThinThickLargeGap",ThickThinLargeGap:17,"17":"ThickThinLargeGap",ThinThickThinLargeGap:18,"18":"ThinThickThinLargeGap",Wave:19,"19":"Wave",DoubleWave:20,"20":"DoubleWave",DashSmallGap:21,"21":"DashSmallGap",DashDotStroked:22,"22":"DashDotStroked",ThreeDEmboss:23,"23":"ThreeDEmboss",ThreeDEngrave:24,"24":"ThreeDEngrave",Outset:25,"25":"Outset",Inset:26,"26":"Inset",Apples:27,"27":"Apples",ArchedScallops:28,"28":"ArchedScallops",BabyPacifier:29,"29":"BabyPacifier",BabyRattle:30,"30":"BabyRattle", });
|
|
648
645
|
/**
|
|
649
646
|
*/
|
|
650
|
-
module.exports.
|
|
647
|
+
module.exports.DrawingPositionType = Object.freeze({ Anchor:0,"0":"Anchor",Inline:1,"1":"Inline", });
|
|
651
648
|
/**
|
|
652
649
|
*/
|
|
653
|
-
module.exports.
|
|
650
|
+
module.exports.PicAlign = Object.freeze({ Left:0,"0":"Left",Right:1,"1":"Right",Center:2,"2":"Center",Bottom:3,"3":"Bottom",Top:4,"4":"Top", });
|
|
651
|
+
/**
|
|
652
|
+
*/
|
|
653
|
+
module.exports.ShdType = Object.freeze({ Nil:0,"0":"Nil",Clear:1,"1":"Clear",Solid:2,"2":"Solid",HorzStripe:3,"3":"HorzStripe",VertStripe:4,"4":"VertStripe",ReverseDiagStripe:5,"5":"ReverseDiagStripe",DiagStripe:6,"6":"DiagStripe",HorzCross:7,"7":"HorzCross",DiagCross:8,"8":"DiagCross",ThinHorzStripe:9,"9":"ThinHorzStripe",ThinVertStripe:10,"10":"ThinVertStripe",ThinReverseDiagStripe:11,"11":"ThinReverseDiagStripe",ThinDiagStripe:12,"12":"ThinDiagStripe",ThinHorzCross:13,"13":"ThinHorzCross",ThinDiagCross:14,"14":"ThinDiagCross",Pct5:15,"15":"Pct5",Pct10:16,"16":"Pct10",Pct12:17,"17":"Pct12",Pct15:18,"18":"Pct15",Pct20:19,"19":"Pct20",Pct25:20,"20":"Pct25",Pct30:21,"21":"Pct30",Pct35:22,"22":"Pct35",Pct37:23,"23":"Pct37",Pct40:24,"24":"Pct40",Pct45:25,"25":"Pct45",Pct50:26,"26":"Pct50",Pct55:27,"27":"Pct55",Pct60:28,"28":"Pct60",Pct62:29,"29":"Pct62",Pct65:30,"30":"Pct65",Pct70:31,"31":"Pct70",Pct75:32,"32":"Pct75",Pct80:33,"33":"Pct80",Pct85:34,"34":"Pct85",Pct87:35,"35":"Pct87",Pct90:36,"36":"Pct90",Pct95:37,"37":"Pct95", });
|
|
654
654
|
/**
|
|
655
655
|
*/
|
|
656
656
|
class AbstractNumbering {
|
|
Binary file
|