docx-wasm 0.4.12-beta12 → 0.4.12-beta13
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.
|
@@ -4,10 +4,10 @@ import { HeightRule } from "../table-row";
|
|
|
4
4
|
import { TextDirectionType } from "../table-cell";
|
|
5
5
|
import { ShadingJSON } from "./shading";
|
|
6
6
|
import { TableLayoutType } from "../table";
|
|
7
|
-
import { DeleteJSONData, InsertJSONData } from "..";
|
|
7
|
+
import { DeleteJSONData, InsertJSONData, TableCellBordersJSON } from "..";
|
|
8
8
|
import { StructuredTagJSON } from "./structured-data-tag";
|
|
9
|
-
import { TableCellBorder } from "./bindings/TableCellBorder";
|
|
10
9
|
export { TableCellBorder as TableCellBorderJSON } from "./bindings/TableCellBorder";
|
|
10
|
+
export { TableCellBorders as TableCellBordersJSON } from "./bindings/TableCellBorders";
|
|
11
11
|
export declare type TableCellChildJSON = ParagraphJSON | TableJSON | StructuredTagJSON;
|
|
12
12
|
export declare type WidthType = "dxa" | "auto" | "pct" | "nil";
|
|
13
13
|
export { TextDirectionType } from "../table-cell";
|
|
@@ -17,7 +17,7 @@ export declare type TableCellPropertyJSON = {
|
|
|
17
17
|
width: number;
|
|
18
18
|
widthType: WidthType;
|
|
19
19
|
} | null;
|
|
20
|
-
borders?:
|
|
20
|
+
borders?: TableCellBordersJSON | null;
|
|
21
21
|
gridSpan?: number | null;
|
|
22
22
|
verticalMerge?: "restart" | "continue" | null;
|
|
23
23
|
verticalAlign?: "top" | "center" | "bottom" | null;
|
package/dist/web/json/table.d.ts
CHANGED
|
@@ -4,10 +4,10 @@ import { HeightRule } from "../table-row";
|
|
|
4
4
|
import { TextDirectionType } from "../table-cell";
|
|
5
5
|
import { ShadingJSON } from "./shading";
|
|
6
6
|
import { TableLayoutType } from "../table";
|
|
7
|
-
import { DeleteJSONData, InsertJSONData } from "..";
|
|
7
|
+
import { DeleteJSONData, InsertJSONData, TableCellBordersJSON } from "..";
|
|
8
8
|
import { StructuredTagJSON } from "./structured-data-tag";
|
|
9
|
-
import { TableCellBorder } from "./bindings/TableCellBorder";
|
|
10
9
|
export { TableCellBorder as TableCellBorderJSON } from "./bindings/TableCellBorder";
|
|
10
|
+
export { TableCellBorders as TableCellBordersJSON } from "./bindings/TableCellBorders";
|
|
11
11
|
export declare type TableCellChildJSON = ParagraphJSON | TableJSON | StructuredTagJSON;
|
|
12
12
|
export declare type WidthType = "dxa" | "auto" | "pct" | "nil";
|
|
13
13
|
export { TextDirectionType } from "../table-cell";
|
|
@@ -17,7 +17,7 @@ export declare type TableCellPropertyJSON = {
|
|
|
17
17
|
width: number;
|
|
18
18
|
widthType: WidthType;
|
|
19
19
|
} | null;
|
|
20
|
-
borders?:
|
|
20
|
+
borders?: TableCellBordersJSON | null;
|
|
21
21
|
gridSpan?: number | null;
|
|
22
22
|
verticalMerge?: "restart" | "continue" | null;
|
|
23
23
|
verticalAlign?: "top" | "center" | "bottom" | null;
|
package/js/json/table.ts
CHANGED
|
@@ -4,13 +4,13 @@ import { HeightRule } from "../table-row";
|
|
|
4
4
|
import { TextDirectionType } from "../table-cell";
|
|
5
5
|
import { ShadingJSON } from "./shading";
|
|
6
6
|
import { TableLayoutType } from "../table";
|
|
7
|
-
import { DeleteJSONData, InsertJSONData } from "..";
|
|
7
|
+
import { DeleteJSONData, InsertJSONData, TableCellBordersJSON } from "..";
|
|
8
8
|
import { StructuredTagJSON } from "./structured-data-tag";
|
|
9
9
|
|
|
10
|
-
import { TableCellBorder } from "./bindings/TableCellBorder";
|
|
11
|
-
|
|
12
10
|
export { TableCellBorder as TableCellBorderJSON } from "./bindings/TableCellBorder";
|
|
13
11
|
|
|
12
|
+
export { TableCellBorders as TableCellBordersJSON } from "./bindings/TableCellBorders";
|
|
13
|
+
|
|
14
14
|
export type TableCellChildJSON = ParagraphJSON | TableJSON | StructuredTagJSON;
|
|
15
15
|
|
|
16
16
|
export type WidthType = "dxa" | "auto" | "pct" | "nil";
|
|
@@ -24,7 +24,7 @@ export type TableCellPropertyJSON = {
|
|
|
24
24
|
width: number;
|
|
25
25
|
widthType: WidthType;
|
|
26
26
|
} | null;
|
|
27
|
-
borders?:
|
|
27
|
+
borders?: TableCellBordersJSON | null;
|
|
28
28
|
gridSpan?: number | null;
|
|
29
29
|
verticalMerge?: "restart" | "continue" | null;
|
|
30
30
|
verticalAlign?: "top" | "center" | "bottom" | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docx-wasm",
|
|
3
|
-
"version": "0.4.12-
|
|
3
|
+
"version": "0.4.12-beta13",
|
|
4
4
|
"main": "dist/node/index.js",
|
|
5
5
|
"browser": "dist/web/index.js",
|
|
6
6
|
"author": "bokuweb <bokuweb12@gmail.com>",
|
|
@@ -52,3 +52,4 @@
|
|
|
52
52
|
"types": "dist/web/index.d.ts",
|
|
53
53
|
"dependencies": {}
|
|
54
54
|
}
|
|
55
|
+
|