@office-open/docx 0.9.6 → 0.9.7
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 +10 -10
- package/dist/context-BrtlmvVE.mjs +323 -0
- package/dist/context-BrtlmvVE.mjs.map +1 -0
- package/dist/{core-properties-DMRyJWDp.d.mts → core-properties-CBMhgSrn.d.mts} +283 -153
- package/dist/core-properties-CBMhgSrn.d.mts.map +1 -0
- package/dist/{generate-B2i9hUSF.mjs → generate-BMTVflV1.mjs} +50 -34
- package/dist/generate-BMTVflV1.mjs.map +1 -0
- package/dist/generate.d.mts +1 -1
- package/dist/generate.mjs +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/parse-K59nx6MF.mjs +1927 -0
- package/dist/parse-K59nx6MF.mjs.map +1 -0
- package/dist/parse.d.mts +1 -1
- package/dist/parse.mjs +1 -1
- package/dist/parts-BQBGNSGm.mjs +12090 -0
- package/dist/parts-BQBGNSGm.mjs.map +1 -0
- package/dist/patch/index.d.mts +1 -1
- package/dist/patch/index.mjs +1 -1
- package/package.json +3 -3
- package/dist/context-DfxK5XnG.mjs +0 -5116
- package/dist/context-DfxK5XnG.mjs.map +0 -1
- package/dist/core-properties-DMRyJWDp.d.mts.map +0 -1
- package/dist/document-D2OTVcbX.mjs +0 -6363
- package/dist/document-D2OTVcbX.mjs.map +0 -1
- package/dist/generate-B2i9hUSF.mjs.map +0 -1
- package/dist/parse-DqXV5xqQ.mjs +0 -514
- package/dist/parse-DqXV5xqQ.mjs.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DataType, ParsedArchive, Percentage, PositiveUniversalMeasure, Relationships, RelativeMeasure, ThemeColor, ThemeFont, UniversalMeasure, parseArchive } from "@office-open/core";
|
|
2
2
|
import { Element } from "@office-open/xml";
|
|
3
|
-
import { BlipEffectsOptions, CustomGeometryOptions, EffectDagOptions, EffectListOptions, FillOptions, OutlineOptions, Scene3DOptions, Shape3DOptions, SourceRectangleOptions, TileOptions } from "@office-open/core/drawingml";
|
|
3
|
+
import { BlipEffectsOptions, CustomGeometryOptions, EffectDagOptions, EffectListOptions, FillOptions, OutlineOptions, Scene3DOptions, Shape3DOptions, SolidFillOptions, SourceRectangleOptions, TileOptions } from "@office-open/core/drawingml";
|
|
4
4
|
import { ChartCollection, ChartSpaceOptions } from "@office-open/core/chart";
|
|
5
5
|
import { SmartArtCollection } from "@office-open/core/smartart";
|
|
6
6
|
import { CustomDescriptor, ReadContext, WriteContext } from "@office-open/core/descriptor";
|
|
@@ -45,12 +45,14 @@ interface ContentTypesInput {
|
|
|
45
45
|
overrides: ContentTypeOverride[];
|
|
46
46
|
}
|
|
47
47
|
declare const contentTypesDesc: CustomDescriptor<ContentTypesInput>;
|
|
48
|
+
declare function withMediaDefaults(input: ContentTypesInput, mediaFileNames: string[]): ContentTypesInput;
|
|
48
49
|
declare function buildContentTypes(extras?: {
|
|
49
50
|
headerCount?: number;
|
|
50
51
|
footerCount?: number;
|
|
51
52
|
chartCount?: number;
|
|
52
53
|
smartArtCount?: number;
|
|
53
54
|
hasBibliography?: boolean;
|
|
55
|
+
hasComments?: boolean;
|
|
54
56
|
hasGlossary?: boolean;
|
|
55
57
|
hasWebSettings?: boolean;
|
|
56
58
|
altChunks?: {
|
|
@@ -365,6 +367,7 @@ interface RunStylePropertiesOptions {
|
|
|
365
367
|
complexScript?: boolean;
|
|
366
368
|
eastAsianLayout?: EastAsianLayoutOptions;
|
|
367
369
|
contentPartRId?: string;
|
|
370
|
+
w14RawXml?: string;
|
|
368
371
|
}
|
|
369
372
|
type RunPropertiesOptions = {
|
|
370
373
|
style?: string;
|
|
@@ -1305,6 +1308,150 @@ interface DocPropertiesOptions {
|
|
|
1305
1308
|
hyperlink?: HyperlinkOptions;
|
|
1306
1309
|
}
|
|
1307
1310
|
//#endregion
|
|
1311
|
+
//#region src/parts/drawing/drawing.d.ts
|
|
1312
|
+
interface Distance {
|
|
1313
|
+
distT?: number;
|
|
1314
|
+
distB?: number;
|
|
1315
|
+
distL?: number;
|
|
1316
|
+
distR?: number;
|
|
1317
|
+
}
|
|
1318
|
+
interface DrawingOptions {
|
|
1319
|
+
floating?: Floating;
|
|
1320
|
+
docProperties?: DocPropertiesOptions;
|
|
1321
|
+
outline?: OutlineOptions;
|
|
1322
|
+
fill?: FillOptions;
|
|
1323
|
+
effects?: EffectListOptions;
|
|
1324
|
+
blipEffects?: BlipEffectsOptions;
|
|
1325
|
+
tile?: TileOptions;
|
|
1326
|
+
}
|
|
1327
|
+
//#endregion
|
|
1328
|
+
//#region src/parts/drawing/text-wrap/text-wrapping.d.ts
|
|
1329
|
+
declare const TextWrappingType: {
|
|
1330
|
+
readonly NONE: 0;
|
|
1331
|
+
readonly SQUARE: 1;
|
|
1332
|
+
readonly TIGHT: 2;
|
|
1333
|
+
readonly TOP_AND_BOTTOM: 3;
|
|
1334
|
+
readonly THROUGH: 4;
|
|
1335
|
+
};
|
|
1336
|
+
declare const TextWrappingSide: {
|
|
1337
|
+
readonly BOTH_SIDES: "bothSides";
|
|
1338
|
+
readonly LEFT: "left";
|
|
1339
|
+
readonly RIGHT: "right";
|
|
1340
|
+
readonly LARGEST: "largest";
|
|
1341
|
+
};
|
|
1342
|
+
interface TextWrapping {
|
|
1343
|
+
type: (typeof TextWrappingType)[keyof typeof TextWrappingType];
|
|
1344
|
+
side?: (typeof TextWrappingSide)[keyof typeof TextWrappingSide];
|
|
1345
|
+
margins?: Distance;
|
|
1346
|
+
}
|
|
1347
|
+
//#endregion
|
|
1348
|
+
//#region src/parts/drawing/text-wrap/wrap-tight.d.ts
|
|
1349
|
+
declare const createWrapTight: (textWrapping: TextWrapping, margins: Margins | undefined, extent: {
|
|
1350
|
+
x: number;
|
|
1351
|
+
y: number;
|
|
1352
|
+
}) => string;
|
|
1353
|
+
//#endregion
|
|
1354
|
+
//#region src/parts/drawing/text-wrap/wrap-through.d.ts
|
|
1355
|
+
declare const createWrapThrough: (textWrapping: TextWrapping, margins: Margins | undefined, extent: {
|
|
1356
|
+
x: number;
|
|
1357
|
+
y: number;
|
|
1358
|
+
}) => string;
|
|
1359
|
+
//#endregion
|
|
1360
|
+
//#region src/parts/drawing/floating/floating-position.d.ts
|
|
1361
|
+
declare const HorizontalPositionRelativeFrom: {
|
|
1362
|
+
readonly CHARACTER: "character";
|
|
1363
|
+
readonly COLUMN: "column";
|
|
1364
|
+
readonly INSIDE_MARGIN: "insideMargin";
|
|
1365
|
+
readonly LEFT_MARGIN: "leftMargin";
|
|
1366
|
+
readonly MARGIN: "margin";
|
|
1367
|
+
readonly OUTSIDE_MARGIN: "outsideMargin";
|
|
1368
|
+
readonly PAGE: "page";
|
|
1369
|
+
readonly RIGHT_MARGIN: "rightMargin";
|
|
1370
|
+
};
|
|
1371
|
+
declare const VerticalPositionRelativeFrom: {
|
|
1372
|
+
readonly BOTTOM_MARGIN: "bottomMargin";
|
|
1373
|
+
readonly INSIDE_MARGIN: "insideMargin";
|
|
1374
|
+
readonly LINE: "line";
|
|
1375
|
+
readonly MARGIN: "margin";
|
|
1376
|
+
readonly OUTSIDE_MARGIN: "outsideMargin";
|
|
1377
|
+
readonly PAGE: "page";
|
|
1378
|
+
readonly PARAGRAPH: "paragraph";
|
|
1379
|
+
readonly TOP_MARGIN: "topMargin";
|
|
1380
|
+
};
|
|
1381
|
+
interface HorizontalPositionOptions {
|
|
1382
|
+
relative?: (typeof HorizontalPositionRelativeFrom)[keyof typeof HorizontalPositionRelativeFrom];
|
|
1383
|
+
align?: (typeof HorizontalPositionAlign)[keyof typeof HorizontalPositionAlign];
|
|
1384
|
+
offset?: number | UniversalMeasure;
|
|
1385
|
+
}
|
|
1386
|
+
interface VerticalPositionOptions {
|
|
1387
|
+
relative?: (typeof VerticalPositionRelativeFrom)[keyof typeof VerticalPositionRelativeFrom];
|
|
1388
|
+
align?: (typeof VerticalPositionAlign)[keyof typeof VerticalPositionAlign];
|
|
1389
|
+
offset?: number | UniversalMeasure;
|
|
1390
|
+
}
|
|
1391
|
+
interface Margins {
|
|
1392
|
+
left?: number | UniversalMeasure;
|
|
1393
|
+
bottom?: number | UniversalMeasure;
|
|
1394
|
+
top?: number | UniversalMeasure;
|
|
1395
|
+
right?: number | UniversalMeasure;
|
|
1396
|
+
}
|
|
1397
|
+
interface Floating {
|
|
1398
|
+
horizontalPosition: HorizontalPositionOptions;
|
|
1399
|
+
verticalPosition: VerticalPositionOptions;
|
|
1400
|
+
allowOverlap?: boolean;
|
|
1401
|
+
lockAnchor?: boolean;
|
|
1402
|
+
behindDocument?: boolean;
|
|
1403
|
+
layoutInCell?: boolean;
|
|
1404
|
+
margins?: Margins;
|
|
1405
|
+
wrap?: TextWrapping;
|
|
1406
|
+
zIndex?: number;
|
|
1407
|
+
}
|
|
1408
|
+
//#endregion
|
|
1409
|
+
//#region src/parts/drawing/floating/horizontal-position.d.ts
|
|
1410
|
+
declare const createHorizontalPosition: ({
|
|
1411
|
+
relative,
|
|
1412
|
+
align,
|
|
1413
|
+
offset
|
|
1414
|
+
}: HorizontalPositionOptions) => string;
|
|
1415
|
+
//#endregion
|
|
1416
|
+
//#region src/parts/drawing/floating/vertical-position.d.ts
|
|
1417
|
+
declare const createVerticalPosition: ({
|
|
1418
|
+
relative,
|
|
1419
|
+
align,
|
|
1420
|
+
offset
|
|
1421
|
+
}: VerticalPositionOptions) => string;
|
|
1422
|
+
//#endregion
|
|
1423
|
+
//#region src/parts/drawing/descriptor.d.ts
|
|
1424
|
+
interface GraphicFrameLocksOptions {
|
|
1425
|
+
noGrp?: boolean;
|
|
1426
|
+
noDrilldown?: boolean;
|
|
1427
|
+
noSelect?: boolean;
|
|
1428
|
+
noChangeAspect?: boolean;
|
|
1429
|
+
noMove?: boolean;
|
|
1430
|
+
noResize?: boolean;
|
|
1431
|
+
}
|
|
1432
|
+
interface GroupShapeLocksOptions {
|
|
1433
|
+
noGrp?: boolean;
|
|
1434
|
+
noUngrp?: boolean;
|
|
1435
|
+
noSelect?: boolean;
|
|
1436
|
+
noRot?: boolean;
|
|
1437
|
+
noChangeAspect?: boolean;
|
|
1438
|
+
noMove?: boolean;
|
|
1439
|
+
noResize?: boolean;
|
|
1440
|
+
}
|
|
1441
|
+
interface DrawingDescriptorOptions {
|
|
1442
|
+
mediaData: ExtendedMediaData;
|
|
1443
|
+
docProperties?: DocPropertiesOptions;
|
|
1444
|
+
floating?: Floating;
|
|
1445
|
+
outline?: OutlineOptions;
|
|
1446
|
+
fill?: FillOptions;
|
|
1447
|
+
effects?: EffectListOptions;
|
|
1448
|
+
blipEffects?: BlipEffectsOptions;
|
|
1449
|
+
tile?: TileOptions;
|
|
1450
|
+
graphicFrameLocks?: GraphicFrameLocksOptions | null;
|
|
1451
|
+
}
|
|
1452
|
+
declare const resetDrawingIdGen: () => void;
|
|
1453
|
+
declare const drawingDesc: CustomDescriptor<DrawingDescriptorOptions, BodyContext>;
|
|
1454
|
+
//#endregion
|
|
1308
1455
|
//#region src/parts/drawing/inline/graphic/graphic-data/wpg/wpg-group.d.ts
|
|
1309
1456
|
type GroupChild = unknown;
|
|
1310
1457
|
interface ChildOffset {
|
|
@@ -1406,13 +1553,29 @@ interface BodyPropertiesOptions {
|
|
|
1406
1553
|
flatTx?: FlatTextOptions;
|
|
1407
1554
|
}
|
|
1408
1555
|
declare const createBodyProperties: (options?: BodyPropertiesOptions) => string;
|
|
1556
|
+
declare const parseBodyProperties: (el: Element) => BodyPropertiesOptions;
|
|
1409
1557
|
//#endregion
|
|
1410
1558
|
//#region src/parts/drawing/inline/graphic/graphic-data/wps/non-visual-shape-properties.d.ts
|
|
1411
1559
|
interface NonVisualShapePropertiesOptions {
|
|
1412
|
-
|
|
1560
|
+
id?: number;
|
|
1561
|
+
name?: string;
|
|
1562
|
+
description?: string;
|
|
1563
|
+
title?: string;
|
|
1564
|
+
txBox?: string;
|
|
1565
|
+
connector?: boolean;
|
|
1413
1566
|
}
|
|
1414
1567
|
//#endregion
|
|
1415
1568
|
//#region src/parts/drawing/inline/graphic/graphic-data/wps/wps-shape.d.ts
|
|
1569
|
+
interface StyleMatrixReferenceOptions {
|
|
1570
|
+
idx: string;
|
|
1571
|
+
color?: SolidFillOptions;
|
|
1572
|
+
}
|
|
1573
|
+
interface ShapeStyleOptions {
|
|
1574
|
+
lineReference?: StyleMatrixReferenceOptions;
|
|
1575
|
+
fillReference?: StyleMatrixReferenceOptions;
|
|
1576
|
+
effectReference?: StyleMatrixReferenceOptions;
|
|
1577
|
+
fontReference?: StyleMatrixReferenceOptions;
|
|
1578
|
+
}
|
|
1416
1579
|
interface WpsShapeCoreOptions {
|
|
1417
1580
|
children: (ParagraphOptions | string)[];
|
|
1418
1581
|
nonVisualProperties?: NonVisualShapePropertiesOptions;
|
|
@@ -1424,6 +1587,7 @@ interface WpsShapeCoreOptions {
|
|
|
1424
1587
|
effects?: EffectListOptions;
|
|
1425
1588
|
scene3d?: Scene3DOptions;
|
|
1426
1589
|
shape3d?: Shape3DOptions;
|
|
1590
|
+
style?: ShapeStyleOptions;
|
|
1427
1591
|
}
|
|
1428
1592
|
type WpsShapeOptions = WpsShapeCoreOptions & {
|
|
1429
1593
|
transformation: MediaDataTransformation;
|
|
@@ -1454,12 +1618,26 @@ interface MediaDataTransformation {
|
|
|
1454
1618
|
horizontal?: boolean;
|
|
1455
1619
|
};
|
|
1456
1620
|
rotation?: number;
|
|
1621
|
+
effectExtent?: {
|
|
1622
|
+
l: number;
|
|
1623
|
+
t: number;
|
|
1624
|
+
r: number;
|
|
1625
|
+
b: number;
|
|
1626
|
+
};
|
|
1627
|
+
}
|
|
1628
|
+
interface PicCnvPrOptions {
|
|
1629
|
+
id?: number;
|
|
1630
|
+
name?: string;
|
|
1631
|
+
descr?: string;
|
|
1632
|
+
preferRelativeResize?: boolean;
|
|
1457
1633
|
}
|
|
1458
1634
|
interface CoreMediaData {
|
|
1459
1635
|
fileName: string;
|
|
1460
1636
|
transformation: MediaDataTransformation;
|
|
1461
1637
|
data: Uint8Array;
|
|
1462
1638
|
srcRect?: SourceRectangleOptions;
|
|
1639
|
+
cNvPr?: PicCnvPrOptions;
|
|
1640
|
+
useLocalDpi?: boolean;
|
|
1463
1641
|
}
|
|
1464
1642
|
interface RegularMediaData {
|
|
1465
1643
|
type: "jpg" | "png" | "gif" | "bmp" | "tif" | "ico" | "emf" | "wmf";
|
|
@@ -1477,7 +1655,7 @@ interface WpgCommonMediaData {
|
|
|
1477
1655
|
outline?: OutlineOptions;
|
|
1478
1656
|
fill?: FillOptions;
|
|
1479
1657
|
}
|
|
1480
|
-
type GroupChildMediaData = (WpsMediaData | MediaData) & WpgCommonMediaData;
|
|
1658
|
+
type GroupChildMediaData = (WpsMediaData | MediaData | WpgMediaData) & WpgCommonMediaData;
|
|
1481
1659
|
interface WpgMediaData {
|
|
1482
1660
|
type: "wpg";
|
|
1483
1661
|
transformation: MediaDataTransformation;
|
|
@@ -1486,6 +1664,7 @@ interface WpgMediaData {
|
|
|
1486
1664
|
chExt?: ChildExtent;
|
|
1487
1665
|
fill?: FillOptions;
|
|
1488
1666
|
effects?: EffectListOptions;
|
|
1667
|
+
grpSpLocks?: GroupShapeLocksOptions;
|
|
1489
1668
|
}
|
|
1490
1669
|
interface ChartMediaData {
|
|
1491
1670
|
type: "chart";
|
|
@@ -1514,6 +1693,12 @@ interface MediaTransformation {
|
|
|
1514
1693
|
horizontal?: boolean;
|
|
1515
1694
|
};
|
|
1516
1695
|
rotation?: number;
|
|
1696
|
+
effectExtent?: {
|
|
1697
|
+
l: number;
|
|
1698
|
+
t: number;
|
|
1699
|
+
r: number;
|
|
1700
|
+
b: number;
|
|
1701
|
+
};
|
|
1517
1702
|
}
|
|
1518
1703
|
declare const createTransformation: (options: MediaTransformation) => MediaDataTransformation;
|
|
1519
1704
|
declare class Media {
|
|
@@ -1523,132 +1708,6 @@ declare class Media {
|
|
|
1523
1708
|
get array(): MediaData[];
|
|
1524
1709
|
}
|
|
1525
1710
|
//#endregion
|
|
1526
|
-
//#region src/parts/drawing/text-wrap/text-wrapping.d.ts
|
|
1527
|
-
declare const TextWrappingType: {
|
|
1528
|
-
readonly NONE: 0;
|
|
1529
|
-
readonly SQUARE: 1;
|
|
1530
|
-
readonly TIGHT: 2;
|
|
1531
|
-
readonly TOP_AND_BOTTOM: 3;
|
|
1532
|
-
readonly THROUGH: 4;
|
|
1533
|
-
};
|
|
1534
|
-
declare const TextWrappingSide: {
|
|
1535
|
-
readonly BOTH_SIDES: "bothSides";
|
|
1536
|
-
readonly LEFT: "left";
|
|
1537
|
-
readonly RIGHT: "right";
|
|
1538
|
-
readonly LARGEST: "largest";
|
|
1539
|
-
};
|
|
1540
|
-
interface TextWrapping {
|
|
1541
|
-
type: (typeof TextWrappingType)[keyof typeof TextWrappingType];
|
|
1542
|
-
side?: (typeof TextWrappingSide)[keyof typeof TextWrappingSide];
|
|
1543
|
-
margins?: Distance;
|
|
1544
|
-
}
|
|
1545
|
-
//#endregion
|
|
1546
|
-
//#region src/parts/drawing/text-wrap/wrap-tight.d.ts
|
|
1547
|
-
declare const createWrapTight: (textWrapping: TextWrapping, margins: Margins | undefined, extent: {
|
|
1548
|
-
x: number;
|
|
1549
|
-
y: number;
|
|
1550
|
-
}) => string;
|
|
1551
|
-
//#endregion
|
|
1552
|
-
//#region src/parts/drawing/text-wrap/wrap-through.d.ts
|
|
1553
|
-
declare const createWrapThrough: (textWrapping: TextWrapping, margins: Margins | undefined, extent: {
|
|
1554
|
-
x: number;
|
|
1555
|
-
y: number;
|
|
1556
|
-
}) => string;
|
|
1557
|
-
//#endregion
|
|
1558
|
-
//#region src/parts/drawing/floating/floating-position.d.ts
|
|
1559
|
-
declare const HorizontalPositionRelativeFrom: {
|
|
1560
|
-
readonly CHARACTER: "character";
|
|
1561
|
-
readonly COLUMN: "column";
|
|
1562
|
-
readonly INSIDE_MARGIN: "insideMargin";
|
|
1563
|
-
readonly LEFT_MARGIN: "leftMargin";
|
|
1564
|
-
readonly MARGIN: "margin";
|
|
1565
|
-
readonly OUTSIDE_MARGIN: "outsideMargin";
|
|
1566
|
-
readonly PAGE: "page";
|
|
1567
|
-
readonly RIGHT_MARGIN: "rightMargin";
|
|
1568
|
-
};
|
|
1569
|
-
declare const VerticalPositionRelativeFrom: {
|
|
1570
|
-
readonly BOTTOM_MARGIN: "bottomMargin";
|
|
1571
|
-
readonly INSIDE_MARGIN: "insideMargin";
|
|
1572
|
-
readonly LINE: "line";
|
|
1573
|
-
readonly MARGIN: "margin";
|
|
1574
|
-
readonly OUTSIDE_MARGIN: "outsideMargin";
|
|
1575
|
-
readonly PAGE: "page";
|
|
1576
|
-
readonly PARAGRAPH: "paragraph";
|
|
1577
|
-
readonly TOP_MARGIN: "topMargin";
|
|
1578
|
-
};
|
|
1579
|
-
interface HorizontalPositionOptions {
|
|
1580
|
-
relative?: (typeof HorizontalPositionRelativeFrom)[keyof typeof HorizontalPositionRelativeFrom];
|
|
1581
|
-
align?: (typeof HorizontalPositionAlign)[keyof typeof HorizontalPositionAlign];
|
|
1582
|
-
offset?: number | UniversalMeasure;
|
|
1583
|
-
}
|
|
1584
|
-
interface VerticalPositionOptions {
|
|
1585
|
-
relative?: (typeof VerticalPositionRelativeFrom)[keyof typeof VerticalPositionRelativeFrom];
|
|
1586
|
-
align?: (typeof VerticalPositionAlign)[keyof typeof VerticalPositionAlign];
|
|
1587
|
-
offset?: number | UniversalMeasure;
|
|
1588
|
-
}
|
|
1589
|
-
interface Margins {
|
|
1590
|
-
left?: number | UniversalMeasure;
|
|
1591
|
-
bottom?: number | UniversalMeasure;
|
|
1592
|
-
top?: number | UniversalMeasure;
|
|
1593
|
-
right?: number | UniversalMeasure;
|
|
1594
|
-
}
|
|
1595
|
-
interface Floating {
|
|
1596
|
-
horizontalPosition: HorizontalPositionOptions;
|
|
1597
|
-
verticalPosition: VerticalPositionOptions;
|
|
1598
|
-
allowOverlap?: boolean;
|
|
1599
|
-
lockAnchor?: boolean;
|
|
1600
|
-
behindDocument?: boolean;
|
|
1601
|
-
layoutInCell?: boolean;
|
|
1602
|
-
margins?: Margins;
|
|
1603
|
-
wrap?: TextWrapping;
|
|
1604
|
-
zIndex?: number;
|
|
1605
|
-
}
|
|
1606
|
-
//#endregion
|
|
1607
|
-
//#region src/parts/drawing/floating/horizontal-position.d.ts
|
|
1608
|
-
declare const createHorizontalPosition: ({
|
|
1609
|
-
relative,
|
|
1610
|
-
align,
|
|
1611
|
-
offset
|
|
1612
|
-
}: HorizontalPositionOptions) => string;
|
|
1613
|
-
//#endregion
|
|
1614
|
-
//#region src/parts/drawing/floating/vertical-position.d.ts
|
|
1615
|
-
declare const createVerticalPosition: ({
|
|
1616
|
-
relative,
|
|
1617
|
-
align,
|
|
1618
|
-
offset
|
|
1619
|
-
}: VerticalPositionOptions) => string;
|
|
1620
|
-
//#endregion
|
|
1621
|
-
//#region src/parts/drawing/drawing.d.ts
|
|
1622
|
-
interface Distance {
|
|
1623
|
-
distT?: number;
|
|
1624
|
-
distB?: number;
|
|
1625
|
-
distL?: number;
|
|
1626
|
-
distR?: number;
|
|
1627
|
-
}
|
|
1628
|
-
interface DrawingOptions {
|
|
1629
|
-
floating?: Floating;
|
|
1630
|
-
docProperties?: DocPropertiesOptions;
|
|
1631
|
-
outline?: OutlineOptions;
|
|
1632
|
-
fill?: FillOptions;
|
|
1633
|
-
effects?: EffectListOptions;
|
|
1634
|
-
blipEffects?: BlipEffectsOptions;
|
|
1635
|
-
tile?: TileOptions;
|
|
1636
|
-
}
|
|
1637
|
-
//#endregion
|
|
1638
|
-
//#region src/parts/drawing/descriptor.d.ts
|
|
1639
|
-
interface DrawingDescriptorOptions {
|
|
1640
|
-
mediaData: ExtendedMediaData;
|
|
1641
|
-
docProperties?: DocPropertiesOptions;
|
|
1642
|
-
floating?: Floating;
|
|
1643
|
-
outline?: OutlineOptions;
|
|
1644
|
-
fill?: FillOptions;
|
|
1645
|
-
effects?: EffectListOptions;
|
|
1646
|
-
blipEffects?: BlipEffectsOptions;
|
|
1647
|
-
tile?: TileOptions;
|
|
1648
|
-
}
|
|
1649
|
-
declare const resetDrawingIdGen: () => void;
|
|
1650
|
-
declare const drawingDesc: CustomDescriptor<DrawingDescriptorOptions, BodyContext>;
|
|
1651
|
-
//#endregion
|
|
1652
1711
|
//#region src/parts/paragraph/run/image-run.d.ts
|
|
1653
1712
|
interface CoreImageOptions {
|
|
1654
1713
|
transformation: MediaTransformation;
|
|
@@ -1660,6 +1719,10 @@ interface CoreImageOptions {
|
|
|
1660
1719
|
blipEffects?: BlipEffectsOptions;
|
|
1661
1720
|
srcRect?: SourceRectangleOptions;
|
|
1662
1721
|
tile?: TileOptions;
|
|
1722
|
+
cNvPr?: PicCnvPrOptions;
|
|
1723
|
+
runPropertiesRawXml?: string;
|
|
1724
|
+
graphicFrameLocks?: GraphicFrameLocksOptions | null;
|
|
1725
|
+
useLocalDpi?: boolean;
|
|
1663
1726
|
}
|
|
1664
1727
|
interface RegularImageOptions {
|
|
1665
1728
|
type: "jpg" | "png" | "gif" | "bmp" | "tif" | "ico" | "emf" | "wmf";
|
|
@@ -1671,7 +1734,7 @@ interface SvgMediaOptions {
|
|
|
1671
1734
|
fallback: RegularImageOptions;
|
|
1672
1735
|
}
|
|
1673
1736
|
type ImageOptions = (RegularImageOptions | SvgMediaOptions) & CoreImageOptions;
|
|
1674
|
-
declare const createImageData: (data: Uint8Array, transformation: MediaTransformation, key: string, srcRect?: SourceRectangleOptions) => Pick<MediaData, "data" | "fileName" | "transformation" | "srcRect">;
|
|
1737
|
+
declare const createImageData: (data: Uint8Array, transformation: MediaTransformation, key: string, srcRect?: SourceRectangleOptions, cNvPr?: PicCnvPrOptions) => Pick<MediaData, "data" | "fileName" | "transformation" | "srcRect" | "cNvPr">;
|
|
1675
1738
|
//#endregion
|
|
1676
1739
|
//#region src/parts/paragraph/run/chart-run.d.ts
|
|
1677
1740
|
interface ChartOptions extends ChartSpaceOptions {
|
|
@@ -1697,26 +1760,57 @@ interface SmartArtOptions {
|
|
|
1697
1760
|
color?: string;
|
|
1698
1761
|
}
|
|
1699
1762
|
//#endregion
|
|
1763
|
+
//#region src/parts/document/document-background/document-background.d.ts
|
|
1764
|
+
interface BackgroundImageOptions {
|
|
1765
|
+
data: DataType;
|
|
1766
|
+
type: "jpg" | "png" | "gif" | "bmp" | "tif" | "ico" | "emf" | "wmf";
|
|
1767
|
+
}
|
|
1768
|
+
interface DocumentBackgroundOptions {
|
|
1769
|
+
color?: string;
|
|
1770
|
+
themeColor?: string;
|
|
1771
|
+
themeShade?: string;
|
|
1772
|
+
themeTint?: string;
|
|
1773
|
+
image?: BackgroundImageOptions;
|
|
1774
|
+
rawXml?: string;
|
|
1775
|
+
rawMedia?: BackgroundRawMediaOptions[];
|
|
1776
|
+
}
|
|
1777
|
+
interface BackgroundRawMediaOptions {
|
|
1778
|
+
fileName: string;
|
|
1779
|
+
data: Uint8Array;
|
|
1780
|
+
type: "jpg" | "png" | "gif" | "bmp" | "tif" | "ico" | "emf" | "wmf";
|
|
1781
|
+
}
|
|
1782
|
+
//#endregion
|
|
1700
1783
|
//#region src/parts/paragraph/run/wps-shape-run.d.ts
|
|
1701
1784
|
interface CoreShapeOptions {
|
|
1702
1785
|
transformation: MediaTransformation;
|
|
1703
1786
|
floating?: Floating;
|
|
1704
1787
|
altText?: DocPropertiesOptions;
|
|
1788
|
+
vmlFallback?: string;
|
|
1789
|
+
vmlFallbackMedia?: BackgroundRawMediaOptions[];
|
|
1790
|
+
mcChoiceRequires?: string;
|
|
1791
|
+
runPropertiesRawXml?: string;
|
|
1792
|
+
graphicFrameLocks?: GraphicFrameLocksOptions | null;
|
|
1705
1793
|
}
|
|
1706
|
-
type WpsShapeRunOptions = WpsShapeCoreOptions &
|
|
1707
|
-
type: "wps";
|
|
1708
|
-
} & CoreShapeOptions;
|
|
1794
|
+
type WpsShapeRunOptions = WpsShapeCoreOptions & CoreShapeOptions;
|
|
1709
1795
|
//#endregion
|
|
1710
1796
|
//#region src/parts/paragraph/run/wpg-group-run.d.ts
|
|
1711
1797
|
interface CoreGroupOptions {
|
|
1712
1798
|
children: GroupChildMediaData[];
|
|
1713
1799
|
transformation: MediaTransformation;
|
|
1800
|
+
chOff?: ChildOffset;
|
|
1801
|
+
chExt?: ChildExtent;
|
|
1802
|
+
fill?: FillOptions;
|
|
1803
|
+
effects?: EffectListOptions;
|
|
1714
1804
|
floating?: Floating;
|
|
1715
1805
|
altText?: DocPropertiesOptions;
|
|
1806
|
+
vmlFallback?: string;
|
|
1807
|
+
vmlFallbackMedia?: BackgroundRawMediaOptions[];
|
|
1808
|
+
mcChoiceRequires?: string;
|
|
1809
|
+
runPropertiesRawXml?: string;
|
|
1810
|
+
graphicFrameLocks?: GraphicFrameLocksOptions | null;
|
|
1811
|
+
grpSpLocks?: GroupShapeLocksOptions;
|
|
1716
1812
|
}
|
|
1717
|
-
type WpgGroupRunOptions =
|
|
1718
|
-
type: "wpg";
|
|
1719
|
-
} & CoreGroupOptions;
|
|
1813
|
+
type WpgGroupRunOptions = CoreGroupOptions;
|
|
1720
1814
|
//#endregion
|
|
1721
1815
|
//#region src/parts/paragraph/run/simple-field.d.ts
|
|
1722
1816
|
interface SimpleFieldOptions {
|
|
@@ -1904,7 +1998,9 @@ type ParagraphChild = ChartChild | SmartArtChild | ImageChild | MathChild | {
|
|
|
1904
1998
|
} | {
|
|
1905
1999
|
bookmarkEnd: number;
|
|
1906
2000
|
} | {
|
|
1907
|
-
wpsShape:
|
|
2001
|
+
wpsShape: WpsShapeRunOptions;
|
|
2002
|
+
} | {
|
|
2003
|
+
wpgGroup: WpgGroupRunOptions;
|
|
1908
2004
|
} | {
|
|
1909
2005
|
proofErr: "spellStart" | "spellEnd" | "gramStart" | "gramEnd";
|
|
1910
2006
|
} | {
|
|
@@ -1990,6 +2086,8 @@ type ParagraphChild = ChartChild | SmartArtChild | ImageChild | MathChild | {
|
|
|
1990
2086
|
complexField: {
|
|
1991
2087
|
instruction: string;
|
|
1992
2088
|
result?: string;
|
|
2089
|
+
rPrXml?: string;
|
|
2090
|
+
resultRPrXml?: string;
|
|
1993
2091
|
};
|
|
1994
2092
|
} | {
|
|
1995
2093
|
seqIdentifier: string;
|
|
@@ -2369,6 +2467,13 @@ type SectionChild = {
|
|
|
2369
2467
|
subDoc: SubDocOptions;
|
|
2370
2468
|
} | {
|
|
2371
2469
|
customXml: CustomXmlBlockOptions;
|
|
2470
|
+
} | {
|
|
2471
|
+
bookmarkStart: {
|
|
2472
|
+
id: number;
|
|
2473
|
+
name: string;
|
|
2474
|
+
};
|
|
2475
|
+
} | {
|
|
2476
|
+
bookmarkEnd: number;
|
|
2372
2477
|
} | {
|
|
2373
2478
|
rawXml: string;
|
|
2374
2479
|
};
|
|
@@ -2694,6 +2799,7 @@ interface NumberingOptions {
|
|
|
2694
2799
|
config: {
|
|
2695
2800
|
levels: LevelsOptions[];
|
|
2696
2801
|
reference: string;
|
|
2802
|
+
extraOptions?: AbstractNumberingExtraOptions;
|
|
2697
2803
|
}[];
|
|
2698
2804
|
numIdMacAtCleanup?: number;
|
|
2699
2805
|
numPicBullets?: {
|
|
@@ -2719,6 +2825,13 @@ declare class Numbering {
|
|
|
2719
2825
|
}[];
|
|
2720
2826
|
get referenceConfig(): LevelsOptions[][];
|
|
2721
2827
|
}
|
|
2828
|
+
interface AbstractNumberingExtraOptions {
|
|
2829
|
+
nsid?: string;
|
|
2830
|
+
tmpl?: string;
|
|
2831
|
+
name?: string;
|
|
2832
|
+
styleLink?: string;
|
|
2833
|
+
numStyleLink?: string;
|
|
2834
|
+
}
|
|
2722
2835
|
declare function parseNumberingDefinitions(el: Element, parseParagraphProperties: (el: Element, ctx: DocxReadContext) => Record<string, unknown>, ctx: DocxReadContext): NumberingOptions | undefined;
|
|
2723
2836
|
//#endregion
|
|
2724
2837
|
//#region src/parts/numbering/abstract-numbering.d.ts
|
|
@@ -2818,6 +2931,8 @@ interface CompatibilityOptions {
|
|
|
2818
2931
|
//#endregion
|
|
2819
2932
|
//#region src/parts/settings/settings.d.ts
|
|
2820
2933
|
interface SettingsOptions {
|
|
2934
|
+
rawXml?: string;
|
|
2935
|
+
rootAttributes?: Record<string, string>;
|
|
2821
2936
|
compatibilityModeVersion?: number;
|
|
2822
2937
|
evenAndOddHeaders?: boolean;
|
|
2823
2938
|
trackRevisions?: boolean;
|
|
@@ -3199,6 +3314,8 @@ interface StylesOptions {
|
|
|
3199
3314
|
characterStyles?: (BaseCharacterStyleOptions & {
|
|
3200
3315
|
id: string;
|
|
3201
3316
|
})[];
|
|
3317
|
+
latentStylesXml?: string;
|
|
3318
|
+
docDefaultsXml?: string;
|
|
3202
3319
|
}
|
|
3203
3320
|
declare class Styles {
|
|
3204
3321
|
private attributes;
|
|
@@ -3341,6 +3458,7 @@ interface DocxPartRefs {
|
|
|
3341
3458
|
charts: Map<string, string>;
|
|
3342
3459
|
diagramData: Map<string, string>;
|
|
3343
3460
|
media: Map<string, string>;
|
|
3461
|
+
partMedia: Map<string, Map<string, string>>;
|
|
3344
3462
|
afChunks: Map<string, string>;
|
|
3345
3463
|
subDocs: Map<string, string>;
|
|
3346
3464
|
bibliography?: string;
|
|
@@ -3425,8 +3543,10 @@ declare class DocxReadContext implements ReadContext {
|
|
|
3425
3543
|
docx: DocxDocument;
|
|
3426
3544
|
styleCache: Map<string, Element>;
|
|
3427
3545
|
numberingCache: Map<string, Element>;
|
|
3546
|
+
currentPart: string;
|
|
3428
3547
|
constructor(docx: DocxDocument, styleCache: Map<string, Element>, numberingCache: Map<string, Element>);
|
|
3429
3548
|
resolveRelationship(rId: string): string | undefined;
|
|
3549
|
+
withPart<T>(partPath: string, fn: () => T): T;
|
|
3430
3550
|
getPart(path: string): Element | undefined;
|
|
3431
3551
|
getRaw(path: string): Uint8Array | undefined;
|
|
3432
3552
|
}
|
|
@@ -3434,6 +3554,7 @@ declare class DocxReadContext implements ReadContext {
|
|
|
3434
3554
|
//#region src/parts/fonts/font-wrapper.d.ts
|
|
3435
3555
|
type EmbeddedFontOptionsWithKey = EmbeddedFontOptions & {
|
|
3436
3556
|
fontKey: string;
|
|
3557
|
+
embedRid?: string;
|
|
3437
3558
|
};
|
|
3438
3559
|
declare class FontWrapper implements ViewWrapper {
|
|
3439
3560
|
options: EmbeddedFontOptions[];
|
|
@@ -3443,10 +3564,26 @@ declare class FontWrapper implements ViewWrapper {
|
|
|
3443
3564
|
}
|
|
3444
3565
|
//#endregion
|
|
3445
3566
|
//#region src/parts/fonts/font-table.d.ts
|
|
3567
|
+
interface FontSignature {
|
|
3568
|
+
usb0: string;
|
|
3569
|
+
usb1: string;
|
|
3570
|
+
usb2: string;
|
|
3571
|
+
usb3: string;
|
|
3572
|
+
csb0: string;
|
|
3573
|
+
csb1: string;
|
|
3574
|
+
}
|
|
3446
3575
|
interface EmbeddedFontOptions {
|
|
3447
3576
|
name: string;
|
|
3448
|
-
data
|
|
3577
|
+
data?: Buffer;
|
|
3449
3578
|
characterSet?: (typeof CharacterSet)[keyof typeof CharacterSet];
|
|
3579
|
+
family?: string;
|
|
3580
|
+
pitch?: string;
|
|
3581
|
+
panose1?: string;
|
|
3582
|
+
altName?: string;
|
|
3583
|
+
sig?: FontSignature;
|
|
3584
|
+
rawOdttf?: boolean;
|
|
3585
|
+
odttfPath?: string;
|
|
3586
|
+
fontKey?: string;
|
|
3450
3587
|
}
|
|
3451
3588
|
//#endregion
|
|
3452
3589
|
//#region src/parts/settings/descriptor.d.ts
|
|
@@ -3490,19 +3627,6 @@ interface CustomPropertiesInput {
|
|
|
3490
3627
|
}
|
|
3491
3628
|
declare const customPropertiesDesc: CustomDescriptor<CustomPropertiesInput>;
|
|
3492
3629
|
//#endregion
|
|
3493
|
-
//#region src/parts/document/document-background/document-background.d.ts
|
|
3494
|
-
interface BackgroundImageOptions {
|
|
3495
|
-
data: DataType;
|
|
3496
|
-
type: "jpg" | "png" | "gif" | "bmp" | "tif" | "ico" | "emf" | "wmf";
|
|
3497
|
-
}
|
|
3498
|
-
interface DocumentBackgroundOptions {
|
|
3499
|
-
color?: string;
|
|
3500
|
-
themeColor?: string;
|
|
3501
|
-
themeShade?: string;
|
|
3502
|
-
themeTint?: string;
|
|
3503
|
-
image?: BackgroundImageOptions;
|
|
3504
|
-
}
|
|
3505
|
-
//#endregion
|
|
3506
3630
|
//#region src/parts/core-properties.d.ts
|
|
3507
3631
|
interface FeaturesOptions {
|
|
3508
3632
|
trackRevisions?: boolean;
|
|
@@ -3518,6 +3642,7 @@ interface DocumentOptions {
|
|
|
3518
3642
|
description?: string;
|
|
3519
3643
|
lastModifiedBy?: string;
|
|
3520
3644
|
revision?: number;
|
|
3645
|
+
lastPrinted?: string;
|
|
3521
3646
|
externalStyles?: string;
|
|
3522
3647
|
styles?: StylesOptions;
|
|
3523
3648
|
numbering?: NumberingOptions;
|
|
@@ -3559,6 +3684,10 @@ interface DocumentOptions {
|
|
|
3559
3684
|
settings?: SettingsOptions;
|
|
3560
3685
|
webSettings?: WebSettingsOptions;
|
|
3561
3686
|
contentTypes?: ContentTypesInput;
|
|
3687
|
+
rawParts?: {
|
|
3688
|
+
path: string;
|
|
3689
|
+
data: Uint8Array;
|
|
3690
|
+
}[];
|
|
3562
3691
|
appProperties?: AppPropertiesOptions;
|
|
3563
3692
|
}
|
|
3564
3693
|
interface CorePropertiesInput {
|
|
@@ -3569,8 +3698,9 @@ interface CorePropertiesInput {
|
|
|
3569
3698
|
description?: string;
|
|
3570
3699
|
lastModifiedBy?: string;
|
|
3571
3700
|
revision?: number;
|
|
3701
|
+
lastPrinted?: string;
|
|
3572
3702
|
}
|
|
3573
3703
|
declare const corePropertiesDesc: CustomDescriptor<CorePropertiesInput>;
|
|
3574
3704
|
//#endregion
|
|
3575
|
-
export {
|
|
3576
|
-
//# sourceMappingURL=core-properties-
|
|
3705
|
+
export { RevisionViewOptions as $, RunPropertiesChangeOptions as $a, TablePropertiesOptions as $i, SmartArtOptions as $n, TextWrappingSide as $r, PageSizeAttributes as $t, SubDocData as A, TableVerticalAlign as Aa, YearShort as Ai, DropDownListOptions as An, createBodyProperties as Ar, parseSectionPropertiesEl as At, EndnotePropertiesOptions as B, SdtComboBoxOptions as Ba, VerticalPositionAlign as Bi, PositionalTabAlignment as Bn, drawingDesc as Br, LineNumberRestartFormat as Bt, TargetScreenSize as C, IndentAttributesProperties as Ca, MonthShort as Ci, ParagraphOptions as Cn, NormalAutofitOptions as Cr, sectionPageSizeDefaults as Ct, framesetXml as D, TableWidthProperties as Da, SoftHyphen as Di, ProofErrorTypeValue as Dn, TextVertOverflowType as Dr, SectionOptions as Dt, frameXml as E, AlignmentType as Ea, Separator as Ei, ProofErrorType as En, TextHorzOverflowType as Er, SectionChild as Et, parseStyleDefinitions as F, VerticalMergeRevisionType as Fa, FrameWrap as Fi, TextInputOptions as Fn, WpgGroupCoreOptions as Fr, HeaderFooterType as Ft, MailMergeDocType as G, SdtListItem as Ga, SdtRowOptions as Gi, CommentsOptions as Gn, HorizontalPositionOptions as Gr, PageBorderDisplay as Gt, HyphenationOptions as H, SdtDateMappingType as Ha, tableDesc as Hi, PositionalTabOptions as Hn, createVerticalPosition as Hr, PageTextDirectionType as Ht, AutoCaptionOptions as I, stringifyTableOfContents as Ia, XYFrameOptions as Ii, createFormFieldData as In, WpgGroupOptions as Ir, createHeaderFooterReference as It, MathPropertiesOptions as J, SdtTextOptions as Ja, TextDirection as Ji, WpsShapeRunOptions as Jn, VerticalPositionOptions as Jr, PageBordersOptions as Jt, MailMergeOptions as K, SdtLock as Ka, TableRowOptions as Ki, SimpleFieldOptions as Kn, HorizontalPositionRelativeFrom as Kr, PageBorderOffsetFrom as Kt, CaptionOptions as L, parseToc as La, HorizontalPositionAlign as Li, parseFormFieldData as Ln, DrawingDescriptorOptions as Lr, SectionType as Lt, StylesOptions as M, VerticalAlignTable as Ma, DropCapType as Mi, FormFieldOptions as Mn, ChildExtent as Mr, stringifySectionPropertiesXml as Mt, buildNumberingCache as N, createVerticalAlign as Na, FrameAnchorType as Ni, FormFieldTextOptions as Nn, ChildOffset as Nr, HeaderFooterReferenceOptions as Nt, webSettingsDesc as O, WidthType as Oa, Tab as Oi, SmartTagRunOptions as On, TextVerticalType as Or, VmlShapeStyle as Ot, buildStyleCache as P, CellMergeAttributes as Pa, FrameOptions$1 as Pi, FormFieldTextType as Pn, GroupChild as Pr, HeaderFooterReferenceType as Pt, ReadModeInkLockDownOptions as Q, ParagraphRunPropertiesOptions as Qa, TablePropertiesChangeOptions as Qi, SmartArtNode as Qn, TextWrapping as Qr, PageOrientation as Qt, CaptionsOptions as R, SdtCheckboxOptions as Ra, NumberFormat as Ri, RubyAlign as Rn, GraphicFrameLocksOptions as Rr, createSectionType as Rt, DivOptions as S, BreakTypeValue as Sa, MonthLong as Si, ParagraphChild as Sn, bibliographyDesc as So, FlatTextOptions as Sr, sectionMarginDefaults as St, WebSettingsOptions as T, BordersOptions as Ta, PageNumberElement as Ti, SmartArtChild as Tn, TextBodyWrappingType as Tr, DocumentAttributeNamespaces as Tt, MailMergeDataType as U, SdtDateOptions as Ua, TableOptions as Ui, PositionalTabRelativeTo as Un, createHorizontalPosition as Ur, PageMarginAttributes as Ut, FootnotePropertiesOptions as V, SdtDataBindingOptions as Va, setTableParseChild as Vi, PositionalTabLeader as Vn, resetDrawingIdGen as Vr, createLineNumberType as Vt, MailMergeDest as W, SdtDropDownListOptions as Wa, HeightRule as Wi, CommentOptions as Wn, Floating as Wr, createPageMargin as Wt, OdsoFieldType as X, TableOfContentsOptions as Xa, TablePropertyExChangeOptions as Xi, BackgroundRawMediaOptions as Xn, createWrapThrough as Xr, PageNumberTypeAttributes as Xt, OdsoFieldMapDataOptions as Y, StyleLevel as Ya, VerticalMergeType as Yi, BackgroundImageOptions as Yn, VerticalPositionRelativeFrom as Yr, PageNumberSeparator as Yt, OdsoOptions as Z, HighlightColor as Za, TablePropertyExOptions as Zi, DocumentBackgroundOptions as Zn, createWrapTight as Zr, createPageNumberType as Zt, DocxPartRefs as _, TabStopType as _a, DayLong as _i, TableRowPropertiesOptions as _n, buildContentTypes as _o, ShapeStyleOptions as _r, glossaryDesc as _t, CustomPropertiesInput as a, RelativeVerticalPosition as aa, ParagraphPropertiesChangeOptions as ai, ColumnAttributes as an, EmphasisMarkType as ao, createTransformation as ar, AbstractNumberingOptions as at, parseDocx as b, SpacingProperties as ba, FootnoteReferenceElement as bi, ImageChild as bn, BibliographyOptions as bo, WpsShapeOptions as br, SectionPropertiesOptions as bt, AppPropertiesInput as c, TABLE_BORDERS_NONE as ca, ParagraphStylePropertiesOptions as ci, CustomXmlCellOptions as cn, BorderOptions as co, GroupChildMediaData as cr, parseNumberingDefinitions as ct, settingsDesc as d, MathRunPropertiesOptions as da, PageNumber as di, CustomXmlRowOptions as dn, AltChunkCollection as do, PicCnvPrOptions as dr, LevelsOptions as dt, TablePropertiesOptionsBase as ea, TextWrappingType as ei, createPageSize as en, RunPropertiesOptions as eo, ChartOptions as er, RsidsOptions as et, EmbeddedFontOptionsWithKey as f, MathScriptType as fa, ParagraphRunOptions as fi, CustomXmlRunOptions as fn, AltChunkData as fo, SmartArtMediaData as fr, DocPartBehavior as ft, DocxDocument as g, TabStopPosition as ga, ContinuationSeparator as gi, TableRowPropertiesChangeOptions as gn, ContentTypesInput as go, WpsMediaData as gr, GlossaryDocumentOptions as gt, DocxWriteContext as h, TabStopDefinition as ha, CarriageReturn as hi, CnfStyleOptions as hn, ContentTypeOverride as ho, WpgMediaData as hr, DocPartType as ht, corePropertiesDesc as i, RelativeHorizontalPosition as ia, LevelParagraphStylePropertiesOptions as ii, ColumnsAttributes as in, FontAttributesProperties as io, MediaTransformation as ir, ConcreteNumberingOptions as it, Styles as j, VerticalAlignSection as ja, AlignmentFrameOptions as ji, FormFieldCommonOptions as jn, parseBodyProperties as jr, sectionPropertiesDesc as jt, SubDocCollection as k, SectionVerticalAlign as ka, YearLong as ki, CheckBoxOptions as kn, VerticalAnchor as kr, SubDocOptions as kt, AppPropertiesOptions as l, TableBordersOptions as la, TextAlignmentType as li, CustomXmlDataBindingOptions as ln, BorderStyle as lo, MediaData as lr, LevelFormat as lt, DocxReadContext as m, LeaderType as ma, AnnotationReference as mi, TableCellOptions as mn, ContentTypeDefault as mo, WpgCommonMediaData as mr, DocPartOptions as mt, DocumentOptions as n, TableLayoutType as na, DrawingOptions as ni, DocumentGridType as nn, TextEffect as no, createImageData as nr, WriteProtectionOptions as nt, CustomPropertyOptions as o, TableAnchorType as oa, ParagraphPropertiesOptions as oi, CustomXmlAttributeOptions as on, ShadingAttributesProperties as oo, ChartMediaData as or, Numbering as ot, BodyContext as p, MathStyleType as pa, RunOptions as pi, SdtCellOptions as pn, CharacterSet as po, WORKAROUND2 as pr, DocPartGallery as pt, MailMergeSourceType as q, SdtPropertiesOptions as qa, TableCellBordersOptions as qi, WpgGroupRunOptions as qn, Margins as qr, PageBorderZOrder as qt, FeaturesOptions as r, OverlapType as ra, SymbolRunOptions as ri, createDocumentGrid as rn, UnderlineType as ro, Media as rr, CompatibilityOptions as rt, customPropertiesDesc as s, TableFloatOptions as sa, ParagraphPropertiesOptionsBase as si, CustomXmlBlockOptions as sn, ShadingType as so, ExtendedMediaData as sr, NumberingOptions as st, CorePropertiesInput as t, TableLookOptions as ta, Distance as ti, DocGridAttributesProperties as tn, RunStylePropertiesOptions as to, ImageOptions as tr, SettingsOptions as tt, appPropertiesDesc as u, MathInput as ua, TextboxTightWrapType as ui, CustomXmlPrOptions as un, AltChunkOptions as uo, MediaDataTransformation as ur, LevelSuffix as ut, parseArchive as v, HeadingLevel as va, DayShort as vi, TableRowPropertiesOptionsBase as vn, contentTypesDesc as vo, StyleMatrixReferenceOptions as vr, HeaderFooterGroup as vt, WebSettingsInput as w, CnfConditionalOptions as wa, NoBreakHyphen as wi, SdtRunOptions as wn, PresetTextShapeOptions as wr, DocumentAttributeNamespace as wt, DivBorderOptions as x, BreakType as xa, LastRenderedPageBreak as xi, MathChild as xn, SourceTypeOptions as xo, BodyPropertiesOptions as xr, SectionPropertiesOptionsBase as xt, parseDocument as y, LineRuleType as ya, EndnoteReference as yi, ChartChild as yn, withMediaDefaults as yo, WpsShapeCoreOptions as yr, SectionPropertiesChangeOptions as yt, DocumentProtectionOptions as z, SdtCheckboxSymbol as za, SpaceType as zi, RubyOptions as zn, GroupShapeLocksOptions as zr, LineNumberAttributes as zt };
|
|
3706
|
+
//# sourceMappingURL=core-properties-CBMhgSrn.d.mts.map
|