docx-wasm 0.0.278-rc15 → 0.0.278-rc17

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.
@@ -34,6 +34,7 @@ export declare type RunPropertyJSON = {
34
34
  underline?: string | null;
35
35
  bold?: boolean | null;
36
36
  boldCs?: boolean | null;
37
+ caps?: boolean | null;
37
38
  italic?: boolean | null;
38
39
  italicCs?: boolean | null;
39
40
  vanish?: boolean | null;
@@ -139,12 +139,6 @@ export function createParagraphPropertyChange(): ParagraphPropertyChange;
139
139
  export function createParagraph(): Paragraph;
140
140
  /**
141
141
  */
142
- export enum PageOrientationType {
143
- Landscape,
144
- Portrait,
145
- }
146
- /**
147
- */
148
142
  export enum RelativeFromHType {
149
143
  /**
150
144
  * Specifies that the horizontal positioning shall be
@@ -221,6 +215,12 @@ export enum VMergeType {
221
215
  }
222
216
  /**
223
217
  */
218
+ export enum PageOrientationType {
219
+ Landscape,
220
+ Portrait,
221
+ }
222
+ /**
223
+ */
224
224
  export enum TextDirectionType {
225
225
  Lr,
226
226
  LrV,
@@ -431,9 +431,6 @@ module.exports.createParagraph = function() {
431
431
  return Paragraph.__wrap(ret);
432
432
  };
433
433
 
434
- /**
435
- */
436
- module.exports.PageOrientationType = Object.freeze({ Landscape:0,"0":"Landscape",Portrait:1,"1":"Portrait", });
437
434
  /**
438
435
  */
439
436
  module.exports.RelativeFromHType = Object.freeze({
@@ -492,6 +489,9 @@ module.exports.SectionType = Object.freeze({ NextPage:0,"0":"NextPage",NextColum
492
489
  module.exports.VMergeType = Object.freeze({ Continue:0,"0":"Continue",Restart:1,"1":"Restart",Unsupported:2,"2":"Unsupported", });
493
490
  /**
494
491
  */
492
+ module.exports.PageOrientationType = Object.freeze({ Landscape:0,"0":"Landscape",Portrait:1,"1":"Portrait", });
493
+ /**
494
+ */
495
495
  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", });
496
496
  /**
497
497
  */
Binary file
@@ -34,6 +34,7 @@ export declare type RunPropertyJSON = {
34
34
  underline?: string | null;
35
35
  bold?: boolean | null;
36
36
  boldCs?: boolean | null;
37
+ caps?: boolean | null;
37
38
  italic?: boolean | null;
38
39
  italicCs?: boolean | null;
39
40
  vanish?: boolean | null;
@@ -139,12 +139,6 @@ export function createParagraphPropertyChange(): ParagraphPropertyChange;
139
139
  export function createParagraph(): Paragraph;
140
140
  /**
141
141
  */
142
- export enum PageOrientationType {
143
- Landscape,
144
- Portrait,
145
- }
146
- /**
147
- */
148
142
  export enum RelativeFromHType {
149
143
  /**
150
144
  * Specifies that the horizontal positioning shall be
@@ -221,6 +215,12 @@ export enum VMergeType {
221
215
  }
222
216
  /**
223
217
  */
218
+ export enum PageOrientationType {
219
+ Landscape,
220
+ Portrait,
221
+ }
222
+ /**
223
+ */
224
224
  export enum TextDirectionType {
225
225
  Lr,
226
226
  LrV,
@@ -432,9 +432,6 @@ export function createParagraph() {
432
432
  return Paragraph.__wrap(ret);
433
433
  }
434
434
 
435
- /**
436
- */
437
- export const PageOrientationType = Object.freeze({ Landscape:0,"0":"Landscape",Portrait:1,"1":"Portrait", });
438
435
  /**
439
436
  */
440
437
  export const RelativeFromHType = Object.freeze({
@@ -493,6 +490,9 @@ export const SectionType = Object.freeze({ NextPage:0,"0":"NextPage",NextColumn:
493
490
  export const VMergeType = Object.freeze({ Continue:0,"0":"Continue",Restart:1,"1":"Restart",Unsupported:2,"2":"Unsupported", });
494
491
  /**
495
492
  */
493
+ export const PageOrientationType = Object.freeze({ Landscape:0,"0":"Landscape",Portrait:1,"1":"Portrait", });
494
+ /**
495
+ */
496
496
  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", });
497
497
  /**
498
498
  */
Binary file
package/js/json/run.ts CHANGED
@@ -42,6 +42,7 @@ export type RunPropertyJSON = {
42
42
  underline?: string | null;
43
43
  bold?: boolean | null;
44
44
  boldCs?: boolean | null;
45
+ caps?: boolean | null;
45
46
  italic?: boolean | null;
46
47
  italicCs?: boolean | null;
47
48
  vanish?: boolean | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docx-wasm",
3
- "version": "0.0.278-rc15",
3
+ "version": "0.0.278-rc17",
4
4
  "main": "dist/node/index.js",
5
5
  "browser": "dist/web/index.js",
6
6
  "author": "bokuweb <bokuweb12@gmail.com>",