@office-open/docx 0.7.0 → 0.8.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/README.md +12 -6
- package/dist/index.d.mts +750 -91
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2223 -588
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { AppProperties, AttributePayload, BaseXmlComponent, BuilderElement, CompressionOptions, Context as Context$1, EMPTY_OBJECT, EmptyElement, IXmlableObject, IgnoreIfEmptyXmlComponent, ImportedRootElementAttributes, ImportedXmlComponent, InitializableXmlComponent, OutputByType, OutputByType as OutputByType$1, OutputType, OutputType as OutputType$1, PackerOptions, ParsedArchive, Relationships, UniqueNumericIdCreator, XmlComponent, XmlComponent as XmlComponent$1, attrObj, chartAttr, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl } from "@office-open/core";
|
|
1
|
+
import { AppProperties, AttributePayload, BaseXmlComponent, BuilderElement, CompressionOptions, Context as Context$1, DataType, EMPTY_OBJECT, EmptyElement, IXmlableObject, IgnoreIfEmptyXmlComponent, ImportedRootElementAttributes, ImportedXmlComponent, InitializableXmlComponent, OutputByType, OutputByType as OutputByType$1, OutputType, OutputType as OutputType$1, PackerOptions, ParsedArchive, Relationships, UniqueNumericIdCreator, XmlComponent, XmlComponent as XmlComponent$1, attrObj, chartAttr, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl } from "@office-open/core";
|
|
2
2
|
import { Element } from "@office-open/xml";
|
|
3
|
-
import { DataType } from "undio";
|
|
4
3
|
import { BlipEffectsOptions, CustomGeometryOptions, EffectDagOptions, EffectListOptions, FillOptions, OutlineOptions, Scene3DOptions, Shape3DOptions, SourceRectangleOptions, TileOptions } from "@office-open/core/drawingml";
|
|
5
4
|
import { ChartCollection, ChartData, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType } from "@office-open/core/chart";
|
|
6
5
|
import { COLOR_CATEGORIES, DEFAULT_DRAWING_XML, LAYOUT_CATEGORIES, STYLE_CATEGORIES, SmartArtCollection, SmartArtData, TreeNode, createDataModel, getColorXml, getLayoutXml, getStyleXml } from "@office-open/core/smartart";
|
|
@@ -463,10 +462,10 @@ interface NumberPropertiesOptions {
|
|
|
463
462
|
readonly numStart?: number;
|
|
464
463
|
readonly numRestart?: (typeof NumberRestartType)[keyof typeof NumberRestartType];
|
|
465
464
|
}
|
|
466
|
-
interface FootnotePropertiesOptions extends NumberPropertiesOptions {
|
|
465
|
+
interface FootnotePropertiesOptions$1 extends NumberPropertiesOptions {
|
|
467
466
|
readonly pos?: (typeof FootnotePositionType)[keyof typeof FootnotePositionType];
|
|
468
467
|
}
|
|
469
|
-
interface EndnotePropertiesOptions extends NumberPropertiesOptions {
|
|
468
|
+
interface EndnotePropertiesOptions$1 extends NumberPropertiesOptions {
|
|
470
469
|
readonly pos?: (typeof EndnotePositionType)[keyof typeof EndnotePositionType];
|
|
471
470
|
}
|
|
472
471
|
//#endregion
|
|
@@ -657,6 +656,10 @@ interface HeaderFooterGroup<T> {
|
|
|
657
656
|
readonly even?: T;
|
|
658
657
|
}
|
|
659
658
|
interface SectionPropertiesOptionsBase {
|
|
659
|
+
readonly rsidRPr?: string;
|
|
660
|
+
readonly rsidDel?: string;
|
|
661
|
+
readonly rsidR?: string;
|
|
662
|
+
readonly rsidSect?: string;
|
|
660
663
|
readonly page?: {
|
|
661
664
|
readonly size?: Partial<PageSizeAttributes>;
|
|
662
665
|
readonly margin?: PageMarginAttributes;
|
|
@@ -680,8 +683,8 @@ interface SectionPropertiesOptionsBase {
|
|
|
680
683
|
readonly first?: number;
|
|
681
684
|
readonly other?: number;
|
|
682
685
|
};
|
|
683
|
-
readonly footnotePr?: FootnotePropertiesOptions;
|
|
684
|
-
readonly endnotePr?: EndnotePropertiesOptions;
|
|
686
|
+
readonly footnotePr?: FootnotePropertiesOptions$1;
|
|
687
|
+
readonly endnotePr?: EndnotePropertiesOptions$1;
|
|
685
688
|
readonly printerSettingsId?: string;
|
|
686
689
|
}
|
|
687
690
|
type ISectionPropertiesChangeOptions = ChangedAttributesProperties & SectionPropertiesOptionsBase;
|
|
@@ -743,7 +746,11 @@ declare class SectionProperties extends XmlComponent {
|
|
|
743
746
|
paperSrc,
|
|
744
747
|
footnotePr,
|
|
745
748
|
endnotePr,
|
|
746
|
-
printerSettingsId
|
|
749
|
+
printerSettingsId,
|
|
750
|
+
rsidRPr,
|
|
751
|
+
rsidDel,
|
|
752
|
+
rsidR,
|
|
753
|
+
rsidSect
|
|
747
754
|
}?: ISectionPropertiesOptions);
|
|
748
755
|
private addHeaderFooterGroup;
|
|
749
756
|
}
|
|
@@ -798,6 +805,7 @@ declare class DocumentBackground extends XmlComponent {
|
|
|
798
805
|
//#region src/file/document/document.d.ts
|
|
799
806
|
interface DocumentOptions {
|
|
800
807
|
readonly background?: DocumentBackgroundOptions;
|
|
808
|
+
readonly conformance?: "strict" | "transitional";
|
|
801
809
|
}
|
|
802
810
|
declare class Document extends XmlComponent {
|
|
803
811
|
readonly body: Body;
|
|
@@ -1139,6 +1147,7 @@ interface RunStylePropertiesOptions {
|
|
|
1139
1147
|
readonly fitText?: number;
|
|
1140
1148
|
readonly complexScript?: boolean;
|
|
1141
1149
|
readonly eastAsianLayout?: EastAsianLayoutOptions;
|
|
1150
|
+
readonly contentPartRId?: string;
|
|
1142
1151
|
}
|
|
1143
1152
|
type RunPropertiesOptions = {
|
|
1144
1153
|
readonly style?: string;
|
|
@@ -1166,7 +1175,10 @@ interface RunOptionsBase {
|
|
|
1166
1175
|
readonly break?: number;
|
|
1167
1176
|
readonly text?: string;
|
|
1168
1177
|
}
|
|
1169
|
-
type RunOptions = RunOptionsBase & RunPropertiesOptions
|
|
1178
|
+
type RunOptions = RunOptionsBase & RunPropertiesOptions & {
|
|
1179
|
+
readonly rsidRPr?: string;
|
|
1180
|
+
readonly rsidDel?: string;
|
|
1181
|
+
};
|
|
1170
1182
|
type IParagraphRunOptions = RunOptionsBase & IParagraphRunPropertiesOptions;
|
|
1171
1183
|
declare const PageNumber: {
|
|
1172
1184
|
readonly CURRENT: "CURRENT";
|
|
@@ -1179,7 +1191,7 @@ declare class Run extends BaseXmlComponent {
|
|
|
1179
1191
|
protected extraChildren: (BaseXmlComponent | IXmlableObject)[];
|
|
1180
1192
|
private readonly _prebuilt;
|
|
1181
1193
|
constructor(options: RunOptions);
|
|
1182
|
-
|
|
1194
|
+
protected registerResources(_context: Context): void;
|
|
1183
1195
|
toXml(context: Context): string;
|
|
1184
1196
|
}
|
|
1185
1197
|
//#endregion
|
|
@@ -1378,7 +1390,7 @@ type IImageOptions = (RegularImageOptions | SvgMediaOptions) & CoreImageOptions;
|
|
|
1378
1390
|
declare class ImageRun extends Run {
|
|
1379
1391
|
private readonly imageData;
|
|
1380
1392
|
constructor(options: IImageOptions);
|
|
1381
|
-
|
|
1393
|
+
protected registerResources(context: Context): void;
|
|
1382
1394
|
}
|
|
1383
1395
|
//#endregion
|
|
1384
1396
|
//#region src/file/paragraph/run/chart-run.d.ts
|
|
@@ -1400,7 +1412,7 @@ declare class ChartRun extends Run {
|
|
|
1400
1412
|
private readonly chartOptions;
|
|
1401
1413
|
private readonly chartKey;
|
|
1402
1414
|
constructor(options: ChartOptions);
|
|
1403
|
-
|
|
1415
|
+
protected registerResources(context: Context): void;
|
|
1404
1416
|
}
|
|
1405
1417
|
//#endregion
|
|
1406
1418
|
//#region src/file/paragraph/run/smartart-run.d.ts
|
|
@@ -1423,7 +1435,7 @@ declare class SmartArtRun extends Run {
|
|
|
1423
1435
|
private readonly smartArtOptions;
|
|
1424
1436
|
private readonly smartArtKey;
|
|
1425
1437
|
constructor(options: SmartArtOptions);
|
|
1426
|
-
|
|
1438
|
+
protected registerResources(context: Context): void;
|
|
1427
1439
|
private hashSmartArtData;
|
|
1428
1440
|
}
|
|
1429
1441
|
//#endregion
|
|
@@ -1455,7 +1467,7 @@ declare class WpgGroupRun extends Run {
|
|
|
1455
1467
|
private readonly wpgGroupData;
|
|
1456
1468
|
private readonly mediaDatas;
|
|
1457
1469
|
constructor(options: IWpgGroupOptions);
|
|
1458
|
-
|
|
1470
|
+
protected registerResources(context: Context): void;
|
|
1459
1471
|
}
|
|
1460
1472
|
//#endregion
|
|
1461
1473
|
//#region src/file/paragraph/run/sequential-identifier.d.ts
|
|
@@ -1537,31 +1549,6 @@ declare class CheckBox extends XmlComponent {
|
|
|
1537
1549
|
constructor(options?: CheckboxSymbolOptions);
|
|
1538
1550
|
}
|
|
1539
1551
|
//#endregion
|
|
1540
|
-
//#region src/file/permissions/perm-start.d.ts
|
|
1541
|
-
declare const EditGroupType: {
|
|
1542
|
-
readonly NONE: "none";
|
|
1543
|
-
readonly EVERYONE: "everyone";
|
|
1544
|
-
readonly ADMINISTRATORS: "administrators";
|
|
1545
|
-
readonly CONTRIBUTORS: "contributors";
|
|
1546
|
-
readonly EDITORS: "editors";
|
|
1547
|
-
readonly OWNERS: "owners";
|
|
1548
|
-
readonly CURRENT: "current";
|
|
1549
|
-
};
|
|
1550
|
-
type EditGroup = (typeof EditGroupType)[keyof typeof EditGroupType];
|
|
1551
|
-
interface PermStartOptions {
|
|
1552
|
-
readonly id: string | number;
|
|
1553
|
-
readonly edGroup?: EditGroup;
|
|
1554
|
-
readonly ed?: string;
|
|
1555
|
-
readonly colFirst?: number;
|
|
1556
|
-
readonly colLast?: number;
|
|
1557
|
-
}
|
|
1558
|
-
declare class PermStart extends XmlComponent {
|
|
1559
|
-
constructor(options: PermStartOptions);
|
|
1560
|
-
}
|
|
1561
|
-
declare class PermEnd extends XmlComponent {
|
|
1562
|
-
constructor(id: string | number);
|
|
1563
|
-
}
|
|
1564
|
-
//#endregion
|
|
1565
1552
|
//#region src/file/table-of-contents/table-of-contents.d.ts
|
|
1566
1553
|
interface ToCEntry {
|
|
1567
1554
|
readonly title: string;
|
|
@@ -1671,6 +1658,7 @@ declare class StructuredDocumentTagContent extends XmlComponent {
|
|
|
1671
1658
|
interface SdtRunOptions {
|
|
1672
1659
|
readonly properties: SdtPropertiesOptions;
|
|
1673
1660
|
readonly children?: readonly BaseXmlComponent[];
|
|
1661
|
+
readonly endProperties?: readonly BaseXmlComponent[];
|
|
1674
1662
|
}
|
|
1675
1663
|
declare class StructuredDocumentTagRun extends XmlComponent {
|
|
1676
1664
|
constructor(options: SdtRunOptions);
|
|
@@ -1678,6 +1666,7 @@ declare class StructuredDocumentTagRun extends XmlComponent {
|
|
|
1678
1666
|
interface SdtBlockOptions {
|
|
1679
1667
|
readonly properties: SdtPropertiesOptions;
|
|
1680
1668
|
readonly children?: readonly FileChild[];
|
|
1669
|
+
readonly endProperties?: readonly BaseXmlComponent[];
|
|
1681
1670
|
}
|
|
1682
1671
|
declare class StructuredDocumentTagBlock extends XmlComponent implements FileChild {
|
|
1683
1672
|
readonly fileChild: symbol;
|
|
@@ -1873,6 +1862,11 @@ interface TablePropertyExOptions {
|
|
|
1873
1862
|
readonly cellMargin?: TableCellMarginOptions;
|
|
1874
1863
|
readonly tableLook?: TableLookOptions;
|
|
1875
1864
|
readonly cellSpacing?: TableCellSpacingProperties;
|
|
1865
|
+
readonly tblPrExChange?: {
|
|
1866
|
+
readonly author: string;
|
|
1867
|
+
readonly date?: string;
|
|
1868
|
+
readonly id: string;
|
|
1869
|
+
};
|
|
1876
1870
|
}
|
|
1877
1871
|
declare class TablePropertyExceptions extends IgnoreIfEmptyXmlComponent {
|
|
1878
1872
|
constructor(options: TablePropertyExOptions);
|
|
@@ -1942,6 +1936,8 @@ type SectionChild = BaseXmlComponent | {
|
|
|
1942
1936
|
altChunk: AltChunkOptions;
|
|
1943
1937
|
} | {
|
|
1944
1938
|
subDoc: SubDocOptions;
|
|
1939
|
+
} | {
|
|
1940
|
+
customXml: CustomXmlBlockOptions;
|
|
1945
1941
|
};
|
|
1946
1942
|
//#endregion
|
|
1947
1943
|
//#region src/file/track-revision/track-revision-components/inserted-text-run.d.ts
|
|
@@ -2061,6 +2057,8 @@ interface TableCellBordersOptions {
|
|
|
2061
2057
|
readonly bottom?: BorderOptions;
|
|
2062
2058
|
readonly end?: BorderOptions;
|
|
2063
2059
|
readonly right?: BorderOptions;
|
|
2060
|
+
readonly topLeftToBottomRight?: BorderOptions;
|
|
2061
|
+
readonly topRightToBottomLeft?: BorderOptions;
|
|
2064
2062
|
}
|
|
2065
2063
|
declare function buildTableCellBorders(options: TableCellBordersOptions): IXmlableObject | undefined;
|
|
2066
2064
|
declare class TableCellBorders extends IgnoreIfEmptyXmlComponent {
|
|
@@ -2127,8 +2125,12 @@ declare class TableCell extends BaseXmlComponent {
|
|
|
2127
2125
|
//#endregion
|
|
2128
2126
|
//#region src/file/table/table-row/table-row.d.ts
|
|
2129
2127
|
type TableRowOptions = {
|
|
2130
|
-
readonly cells: readonly (TableCell | StructuredDocumentTagCell | StructuredDocumentTagRow | TableCellOptions)[];
|
|
2128
|
+
readonly cells: readonly (TableCell | StructuredDocumentTagCell | StructuredDocumentTagRow | CustomXmlCell | TableCellOptions)[];
|
|
2131
2129
|
readonly propertyExceptions?: TablePropertyExOptions;
|
|
2130
|
+
readonly rsidRPr?: string;
|
|
2131
|
+
readonly rsidR?: string;
|
|
2132
|
+
readonly rsidDel?: string;
|
|
2133
|
+
readonly rsidTr?: string;
|
|
2132
2134
|
} & ITableRowPropertiesOptions;
|
|
2133
2135
|
declare class TableRow extends BaseXmlComponent {
|
|
2134
2136
|
private readonly options;
|
|
@@ -2146,7 +2148,7 @@ declare class TableRow extends BaseXmlComponent {
|
|
|
2146
2148
|
//#endregion
|
|
2147
2149
|
//#region src/file/table/table.d.ts
|
|
2148
2150
|
interface TableOptions {
|
|
2149
|
-
readonly rows: readonly (TableRow | StructuredDocumentTagRow | TableRowOptions)[];
|
|
2151
|
+
readonly rows: readonly (TableRow | StructuredDocumentTagRow | CustomXmlRow | TableRowOptions)[];
|
|
2150
2152
|
readonly width?: TableWidthProperties;
|
|
2151
2153
|
readonly columnWidths?: readonly number[];
|
|
2152
2154
|
readonly columnWidthsRevision?: TableGridChangeOptions;
|
|
@@ -2198,6 +2200,88 @@ declare class StructuredDocumentTagRow extends XmlComponent {
|
|
|
2198
2200
|
addCellToColumnIndex(cell: TableCell, columnIndex: number): void;
|
|
2199
2201
|
}
|
|
2200
2202
|
//#endregion
|
|
2203
|
+
//#region src/file/custom-xml/custom-xml.d.ts
|
|
2204
|
+
interface CustomXmlDataBindingOptions {
|
|
2205
|
+
readonly xpath: string;
|
|
2206
|
+
readonly storeItemID: string;
|
|
2207
|
+
readonly prefixMappings?: string;
|
|
2208
|
+
}
|
|
2209
|
+
interface CustomXmlAttributeOptions {
|
|
2210
|
+
readonly name: string;
|
|
2211
|
+
readonly val: string;
|
|
2212
|
+
readonly uri?: string;
|
|
2213
|
+
}
|
|
2214
|
+
interface CustomXmlPrOptions {
|
|
2215
|
+
readonly placeholder?: string;
|
|
2216
|
+
readonly attributes?: readonly CustomXmlAttributeOptions[];
|
|
2217
|
+
}
|
|
2218
|
+
interface CustomXmlRunOptions {
|
|
2219
|
+
readonly element: string;
|
|
2220
|
+
readonly uri?: string;
|
|
2221
|
+
readonly customXmlPr?: CustomXmlPrOptions;
|
|
2222
|
+
readonly children?: readonly BaseXmlComponent[];
|
|
2223
|
+
}
|
|
2224
|
+
interface CustomXmlBlockOptions {
|
|
2225
|
+
readonly element: string;
|
|
2226
|
+
readonly uri?: string;
|
|
2227
|
+
readonly customXmlPr?: CustomXmlPrOptions;
|
|
2228
|
+
readonly children?: readonly FileChild[];
|
|
2229
|
+
}
|
|
2230
|
+
interface CustomXmlRowOptions {
|
|
2231
|
+
readonly element: string;
|
|
2232
|
+
readonly uri?: string;
|
|
2233
|
+
readonly customXmlPr?: CustomXmlPrOptions;
|
|
2234
|
+
readonly children?: readonly TableRow[];
|
|
2235
|
+
}
|
|
2236
|
+
interface CustomXmlCellOptions {
|
|
2237
|
+
readonly element: string;
|
|
2238
|
+
readonly uri?: string;
|
|
2239
|
+
readonly customXmlPr?: CustomXmlPrOptions;
|
|
2240
|
+
readonly children?: readonly (TableCell | StructuredDocumentTagCell)[];
|
|
2241
|
+
}
|
|
2242
|
+
declare class CustomXmlRun extends XmlComponent {
|
|
2243
|
+
constructor(options: CustomXmlRunOptions);
|
|
2244
|
+
}
|
|
2245
|
+
declare class CustomXmlBlock extends XmlComponent {
|
|
2246
|
+
readonly fileChild: symbol;
|
|
2247
|
+
constructor(options: CustomXmlBlockOptions);
|
|
2248
|
+
}
|
|
2249
|
+
declare class CustomXmlRow extends XmlComponent {
|
|
2250
|
+
private readonly rows;
|
|
2251
|
+
constructor(options: CustomXmlRowOptions);
|
|
2252
|
+
get cellCount(): number;
|
|
2253
|
+
get cells(): readonly TableCell[];
|
|
2254
|
+
addCellToColumnIndex(cell: TableCell, columnIndex: number): void;
|
|
2255
|
+
}
|
|
2256
|
+
declare class CustomXmlCell extends XmlComponent {
|
|
2257
|
+
constructor(options: CustomXmlCellOptions);
|
|
2258
|
+
}
|
|
2259
|
+
//#endregion
|
|
2260
|
+
//#region src/file/permissions/perm-start.d.ts
|
|
2261
|
+
declare const EditGroupType: {
|
|
2262
|
+
readonly NONE: "none";
|
|
2263
|
+
readonly EVERYONE: "everyone";
|
|
2264
|
+
readonly ADMINISTRATORS: "administrators";
|
|
2265
|
+
readonly CONTRIBUTORS: "contributors";
|
|
2266
|
+
readonly EDITORS: "editors";
|
|
2267
|
+
readonly OWNERS: "owners";
|
|
2268
|
+
readonly CURRENT: "current";
|
|
2269
|
+
};
|
|
2270
|
+
type EditGroup = (typeof EditGroupType)[keyof typeof EditGroupType];
|
|
2271
|
+
interface PermStartOptions {
|
|
2272
|
+
readonly id: string | number;
|
|
2273
|
+
readonly edGroup?: EditGroup;
|
|
2274
|
+
readonly ed?: string;
|
|
2275
|
+
readonly colFirst?: number;
|
|
2276
|
+
readonly colLast?: number;
|
|
2277
|
+
}
|
|
2278
|
+
declare class PermStart extends XmlComponent {
|
|
2279
|
+
constructor(options: PermStartOptions);
|
|
2280
|
+
}
|
|
2281
|
+
declare class PermEnd extends XmlComponent {
|
|
2282
|
+
constructor(id: string | number);
|
|
2283
|
+
}
|
|
2284
|
+
//#endregion
|
|
2201
2285
|
//#region src/file/sub-doc/sub-doc-collection.d.ts
|
|
2202
2286
|
interface SubDocData {
|
|
2203
2287
|
readonly data: Uint8Array;
|
|
@@ -2267,10 +2351,10 @@ declare class Bookmark {
|
|
|
2267
2351
|
constructor(options: BookmarkOptions);
|
|
2268
2352
|
}
|
|
2269
2353
|
declare class BookmarkStart extends XmlComponent {
|
|
2270
|
-
constructor(id: string, linkId: number);
|
|
2354
|
+
constructor(id: string, linkId: number, displacedByCustomXml?: "before" | "after");
|
|
2271
2355
|
}
|
|
2272
2356
|
declare class BookmarkEnd extends XmlComponent {
|
|
2273
|
-
constructor(linkId: number);
|
|
2357
|
+
constructor(linkId: number, displacedByCustomXml?: "before" | "after");
|
|
2274
2358
|
}
|
|
2275
2359
|
//#endregion
|
|
2276
2360
|
//#region src/file/paragraph/links/move-bookmark.d.ts
|
|
@@ -2519,14 +2603,19 @@ declare class MathRun extends XmlComponent {
|
|
|
2519
2603
|
}
|
|
2520
2604
|
//#endregion
|
|
2521
2605
|
//#region src/file/paragraph/math/matrix/math-matrix-properties.d.ts
|
|
2606
|
+
interface MathMatrixColumnOptions {
|
|
2607
|
+
readonly count?: number;
|
|
2608
|
+
readonly mcJc?: "left" | "center" | "right" | "inside" | "outside";
|
|
2609
|
+
}
|
|
2522
2610
|
interface MathMatrixPropertiesOptions {
|
|
2523
2611
|
readonly baseJc?: "top" | "bot" | "center";
|
|
2524
2612
|
readonly plcHide?: boolean;
|
|
2525
|
-
readonly rSpRule?:
|
|
2526
|
-
readonly cGpRule?:
|
|
2613
|
+
readonly rSpRule?: 0 | 1 | 2 | 3 | 4;
|
|
2614
|
+
readonly cGpRule?: 0 | 1 | 2 | 3 | 4;
|
|
2527
2615
|
readonly rSp?: number;
|
|
2528
2616
|
readonly cSp?: number;
|
|
2529
2617
|
readonly cGp?: number;
|
|
2618
|
+
readonly mcs?: readonly MathMatrixColumnOptions[];
|
|
2530
2619
|
}
|
|
2531
2620
|
declare const createMathMatrixProperties: (options: MathMatrixPropertiesOptions) => XmlComponent;
|
|
2532
2621
|
//#endregion
|
|
@@ -2548,11 +2637,16 @@ declare const createMathAccentCharacter: ({
|
|
|
2548
2637
|
}: MathAccentCharacterOptions) => XmlComponent;
|
|
2549
2638
|
//#endregion
|
|
2550
2639
|
//#region src/file/paragraph/math/n-ary/math-base.d.ts
|
|
2640
|
+
interface MathArgPropertiesOptions {
|
|
2641
|
+
readonly argSz?: number;
|
|
2642
|
+
}
|
|
2551
2643
|
interface MathBaseOptions {
|
|
2552
2644
|
readonly children: readonly MathComponent[];
|
|
2645
|
+
readonly argPr?: MathArgPropertiesOptions;
|
|
2553
2646
|
}
|
|
2554
2647
|
declare const createMathBase: ({
|
|
2555
|
-
children
|
|
2648
|
+
children,
|
|
2649
|
+
argPr
|
|
2556
2650
|
}: MathBaseOptions) => XmlComponent;
|
|
2557
2651
|
//#endregion
|
|
2558
2652
|
//#region src/file/paragraph/math/n-ary/math-limit-location.d.ts
|
|
@@ -2958,6 +3052,7 @@ interface BordersOptions {
|
|
|
2958
3052
|
readonly left?: BorderOptions;
|
|
2959
3053
|
readonly right?: BorderOptions;
|
|
2960
3054
|
readonly between?: BorderOptions;
|
|
3055
|
+
readonly bar?: BorderOptions;
|
|
2961
3056
|
}
|
|
2962
3057
|
declare class Border extends IgnoreIfEmptyXmlComponent {
|
|
2963
3058
|
constructor(options: BordersOptions);
|
|
@@ -3225,6 +3320,12 @@ type IParagraphStylePropertiesOptions = {
|
|
|
3225
3320
|
readonly level: number;
|
|
3226
3321
|
readonly instance?: number;
|
|
3227
3322
|
readonly custom?: boolean;
|
|
3323
|
+
readonly numberingChange?: {
|
|
3324
|
+
readonly original: string;
|
|
3325
|
+
readonly id: string;
|
|
3326
|
+
readonly author: string;
|
|
3327
|
+
readonly date?: string;
|
|
3328
|
+
};
|
|
3228
3329
|
} | false;
|
|
3229
3330
|
} & LevelParagraphStylePropertiesOptions;
|
|
3230
3331
|
type IParagraphPropertiesOptionsBase = {
|
|
@@ -3258,9 +3359,36 @@ declare class ParagraphPropertiesChange extends XmlComponent {
|
|
|
3258
3359
|
constructor(options: IParagraphPropertiesChangeOptions);
|
|
3259
3360
|
}
|
|
3260
3361
|
//#endregion
|
|
3362
|
+
//#region src/file/paragraph/run/proof-error.d.ts
|
|
3363
|
+
declare const ProofErrorType: {
|
|
3364
|
+
readonly SPELL_START: "spellStart";
|
|
3365
|
+
readonly SPELL_END: "spellEnd";
|
|
3366
|
+
readonly GRAM_START: "gramStart";
|
|
3367
|
+
readonly GRAM_END: "gramEnd";
|
|
3368
|
+
};
|
|
3369
|
+
type ProofErrorTypeValue = (typeof ProofErrorType)[keyof typeof ProofErrorType];
|
|
3370
|
+
declare class ProofError extends XmlComponent {
|
|
3371
|
+
constructor(type: ProofErrorTypeValue);
|
|
3372
|
+
}
|
|
3373
|
+
//#endregion
|
|
3374
|
+
//#region src/file/paragraph/run/smart-tag-run.d.ts
|
|
3375
|
+
interface SmartTagRunOptions {
|
|
3376
|
+
readonly uri?: string;
|
|
3377
|
+
readonly element: string;
|
|
3378
|
+
readonly properties?: readonly {
|
|
3379
|
+
readonly uri: string;
|
|
3380
|
+
readonly name: string;
|
|
3381
|
+
readonly val: string;
|
|
3382
|
+
}[];
|
|
3383
|
+
readonly children?: readonly ParagraphChild[];
|
|
3384
|
+
}
|
|
3385
|
+
declare class SmartTagRun extends XmlComponent {
|
|
3386
|
+
constructor(options: SmartTagRunOptions);
|
|
3387
|
+
}
|
|
3388
|
+
//#endregion
|
|
3261
3389
|
//#region src/file/paragraph/paragraph.d.ts
|
|
3262
3390
|
type Math$1 = InstanceType<typeof Math>;
|
|
3263
|
-
type ParagraphChild = TextRun | ImageRun | SymbolRun | Bookmark | PageBreak | ColumnBreak | SequentialIdentifier | FootnoteReferenceRun | InternalHyperlink | ExternalHyperlink | InsertedTextRun | DeletedTextRun | Math$1 | SimpleField | SimpleMailMergeField | ChartRun | SmartArtRun | Comments | Comment | CommentRangeStart | CommentRangeEnd | CommentReference | CheckBox | StructuredDocumentTagRun | MoveFromRangeStart | MoveFromRangeEnd | MoveToRangeStart | MoveToRangeEnd | MovedFromTextRun | MovedToTextRun | PermStart | PermEnd | Dir | Bdo | AltChunk | SubDoc;
|
|
3391
|
+
type ParagraphChild = TextRun | ImageRun | SymbolRun | Bookmark | PageBreak | ColumnBreak | SequentialIdentifier | FootnoteReferenceRun | InternalHyperlink | ExternalHyperlink | InsertedTextRun | DeletedTextRun | Math$1 | SimpleField | SimpleMailMergeField | ChartRun | SmartArtRun | Comments | Comment | CommentRangeStart | CommentRangeEnd | CommentReference | CheckBox | StructuredDocumentTagRun | MoveFromRangeStart | MoveFromRangeEnd | MoveToRangeStart | MoveToRangeEnd | MovedFromTextRun | MovedToTextRun | PermStart | PermEnd | Dir | Bdo | AltChunk | SubDoc | CustomXmlRun | SmartTagRun | ProofError;
|
|
3264
3392
|
interface ChartChild {
|
|
3265
3393
|
readonly chart: ChartOptions;
|
|
3266
3394
|
}
|
|
@@ -3313,6 +3441,11 @@ type IParagraphJsonChild = ChartChild | SmartArtChild | ImageChild | MathChild |
|
|
|
3313
3441
|
type ParagraphOptions = {
|
|
3314
3442
|
readonly text?: string;
|
|
3315
3443
|
readonly children?: readonly (ParagraphChild | RunOptions | IParagraphJsonChild | string)[];
|
|
3444
|
+
readonly rsidR?: string;
|
|
3445
|
+
readonly rsidRPr?: string;
|
|
3446
|
+
readonly rsidRDefault?: string;
|
|
3447
|
+
readonly rsidDel?: string;
|
|
3448
|
+
readonly rsidP?: string;
|
|
3316
3449
|
} & ParagraphPropertiesOptions;
|
|
3317
3450
|
declare class Paragraph extends BaseXmlComponent implements FileChild {
|
|
3318
3451
|
readonly fileChild: symbol;
|
|
@@ -3465,6 +3598,32 @@ declare const createBreak: (options?: {
|
|
|
3465
3598
|
readonly clear?: "none" | "left" | "right" | "all";
|
|
3466
3599
|
}) => XmlComponent;
|
|
3467
3600
|
//#endregion
|
|
3601
|
+
//#region src/file/paragraph/run/custom-xml-range.d.ts
|
|
3602
|
+
declare class CustomXmlInsRangeStart extends XmlComponent {
|
|
3603
|
+
constructor(id: number, author: string, date?: string);
|
|
3604
|
+
}
|
|
3605
|
+
declare class CustomXmlInsRangeEnd extends XmlComponent {
|
|
3606
|
+
constructor(id: number);
|
|
3607
|
+
}
|
|
3608
|
+
declare class CustomXmlDelRangeStart extends XmlComponent {
|
|
3609
|
+
constructor(id: number, author: string, date?: string);
|
|
3610
|
+
}
|
|
3611
|
+
declare class CustomXmlDelRangeEnd extends XmlComponent {
|
|
3612
|
+
constructor(id: number);
|
|
3613
|
+
}
|
|
3614
|
+
declare class CustomXmlMoveFromRangeStart extends XmlComponent {
|
|
3615
|
+
constructor(id: number, author: string, date?: string);
|
|
3616
|
+
}
|
|
3617
|
+
declare class CustomXmlMoveFromRangeEnd extends XmlComponent {
|
|
3618
|
+
constructor(id: number);
|
|
3619
|
+
}
|
|
3620
|
+
declare class CustomXmlMoveToRangeStart extends XmlComponent {
|
|
3621
|
+
constructor(id: number, author: string, date?: string);
|
|
3622
|
+
}
|
|
3623
|
+
declare class CustomXmlMoveToRangeEnd extends XmlComponent {
|
|
3624
|
+
constructor(id: number);
|
|
3625
|
+
}
|
|
3626
|
+
//#endregion
|
|
3468
3627
|
//#region src/file/endnotes/endnote/run/reference-run.d.ts
|
|
3469
3628
|
declare class EndnoteIdReference extends XmlComponent {
|
|
3470
3629
|
constructor(id: number);
|
|
@@ -3517,6 +3676,8 @@ declare class Bibliography extends XmlComponent {
|
|
|
3517
3676
|
declare class ContentTypes extends XmlComponent {
|
|
3518
3677
|
constructor();
|
|
3519
3678
|
addBibliography(): void;
|
|
3679
|
+
addGlossary(): void;
|
|
3680
|
+
addWebSettings(): void;
|
|
3520
3681
|
addFooter(index: number): void;
|
|
3521
3682
|
addHeader(index: number): void;
|
|
3522
3683
|
addChart(index: number): void;
|
|
@@ -3529,47 +3690,77 @@ declare class ContentTypes extends XmlComponent {
|
|
|
3529
3690
|
addSubDoc(path: string): void;
|
|
3530
3691
|
}
|
|
3531
3692
|
//#endregion
|
|
3532
|
-
//#region src/file/
|
|
3533
|
-
declare const
|
|
3534
|
-
readonly
|
|
3535
|
-
readonly
|
|
3536
|
-
readonly
|
|
3537
|
-
readonly
|
|
3538
|
-
readonly
|
|
3539
|
-
readonly
|
|
3540
|
-
readonly
|
|
3541
|
-
readonly
|
|
3542
|
-
readonly
|
|
3543
|
-
readonly
|
|
3544
|
-
readonly
|
|
3545
|
-
readonly
|
|
3546
|
-
readonly
|
|
3547
|
-
readonly
|
|
3548
|
-
readonly
|
|
3549
|
-
readonly
|
|
3550
|
-
readonly
|
|
3551
|
-
readonly
|
|
3552
|
-
readonly
|
|
3693
|
+
//#region src/file/glossary/glossary-document.d.ts
|
|
3694
|
+
declare const DocPartGallery: {
|
|
3695
|
+
readonly PLACEHOLDER: "placeholder";
|
|
3696
|
+
readonly DEFAULT: "default";
|
|
3697
|
+
readonly DOC_PARTS: "docParts";
|
|
3698
|
+
readonly COVER_PAGE: "coverPg";
|
|
3699
|
+
readonly EQUATIONS: "eq";
|
|
3700
|
+
readonly FOOTERS: "ftrs";
|
|
3701
|
+
readonly HEADERS: "hdrs";
|
|
3702
|
+
readonly PAGE_NUMBERS: "pgNum";
|
|
3703
|
+
readonly TABLES: "tbls";
|
|
3704
|
+
readonly WATERMARKS: "watermarks";
|
|
3705
|
+
readonly AUTO_TEXT: "autoTxt";
|
|
3706
|
+
readonly TEXT_BOX: "txtBox";
|
|
3707
|
+
readonly PAGE_NUMBERS_TOP: "pgNumT";
|
|
3708
|
+
readonly PAGE_NUMBERS_BOTTOM: "pgNumB";
|
|
3709
|
+
readonly PAGE_NUMBERS_MARGIN: "pgNumMargins";
|
|
3710
|
+
readonly TABLE_OF_CONTENTS: "tblOfContents";
|
|
3711
|
+
readonly BIBLIOGRAPHY: "bib";
|
|
3712
|
+
readonly CUSTOM_QUICK_PARTS: "custQuickParts";
|
|
3713
|
+
readonly CUSTOM_COVER_PAGE: "custCoverPg";
|
|
3714
|
+
readonly CUSTOM_EQUATIONS: "custEq";
|
|
3715
|
+
readonly CUSTOM_FOOTERS: "custFtrs";
|
|
3716
|
+
readonly CUSTOM_HEADERS: "custHdrs";
|
|
3717
|
+
readonly CUSTOM_PAGE_NUMBERS: "custPgNum";
|
|
3718
|
+
readonly CUSTOM_TABLES: "custTbls";
|
|
3719
|
+
readonly CUSTOM_WATERMARKS: "custWatermarks";
|
|
3720
|
+
readonly CUSTOM_AUTO_TEXT: "custAutoTxt";
|
|
3721
|
+
readonly CUSTOM_TEXT_BOX: "custTxtBox";
|
|
3722
|
+
readonly CUSTOM_PAGE_NUMBERS_TOP: "custPgNumT";
|
|
3723
|
+
readonly CUSTOM_PAGE_NUMBERS_BOTTOM: "custPgNumB";
|
|
3724
|
+
readonly CUSTOM_PAGE_NUMBERS_MARGIN: "custPgNumMargins";
|
|
3725
|
+
readonly CUSTOM_TABLE_OF_CONTENTS: "custTblOfContents";
|
|
3726
|
+
readonly CUSTOM_BIBLIOGRAPHY: "custBib";
|
|
3727
|
+
readonly CUSTOM1: "custom1";
|
|
3728
|
+
readonly CUSTOM2: "custom2";
|
|
3729
|
+
readonly CUSTOM3: "custom3";
|
|
3730
|
+
readonly CUSTOM4: "custom4";
|
|
3731
|
+
readonly CUSTOM5: "custom5";
|
|
3553
3732
|
};
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
readonly
|
|
3733
|
+
type DocPartGallery = (typeof DocPartGallery)[keyof typeof DocPartGallery];
|
|
3734
|
+
declare const DocPartType: {
|
|
3735
|
+
readonly NONE: "none";
|
|
3736
|
+
readonly NORMAL: "normal";
|
|
3737
|
+
readonly AUTO_EXPAND: "autoExp";
|
|
3738
|
+
readonly TOOLBAR: "toolbar";
|
|
3739
|
+
readonly SPELLER: "speller";
|
|
3740
|
+
readonly FORM_FIELD: "formFld";
|
|
3741
|
+
readonly BUILDING_BLOCK_PLACEHOLDER: "bbPlcHdr";
|
|
3558
3742
|
};
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
readonly
|
|
3563
|
-
readonly
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
//#endregion
|
|
3568
|
-
//#region src/file/fonts/font-table.d.ts
|
|
3569
|
-
interface EmbeddedFontOptions {
|
|
3743
|
+
type DocPartType = (typeof DocPartType)[keyof typeof DocPartType];
|
|
3744
|
+
declare const DocPartBehavior: {
|
|
3745
|
+
readonly CONTENT: "content";
|
|
3746
|
+
readonly PARAGRAPH: "p";
|
|
3747
|
+
readonly PAGE: "pg";
|
|
3748
|
+
};
|
|
3749
|
+
type DocPartBehavior = (typeof DocPartBehavior)[keyof typeof DocPartBehavior];
|
|
3750
|
+
interface DocPartOptions {
|
|
3570
3751
|
readonly name: string;
|
|
3571
|
-
readonly
|
|
3572
|
-
readonly
|
|
3752
|
+
readonly gallery: DocPartGallery;
|
|
3753
|
+
readonly category?: string;
|
|
3754
|
+
readonly types?: readonly DocPartType[];
|
|
3755
|
+
readonly allTypes?: boolean;
|
|
3756
|
+
readonly behaviors?: readonly DocPartBehavior[];
|
|
3757
|
+
readonly description?: string;
|
|
3758
|
+
readonly guid?: string;
|
|
3759
|
+
readonly decorated?: boolean;
|
|
3760
|
+
readonly children: readonly FileChild[];
|
|
3761
|
+
}
|
|
3762
|
+
interface GlossaryDocumentOptions {
|
|
3763
|
+
readonly parts: readonly DocPartOptions[];
|
|
3573
3764
|
}
|
|
3574
3765
|
//#endregion
|
|
3575
3766
|
//#region src/file/settings/compatibility.d.ts
|
|
@@ -3650,6 +3841,9 @@ interface SettingsOptions {
|
|
|
3650
3841
|
readonly compatibilityModeVersion?: number;
|
|
3651
3842
|
readonly evenAndOddHeaders?: boolean;
|
|
3652
3843
|
readonly trackRevisions?: boolean;
|
|
3844
|
+
readonly doNotTrackFormatting?: boolean;
|
|
3845
|
+
readonly doNotTrackMoves?: boolean;
|
|
3846
|
+
readonly revisionView?: RevisionViewOptions;
|
|
3653
3847
|
readonly updateFields?: boolean;
|
|
3654
3848
|
readonly compatibility?: CompatibilityOptions;
|
|
3655
3849
|
readonly defaultTabStop?: number;
|
|
@@ -3663,6 +3857,7 @@ interface SettingsOptions {
|
|
|
3663
3857
|
};
|
|
3664
3858
|
readonly writeProtection?: WriteProtectionOptions;
|
|
3665
3859
|
readonly displayBackgroundShape?: boolean;
|
|
3860
|
+
readonly doNotDisplayPageBoundaries?: boolean;
|
|
3666
3861
|
readonly embedTrueTypeFonts?: boolean;
|
|
3667
3862
|
readonly embedSystemFonts?: boolean;
|
|
3668
3863
|
readonly saveSubsetFonts?: boolean;
|
|
@@ -3670,6 +3865,7 @@ interface SettingsOptions {
|
|
|
3670
3865
|
readonly name: string;
|
|
3671
3866
|
readonly val: string;
|
|
3672
3867
|
}[];
|
|
3868
|
+
readonly mailMerge?: MailMergeOptions;
|
|
3673
3869
|
readonly colorSchemeMapping?: {
|
|
3674
3870
|
readonly bg1?: string;
|
|
3675
3871
|
readonly t1?: string;
|
|
@@ -3684,21 +3880,211 @@ interface SettingsOptions {
|
|
|
3684
3880
|
readonly hyperlink?: string;
|
|
3685
3881
|
readonly followedHyperlink?: string;
|
|
3686
3882
|
};
|
|
3883
|
+
readonly attachedTemplate?: string;
|
|
3884
|
+
readonly themeFontLang?: string;
|
|
3885
|
+
readonly hideSpellingErrors?: boolean;
|
|
3886
|
+
readonly hideGrammaticalErrors?: boolean;
|
|
3887
|
+
readonly noPunctuationKerning?: boolean;
|
|
3888
|
+
readonly removePersonalInformation?: boolean;
|
|
3889
|
+
readonly removeDateAndTime?: boolean;
|
|
3890
|
+
readonly printPostScriptOverText?: boolean;
|
|
3891
|
+
readonly printFractionalCharacterWidth?: boolean;
|
|
3892
|
+
readonly printFormsData?: boolean;
|
|
3893
|
+
readonly saveFormsData?: boolean;
|
|
3894
|
+
readonly mirrorMargins?: boolean;
|
|
3895
|
+
readonly alignBordersAndEdges?: boolean;
|
|
3896
|
+
readonly bordersDoNotSurroundHeader?: boolean;
|
|
3897
|
+
readonly bordersDoNotSurroundFooter?: boolean;
|
|
3898
|
+
readonly gutterAtTop?: boolean;
|
|
3899
|
+
readonly formsDesign?: boolean;
|
|
3900
|
+
readonly linkStyles?: boolean;
|
|
3901
|
+
readonly autoFormatOverride?: boolean;
|
|
3902
|
+
readonly styleLockTheme?: boolean;
|
|
3903
|
+
readonly styleLockQFSet?: boolean;
|
|
3904
|
+
readonly showEnvelope?: boolean;
|
|
3905
|
+
readonly printTwoOnOne?: boolean;
|
|
3906
|
+
readonly strictFirstAndLastChars?: boolean;
|
|
3907
|
+
readonly savePreviewPicture?: boolean;
|
|
3908
|
+
readonly doNotValidateAgainstSchema?: boolean;
|
|
3909
|
+
readonly saveInvalidXml?: boolean;
|
|
3910
|
+
readonly ignoreMixedContent?: boolean;
|
|
3911
|
+
readonly alwaysShowPlaceholderText?: boolean;
|
|
3912
|
+
readonly doNotDemarcateInvalidXml?: boolean;
|
|
3913
|
+
readonly saveXmlDataOnly?: boolean;
|
|
3914
|
+
readonly useXSLTWhenSaving?: boolean;
|
|
3915
|
+
readonly doNotEmbedSmartTags?: boolean;
|
|
3916
|
+
readonly doNotAutoCompressPictures?: boolean;
|
|
3917
|
+
readonly doNotIncludeSubdocsInStats?: boolean;
|
|
3918
|
+
readonly bookFoldPrinting?: boolean;
|
|
3919
|
+
readonly bookFoldRevPrinting?: boolean;
|
|
3920
|
+
readonly defaultTableStyle?: string;
|
|
3921
|
+
readonly decimalSymbol?: string;
|
|
3922
|
+
readonly listSeparator?: string;
|
|
3923
|
+
readonly clickAndTypeStyle?: string;
|
|
3924
|
+
readonly summaryLength?: number;
|
|
3925
|
+
readonly bookFoldPrintingSheets?: number;
|
|
3926
|
+
readonly drawingGridHorizontalSpacing?: number;
|
|
3927
|
+
readonly drawingGridVerticalSpacing?: number;
|
|
3928
|
+
readonly displayHorizontalDrawingGridEvery?: number;
|
|
3929
|
+
readonly displayVerticalDrawingGridEvery?: number;
|
|
3930
|
+
readonly drawingGridHorizontalOrigin?: number;
|
|
3931
|
+
readonly drawingGridVerticalOrigin?: number;
|
|
3932
|
+
readonly footnotePr?: FootnotePropertiesOptions;
|
|
3933
|
+
readonly endnotePr?: EndnotePropertiesOptions;
|
|
3934
|
+
readonly rsids?: RsidsOptions;
|
|
3935
|
+
readonly readModeInkLockDown?: ReadModeInkLockDownOptions;
|
|
3936
|
+
readonly captions?: CaptionsOptions;
|
|
3937
|
+
readonly mathPr?: MathPropertiesOptions$1;
|
|
3938
|
+
readonly activeWritingStyle?: readonly {
|
|
3939
|
+
readonly lang?: string;
|
|
3940
|
+
readonly vendorID?: string;
|
|
3941
|
+
readonly dllVersion?: string;
|
|
3942
|
+
readonly nlCheck?: boolean;
|
|
3943
|
+
readonly checkStyle?: boolean;
|
|
3944
|
+
readonly appCheck?: string;
|
|
3945
|
+
readonly appName?: string;
|
|
3946
|
+
}[];
|
|
3947
|
+
readonly proofState?: {
|
|
3948
|
+
readonly spelling?: "clean" | "dirty";
|
|
3949
|
+
readonly grammar?: "clean" | "dirty";
|
|
3950
|
+
};
|
|
3951
|
+
readonly stylePaneFormatFilter?: {
|
|
3952
|
+
readonly allStyles?: boolean;
|
|
3953
|
+
readonly customStyles?: boolean;
|
|
3954
|
+
readonly stylesInUse?: boolean;
|
|
3955
|
+
readonly headingStyles?: boolean;
|
|
3956
|
+
readonly numberingStyles?: boolean;
|
|
3957
|
+
readonly tableStyles?: boolean;
|
|
3958
|
+
readonly directFormattingOnRuns?: boolean;
|
|
3959
|
+
readonly directFormattingOnParagraphs?: boolean;
|
|
3960
|
+
readonly directFormattingOnNumbering?: boolean;
|
|
3961
|
+
readonly directFormattingOnTables?: boolean;
|
|
3962
|
+
readonly clearFormatting?: boolean;
|
|
3963
|
+
readonly top3HeadingStyles?: boolean;
|
|
3964
|
+
readonly visibleStyles?: boolean;
|
|
3965
|
+
readonly alternateStyleNames?: boolean;
|
|
3966
|
+
};
|
|
3967
|
+
readonly stylePaneSortMethod?: "name" | "priority" | "default" | "font";
|
|
3968
|
+
readonly documentType?: "letter" | "eMail" | "notSpecified";
|
|
3969
|
+
readonly doNotUseMarginsForDrawingGridOrigin?: boolean;
|
|
3970
|
+
readonly doNotShadeFormData?: boolean;
|
|
3971
|
+
readonly noLineBreaksAfter?: {
|
|
3972
|
+
readonly lang?: string;
|
|
3973
|
+
readonly val?: string;
|
|
3974
|
+
};
|
|
3975
|
+
readonly noLineBreaksBefore?: {
|
|
3976
|
+
readonly lang?: string;
|
|
3977
|
+
readonly val?: string;
|
|
3978
|
+
};
|
|
3979
|
+
readonly saveThroughXslt?: {
|
|
3980
|
+
readonly id?: string;
|
|
3981
|
+
readonly val?: string;
|
|
3982
|
+
readonly solutionID?: string;
|
|
3983
|
+
};
|
|
3984
|
+
readonly showXMLTags?: boolean;
|
|
3985
|
+
readonly alwaysMergeEmptyNamespace?: boolean;
|
|
3986
|
+
readonly hdrShapeDefaults?: boolean;
|
|
3987
|
+
readonly attachedSchema?: readonly string[];
|
|
3988
|
+
readonly forceUpgrade?: boolean;
|
|
3989
|
+
readonly smartTagType?: readonly {
|
|
3990
|
+
readonly namespace?: string;
|
|
3991
|
+
readonly namespaceuri?: string;
|
|
3992
|
+
readonly name?: string;
|
|
3993
|
+
readonly url?: string;
|
|
3994
|
+
}[];
|
|
3995
|
+
readonly shapeDefaults?: boolean;
|
|
3996
|
+
}
|
|
3997
|
+
interface RevisionViewOptions {
|
|
3998
|
+
readonly markup?: boolean;
|
|
3999
|
+
readonly comments?: boolean;
|
|
4000
|
+
readonly insDel?: boolean;
|
|
4001
|
+
readonly formatting?: boolean;
|
|
4002
|
+
readonly inkAnnotations?: boolean;
|
|
3687
4003
|
}
|
|
3688
4004
|
interface DocumentProtectionOptions {
|
|
3689
4005
|
readonly edit?: "none" | "readOnly" | "comments" | "trackedChanges" | "forms";
|
|
3690
4006
|
readonly formatting?: boolean;
|
|
4007
|
+
readonly password?: string;
|
|
3691
4008
|
readonly hashValue?: string;
|
|
3692
4009
|
readonly saltValue?: string;
|
|
4010
|
+
readonly hash?: string;
|
|
4011
|
+
readonly salt?: string;
|
|
3693
4012
|
readonly spinCount?: number;
|
|
3694
4013
|
readonly algorithmName?: string;
|
|
4014
|
+
readonly cryptoAlgorithmClass?: string;
|
|
4015
|
+
readonly cryptoAlgorithmSid?: number;
|
|
4016
|
+
readonly cryptoAlgorithmType?: string;
|
|
4017
|
+
readonly cryptoProvider?: string;
|
|
4018
|
+
readonly cryptoProviderType?: string;
|
|
4019
|
+
readonly cryptoProviderTypeExtension?: number;
|
|
4020
|
+
readonly cryptoProviderTypeExtensionSource?: string;
|
|
4021
|
+
readonly algorithmExtensionId?: number;
|
|
4022
|
+
readonly algorithmExtensionSource?: string;
|
|
4023
|
+
readonly cryptoSpinCount?: number;
|
|
3695
4024
|
}
|
|
3696
4025
|
interface WriteProtectionOptions {
|
|
4026
|
+
readonly password?: string;
|
|
3697
4027
|
readonly hashValue?: string;
|
|
3698
4028
|
readonly saltValue?: string;
|
|
4029
|
+
readonly hash?: string;
|
|
4030
|
+
readonly salt?: string;
|
|
3699
4031
|
readonly spinCount?: number;
|
|
3700
4032
|
readonly algorithmName?: string;
|
|
3701
4033
|
readonly recommended?: boolean;
|
|
4034
|
+
readonly cryptoAlgorithmClass?: string;
|
|
4035
|
+
readonly cryptoAlgorithmSid?: number;
|
|
4036
|
+
readonly cryptoAlgorithmType?: string;
|
|
4037
|
+
readonly cryptoProvider?: string;
|
|
4038
|
+
readonly cryptoProviderType?: string;
|
|
4039
|
+
readonly cryptoProviderTypeExtension?: number;
|
|
4040
|
+
readonly cryptoProviderTypeExtensionSource?: string;
|
|
4041
|
+
readonly algorithmExtensionId?: number;
|
|
4042
|
+
readonly algorithmExtensionSource?: string;
|
|
4043
|
+
readonly cryptoSpinCount?: number;
|
|
4044
|
+
}
|
|
4045
|
+
type MailMergeDocType = "catalog" | "envelopes" | "mailingLabels" | "formLetters" | "email" | "fax";
|
|
4046
|
+
type MailMergeDest = "newDocument" | "printer" | "email" | "fax";
|
|
4047
|
+
type MailMergeDataType = "textFile" | "database" | "spreadsheet" | "email" | "odbc" | "native" | "addressBook" | "legacy" | "master";
|
|
4048
|
+
type MailMergeSourceType = "database" | "addressBook" | "document1" | "document2" | "text" | "email" | "native" | "legacy" | "master";
|
|
4049
|
+
type OdsoFieldType = "null" | "dbColumn";
|
|
4050
|
+
interface OdsoFieldMapDataOptions {
|
|
4051
|
+
readonly type?: OdsoFieldType;
|
|
4052
|
+
readonly name?: string;
|
|
4053
|
+
readonly mappedName?: string;
|
|
4054
|
+
readonly column?: number;
|
|
4055
|
+
readonly lid?: string;
|
|
4056
|
+
readonly dynamicAddress?: boolean;
|
|
4057
|
+
}
|
|
4058
|
+
interface OdsoOptions {
|
|
4059
|
+
readonly udl?: string;
|
|
4060
|
+
readonly table?: string;
|
|
4061
|
+
readonly src?: string;
|
|
4062
|
+
readonly colDelim?: number;
|
|
4063
|
+
readonly type?: MailMergeSourceType;
|
|
4064
|
+
readonly fHdr?: boolean;
|
|
4065
|
+
readonly fieldMapData?: readonly OdsoFieldMapDataOptions[];
|
|
4066
|
+
readonly recipientData?: readonly string[];
|
|
4067
|
+
readonly uniqueTag?: string;
|
|
4068
|
+
}
|
|
4069
|
+
interface MailMergeOptions {
|
|
4070
|
+
readonly mainDocumentType: MailMergeDocType;
|
|
4071
|
+
readonly dataType: MailMergeDataType;
|
|
4072
|
+
readonly destination?: MailMergeDest;
|
|
4073
|
+
readonly connectString?: string;
|
|
4074
|
+
readonly query?: string;
|
|
4075
|
+
readonly dataSource?: string;
|
|
4076
|
+
readonly headerSource?: string;
|
|
4077
|
+
readonly doNotSuppressBlankLines?: boolean;
|
|
4078
|
+
readonly addressFieldName?: string;
|
|
4079
|
+
readonly mailSubject?: string;
|
|
4080
|
+
readonly mailAsAttachment?: boolean;
|
|
4081
|
+
readonly viewMergedData?: boolean;
|
|
4082
|
+
readonly activeRecord?: number;
|
|
4083
|
+
readonly checkErrors?: number;
|
|
4084
|
+
readonly linkToQuery?: boolean;
|
|
4085
|
+
readonly odso?: OdsoOptions;
|
|
4086
|
+
readonly active?: boolean;
|
|
4087
|
+
readonly recipients?: string;
|
|
3702
4088
|
}
|
|
3703
4089
|
interface HyphenationOptions {
|
|
3704
4090
|
readonly autoHyphenation?: boolean;
|
|
@@ -3706,10 +4092,203 @@ interface HyphenationOptions {
|
|
|
3706
4092
|
readonly consecutiveHyphenLimit?: number;
|
|
3707
4093
|
readonly doNotHyphenateCaps?: boolean;
|
|
3708
4094
|
}
|
|
4095
|
+
interface FootnotePropertiesOptions {
|
|
4096
|
+
readonly pos?: (typeof FootnotePositionType)[keyof typeof FootnotePositionType];
|
|
4097
|
+
readonly numFmt?: string;
|
|
4098
|
+
readonly format?: string;
|
|
4099
|
+
readonly numStart?: number;
|
|
4100
|
+
readonly numRestart?: string;
|
|
4101
|
+
}
|
|
4102
|
+
interface EndnotePropertiesOptions {
|
|
4103
|
+
readonly pos?: (typeof EndnotePositionType)[keyof typeof EndnotePositionType];
|
|
4104
|
+
readonly numFmt?: string;
|
|
4105
|
+
readonly format?: string;
|
|
4106
|
+
readonly numStart?: number;
|
|
4107
|
+
readonly numRestart?: string;
|
|
4108
|
+
}
|
|
4109
|
+
interface RsidsOptions {
|
|
4110
|
+
readonly rsidRoot?: string;
|
|
4111
|
+
readonly rsids?: readonly string[];
|
|
4112
|
+
}
|
|
4113
|
+
interface ReadModeInkLockDownOptions {
|
|
4114
|
+
readonly actualPg?: boolean;
|
|
4115
|
+
readonly w: number;
|
|
4116
|
+
readonly h: number;
|
|
4117
|
+
readonly fontSz: number;
|
|
4118
|
+
}
|
|
4119
|
+
interface CaptionOptions {
|
|
4120
|
+
readonly name: string;
|
|
4121
|
+
readonly pos?: "above" | "below";
|
|
4122
|
+
readonly chapNum?: boolean;
|
|
4123
|
+
readonly heading?: number;
|
|
4124
|
+
readonly noLabel?: boolean;
|
|
4125
|
+
readonly numFmt?: string;
|
|
4126
|
+
readonly sep?: "hyphen" | "period" | "colon" | "emDash" | "enDash";
|
|
4127
|
+
}
|
|
4128
|
+
interface AutoCaptionOptions {
|
|
4129
|
+
readonly name: string;
|
|
4130
|
+
readonly caption: string;
|
|
4131
|
+
}
|
|
4132
|
+
interface CaptionsOptions {
|
|
4133
|
+
readonly captions: readonly CaptionOptions[];
|
|
4134
|
+
readonly autoCaptions?: readonly AutoCaptionOptions[];
|
|
4135
|
+
}
|
|
4136
|
+
interface MathPropertiesOptions$1 {
|
|
4137
|
+
readonly mathFont?: string;
|
|
4138
|
+
readonly brkBin?: string;
|
|
4139
|
+
readonly brkBinSub?: string;
|
|
4140
|
+
readonly smallFrac?: boolean;
|
|
4141
|
+
readonly dispDef?: boolean;
|
|
4142
|
+
readonly lMargin?: number;
|
|
4143
|
+
readonly rMargin?: number;
|
|
4144
|
+
readonly defJc?: string;
|
|
4145
|
+
readonly wrapIndent?: number;
|
|
4146
|
+
readonly intLim?: string;
|
|
4147
|
+
readonly naryLim?: string;
|
|
4148
|
+
}
|
|
3709
4149
|
declare class Settings extends XmlComponent {
|
|
3710
4150
|
constructor(options: SettingsOptions);
|
|
3711
4151
|
}
|
|
3712
4152
|
//#endregion
|
|
4153
|
+
//#region src/file/frameset/frameset.d.ts
|
|
4154
|
+
interface FrameOptions {
|
|
4155
|
+
readonly size?: string;
|
|
4156
|
+
readonly name?: string;
|
|
4157
|
+
readonly title?: string;
|
|
4158
|
+
readonly sourceRId?: string;
|
|
4159
|
+
readonly marginWidth?: number;
|
|
4160
|
+
readonly marginHeight?: number;
|
|
4161
|
+
readonly scrollbar?: "on" | "off" | "auto";
|
|
4162
|
+
readonly noResizeAllowed?: boolean;
|
|
4163
|
+
readonly linkedToFile?: boolean;
|
|
4164
|
+
readonly longDescRId?: string;
|
|
4165
|
+
}
|
|
4166
|
+
interface FramesetSplitbarOptions {
|
|
4167
|
+
readonly width?: number;
|
|
4168
|
+
readonly color?: string;
|
|
4169
|
+
readonly noBorder?: boolean;
|
|
4170
|
+
readonly flatBorders?: boolean;
|
|
4171
|
+
}
|
|
4172
|
+
interface FramesetOptions {
|
|
4173
|
+
readonly size?: string;
|
|
4174
|
+
readonly splitbar?: FramesetSplitbarOptions;
|
|
4175
|
+
readonly layout?: "rows" | "cols";
|
|
4176
|
+
readonly title?: string;
|
|
4177
|
+
readonly children?: readonly (FramesetOptions | FrameOptions)[];
|
|
4178
|
+
}
|
|
4179
|
+
declare class Frameset extends XmlComponent {
|
|
4180
|
+
constructor(options: FramesetOptions);
|
|
4181
|
+
}
|
|
4182
|
+
//#endregion
|
|
4183
|
+
//#region src/file/web-settings/web-settings.d.ts
|
|
4184
|
+
interface DivBorderOptions {
|
|
4185
|
+
readonly top?: {
|
|
4186
|
+
readonly style: string;
|
|
4187
|
+
readonly color?: string;
|
|
4188
|
+
readonly size?: number;
|
|
4189
|
+
};
|
|
4190
|
+
readonly left?: {
|
|
4191
|
+
readonly style: string;
|
|
4192
|
+
readonly color?: string;
|
|
4193
|
+
readonly size?: number;
|
|
4194
|
+
};
|
|
4195
|
+
readonly bottom?: {
|
|
4196
|
+
readonly style: string;
|
|
4197
|
+
readonly color?: string;
|
|
4198
|
+
readonly size?: number;
|
|
4199
|
+
};
|
|
4200
|
+
readonly right?: {
|
|
4201
|
+
readonly style: string;
|
|
4202
|
+
readonly color?: string;
|
|
4203
|
+
readonly size?: number;
|
|
4204
|
+
};
|
|
4205
|
+
}
|
|
4206
|
+
interface DivOptions {
|
|
4207
|
+
readonly id: number;
|
|
4208
|
+
readonly marginLeft: number;
|
|
4209
|
+
readonly marginRight: number;
|
|
4210
|
+
readonly marginTop: number;
|
|
4211
|
+
readonly marginBottom: number;
|
|
4212
|
+
readonly blockQuote?: boolean;
|
|
4213
|
+
readonly bodyDiv?: boolean;
|
|
4214
|
+
readonly border?: DivBorderOptions;
|
|
4215
|
+
readonly children?: readonly DivOptions[];
|
|
4216
|
+
}
|
|
4217
|
+
declare const TargetScreenSize: {
|
|
4218
|
+
readonly SIZE_544X376: "544x376";
|
|
4219
|
+
readonly SIZE_640X480: "640x480";
|
|
4220
|
+
readonly SIZE_720X512: "720x512";
|
|
4221
|
+
readonly SIZE_800X600: "800x600";
|
|
4222
|
+
readonly SIZE_1024X768: "1024x768";
|
|
4223
|
+
readonly SIZE_1152X882: "1152x882";
|
|
4224
|
+
readonly SIZE_1152X900: "1152x900";
|
|
4225
|
+
readonly SIZE_1280X1024: "1280x1024";
|
|
4226
|
+
readonly SIZE_1600X1200: "1600x1200";
|
|
4227
|
+
readonly SIZE_1800X1440: "1800x1440";
|
|
4228
|
+
readonly SIZE_1920X1200: "1920x1200";
|
|
4229
|
+
};
|
|
4230
|
+
interface WebSettingsOptions {
|
|
4231
|
+
readonly frameset?: FramesetOptions;
|
|
4232
|
+
readonly divs?: readonly DivOptions[];
|
|
4233
|
+
readonly encoding?: string;
|
|
4234
|
+
readonly optimizeForBrowser?: boolean;
|
|
4235
|
+
readonly relyOnVML?: boolean;
|
|
4236
|
+
readonly allowPNG?: boolean;
|
|
4237
|
+
readonly doNotRelyOnCSS?: boolean;
|
|
4238
|
+
readonly doNotSaveAsSingleFile?: boolean;
|
|
4239
|
+
readonly doNotOrganizeInFolder?: boolean;
|
|
4240
|
+
readonly doNotUseLongFileNames?: boolean;
|
|
4241
|
+
readonly pixelsPerInch?: number;
|
|
4242
|
+
readonly targetScreenSz?: (typeof TargetScreenSize)[keyof typeof TargetScreenSize] | string;
|
|
4243
|
+
readonly saveSmartTagsAsXml?: boolean;
|
|
4244
|
+
}
|
|
4245
|
+
declare class WebSettings extends XmlComponent {
|
|
4246
|
+
constructor(options?: WebSettingsOptions);
|
|
4247
|
+
}
|
|
4248
|
+
//#endregion
|
|
4249
|
+
//#region src/file/fonts/font.d.ts
|
|
4250
|
+
declare const CharacterSet: {
|
|
4251
|
+
readonly ANSI: "00";
|
|
4252
|
+
readonly ARABIC: "B2";
|
|
4253
|
+
readonly BALTIC: "BA";
|
|
4254
|
+
readonly CHINESEBIG5: "88";
|
|
4255
|
+
readonly DEFAULT: "01";
|
|
4256
|
+
readonly EASTEUROPE: "EE";
|
|
4257
|
+
readonly GB_2312: "86";
|
|
4258
|
+
readonly GREEK: "A1";
|
|
4259
|
+
readonly HANGUL: "81";
|
|
4260
|
+
readonly HEBREW: "B1";
|
|
4261
|
+
readonly JIS: "80";
|
|
4262
|
+
readonly JOHAB: "82";
|
|
4263
|
+
readonly MAC: "4D";
|
|
4264
|
+
readonly OEM: "FF";
|
|
4265
|
+
readonly RUSSIAN: "CC";
|
|
4266
|
+
readonly SYMBOL: "02";
|
|
4267
|
+
readonly THAI: "DE";
|
|
4268
|
+
readonly TURKISH: "A2";
|
|
4269
|
+
readonly VIETNAMESE: "A3";
|
|
4270
|
+
};
|
|
4271
|
+
//#endregion
|
|
4272
|
+
//#region src/file/fonts/font-wrapper.d.ts
|
|
4273
|
+
type EmbeddedFontOptionsWithKey = EmbeddedFontOptions & {
|
|
4274
|
+
readonly fontKey: string;
|
|
4275
|
+
};
|
|
4276
|
+
declare class FontWrapper implements ViewWrapper {
|
|
4277
|
+
readonly options: readonly EmbeddedFontOptions[];
|
|
4278
|
+
private readonly fontTable;
|
|
4279
|
+
readonly relationships: Relationships;
|
|
4280
|
+
readonly fontOptionsWithKey: readonly EmbeddedFontOptionsWithKey[];
|
|
4281
|
+
constructor(options: readonly EmbeddedFontOptions[]);
|
|
4282
|
+
get view(): XmlComponent;
|
|
4283
|
+
}
|
|
4284
|
+
//#endregion
|
|
4285
|
+
//#region src/file/fonts/font-table.d.ts
|
|
4286
|
+
interface EmbeddedFontOptions {
|
|
4287
|
+
readonly name: string;
|
|
4288
|
+
readonly data: Buffer;
|
|
4289
|
+
readonly characterSet?: (typeof CharacterSet)[keyof typeof CharacterSet];
|
|
4290
|
+
}
|
|
4291
|
+
//#endregion
|
|
3713
4292
|
//#region src/file/custom-properties/custom-property.d.ts
|
|
3714
4293
|
interface CustomPropertyOptions {
|
|
3715
4294
|
readonly name: string;
|
|
@@ -3803,6 +4382,14 @@ interface LevelsOptions {
|
|
|
3803
4382
|
readonly start?: number;
|
|
3804
4383
|
readonly suffix?: (typeof LevelSuffix)[keyof typeof LevelSuffix];
|
|
3805
4384
|
readonly isLegalNumberingStyle?: boolean;
|
|
4385
|
+
readonly lvlRestart?: number;
|
|
4386
|
+
readonly lvlPicBulletId?: number;
|
|
4387
|
+
readonly templateCode?: string;
|
|
4388
|
+
readonly tentative?: boolean;
|
|
4389
|
+
readonly legacy?: {
|
|
4390
|
+
readonly space?: number;
|
|
4391
|
+
readonly indent?: number;
|
|
4392
|
+
};
|
|
3806
4393
|
readonly style?: {
|
|
3807
4394
|
readonly run?: RunStylePropertiesOptions;
|
|
3808
4395
|
readonly paragraph?: LevelParagraphStylePropertiesOptions;
|
|
@@ -3819,7 +4406,12 @@ declare class LevelBase extends XmlComponent {
|
|
|
3819
4406
|
start,
|
|
3820
4407
|
style,
|
|
3821
4408
|
suffix,
|
|
3822
|
-
isLegalNumberingStyle
|
|
4409
|
+
isLegalNumberingStyle,
|
|
4410
|
+
lvlRestart,
|
|
4411
|
+
lvlPicBulletId,
|
|
4412
|
+
legacy,
|
|
4413
|
+
templateCode,
|
|
4414
|
+
tentative
|
|
3823
4415
|
}: LevelsOptions);
|
|
3824
4416
|
}
|
|
3825
4417
|
declare class Level extends LevelBase {}
|
|
@@ -3853,6 +4445,11 @@ interface NumberingOptions {
|
|
|
3853
4445
|
readonly levels: readonly LevelsOptions[];
|
|
3854
4446
|
readonly reference: string;
|
|
3855
4447
|
}[];
|
|
4448
|
+
readonly numIdMacAtCleanup?: number;
|
|
4449
|
+
readonly numPicBullets?: readonly {
|
|
4450
|
+
readonly numPicBulletId: number;
|
|
4451
|
+
readonly pict?: string;
|
|
4452
|
+
}[];
|
|
3856
4453
|
}
|
|
3857
4454
|
declare class Numbering extends XmlComponent {
|
|
3858
4455
|
private readonly abstractNumberingMap;
|
|
@@ -3860,6 +4457,8 @@ declare class Numbering extends XmlComponent {
|
|
|
3860
4457
|
private readonly referenceConfigMap;
|
|
3861
4458
|
private readonly abstractNumUniqueNumericId;
|
|
3862
4459
|
private readonly concreteNumUniqueNumericId;
|
|
4460
|
+
private readonly _numIdMacAtCleanup?;
|
|
4461
|
+
private readonly _numPicBullets?;
|
|
3863
4462
|
constructor(options: NumberingOptions);
|
|
3864
4463
|
toXml(context: Context): string;
|
|
3865
4464
|
createConcreteNumberingInstance(reference: string, instance: number): void;
|
|
@@ -3868,9 +4467,16 @@ declare class Numbering extends XmlComponent {
|
|
|
3868
4467
|
}
|
|
3869
4468
|
//#endregion
|
|
3870
4469
|
//#region src/file/numbering/abstract-numbering.d.ts
|
|
4470
|
+
interface AbstractNumberingOptions {
|
|
4471
|
+
readonly nsid?: string;
|
|
4472
|
+
readonly tmpl?: string;
|
|
4473
|
+
readonly name?: string;
|
|
4474
|
+
readonly styleLink?: string;
|
|
4475
|
+
readonly numStyleLink?: string;
|
|
4476
|
+
}
|
|
3871
4477
|
declare class AbstractNumbering extends XmlComponent {
|
|
3872
4478
|
readonly id: number;
|
|
3873
|
-
constructor(id: number, levelOptions: readonly LevelsOptions[]);
|
|
4479
|
+
constructor(id: number, levelOptions: readonly LevelsOptions[], extraOptions?: AbstractNumberingOptions);
|
|
3874
4480
|
}
|
|
3875
4481
|
//#endregion
|
|
3876
4482
|
//#region src/file/styles/defaults/paragraph-properties.d.ts
|
|
@@ -3935,6 +4541,12 @@ interface StyleOptions {
|
|
|
3935
4541
|
readonly semiHidden?: boolean;
|
|
3936
4542
|
readonly unhideWhenUsed?: boolean;
|
|
3937
4543
|
readonly quickFormat?: boolean;
|
|
4544
|
+
readonly aliases?: string;
|
|
4545
|
+
readonly autoRedefine?: boolean;
|
|
4546
|
+
readonly locked?: boolean;
|
|
4547
|
+
readonly personal?: boolean;
|
|
4548
|
+
readonly personalCompose?: boolean;
|
|
4549
|
+
readonly personalReply?: boolean;
|
|
3938
4550
|
readonly tableStyleOverrides?: readonly TableStyleOverrideOptions[];
|
|
3939
4551
|
}
|
|
3940
4552
|
declare class Style extends XmlComponent {
|
|
@@ -4050,6 +4662,10 @@ interface PropertiesOptions {
|
|
|
4050
4662
|
readonly val: string;
|
|
4051
4663
|
}[];
|
|
4052
4664
|
readonly colorSchemeMapping?: SettingsOptions["colorSchemeMapping"];
|
|
4665
|
+
readonly mailMerge?: SettingsOptions["mailMerge"];
|
|
4666
|
+
readonly glossary?: GlossaryDocumentOptions;
|
|
4667
|
+
readonly settings?: SettingsOptions;
|
|
4668
|
+
readonly webSettings?: WebSettingsOptions;
|
|
4053
4669
|
}
|
|
4054
4670
|
declare class CoreProperties extends XmlComponent {
|
|
4055
4671
|
constructor(options: Omit<PropertiesOptions, "sections">);
|
|
@@ -4122,6 +4738,8 @@ declare class File {
|
|
|
4122
4738
|
readonly comments: Comments;
|
|
4123
4739
|
readonly bibliography: Bibliography | undefined;
|
|
4124
4740
|
readonly fontTable: FontWrapper;
|
|
4741
|
+
readonly glossaryOptions: GlossaryDocumentOptions | undefined;
|
|
4742
|
+
readonly webSettings: WebSettings | undefined;
|
|
4125
4743
|
constructor(options: PropertiesOptions);
|
|
4126
4744
|
private addSection;
|
|
4127
4745
|
private createHeader;
|
|
@@ -4164,9 +4782,19 @@ declare const AlignmentType: {
|
|
|
4164
4782
|
declare const createAlignment: (type: (typeof AlignmentType)[keyof typeof AlignmentType]) => XmlComponent;
|
|
4165
4783
|
//#endregion
|
|
4166
4784
|
//#region src/file/paragraph/formatting/unordered-list.d.ts
|
|
4167
|
-
declare function buildNumberProperties(numberId: number | string, indentLevel: number
|
|
4785
|
+
declare function buildNumberProperties(numberId: number | string, indentLevel: number, numberingChange?: {
|
|
4786
|
+
readonly original: string;
|
|
4787
|
+
readonly id: string;
|
|
4788
|
+
readonly author: string;
|
|
4789
|
+
readonly date?: string;
|
|
4790
|
+
}): IXmlableObject;
|
|
4168
4791
|
declare class NumberProperties extends XmlComponent {
|
|
4169
|
-
constructor(numberId: number | string, indentLevel: number
|
|
4792
|
+
constructor(numberId: number | string, indentLevel: number, numberingChange?: {
|
|
4793
|
+
readonly original: string;
|
|
4794
|
+
readonly id: string;
|
|
4795
|
+
readonly author: string;
|
|
4796
|
+
readonly date?: string;
|
|
4797
|
+
});
|
|
4170
4798
|
}
|
|
4171
4799
|
//#endregion
|
|
4172
4800
|
//#region src/file/coerce.d.ts
|
|
@@ -4194,8 +4822,39 @@ declare class Textbox extends XmlComponent implements FileChild {
|
|
|
4194
4822
|
declare namespace index_d_exports$3 {
|
|
4195
4823
|
export { COLOR_CATEGORIES, DEFAULT_DRAWING_XML, LAYOUT_CATEGORIES, STYLE_CATEGORIES, SmartArtCollection, SmartArtData, TreeNode, createDataModel, getColorXml, getLayoutXml, getStyleXml };
|
|
4196
4824
|
}
|
|
4825
|
+
//#endregion
|
|
4826
|
+
//#region src/file/object/object-element.d.ts
|
|
4827
|
+
interface ObjectEmbedOptions {
|
|
4828
|
+
readonly rId: string;
|
|
4829
|
+
readonly progId?: string;
|
|
4830
|
+
readonly drawAspect?: string;
|
|
4831
|
+
readonly shapeId?: string;
|
|
4832
|
+
readonly fieldCodes?: string;
|
|
4833
|
+
}
|
|
4834
|
+
interface ObjectLinkOptions extends ObjectEmbedOptions {
|
|
4835
|
+
readonly updateMode: string;
|
|
4836
|
+
readonly lockedField?: boolean;
|
|
4837
|
+
}
|
|
4838
|
+
interface ObjectElementOptions {
|
|
4839
|
+
readonly style?: VmlShapeStyle;
|
|
4840
|
+
readonly shapeId?: string;
|
|
4841
|
+
readonly dxaOrig?: number;
|
|
4842
|
+
readonly dyaOrig?: number;
|
|
4843
|
+
readonly embed?: ObjectEmbedOptions;
|
|
4844
|
+
readonly link?: ObjectLinkOptions;
|
|
4845
|
+
readonly control?: {
|
|
4846
|
+
readonly name?: string;
|
|
4847
|
+
readonly shapeid?: string;
|
|
4848
|
+
readonly rId?: string;
|
|
4849
|
+
};
|
|
4850
|
+
readonly movie?: string;
|
|
4851
|
+
}
|
|
4852
|
+
declare class ObjectElement extends XmlComponent implements FileChild {
|
|
4853
|
+
readonly fileChild: symbol;
|
|
4854
|
+
constructor(options: ObjectElementOptions);
|
|
4855
|
+
}
|
|
4197
4856
|
declare namespace index_d_exports$2 {
|
|
4198
|
-
export { AbstractNumbering, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, ChartData, ChartMediaData, ChartOptions, ChartRun, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, Context, ContinuationSeparator, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, Document, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, File, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, OverlapType, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, TreeNode, UnderlineType, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, attrObj, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, getColorXml, getLayoutXml, getStyleXml, hpsMeasureObj, numberValObj, onOffObj, parseMathChildren, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, wrapEl };
|
|
4857
|
+
export { AbstractNumbering, AbstractNumberingOptions, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, ChartData, ChartMediaData, ChartOptions, ChartRun, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, Context, ContinuationSeparator, CustomXmlAttributeOptions, CustomXmlBlock, CustomXmlBlockOptions, CustomXmlCell, CustomXmlCellOptions, CustomXmlDataBindingOptions, CustomXmlDelRangeEnd, CustomXmlDelRangeStart, CustomXmlInsRangeEnd, CustomXmlInsRangeStart, CustomXmlMoveFromRangeEnd, CustomXmlMoveFromRangeStart, CustomXmlMoveToRangeEnd, CustomXmlMoveToRangeStart, CustomXmlPrOptions, CustomXmlRow, CustomXmlRowOptions, CustomXmlRun, CustomXmlRunOptions, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, DocPartBehavior, DocPartGallery, DocPartOptions, DocPartType, Document, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, File, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameOptions, FrameWrap, Frameset, FramesetOptions, FramesetSplitbarOptions, GlossaryDocumentOptions, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathArgPropertiesOptions, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixColumnOptions, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, ObjectElement, ObjectElementOptions, ObjectEmbedOptions, ObjectLinkOptions, OverlapType, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, ProofError, ProofErrorType, ProofErrorTypeValue, PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SmartTagRun, SmartTagRunOptions, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, TreeNode, UnderlineType, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, attrObj, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, getColorXml, getLayoutXml, getStyleXml, hpsMeasureObj, numberValObj, onOffObj, parseMathChildren, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, wrapEl };
|
|
4199
4858
|
}
|
|
4200
4859
|
//#endregion
|
|
4201
4860
|
//#region src/export/packer/packer.d.ts
|
|
@@ -4285,8 +4944,8 @@ interface DocxDocument {
|
|
|
4285
4944
|
declare function parseDocument(data: DataType): PropertiesOptions;
|
|
4286
4945
|
declare function parseDocx(data: DataType): DocxDocument;
|
|
4287
4946
|
declare namespace index_d_exports {
|
|
4288
|
-
export { AbstractNumbering, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, ChartData, ChartMediaData, ChartOptions, ChartRun, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, CompressionOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, Context, ContinuationSeparator, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, File as Document, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, DocxDocument, DocxPartRefs, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, File, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, OutputByType, OutputType, OverlapType, Packer, PackerOptions, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, TreeNode, UnderlineType, UniqueNumericIdCreator, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, attrObj, bookmarkUniqueNumericIdGen, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, docPropertiesUniqueNumericIdGen, getColorXml, getLayoutXml, getStyleXml, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, parseDocument, parseDocx, parseMathChildren, patchDetector, patchDocument, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl };
|
|
4947
|
+
export { AbstractNumbering, AbstractNumberingOptions, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, ChartData, ChartMediaData, ChartOptions, ChartRun, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, CompressionOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, Context, ContinuationSeparator, CustomXmlAttributeOptions, CustomXmlBlock, CustomXmlBlockOptions, CustomXmlCell, CustomXmlCellOptions, CustomXmlDataBindingOptions, CustomXmlDelRangeEnd, CustomXmlDelRangeStart, CustomXmlInsRangeEnd, CustomXmlInsRangeStart, CustomXmlMoveFromRangeEnd, CustomXmlMoveFromRangeStart, CustomXmlMoveToRangeEnd, CustomXmlMoveToRangeStart, CustomXmlPrOptions, CustomXmlRow, CustomXmlRowOptions, CustomXmlRun, CustomXmlRunOptions, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, DocPartBehavior, DocPartGallery, DocPartOptions, DocPartType, File as Document, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, DocxDocument, DocxPartRefs, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, File, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameOptions, FrameWrap, Frameset, FramesetOptions, FramesetSplitbarOptions, GlossaryDocumentOptions, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathArgPropertiesOptions, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixColumnOptions, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, ObjectElement, ObjectElementOptions, ObjectEmbedOptions, ObjectLinkOptions, OutputByType, OutputType, OverlapType, Packer, PackerOptions, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, ProofError, ProofErrorType, ProofErrorTypeValue, PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SmartTagRun, SmartTagRunOptions, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, TreeNode, UnderlineType, UniqueNumericIdCreator, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, attrObj, bookmarkUniqueNumericIdGen, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, docPropertiesUniqueNumericIdGen, getColorXml, getLayoutXml, getStyleXml, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, parseDocument, parseDocx, parseMathChildren, patchDetector, patchDocument, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl };
|
|
4289
4948
|
}
|
|
4290
4949
|
//#endregion
|
|
4291
|
-
export { AbstractNumbering, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, type AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, type ChartData, ChartMediaData, ChartOptions, ChartRun, type ChartSeriesData, ChartSpace, type ChartSpaceOptions, type ChartType, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, type CompressionOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, type Context, ContinuationSeparator, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, File as Document, File, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, DocxDocument, DocxPartRefs, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, type IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, type OutputByType, type OutputType, OverlapType, Packer, type PackerOptions, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, type PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, type SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, type TreeNode, UnderlineType, type UniqueNumericIdCreator, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, attrObj, bookmarkUniqueNumericIdGen, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, docPropertiesUniqueNumericIdGen, getColorXml, getLayoutXml, getStyleXml, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, parseDocument, parseDocx, parseMathChildren, patchDetector, patchDocument, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl };
|
|
4950
|
+
export { AbstractNumbering, AbstractNumberingOptions, AlignmentType, AltChunk, AltChunkCollection, AltChunkData, AltChunkOptions, AnnotationReference, type AttributePayload, BackgroundImageOptions, BaseXmlComponent, Bdo, Bibliography, BibliographyOptions, Body, BodyPropertiesOptions, Bookmark, BookmarkEnd, BookmarkOptions, BookmarkStart, Border, BorderOptions, BorderStyle, BordersOptions, BuilderChild, BuilderElement, COLOR_CATEGORIES, CarriageReturn, CellMerge, CharacterSet, ChartChild, ChartCollection, type ChartData, ChartMediaData, ChartOptions, ChartRun, type ChartSeriesData, ChartSpace, type ChartSpaceOptions, type ChartType, CheckBox, CheckBoxOptions, CheckBoxSymbolElement, CheckBoxUtil, CheckboxSymbolOptions, CheckboxSymbolProperties, CnfConditionalOptions, CnfStyleOptions, Column, ColumnAttributes, ColumnBreak, ColumnsAttributes, Comment, CommentOptions, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, CommentsOptions, type CompressionOptions, ConcreteHyperlink, ConcreteHyperlinkOptions, ConcreteNumbering, ConcreteNumberingOptions, type Context, ContinuationSeparator, type CustomXmlAttributeOptions, CustomXmlBlock, type CustomXmlBlockOptions, CustomXmlCell, type CustomXmlCellOptions, type CustomXmlDataBindingOptions, CustomXmlDelRangeEnd, CustomXmlDelRangeStart, CustomXmlInsRangeEnd, CustomXmlInsRangeStart, CustomXmlMoveFromRangeEnd, CustomXmlMoveFromRangeStart, CustomXmlMoveToRangeEnd, CustomXmlMoveToRangeStart, type CustomXmlPrOptions, CustomXmlRow, type CustomXmlRowOptions, CustomXmlRun, type CustomXmlRunOptions, DEFAULT_DRAWING_XML, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, Dir, DirOptions, Distance, DocGridAttributesProperties, DocPartBehavior, DocPartGallery, DocPartOptions, DocPartType, File as Document, File, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentBackground, DocumentBackgroundOptions, DocumentDefaults, DocumentDefaultsOptions, DocumentFooter, DocumentGridType, DocumentHeader, DocumentOptions, DocxDocument, DocxPartRefs, Drawing, DrawingOptions, DropCapType, DropDownListOptions, EMPTY_OBJECT, EditGroup, EditGroupType, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, Endnotes, ExternalHyperlink, ExternalHyperlinkOptions, FileChild, FlatTextOptions, Floating, FontAttributesProperties, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FormFieldCommonOptions, FormFieldOptions, FormFieldTextOptions, FormFieldTextType, FractionType, FrameAnchorType, type FrameOptions, FrameWrap, Frameset, type FramesetOptions, type FramesetSplitbarOptions, GlossaryDocumentOptions, GridSpan, Header, HeaderFooterGroup, HeaderFooterReferenceOptions, HeaderFooterReferenceType, HeaderFooterType, HeaderOptions, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionOptions, HorizontalPositionRelativeFrom, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, ICellMergeAttributes, ICharacterStyleOptions, IExtendedMediaData, IFrameOptions, IGroupChildMediaData, IImageOptions, IMediaData, IParagraphJsonChild, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, IRunPropertiesChangeOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISymbolRunOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITextboxOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, type IXmlableObject, IgnoreIfEmptyXmlComponent, ImageChild, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, IndentAttributesProperties, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, InternalHyperlinkOptions, LAYOUT_CATEGORIES, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LevelsOptions, LineNumberAttributes, LineNumberRestartFormat, LineRuleType, Margins, Math, MathAccentOptions, MathAccentPropertiesOptions, MathAngledBrackets, MathArgPropertiesOptions, MathBaseOptions, MathBorderBox, MathBorderBoxOptions, MathBorderBoxPropertiesOptions, MathBox, MathBoxOptions, MathBoxPropertiesOptions, MathBreakBin, MathBreakBinSub, MathChild, MathComponent, MathControlPropertiesOptions, MathCurlyBrackets, MathDegree, MathDenominator, MathEqArr, MathEqArrOptions, MathEqArrPropertiesOptions, MathFraction, MathFractionOptions, MathFractionPropertiesOptions, MathFunction, MathFunctionName, MathFunctionOptions, MathFunctionPropertiesOptions, MathGroupChr, MathGroupChrOptions, MathGroupChrPropertiesOptions, MathIntegral, MathIntegralOptions, MathJson, MathJustification, MathLimit, MathLimitLowPropertiesOptions, MathLimitLower, MathLimitLowerOptions, MathLimitUpper, MathLimitUpperOptions, MathLimitUpperPropertiesOptions, MathMatrix, MathMatrixColumnOptions, MathMatrixOptions, MathMatrixPropertiesOptions, MathNAryPropertiesOptions, MathNumerator, MathOptions, MathParagraph, MathParagraphOptions, MathPhant, MathPhantOptions, MathPhantPropertiesOptions, MathPreSubSuperScript, MathPreSubSuperScriptOptions, MathPropertiesJustification, MathPropertiesOptions, MathRadical, MathRadicalOptions, MathRadicalProperties, MathRoundBrackets, MathRun, MathRunOptions, MathRunPropertiesOptions, MathScriptType, MathSquareBrackets, MathStyleType, MathSubScript, MathSubScriptOptions, MathSubSuperScript, MathSubSuperScriptOptions, MathSubSuperScriptPropertiesOptions, MathSum, MathSumOptions, MathSuperScript, MathSuperScriptOptions, Media, MediaDataTransformation, MediaTransformation, MonthLong, MonthShort, MoveFromRangeEnd, MoveFromRangeStart, MoveToRangeEnd, MoveToRangeStart, MovedFromTextRun, MovedToTextRun, NoBreakHyphen, NormalAutofitOptions, NumberFormat, NumberProperties, NumberedItemReference, NumberedItemReferenceFormat, NumberedItemReferenceOptions, Numbering, NumberingOptions, ObjectElement, type ObjectElementOptions, type ObjectEmbedOptions, type ObjectLinkOptions, type OutputByType, type OutputType, OverlapType, Packer, type PackerOptions, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBordersOptions, PageBreak, PageBreakBefore, PageMarginAttributes, PageNumber, PageNumberElement, PageNumberSeparator, PageNumberTypeAttributes, PageOrientation, PageReference, PageReferenceOptions, PageSizeAttributes, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphOptions, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphPropertiesOptions, ParagraphPropertiesResult, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, PermEnd, PermStart, PermStartOptions, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PresetTextShapeOptions, ProofError, ProofErrorType, ProofErrorTypeValue, type PropertiesOptions, RelativeHorizontalPosition, RelativeVerticalPosition, RubyAlign, RubyOptions, Run, RunOptions, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunPropertiesOptions, RunStylePropertiesOptions, STYLE_CATEGORIES, SdtBlockOptions, SdtCellOptions, SdtComboBoxOptions, SdtDataBindingOptions, SdtDateMappingType, SdtDateOptions, SdtDropDownListOptions, SdtListItem, SdtLock, SdtPropertiesOptions, SdtRowOptions, SdtRunOptions, SdtTextOptions, SectionChild, SectionOptions, SectionProperties, SectionPropertiesChange, SectionPropertiesOptionsBase, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingAttributesProperties, ShadingType, SimpleField, SimpleMailMergeField, SmartArtChild, SmartArtCollection, type SmartArtData, SmartArtMediaData, SmartArtNode, SmartArtOptions, SmartArtRun, SmartTagRun, SmartTagRunOptions, SoftHyphen, SourceTypeOptions, SpaceType, SpacingProperties, StructuredDocumentTagBlock, StructuredDocumentTagCell, StructuredDocumentTagContent, StructuredDocumentTagProperties, StructuredDocumentTagRow, StructuredDocumentTagRun, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, StylesOptions, SubDoc, SubDocCollection, SubDocData, SubDocOptions, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableBordersOptions, TableCell, TableCellBorders, TableCellBordersOptions, TableCellOptions, TableFloatOptions, TableLayoutType, TableLookOptions, TableOfContents, TableOfContentsOptions, TableOptions, TableProperties, TablePropertiesOptionsBase, TablePropertyExOptions, TablePropertyExceptions, TableRow, TableRowOptions, TableRowProperties, TableRowPropertiesChange, TableRowPropertiesOptionsBase, TableVerticalAlign, TableWidthProperties, TextAlignmentType, TextBodyWrappingType, TextDirection, TextEffect, TextHorzOverflowType, TextInputOptions, TextRun, TextVertOverflowType, TextVerticalType, TextWrapping, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, type TreeNode, UnderlineType, type UniqueNumericIdCreator, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionOptions, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, attrObj, bookmarkUniqueNumericIdGen, buildBorderObj, buildCellMergeObj, buildCnfStyleObj, buildDeletedTableCellObj, buildDeletedTableRowObj, buildDivIdObj, buildDocumentAttributes, buildEmphasisMarkObj, buildFramePropertiesObj, buildGridSpan, buildIndentObj, buildInsertedTableCellObj, buildInsertedTableRowObj, buildNumberProperties, buildOutlineLevelObj, buildParagraphBorders, buildParagraphProperties, buildRunFontsObj, buildRunProperties, buildShadingObj, buildSpacingObj, buildTabStopObj, buildTableBorders, buildTableCellBorders, buildTableFloatPropertiesObj, buildTableProperties, buildTableRowProperties, buildTableRowPropertiesChangeObj, buildTableWidthObj, buildTextDirection, buildThematicBreakObj, buildUnderlineObj, buildVerticalMerge, chartAttr, coerceMathJson, coerceSectionChild, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createBreak, createCnfStyle, createColumns, createDataModel, createDivId, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFormFieldData, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccent, createMathAccentCharacter, createMathAccentProperties, createMathBar, createMathBarProperties, createMathBase, createMathBorderBoxProperties, createMathBoxProperties, createMathControlProperties, createMathEqArrProperties, createMathFractionProperties, createMathFunctionProperties, createMathGroupChrProperties, createMathLimitLocation, createMathLimitLowProperties, createMathLimitUpperProperties, createMathMatrixProperties, createMathNAryProperties, createMathPhantProperties, createMathPreSubSuperScriptProperties, createMathProperties, createMathRunProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRuby, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableOverlap, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapThrough, createWrapTight, createWrapTopAndBottom, docPropertiesUniqueNumericIdGen, getColorXml, getLayoutXml, getStyleXml, hashedId, hpsMeasureObj, numberValObj, onOffObj, parseArchive, parseDocument, parseDocx, parseMathChildren, patchDetector, patchDocument, sectionMarginDefaults, sectionPageSizeDefaults, stringContainerObj, stringEnumValObj, stringValObj, uniqueId, uniqueNumericIdCreator, uniqueUuid, wrapEl };
|
|
4292
4951
|
//# sourceMappingURL=index.d.mts.map
|