docx-wasm 0.4.12-beta3 → 0.4.12-beta4
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.
|
@@ -2,6 +2,8 @@ import { RunJSON, RunPropertyJSON } from "./run";
|
|
|
2
2
|
import { IndentJSON } from "./indent";
|
|
3
3
|
import { CommentRangeEndJSON, CommentRangeStartJSON, SectionPropertyJSON } from "..";
|
|
4
4
|
import { LineSpacingJSON } from "./line_spacing";
|
|
5
|
+
import { FrameProperty as FramePropertyJSON } from "./bindings/FrameProperty";
|
|
6
|
+
export { FrameProperty as FramePropertyJSON } from "./bindings/FrameProperty";
|
|
5
7
|
export declare type ParagraphChildJSON = RunJSON | InsertJSON | DeleteJSON | HyperlinkJSON | CommentRangeStartJSON | CommentRangeEndJSON | BookmarkStartJSON | BookmarkEndJSON;
|
|
6
8
|
export declare type HyperlinkChildJSON = RunJSON | InsertJSON | DeleteJSON | CommentRangeStartJSON | CommentRangeEndJSON | BookmarkStartJSON | BookmarkEndJSON;
|
|
7
9
|
export declare type CustomTabStopType = "bar" | "center" | "clear" | "decimal" | "end" | "right" | "num" | "start" | "left";
|
|
@@ -34,6 +36,7 @@ export declare type ParagraphPropertyJSON = {
|
|
|
34
36
|
};
|
|
35
37
|
sectionProperty?: SectionPropertyJSON;
|
|
36
38
|
tabs: CustomTabStopJSON[];
|
|
39
|
+
frameProperty?: FramePropertyJSON;
|
|
37
40
|
};
|
|
38
41
|
export declare type ParagraphJSON = {
|
|
39
42
|
type: "paragraph";
|
|
@@ -2,6 +2,8 @@ import { RunJSON, RunPropertyJSON } from "./run";
|
|
|
2
2
|
import { IndentJSON } from "./indent";
|
|
3
3
|
import { CommentRangeEndJSON, CommentRangeStartJSON, SectionPropertyJSON } from "..";
|
|
4
4
|
import { LineSpacingJSON } from "./line_spacing";
|
|
5
|
+
import { FrameProperty as FramePropertyJSON } from "./bindings/FrameProperty";
|
|
6
|
+
export { FrameProperty as FramePropertyJSON } from "./bindings/FrameProperty";
|
|
5
7
|
export declare type ParagraphChildJSON = RunJSON | InsertJSON | DeleteJSON | HyperlinkJSON | CommentRangeStartJSON | CommentRangeEndJSON | BookmarkStartJSON | BookmarkEndJSON;
|
|
6
8
|
export declare type HyperlinkChildJSON = RunJSON | InsertJSON | DeleteJSON | CommentRangeStartJSON | CommentRangeEndJSON | BookmarkStartJSON | BookmarkEndJSON;
|
|
7
9
|
export declare type CustomTabStopType = "bar" | "center" | "clear" | "decimal" | "end" | "right" | "num" | "start" | "left";
|
|
@@ -34,6 +36,7 @@ export declare type ParagraphPropertyJSON = {
|
|
|
34
36
|
};
|
|
35
37
|
sectionProperty?: SectionPropertyJSON;
|
|
36
38
|
tabs: CustomTabStopJSON[];
|
|
39
|
+
frameProperty?: FramePropertyJSON;
|
|
37
40
|
};
|
|
38
41
|
export declare type ParagraphJSON = {
|
|
39
42
|
type: "paragraph";
|
package/js/json/paragraph.ts
CHANGED
|
@@ -6,6 +6,9 @@ import {
|
|
|
6
6
|
SectionPropertyJSON,
|
|
7
7
|
} from "..";
|
|
8
8
|
import { LineSpacingJSON } from "./line_spacing";
|
|
9
|
+
import { FrameProperty as FramePropertyJSON } from "./bindings/FrameProperty";
|
|
10
|
+
|
|
11
|
+
export { FrameProperty as FramePropertyJSON } from "./bindings/FrameProperty";
|
|
9
12
|
|
|
10
13
|
export type ParagraphChildJSON =
|
|
11
14
|
| RunJSON
|
|
@@ -76,6 +79,7 @@ export type ParagraphPropertyJSON = {
|
|
|
76
79
|
};
|
|
77
80
|
sectionProperty?: SectionPropertyJSON;
|
|
78
81
|
tabs: CustomTabStopJSON[];
|
|
82
|
+
frameProperty?: FramePropertyJSON;
|
|
79
83
|
};
|
|
80
84
|
|
|
81
85
|
export type ParagraphJSON = {
|