docx-wasm 0.0.276-rc0 → 0.0.276-rc1

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.
@@ -338,13 +338,6 @@ export enum TableAlignmentType {
338
338
  }
339
339
  /**
340
340
  */
341
- export enum FontPitchType {
342
- Default,
343
- Fixed,
344
- Variable,
345
- }
346
- /**
347
- */
348
341
  export enum SectionType {
349
342
  NextPage,
350
343
  NextColumn,
@@ -376,6 +369,13 @@ export enum TableCellBorderPosition {
376
369
  }
377
370
  /**
378
371
  */
372
+ export enum FontPitchType {
373
+ Default,
374
+ Fixed,
375
+ Variable,
376
+ }
377
+ /**
378
+ */
379
379
  export enum WidthType {
380
380
  Dxa,
381
381
  Auto,
@@ -476,9 +476,6 @@ module.exports.SpecialIndentKind = Object.freeze({ FirstLine:0,"0":"FirstLine",H
476
476
  module.exports.TableAlignmentType = Object.freeze({ Center:0,"0":"Center",Left:1,"1":"Left",Right:2,"2":"Right", });
477
477
  /**
478
478
  */
479
- module.exports.FontPitchType = Object.freeze({ Default:0,"0":"Default",Fixed:1,"1":"Fixed",Variable:2,"2":"Variable", });
480
- /**
481
- */
482
479
  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", });
483
480
  /**
484
481
  */
@@ -488,6 +485,9 @@ module.exports.TableBorderPosition = Object.freeze({ Left:0,"0":"Left",Right:1,"
488
485
  module.exports.TableCellBorderPosition = 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",Tl2br:6,"6":"Tl2br",Tr2bl:7,"7":"Tr2bl", });
489
486
  /**
490
487
  */
488
+ module.exports.FontPitchType = Object.freeze({ Default:0,"0":"Default",Fixed:1,"1":"Fixed",Variable:2,"2":"Variable", });
489
+ /**
490
+ */
491
491
  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", });
492
492
  /**
493
493
  */
Binary file
@@ -338,13 +338,6 @@ export enum TableAlignmentType {
338
338
  }
339
339
  /**
340
340
  */
341
- export enum FontPitchType {
342
- Default,
343
- Fixed,
344
- Variable,
345
- }
346
- /**
347
- */
348
341
  export enum SectionType {
349
342
  NextPage,
350
343
  NextColumn,
@@ -376,6 +369,13 @@ export enum TableCellBorderPosition {
376
369
  }
377
370
  /**
378
371
  */
372
+ export enum FontPitchType {
373
+ Default,
374
+ Fixed,
375
+ Variable,
376
+ }
377
+ /**
378
+ */
379
379
  export enum WidthType {
380
380
  Dxa,
381
381
  Auto,
@@ -477,9 +477,6 @@ export const SpecialIndentKind = Object.freeze({ FirstLine:0,"0":"FirstLine",Han
477
477
  export const TableAlignmentType = Object.freeze({ Center:0,"0":"Center",Left:1,"1":"Left",Right:2,"2":"Right", });
478
478
  /**
479
479
  */
480
- export const FontPitchType = Object.freeze({ Default:0,"0":"Default",Fixed:1,"1":"Fixed",Variable:2,"2":"Variable", });
481
- /**
482
- */
483
480
  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", });
484
481
  /**
485
482
  */
@@ -489,6 +486,9 @@ export const TableBorderPosition = Object.freeze({ Left:0,"0":"Left",Right:1,"1"
489
486
  export const TableCellBorderPosition = 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",Tl2br:6,"6":"Tl2br",Tr2bl:7,"7":"Tr2bl", });
490
487
  /**
491
488
  */
489
+ export const FontPitchType = Object.freeze({ Default:0,"0":"Default",Fixed:1,"1":"Fixed",Variable:2,"2":"Variable", });
490
+ /**
491
+ */
492
492
  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", });
493
493
  /**
494
494
  */
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docx-wasm",
3
- "version": "0.0.276-rc0",
3
+ "version": "0.0.276-rc1",
4
4
  "main": "dist/node/index.js",
5
5
  "browser": "dist/web/index.js",
6
6
  "author": "bokuweb <bokuweb12@gmail.com>",