docx 8.2.4 → 8.4.0
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/build/export/packer/next-compiler.d.ts +1 -1
- package/build/export/packer/packer.d.ts +11 -11
- package/build/file/border/border.d.ts +30 -30
- package/build/file/core-properties/properties.d.ts +1 -0
- package/build/file/document/body/section-properties/properties/doc-grid.d.ts +8 -8
- package/build/file/document/body/section-properties/properties/header-footer-reference.d.ts +11 -11
- package/build/file/document/body/section-properties/properties/line-number.d.ts +6 -6
- package/build/file/document/body/section-properties/properties/page-borders.d.ts +16 -16
- package/build/file/document/body/section-properties/properties/page-number.d.ts +9 -9
- package/build/file/document/body/section-properties/properties/page-size.d.ts +6 -6
- package/build/file/document/body/section-properties/properties/page-text-direction.d.ts +5 -5
- package/build/file/document/body/section-properties/properties/section-type.d.ts +9 -9
- package/build/file/document/body/section-properties/section-properties.d.ts +5 -5
- package/build/file/drawing/floating/align.d.ts +1 -1
- package/build/file/drawing/floating/floating-position.d.ts +24 -24
- package/build/file/drawing/text-wrap/text-wrapping.d.ts +14 -14
- package/build/file/footer-wrapper.d.ts +1 -1
- package/build/file/footnotes/footnote/footnote.d.ts +5 -5
- package/build/file/header-wrapper.d.ts +1 -1
- package/build/file/numbering/level.d.ts +73 -73
- package/build/file/paragraph/formatting/alignment.d.ts +17 -17
- package/build/file/paragraph/formatting/spacing.d.ts +7 -7
- package/build/file/paragraph/formatting/style.d.ts +9 -9
- package/build/file/paragraph/formatting/tab-stop.d.ts +26 -26
- package/build/file/paragraph/frame/frame-properties.d.ts +32 -32
- package/build/file/paragraph/links/hyperlink.d.ts +4 -4
- package/build/file/paragraph/properties.d.ts +4 -2
- package/build/file/paragraph/run/emphasis-mark.d.ts +5 -5
- package/build/file/paragraph/run/positional-tab.d.ts +19 -19
- package/build/file/paragraph/run/properties.d.ts +12 -12
- package/build/file/paragraph/run/run-components/text.d.ts +1 -1
- package/build/file/paragraph/run/run.d.ts +6 -6
- package/build/file/paragraph/run/text-attributes.d.ts +1 -1
- package/build/file/paragraph/run/underline.d.ts +21 -21
- package/build/file/relationships/relationship/relationship.d.ts +4 -4
- package/build/file/relationships/relationships.d.ts +1 -1
- package/build/file/settings/settings.d.ts +1 -0
- package/build/file/shading/shading.d.ts +40 -40
- package/build/file/shared/alignment.d.ts +14 -14
- package/build/file/shared/number-format.d.ts +64 -64
- package/build/file/shared/space-type.d.ts +4 -4
- package/build/file/table/table-cell/table-cell-components.d.ts +11 -11
- package/build/file/table/table-cell/table-cell-properties.d.ts +3 -3
- package/build/file/table/table-properties/table-borders.d.ts +7 -7
- package/build/file/table/table-properties/table-cell-margin.d.ts +7 -7
- package/build/file/table/table-properties/table-float-properties.d.ts +29 -29
- package/build/file/table/table-properties/table-layout.d.ts +5 -5
- package/build/file/table/table-properties/table-properties.d.ts +2 -2
- package/build/file/table/table-row/table-row-height.d.ts +7 -7
- package/build/file/table/table-row/table-row-properties.d.ts +1 -1
- package/build/file/table/table-width.d.ts +7 -7
- package/build/file/table/table.d.ts +2 -2
- package/build/file/vertical-align/vertical-align.d.ts +7 -7
- package/build/index.cjs +946 -776
- package/build/index.iife.js +946 -776
- package/build/index.mjs +946 -776
- package/build/index.umd.js +946 -776
- package/build/patcher/from-docx.d.ts +6 -6
- package/build/patcher/relationship-manager.d.ts +1 -1
- package/package.json +10 -10
|
@@ -12,10 +12,10 @@ export interface ITableOptions {
|
|
|
12
12
|
readonly margins?: ITableCellMarginOptions;
|
|
13
13
|
readonly indent?: ITableWidthProperties;
|
|
14
14
|
readonly float?: ITableFloatOptions;
|
|
15
|
-
readonly layout?: TableLayoutType;
|
|
15
|
+
readonly layout?: (typeof TableLayoutType)[keyof typeof TableLayoutType];
|
|
16
16
|
readonly style?: string;
|
|
17
17
|
readonly borders?: ITableBordersOptions;
|
|
18
|
-
readonly alignment?: AlignmentType;
|
|
18
|
+
readonly alignment?: (typeof AlignmentType)[keyof typeof AlignmentType];
|
|
19
19
|
readonly visuallyRightToLeft?: boolean;
|
|
20
20
|
}
|
|
21
21
|
export declare class Table extends FileChild {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { XmlAttributeComponent, XmlComponent } from '../xml-components';
|
|
2
|
-
export declare
|
|
3
|
-
BOTTOM
|
|
4
|
-
CENTER
|
|
5
|
-
TOP
|
|
6
|
-
}
|
|
2
|
+
export declare const VerticalAlign: {
|
|
3
|
+
readonly BOTTOM: "bottom";
|
|
4
|
+
readonly CENTER: "center";
|
|
5
|
+
readonly TOP: "top";
|
|
6
|
+
};
|
|
7
7
|
export declare class VerticalAlignAttributes extends XmlAttributeComponent<{
|
|
8
|
-
readonly verticalAlign?: VerticalAlign;
|
|
8
|
+
readonly verticalAlign?: (typeof VerticalAlign)[keyof typeof VerticalAlign];
|
|
9
9
|
}> {
|
|
10
10
|
protected readonly xmlKeys: {
|
|
11
11
|
verticalAlign: string;
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
14
|
export declare class VerticalAlignElement extends XmlComponent {
|
|
15
|
-
constructor(value: VerticalAlign);
|
|
15
|
+
constructor(value: (typeof VerticalAlign)[keyof typeof VerticalAlign]);
|
|
16
16
|
}
|