@office-open/core 0.12.0 → 0.12.2
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/dist/chart/index.d.mts +2 -2
- package/dist/chart/index.mjs +2 -2
- package/dist/{chart-DED4tXC9.mjs → chart-DEIF3VZn.mjs} +82 -60
- package/dist/chart-DEIF3VZn.mjs.map +1 -0
- package/dist/drawing/index.mjs +1 -1
- package/dist/{drawing-BCAyrCCw.mjs → drawing-BVwCkNXB.mjs} +7 -2
- package/dist/{drawing-BCAyrCCw.mjs.map → drawing-BVwCkNXB.mjs.map} +1 -1
- package/dist/{index-BP541uS-.d.mts → index-BwRtWyaP.d.mts} +86 -70
- package/dist/index-BwRtWyaP.d.mts.map +1 -0
- package/dist/{index-BAxlDUQ1.d.mts → index-DF3lKLF_.d.mts} +3 -1
- package/dist/index-DF3lKLF_.d.mts.map +1 -0
- package/dist/{index-Di6XPdGl.d.mts → index-DRggxtp7.d.mts} +2 -1
- package/dist/{index-Di6XPdGl.d.mts.map → index-DRggxtp7.d.mts.map} +1 -1
- package/dist/index-L6AXewfV.d.mts.map +1 -1
- package/dist/index.d.mts +27 -4
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +61 -21
- package/dist/index.mjs.map +1 -1
- package/dist/smartart/index.d.mts +1 -1
- package/dist/smartart/index.mjs +1 -1
- package/dist/{smartart-n1kYJ6Jg.mjs → smartart-YH87Emca.mjs} +14 -10
- package/dist/smartart-YH87Emca.mjs.map +1 -0
- package/dist/{style-matrix-B6jhPAT3.mjs → style-matrix-DjhMuuQg.mjs} +2 -2
- package/dist/{style-matrix-B6jhPAT3.mjs.map → style-matrix-DjhMuuQg.mjs.map} +1 -1
- package/dist/theme/index.mjs +2 -2
- package/dist/{theme-BKnXRmvn.mjs → theme-Dx0Db9bX.mjs} +3 -3
- package/dist/{theme-BKnXRmvn.mjs.map → theme-Dx0Db9bX.mjs.map} +1 -1
- package/dist/util/index.d.mts +1 -1
- package/dist/util/index.mjs +1 -1
- package/dist/{util-ptE16MEk.mjs → util-Cr7rwR6t.mjs} +2 -2
- package/dist/{util-ptE16MEk.mjs.map → util-Cr7rwR6t.mjs.map} +1 -1
- package/dist/vector/index.mjs +1 -1
- package/dist/{vector-DhLGZjP5.mjs → vector-DZ_OteHJ.mjs} +93 -78
- package/dist/vector-DZ_OteHJ.mjs.map +1 -0
- package/package.json +2 -2
- package/dist/chart-DED4tXC9.mjs.map +0 -1
- package/dist/index-BAxlDUQ1.d.mts.map +0 -1
- package/dist/index-BP541uS-.d.mts.map +0 -1
- package/dist/smartart-n1kYJ6Jg.mjs.map +0 -1
- package/dist/vector-DhLGZjP5.mjs.map +0 -1
|
@@ -11,14 +11,93 @@ interface ChartData {
|
|
|
11
11
|
fileName: string;
|
|
12
12
|
data: DataType;
|
|
13
13
|
};
|
|
14
|
+
userShapes?: {
|
|
15
|
+
relationshipId: string;
|
|
16
|
+
xml: string;
|
|
17
|
+
};
|
|
14
18
|
}
|
|
15
19
|
declare class ChartCollection {
|
|
16
20
|
private map;
|
|
21
|
+
private cachedArray;
|
|
17
22
|
constructor();
|
|
18
23
|
addChart(key: string, chartData: ChartData): void;
|
|
19
24
|
get array(): ChartData[];
|
|
20
25
|
}
|
|
21
26
|
//#endregion
|
|
27
|
+
//#region src/chart/user-shapes/user-shapes.d.ts
|
|
28
|
+
interface UserShapeMarkerOptions {
|
|
29
|
+
x: number;
|
|
30
|
+
y: number;
|
|
31
|
+
}
|
|
32
|
+
interface UserShapeExtentOptions {
|
|
33
|
+
width: number;
|
|
34
|
+
height: number;
|
|
35
|
+
}
|
|
36
|
+
interface RelativeSizeAnchorOptions {
|
|
37
|
+
from: UserShapeMarkerOptions;
|
|
38
|
+
to: UserShapeMarkerOptions;
|
|
39
|
+
object: UserShapeObjectOptions;
|
|
40
|
+
}
|
|
41
|
+
interface AbsoluteSizeAnchorOptions {
|
|
42
|
+
from: UserShapeMarkerOptions;
|
|
43
|
+
extent: UserShapeExtentOptions;
|
|
44
|
+
object: UserShapeObjectOptions;
|
|
45
|
+
}
|
|
46
|
+
interface ObjectCommonAttributes {
|
|
47
|
+
id: number;
|
|
48
|
+
macro?: string;
|
|
49
|
+
published?: boolean;
|
|
50
|
+
}
|
|
51
|
+
interface UserShapeShapeOptions extends ObjectCommonAttributes {
|
|
52
|
+
type: "shape";
|
|
53
|
+
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
54
|
+
textBox?: boolean;
|
|
55
|
+
shapeProperties: ShapePropertiesOptions;
|
|
56
|
+
style?: DefaultShapeStyleOptions;
|
|
57
|
+
textBody?: TextBodyOptions;
|
|
58
|
+
textLink?: string;
|
|
59
|
+
locksText?: boolean;
|
|
60
|
+
}
|
|
61
|
+
interface UserShapeConnectorOptions extends ObjectCommonAttributes {
|
|
62
|
+
type: "connector";
|
|
63
|
+
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
64
|
+
shapeProperties: ShapePropertiesOptions;
|
|
65
|
+
style?: DefaultShapeStyleOptions;
|
|
66
|
+
}
|
|
67
|
+
interface UserShapePictureOptions extends ObjectCommonAttributes {
|
|
68
|
+
type: "picture";
|
|
69
|
+
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
70
|
+
referenceId: string;
|
|
71
|
+
blipFill?: BlipFillOptions;
|
|
72
|
+
shapeProperties: ShapePropertiesOptions;
|
|
73
|
+
style?: DefaultShapeStyleOptions;
|
|
74
|
+
}
|
|
75
|
+
interface UserShapeGraphicFrameOptions extends ObjectCommonAttributes {
|
|
76
|
+
type: "graphicFrame";
|
|
77
|
+
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
78
|
+
graphicFrameLocks?: GraphicFrameLockingOptions | null;
|
|
79
|
+
transform: Transform2DOptions;
|
|
80
|
+
graphic: string;
|
|
81
|
+
}
|
|
82
|
+
interface UserShapeGroupOptions extends ObjectCommonAttributes {
|
|
83
|
+
type: "group";
|
|
84
|
+
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
85
|
+
groupShapeProperties: GroupShapePropertiesOptions;
|
|
86
|
+
children: UserShapeObjectOptions[];
|
|
87
|
+
}
|
|
88
|
+
type UserShapeObjectOptions = UserShapeShapeOptions | UserShapeConnectorOptions | UserShapePictureOptions | UserShapeGraphicFrameOptions | UserShapeGroupOptions;
|
|
89
|
+
interface UserShapesOptions {
|
|
90
|
+
anchors: (RelativeSizeAnchorOptions | AbsoluteSizeAnchorOptions)[];
|
|
91
|
+
}
|
|
92
|
+
declare const userShapesDesc: CustomDescriptor<UserShapesOptions>;
|
|
93
|
+
declare function buildUserShapesData(userShapes: {
|
|
94
|
+
relationshipId?: string;
|
|
95
|
+
anchors: UserShapesOptions["anchors"];
|
|
96
|
+
}): {
|
|
97
|
+
relationshipId: string;
|
|
98
|
+
xml: string;
|
|
99
|
+
};
|
|
100
|
+
//#endregion
|
|
22
101
|
//#region src/chart/types.d.ts
|
|
23
102
|
interface ChartSeriesCommon {
|
|
24
103
|
index?: number;
|
|
@@ -223,9 +302,13 @@ interface ChartSpaceOptions {
|
|
|
223
302
|
legendLayout?: boolean | ManualLayoutOptions;
|
|
224
303
|
legendTextProperties?: TextBodyOptions;
|
|
225
304
|
legendEntries?: readonly LegendEntryOptions[];
|
|
226
|
-
userShapes?:
|
|
305
|
+
userShapes?: ChartUserShapesOptions;
|
|
227
306
|
ext?: string;
|
|
228
307
|
}
|
|
308
|
+
interface ChartUserShapesOptions {
|
|
309
|
+
relationshipId?: string;
|
|
310
|
+
anchors: (RelativeSizeAnchorOptions | AbsoluteSizeAnchorOptions)[];
|
|
311
|
+
}
|
|
229
312
|
type TimeUnit = "days" | "months" | "years";
|
|
230
313
|
interface View3DOptions {
|
|
231
314
|
rotX?: number;
|
|
@@ -418,72 +501,5 @@ interface LegendEntryOptions {
|
|
|
418
501
|
//#region src/chart/chart-descriptors.d.ts
|
|
419
502
|
declare const chartSpaceDesc: CustomDescriptor<ChartSpaceOptions>;
|
|
420
503
|
//#endregion
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
x: number;
|
|
424
|
-
y: number;
|
|
425
|
-
}
|
|
426
|
-
interface UserShapeExtentOptions {
|
|
427
|
-
width: number;
|
|
428
|
-
height: number;
|
|
429
|
-
}
|
|
430
|
-
interface RelativeSizeAnchorOptions {
|
|
431
|
-
from: UserShapeMarkerOptions;
|
|
432
|
-
to: UserShapeMarkerOptions;
|
|
433
|
-
object: UserShapeObjectOptions;
|
|
434
|
-
}
|
|
435
|
-
interface AbsoluteSizeAnchorOptions {
|
|
436
|
-
from: UserShapeMarkerOptions;
|
|
437
|
-
extent: UserShapeExtentOptions;
|
|
438
|
-
object: UserShapeObjectOptions;
|
|
439
|
-
}
|
|
440
|
-
interface ObjectCommonAttributes {
|
|
441
|
-
id: number;
|
|
442
|
-
macro?: string;
|
|
443
|
-
published?: boolean;
|
|
444
|
-
}
|
|
445
|
-
interface UserShapeShapeOptions extends ObjectCommonAttributes {
|
|
446
|
-
type: "shape";
|
|
447
|
-
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
448
|
-
textBox?: boolean;
|
|
449
|
-
shapeProperties: ShapePropertiesOptions;
|
|
450
|
-
style?: DefaultShapeStyleOptions;
|
|
451
|
-
textBody?: TextBodyOptions;
|
|
452
|
-
textLink?: string;
|
|
453
|
-
locksText?: boolean;
|
|
454
|
-
}
|
|
455
|
-
interface UserShapeConnectorOptions extends ObjectCommonAttributes {
|
|
456
|
-
type: "connector";
|
|
457
|
-
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
458
|
-
shapeProperties: ShapePropertiesOptions;
|
|
459
|
-
style?: DefaultShapeStyleOptions;
|
|
460
|
-
}
|
|
461
|
-
interface UserShapePictureOptions extends ObjectCommonAttributes {
|
|
462
|
-
type: "picture";
|
|
463
|
-
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
464
|
-
referenceId: string;
|
|
465
|
-
blipFill?: BlipFillOptions;
|
|
466
|
-
shapeProperties: ShapePropertiesOptions;
|
|
467
|
-
style?: DefaultShapeStyleOptions;
|
|
468
|
-
}
|
|
469
|
-
interface UserShapeGraphicFrameOptions extends ObjectCommonAttributes {
|
|
470
|
-
type: "graphicFrame";
|
|
471
|
-
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
472
|
-
graphicFrameLocks?: GraphicFrameLockingOptions | null;
|
|
473
|
-
transform: Transform2DOptions;
|
|
474
|
-
graphic: string;
|
|
475
|
-
}
|
|
476
|
-
interface UserShapeGroupOptions extends ObjectCommonAttributes {
|
|
477
|
-
type: "group";
|
|
478
|
-
nonVisualProperties?: NonVisualDrawingPropertiesOptions;
|
|
479
|
-
groupShapeProperties: GroupShapePropertiesOptions;
|
|
480
|
-
children: UserShapeObjectOptions[];
|
|
481
|
-
}
|
|
482
|
-
type UserShapeObjectOptions = UserShapeShapeOptions | UserShapeConnectorOptions | UserShapePictureOptions | UserShapeGraphicFrameOptions | UserShapeGroupOptions;
|
|
483
|
-
interface UserShapesOptions {
|
|
484
|
-
anchors: (RelativeSizeAnchorOptions | AbsoluteSizeAnchorOptions)[];
|
|
485
|
-
}
|
|
486
|
-
declare const userShapesDesc: CustomDescriptor<UserShapesOptions>;
|
|
487
|
-
//#endregion
|
|
488
|
-
export { LayoutMode as $, ChartHeaderFooterOptions as A, ChartType as B, AxisTickLabelPosition as C, View3DOptions as Ct, BubbleSeriesData as D, BarShape as E, ChartSeriesCommon as F, DataTableOptions as G, DataLabelPosition as H, ChartSeriesData as I, ErrorBarDirection as J, DisplayBlanksAs as K, ChartSpaceOptions as L, ChartPageMarginsOptions as M, ChartPageSetupOptions as N, BuiltInDisplayUnit as O, ChartPivotFormatOptions as P, ExternalDataOptions as Q, ChartStyle2010Options as R, AxisScalingOptions as S, TrendlineType as St, BandFormatOptions as T, ChartData as Tt, DataLabelsOptions as U, DataLabelOptions as V, DataPointOptions as W, ErrorBarType as X, ErrorBarOptions as Y, ErrorValueType as Z, AxisLabelAlignment as _, SplitType as _t, UserShapeGraphicFrameOptions as a, MarkerSymbol as at, AxisOrientation as b, TrendlineLabelOptions as bt, UserShapeObjectOptions as c, PictureFormat as ct, UserShapesOptions as d, PrintSettingsOptions as dt, LayoutTarget as et, userShapesDesc as f, ProtectionOptions as ft, AxisKind as g, SizeRepresents as gt, AxisCrosses as h, SecondaryChartGroupOptions as ht, UserShapeExtentOptions as i, MarkerOptions as it, ChartLinesOptions as j, ChartGrouping as k, UserShapePictureOptions as l, PictureOptionsOptions as lt, AxisCrossBetween as m, ScatterSeriesData as mt, RelativeSizeAnchorOptions as n, LegendPosition as nt, UserShapeGroupOptions as o, OfPieType as ot, chartSpaceDesc as p, RadarStyle as pt, DisplayUnitsOptions as q, UserShapeConnectorOptions as r, ManualLayoutOptions as rt, UserShapeMarkerOptions as s, PageSetupOrientation as st, AbsoluteSizeAnchorOptions as t, LegendEntryOptions as tt, UserShapeShapeOptions as u, PivotSourceOptions as ut, AxisNumberFormatOptions as v, SurfaceOptions as vt, AxisTickMark as w, ChartCollection as wt, AxisPosition as x, TrendlineOptions as xt, AxisOptions as y, TimeUnit as yt, ChartTitleOptions as z };
|
|
489
|
-
//# sourceMappingURL=index-BP541uS-.d.mts.map
|
|
504
|
+
export { PivotSourceOptions as $, DataLabelOptions as A, ErrorValueType as B, ChartSeriesCommon as C, UserShapesOptions as Ct, ChartTitleOptions as D, ChartData as Dt, ChartStyle2010Options as E, ChartCollection as Et, DisplayBlanksAs as F, LegendPosition as G, LayoutMode as H, DisplayUnitsOptions as I, MarkerSymbol as J, ManualLayoutOptions as K, ErrorBarDirection as L, DataLabelsOptions as M, DataPointOptions as N, ChartType as O, DataTableOptions as P, PictureOptionsOptions as Q, ErrorBarOptions as R, ChartPivotFormatOptions as S, UserShapeShapeOptions as St, ChartSpaceOptions as T, userShapesDesc as Tt, LayoutTarget as U, ExternalDataOptions as V, LegendEntryOptions as W, PageSetupOrientation as X, OfPieType as Y, PictureFormat as Z, ChartGrouping as _, UserShapeGraphicFrameOptions as _t, AxisLabelAlignment as a, SizeRepresents as at, ChartPageMarginsOptions as b, UserShapeObjectOptions as bt, AxisOrientation as c, TimeUnit as ct, AxisTickLabelPosition as d, TrendlineType as dt, PrintSettingsOptions as et, AxisTickMark as f, View3DOptions as ft, BuiltInDisplayUnit as g, UserShapeExtentOptions as gt, BubbleSeriesData as h, UserShapeConnectorOptions as ht, AxisKind as i, SecondaryChartGroupOptions as it, DataLabelPosition as j, ChartUserShapesOptions as k, AxisPosition as l, TrendlineLabelOptions as lt, BarShape as m, RelativeSizeAnchorOptions as mt, AxisCrossBetween as n, RadarStyle as nt, AxisNumberFormatOptions as o, SplitType as ot, BandFormatOptions as p, AbsoluteSizeAnchorOptions as pt, MarkerOptions as q, AxisCrosses as r, ScatterSeriesData as rt, AxisOptions as s, SurfaceOptions as st, chartSpaceDesc as t, ProtectionOptions as tt, AxisScalingOptions as u, TrendlineOptions as ut, ChartHeaderFooterOptions as v, UserShapeGroupOptions as vt, ChartSeriesData as w, buildUserShapesData as wt, ChartPageSetupOptions as x, UserShapePictureOptions as xt, ChartLinesOptions as y, UserShapeMarkerOptions as yt, ErrorBarType as z };
|
|
505
|
+
//# sourceMappingURL=index-BwRtWyaP.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-BwRtWyaP.d.mts","names":[],"sources":["../src/chart/chart-collection.ts","../src/chart/user-shapes/user-shapes.ts","../src/chart/types.ts","../src/chart/chart-descriptors.ts"],"mappings":"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"}
|
|
@@ -66,6 +66,8 @@ declare const TargetModeType: {
|
|
|
66
66
|
};
|
|
67
67
|
declare class Relationships {
|
|
68
68
|
private entries;
|
|
69
|
+
private maxId;
|
|
70
|
+
private trackId;
|
|
69
71
|
addRelationship(id: number | string, type: RelationshipType, target: string, targetMode?: (typeof TargetModeType)[keyof typeof TargetModeType]): void;
|
|
70
72
|
add(type: RelationshipType, target: string, targetMode?: (typeof TargetModeType)[keyof typeof TargetModeType]): number;
|
|
71
73
|
get relationshipCount(): number;
|
|
@@ -587,4 +589,4 @@ declare function replaceOleLinkPlaceholders(xml: string, links: {
|
|
|
587
589
|
}[], offset: number): string;
|
|
588
590
|
//#endregion
|
|
589
591
|
export { xsdLegendPosition as $, convertToPt as $t, xsdAnimValueType as A, ZIP_STORED_LEVEL as An, ImageFileType as At, xsdCompoundLine as B, zipAndConvert as Bn, randomBytes as Bt, replacePlaceholders as C, resolveRelationshipTarget as Cn, xsdTextCaps as Ct, xsdAnimCalcMode as D, PackerOptions as Dn, xsdTrendlineType as Dt, invertMap as E, Packer as En, xsdTotalsRowFunction as Et, xsdAxisOrientation as F, createPacker as Fn, uniqueNumericIdCreator as Ft, xsdDiagramDirection as G, convertInchesToEmu as Gt, xsdDashStyle as H, zipSyncAndConvert as Hn, convertEmuToPixels as Ht, xsdAxisPosition as I, createZipStream as In, uniqueUuid as It, xsdFontAlignment as J, convertPixelsToEmu as Jt, xsdEffectContainer as K, convertInchesToTwip as Kt, xsdBlendMode as L, levelForMediaName as Ln, extUriMatches as Lt, xsdAxisCrossBetween as M, ZipPartSink as Mn, UniqueNumericIdCreator as Mt, xsdAxisCrosses as N, ZipStreamWriter as Nn, hashedId as Nt, xsdAnimClass as O, XmlifyedFile as On, xsdUnderlineStyle as Ot, xsdAxisLabelAlignment as P, Zippable$1 as Pn, uniqueId as Pt, xsdJcAlignment as Q, convertToInch as Qt, xsdChartBuild as R, strFromU8$1 as Rn, derivePasswordHash as Rt, replaceOlePlaceholders as S, partPathToRelsPath as Sn, xsdTextBuild as St, replaceVideoPlaceholders as T, CompressionOptions as Tn, xsdTextVerticalType as Tt, xsdDataLabelPosition as U, convertEmuToPoints as Ut, xsdConsolidateFunction as V, zipSync$1 as Vn, convertEmuToInches as Vt, xsdDiagramBuild as W, convertEmuToTwip as Wt, xsdHueDirection as X, convertPointsToTwip as Xt, xsdHierBranch as Y, convertPointsToEmu as Yt, xsdIterateType as Z, convertToEmu as Zt, replaceImageLinkPlaceholders as _, RelationshipType as _n, xsdSplitType as _t, findAndReplaceImagePlaceholders as a, convertUniversalMeasureToPt as an, xsdOnOffStyle as at, replaceNumberingPlaceholders as b, buildRootRelationships as bn, xsdTextAlign as bt, getMediaRefs as c, emitPercent as cn, xsdPattern as ct, getVideoRefs as d, parsePercent as dn, xsdPresetShadow as dt, convertToTwip as en, xsdLightRigDirection as et, hasPlaceholders as f, parsePercentAttr as fn, xsdRectAlignment as ft, replaceHyperlinkPlaceholders as g, compileMapping as gn, xsdSlideLayoutType as gt, replaceChartPlaceholders as h, addBinaryFile as hn, xsdSizeRepresents as ht, collectPlaceholderKeys as i, convertUniversalMeasureToInch as in, xsdMathStyle as it, xsdAnimationDgmBuild as j, ZipOptions as jn, imageTypeFromPath as jt, xsdAnimLevel as k, ZIP_DEFLATE_LEVEL as kn, xsdVerticalMergeRev as kt, getOleRefs as l, mapOptional as ln, xsdPenAlignment as lt, replaceAudioPlaceholders as m, XmlifyedFileEntry as mn, xsdShadingPattern as mt, SmartArtRelOptions as n, convertTwipToPoints as nn, xsdLineEndSize as nt, formatId as o, convertUniversalMeasureToTwip as on, xsdOrient as ot, replaceAllPlaceholders as p, parseUniversalMeasure as pn, xsdResizeHandles as pt, xsdErrorValueType as q, convertMillimetersToTwip as qt, addSmartArtRelationships as r, convertUniversalMeasureToEmu as rn, xsdMaterialType as rt, getAudioRefs as s, emitAngle as sn, xsdPathFillMode as st, IdFormat as t, convertTwipToEmu as tn, xsdLineCap as tt, getReferencedMedia as u, parseAngle as un, xsdPlaceholderType as ut, replaceImagePlaceholders as v, Relationships as vn, xsdStrikeStyle as vt, replaceSmartArtPlaceholders as w, CompileFn as wn, xsdTextTabAlignment as wt, replaceOleLinkPlaceholders as x, optionalRelsPart as xn, xsdTextAnchor as xt, replaceMediaPlaceholders as y, TargetModeType as yn, xsdTableWidthType as yt, xsdComments as z, unzipSync$1 as zn, hashPasswordAgile as zt };
|
|
590
|
-
//# sourceMappingURL=index-
|
|
592
|
+
//# sourceMappingURL=index-DF3lKLF_.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-DF3lKLF_.d.mts","names":[],"sources":["../src/opc/packer.ts","../src/opc/relationships.ts","../src/util/compile.ts","../src/util/converters.ts","../src/util/crypto.ts","../src/util/ext-uri.ts","../src/util/generators.ts","../src/util/image-type.ts","../src/util/mappings.ts","../src/util/placeholder.ts"],"mappings":"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"}
|
|
@@ -306,6 +306,7 @@ declare function definitionId(definition: {
|
|
|
306
306
|
}): string;
|
|
307
307
|
declare class SmartArtCollection {
|
|
308
308
|
private map;
|
|
309
|
+
private cachedArray;
|
|
309
310
|
constructor();
|
|
310
311
|
addSmartArt(key: string, data: SmartArtData): void;
|
|
311
312
|
get array(): SmartArtData[];
|
|
@@ -319,4 +320,4 @@ interface TreeNode {
|
|
|
319
320
|
declare const createDataModel: (nodes: readonly TreeNode[], layout?: string, style?: string, color?: string) => string;
|
|
320
321
|
//#endregion
|
|
321
322
|
export { stringifyConnection as $, LayoutNodeChild as A, parseLayoutDefinition as B, ConstraintOptions as C, DiagramIterationOptions as D, DiagramDirection as E, ResizeHandles as F, ModelConnectionOptions as G, stringifyLayoutDefinitionPart as H, SampleDataOptions as I, stringifyDataModel as J, ModelPointOptions as K, VariableListOptions as L, LayoutRuleOptions as M, LayoutShapeOptions as N, ForEachOptions as O, OtherwiseOptions as P, stringifyTransPoint as Q, WhenOptions as R, ConstraintOperator as S, ConstraintType as T, withDiagramNamespaces as U, stringifyLayoutDefinition as V, DataModelOptions as W, PointPropertySetOptions as X, stringifyDataModelOptions as Y, stringifyPoint as Z, AlgorithmType as _, SmartArtRawParts as a, DEFAULT_DRAWING_XML as at, ConditionFunction as b, StyleLabelOptions as c, getStyleXml as ct, stringifyStyleDefinition as d, STYLE_CATEGORIES as dt, ColorDefinitionOptions as et, stringifyStyleDefinitionPart as f, AlgorithmParameterType as g, AlgorithmParameterOptions as h, SmartArtData as i, stringifyColorDefinitionPart as it, LayoutNodeOptions as j, LayoutDefinitionOptions as k, TextProperties3DOptions as l, COLOR_CATEGORIES as lt, AlgorithmOptions as m, createDataModel as n, parseColorDefinition as nt, definitionId as o, getColorXml as ot, styleDefDesc as p, parseDataModelOptions as q, SmartArtCollection as r, stringifyColorDefinition as rt, StyleDefinitionOptions as s, getLayoutXml as st, TreeNode as t, colorsDefDesc as tt, parseStyleDefinition as u, LAYOUT_CATEGORIES as ut, ChildOrder as v, ConstraintRelationship as w, ConditionOperator as x, ChooseOptions as y, layoutDefDesc as z };
|
|
322
|
-
//# sourceMappingURL=index-
|
|
323
|
+
//# sourceMappingURL=index-DRggxtp7.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-DRggxtp7.d.mts","names":[],"sources":["../src/smartart/categories.ts","../src/smartart/built-in-definitions.ts","../src/smartart/color-definition.ts","../src/smartart/data-model/connection.ts","../src/smartart/data-model/point.ts","../src/smartart/data-model/data-model.ts","../src/smartart/layout-definition.ts","../src/smartart/style-definition.ts","../src/smartart/smartart-collection.ts","../src/smartart/tree-to-model.ts"],"mappings":";;;;;;cACa,mBAAmB;cA2CnB,kBAAkB;cAiClB,kBAAkB;;;iBCkJf,aAAa;iBA2Bb,YAAY;iBA8BZ,YAAY;cA+Cf;;;UC1SI;EAEf;EAEA;EAEA,SAAS;EAET,eAAe;EAEf,aAAa;EAEb,cAAc;EAEd;;iBAoCc,yBAAyB,GAAG;iBAyC5B,qBAAqB,IAAI,UAAU;cA6BtC,eAAe,iBAAiB;iBAO7B,6BAA6B,GAAG;;;iBCvJhC,oBAAoB;EAClC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;;UCZe;EACf;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;iBAMc,eACd,0BACA,cACA,eACA,cAAc,yBACd;iBAkBc,oBAAoB,iBAAiB,cAAc;;;iBCjDnD,mBACd,2BACA;UAae;EAEf;EAEA;EAEA;EAEA;EACA,cAAc;;UAIC;EACf;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;;UAIe;EACf,SAAS;EACT,cAAc;;iBAOA,0BAA0B,OAAO;iBA4BjC,sBAAsB,IAAI,sBAAsB;;;KCnDpD;KAaA;KAGA;KAmEA;KAGA;KAGA;KAWA;KAOA;KA4DA;KAGA;UAaK;EAEf;EACA,YAAY;;UAQG;EAEf;EAEA;EAEA;EAEA;EAEA;EAEA;;UAIe;EAEf,MAAM;EAEN;EAEA,aAAa;;UAIE;EAEf,MAAM;EAKN;;UAIe;EAEf;EAEA,OAAO;EAEP;EAEA;EAEA;EAEA;EAEA;EAEA,cAAc;;UAIC;EAEf,MAAM;EAEN,MAAM;EAEN;EAEA;EAEA,gBAAgB;EAEhB,eAAe;EAEf;EAEA;EAEA,YAAY;EAEZ;EAEA;;UAIe;EAEf,MAAM;EACN,MAAM;EACN;EACA;EAEA;EAEA;EAEA;;UAIe;EAEf;EAEA;EAEA;EAEA;EAEA,YAAY;EAEZ,uBAAuB;EAEvB,aAAa;EAEb,eAAe;EAEf,gBAAgB;;UAID,oBAAoB;EACnC;EAEA,UAAU;EAEV;EAEA,UAAU;EAEV;EACA,WAAW;;UAII;EACf;EACA,WAAW;;UAII;EACf;EAEA,YAAY;EAEZ,YAAY;;KAQF;EACN,WAAW;;EACX,OAAO;;EACP,gBAAgB;;EAChB,aAAa;;EACb,OAAO;;EACP,WAAW;;EACX,SAAS;;EACT,YAAY;;EACZ,QAAQ;;UAGG;EAEf;EAEA;EAEA,aAAa;EAEb;EACA,WAAW;EAEX;;UAIe,uBAAuB;EACtC;EAEA;EACA,WAAW;;UAII;EAEf;EAEA;EAEA;EAEA,SAAS;EAET,eAAe;EAEf,aAAa;EAEb,aAAa;EAEb,YAAY;EAEZ,YAAY;EAEZ,YAAY;EAEZ;;iBAqMc,0BAA0B,GAAG;iBA8B7B,sBAAsB;iBA+TtB,sBAAsB,IAAI,UAAU;cAkCvC,eAAe,iBAAiB;iBAO7B,8BAA8B,GAAG;;;UC1+BhC;EAEf,UAAU;EAEV;;UAIe;EAEf;EAEA,UAAU;EAEV,UAAU;EAEV,iBAAiB;EAEjB,QAAQ;EAER;;UAIe;EAEf;EAEA;EAEA,SAAS;EAET,eAAe;EAEf,aAAa;EAEb,UAAU;EAEV,cAAc;EAEd;;iBAyDc,yBAAyB,GAAG;iBA6D5B,qBAAqB,IAAI,UAAU;cA+BtC,cAAc,iBAAiB;iBAO5B,6BAA6B,GAAG;;;UCrN/B;EAEf,OAAO;EAEP,SAAS;EAET,QAAQ;EAER,QAAQ;EAMR,UAAU;EAEV;IAAU;IAAkB,MAAM;;EAElC,WAAW;;UAGI;EACf;EACA;EAEA,iBAAiB;EAEjB,gBAAgB;EAEhB,gBAAgB;EAMhB,MAAM;;iBAOQ,aAAa;EAAc;;cAO9B;UACH;UAEA;;EAMD,YAAY,aAAa,MAAM;MAK3B,SAAS;;;;UCxEL;EACf;EACA,oBAAoB;;cA4BT,kBACX,gBAAgB,YAChB,iBACA,gBACA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-L6AXewfV.d.mts","names":[],"sources":["../src/vector/style.ts","../src/vector/attributes.ts","../src/vector/shape-elements/client-data.ts","../src/vector/shape-elements/office-elements.ts","../src/vector/shape-elements/fill.ts","../src/vector/shape-elements/formulas.ts","../src/vector/shape-elements/handles.ts","../src/vector/shape-elements/imagedata.ts","../src/vector/shape-elements/path.ts","../src/vector/shape-elements/presentation-elements.ts","../src/vector/shape-elements/shadow.ts","../src/vector/shape-elements/stroke.ts","../src/vector/shape-elements/textbox.ts","../src/vector/shape-elements/textpath.ts","../src/vector/shape-elements/word-elements.ts","../src/vector/shapes.ts","../src/vector/office-shape-defaults.ts"],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"index-L6AXewfV.d.mts","names":[],"sources":["../src/vector/style.ts","../src/vector/attributes.ts","../src/vector/shape-elements/client-data.ts","../src/vector/shape-elements/office-elements.ts","../src/vector/shape-elements/fill.ts","../src/vector/shape-elements/formulas.ts","../src/vector/shape-elements/handles.ts","../src/vector/shape-elements/imagedata.ts","../src/vector/shape-elements/path.ts","../src/vector/shape-elements/presentation-elements.ts","../src/vector/shape-elements/shadow.ts","../src/vector/shape-elements/stroke.ts","../src/vector/shape-elements/textbox.ts","../src/vector/shape-elements/textpath.ts","../src/vector/shape-elements/word-elements.ts","../src/vector/shapes.ts","../src/vector/office-shape-defaults.ts"],"mappings":"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"}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { i as toUint8Array, n as ToUint8ArrayOptions, r as isBase64DataURL, t as DataType } from "./data-type-CZMKVaaT.mjs";
|
|
2
|
-
import { $ as
|
|
2
|
+
import { $ as PivotSourceOptions, A as DataLabelOptions, B as ErrorValueType, C as ChartSeriesCommon, Ct as UserShapesOptions, D as ChartTitleOptions, Dt as ChartData, E as ChartStyle2010Options, Et as ChartCollection, F as DisplayBlanksAs, G as LegendPosition, H as LayoutMode, I as DisplayUnitsOptions, J as MarkerSymbol, K as ManualLayoutOptions, L as ErrorBarDirection, M as DataLabelsOptions, N as DataPointOptions, O as ChartType, P as DataTableOptions, Q as PictureOptionsOptions, R as ErrorBarOptions, S as ChartPivotFormatOptions, St as UserShapeShapeOptions, T as ChartSpaceOptions, Tt as userShapesDesc, U as LayoutTarget, V as ExternalDataOptions, W as LegendEntryOptions, X as PageSetupOrientation, Y as OfPieType, Z as PictureFormat, _ as ChartGrouping, _t as UserShapeGraphicFrameOptions, a as AxisLabelAlignment, at as SizeRepresents, b as ChartPageMarginsOptions, bt as UserShapeObjectOptions, c as AxisOrientation, ct as TimeUnit, d as AxisTickLabelPosition, dt as TrendlineType, et as PrintSettingsOptions, f as AxisTickMark, ft as View3DOptions, g as BuiltInDisplayUnit, gt as UserShapeExtentOptions, h as BubbleSeriesData, ht as UserShapeConnectorOptions, i as AxisKind, it as SecondaryChartGroupOptions, j as DataLabelPosition, k as ChartUserShapesOptions, l as AxisPosition, lt as TrendlineLabelOptions, m as BarShape, mt as RelativeSizeAnchorOptions, n as AxisCrossBetween, nt as RadarStyle, o as AxisNumberFormatOptions, ot as SplitType, p as BandFormatOptions, pt as AbsoluteSizeAnchorOptions, q as MarkerOptions, r as AxisCrosses, rt as ScatterSeriesData, s as AxisOptions, st as SurfaceOptions, t as chartSpaceDesc, tt as ProtectionOptions, u as AxisScalingOptions, ut as TrendlineOptions, v as ChartHeaderFooterOptions, vt as UserShapeGroupOptions, w as ChartSeriesData, wt as buildUserShapesData, x as ChartPageSetupOptions, xt as UserShapePictureOptions, y as ChartLinesOptions, yt as UserShapeMarkerOptions, z as ErrorBarType } from "./index-BwRtWyaP.mjs";
|
|
3
3
|
import { a as diffTagSets, c as FIELD_SPECS, d as stringify, f as CustomDescriptor, h as WriteContext, i as checkOrder, l as findFieldSpec, m as ReadContext, n as OrderViolation, o as roundTripFields, p as HyperlinkTarget, r as RoundTripResult, s as DescriptorFieldSpec, t as FieldConsistencyReport, u as parse } from "./index-BQLIofaF.mjs";
|
|
4
4
|
import { A as positiveUniversalMeasureValue, C as hexColorValue, D as parseOnOff, E as measurementOrPercentValue, F as twipsMeasureValue, I as uCharHexNumber, L as universalMeasureValue, M as signedHpsMeasureValue, N as signedTwipsMeasureValue, O as percentageValue, P as stripColorHashPrefix, R as unsignedDecimalNumber, S as hexBinary, T as longHexNumber, _ as UniversalMeasure, a as HexColor, b as decimalNumber, c as Panose, d as PositiveUniversalMeasure, f as RelativeMeasure, g as UcharHexNumber, h as ThemeFont, i as Guid, j as shortHexNumber, k as pointMeasureValue, l as Percentage, m as ThemeColor, n as Base64, o as HexColorOrAuto, p as ShortHexNumber, r as DateTime, s as LongHexNumber, t as ArgbHexColor, u as PositivePercentage, v as UnsignedShortHex, w as hpsMeasureValue, x as eighthPointMeasureValue, y as dateTimeValue } from "./values-BECDm4zr.mjs";
|
|
5
5
|
import { $ as ColorStyleLabelOptions, $a as SchemeColorOptions, $i as FillOptions, $n as createGroupFill, $r as TextShapePreset, $t as pickNonVisualDrawingProperties, A as patternFillDesc, Aa as PatternFillOptions, Ai as PresetDash, An as parseTableStyle, Ar as DEFAULT_SHADOW_BLUR_RADIUS, At as AnimateOneByOneOptions, B as solidFillDesc, Ba as createGradientFill, Bi as ShapeType, Bn as Transform2DOptions, Br as TextFieldOptions, Bt as createAdjustList, C as pictureLockingDesc, Ca as InnerShadowEffectOptions, Ci as createScene3D, Cn as TableStyleListOptions, Cr as BulletCharOptions, Ct as createLayoutDefinitionHeader, D as fillDesc, Da as BlendMode, Di as OutlineFillProperties, Dn as ThemeableLineStyleOptions, Dr as BulletStyleOptions, Dt as AdjustListOptions, E as emitFillXml, Ea as createGlowEffect, Ei as LineJoin, En as TableTextStyleOptions, Er as BulletPictureOptions, Et as createStyleDefinitionHeaderList, F as parseColorChoiceElement, Fa as GradientStop, Fi as LineEndWidth, Fn as scene3DDesc, Fr as TabStopOptions, Ft as MaxChildrenOptions, G as DiagramTextPropertiesOptions, Ga as createTileInfo, Gi as PathCommand, Gn as BlipFillOptions, Gr as TextTabAlignment, Gt as createOrgChart, H as systemColorDesc, Ha as TileAlignment, Hi as ConnectionSite, Hn as createTransform2D, Hr as TextHyperlinkOptions, Ht as createAnimationLevel, I as presetColorDesc, Ia as LinearShadeOptions, Ii as createLineEnd, In as shape3DDesc, Ir as TextAlignment, It as OrgChartOptions, J as createDiagramTextProperties, Ja as createSolidFill, Ji as createCustomGeometry, Jn as BlipOptions, Jr as FlatTextOptions, Jt as NonVisualContentPartPropertiesOptions, K as createDiagramExtensionList, Ka as SolidFillOptions, Ki as PathFillMode, Kn as createBlipFill, Kr as UnderlineStyle, Kt as createPreferredChildren, L as rgbColorDesc, La as PathShade, Li as DashStop, Ln as StyleMatrixReferenceOptions, Lr as TextBreakOptions, Lt as PreferredChildrenOptions, M as hslColorDesc, Ma as createPatternFill, Mi as LineEndLength, Mn as Cell3DOptions, Mr as DEFAULT_SHADOW_DISTANCE, Mt as AnimationLevelOptions, N as isPlainRgbColor, Na as GradientFillOptions, Ni as LineEndOptions, Nn as bevelDesc, Nr as RunFont, Nt as HierBranch, O as findFillChild, Oa as FillOverlayEffectOptions, Oi as OutlineOptions, On as createTableStyle, Or as DEFAULT_OUTLINE_WIDTH, Ot as AdjustOptions, P as parseColorChoice, Pa as GradientShadeOptions, Pi as LineEndType, Pn as cell3DDesc, Pr as StrikeStyle, Pt as HierBranchOptions, Q as ColorMethod, Qa as SchemeColor, Qi as BlipFillMediaData, Qn as stringifyLineProperties, Qr as TextHorzOverflow, Qt as parseNonVisualDrawingProperties, R as scRgbColorDesc, Ra as PathShadeOptions, Ri as createCustomDash, Rn as BlackWhiteMode, Rr as TextCapitalization, Rt as PresentationLayoutVariablesOptions, S as groupLockingDesc, Sa as createOuterShadowEffect, Si as Vector3D, Sn as TablePartStyleOptions, Sr as BulletAutoNumOptions, St as createColorsDefinitionHeaderList, T as effectListDesc, Ta as GlowEffectOptions, Ti as LineCap, Tn as TableStyleRegion, Tr as BulletOptions, Tt as createStyleDefinitionHeader, U as DiagramExtensionListOptions, Ua as TileFlipMode, Ui as CustomGeometryOptions, Un as stringifyStretch, Ur as TextParagraphPropertiesOptions, Ut as createHierBranch, V as stringifyColorChoice, Va as createGradientStop, Vi as stringifyPresetGeometry, Vn as createGroupTransform2D, Vr as TextFont, Vt as createAnimateOneByOne, W as DiagramExtensionOptions, Wa as TileOptions, Wi as GeomRect, Wn as createExtensionList, Wr as TextRunOptions, Wt as createMaxChildren, X as createDiagramRelationshipIds, Xa as SystemColorOptions, Xi as stringifyAdjustmentValues, Xn as createSoftEdgeEffect, Xr as PresetTextShapeOptions, Xt as stringifyNonVisualContentPartProperties, Y as DiagramRelationshipIdsOptions, Ya as SystemColor, Yi as GeometryGuide, Yn as createBlip, Yr as NormalAutofitOptions, Yt as parseNonVisualContentPartProperties, Z as ColorListOptions, Za as createSystemColor, Zi as BlipFillConfigOptions, Zn as outlineDesc, Zr as TextBodyWrapping, Zt as NonVisualDrawingPropertiesOptions, _ as transform2DDesc, _a as PresetShadow, _i as CameraOptions, _n as OnOffStyleType, _r as stringifyTextListStyleTag, _t as LayoutDefinitionHeaderListOptions, a as BlipDescriptorOptions, aa as EffectContainer, ai as parseBodyProperties, an as ContentPartLockingOptions, ao as PresetColor, ar as readParagraphProperties, at as createEffectColorList, b as connectorLockingDesc, ba as OuterShadowEffectOptions, bi as Scene3DOptions, bn as TableCellStyleOptions, br as textStylesDesc, bt as StyleDefinitionHeaderOptions, c as sourceRectangleDesc, ca as BlipEffectsOptions, ci as shapePropertiesDesc, cn as PictureLockingOptions, co as HslColorOptions, cr as buildHyperlinkElement, ct as createStyleLabel, d as tileDesc, da as EffectExtent, di as createShape3D, dn as createContentPartLocking, do as createColorTransforms, dr as runPropertiesDesc, dt as createTextLineColorList, ea as GradientStopOptions, ei as TextVertOverflow, en as stringifyNonVisualDrawingProperties, eo as createSchemeColor, er as createNoFill, et as DiagramStyleOptions, f as stringifyTextRun, fa as EffectListOptions, fi as BevelOptions, fn as createGraphicFrameLocking, fr as stringifyRunProperties, ft as ColorsDefinitionHeaderListOptions, g as groupTransform2DDesc, ga as createReflectionEffect, gi as BackdropOptions, gn as CompoundLineType, gr as parseTextStyles, gt as DiagramNameOptions, h as groupShapePropertiesDesc, ha as ReflectionEffectOptions, hi as createBottomBevel, hn as createShapeLocking, hr as TextStylesOptions, ht as DiagramDescriptionOptions, i as presentationLayoutVariablesDesc, ia as createSourceRectangle, ii as createBodyProperties, in as ConnectorLockingOptions, io as createRgbColor, ir as paragraphDesc, it as createDiagramStyle, j as emitColorChoice, ja as PresetPattern, ji as createOutline, jn as parseTableStyleList, jr as DEFAULT_SHADOW_DIRECTION, jt as AnimationLevel, k as gradientFillDesc, ka as createFillOverlayEffect, ki as PenAlignment, kn as createTableStyleList, kr as DEFAULT_SHADOW_ALPHA, kt as AnimateOneByOne, l as stretchDesc, la as createBlipEffects, li as PresetMaterial, ln as ShapeLockingOptions, lo as createHslColor, lr as readHyperlink, lt as createTextEffectColorList, m as GroupShapePropertiesOptions, ma as createEffectList, mi as createBevel, mn as createPictureLocking, mr as TextListStyleOptions, mt as DiagramCategoryOptions, n as diagramRelationshipIdsDesc, na as extractBlipFillMedia, ni as VerticalAnchor, nn as parseEndpointConnection, no as createScRgbColor, nr as textBodyDesc, nt as HueDirection, o as blipDesc, oa as EffectDagOptions, oi as ShapePropertiesExtensionOptions, on as GraphicFrameLockingOptions, oo as PresetColorOptions, or as stringifyParagraphPropertiesElement, ot as createFillColorList, p as textRunDesc, pa as calculateEffectExtent, pi as BevelPreset, pn as createGroupLocking, pr as DEFAULT_TEXT_STYLES, pt as ColorsDefinitionHeaderOptions, q as createDiagramShape3D, qa as createColorElement, qi as PathOptions, qn as BlipCompression, qr as BodyPropertiesOptions, qt as createPresentationLayoutVariables, r as diagramStyleDesc, ra as SourceRectangleOptions, ri as bodyPropertiesDesc, rn as stringifyEndpointConnection, ro as RgbColorOptions, rr as ParagraphDescriptorOptions, rt as StyleMatrixIndex, s as blipFillDesc, sa as createEffectDag, si as ShapePropertiesOptions, sn as GroupLockingOptions, so as createPresetColor, sr as Mutable, st as createLineColorList, t as diagramExtensionListDesc, ta as buildFill, ti as TextVertical, tn as EndpointConnectionOptions, to as ScRgbColorOptions, tr as TextBodyOptions, tt as FontCollectionIndex, u as stringifyBlipEffects, ua as BlurEffectOptions, ui as Shape3DOptions, un as createConnectorLocking, uo as ColorTransformOptions, ur as registerHyperlink, ut as createTextFillColorList, v as customGeometryDesc, va as PresetShadowEffectOptions, vi as LightRigOptions, vn as TableBackgroundStyleOptions, vr as stringifyTextStyles, vt as LayoutDefinitionHeaderOptions, w as shapeLockingDesc, wa as createInnerShadowEffect, wi as CompoundLine, wn as TableStyleOptions, wr as BulletNoneOption, wt as createLayoutDefinitionHeaderList, x as graphicFrameLockingDesc, xa as RectAlignment, xi as SphereCoords, xn as TableFontReferenceOptions, xr as AutoNumberFormat, xt as createColorsDefinitionHeader, y as presetGeometryDesc, ya as createPresetShadowEffect, yi as Point3D, yn as TableCellBorderOptions, yr as textListStyleDesc, yt as StyleDefinitionHeaderListOptions, z as schemeColorDesc, za as RelativeRect, zi as PresetGeometryOptions, zn as GroupTransform2DOptions, zr as TextCharacterPropertiesOptions, zt as createAdjust } from "./index-DPkf_CtG.mjs";
|
|
6
6
|
import { _ as ThemeOverrideOptions, a as DefaultShapeDefinitionOptions, c as ExtraColorSchemeOptions, d as FontSchemeOptions, f as FormatSchemeOptions, g as ThemeOptions, h as TextFontOptions, i as CustomColorOptions, l as FontCollectionOptions, m as SupplementalFontOptions, n as ColorSchemeIndex, o as DefaultShapeStyleOptions, p as ObjectDefaultsOptions, r as ColorSchemeOptions, s as EffectStyleOptions, t as ColorMappingOptions, u as FontReferenceOptions } from "./theme-options-kO89NUEX.mjs";
|
|
7
7
|
import { i as convertOutput, n as OutputByType, r as OutputType, t as OoxmlMimeType } from "./output-yyxdkG0C.mjs";
|
|
8
|
-
import { $ as xsdLegendPosition, $t as convertToPt, A as xsdAnimValueType, An as ZIP_STORED_LEVEL, At as ImageFileType, B as xsdCompoundLine, Bn as zipAndConvert, Bt as randomBytes, C as replacePlaceholders, Cn as resolveRelationshipTarget, Ct as xsdTextCaps, D as xsdAnimCalcMode, Dn as PackerOptions, Dt as xsdTrendlineType, E as invertMap, En as Packer, Et as xsdTotalsRowFunction, F as xsdAxisOrientation, Fn as createPacker, Ft as uniqueNumericIdCreator, G as xsdDiagramDirection, Gt as convertInchesToEmu, H as xsdDashStyle, Hn as zipSyncAndConvert, Ht as convertEmuToPixels, I as xsdAxisPosition, In as createZipStream, It as uniqueUuid, J as xsdFontAlignment, Jt as convertPixelsToEmu, K as xsdEffectContainer, Kt as convertInchesToTwip, L as xsdBlendMode, Ln as levelForMediaName, Lt as extUriMatches, M as xsdAxisCrossBetween, Mn as ZipPartSink, Mt as UniqueNumericIdCreator, N as xsdAxisCrosses, Nn as ZipStreamWriter, Nt as hashedId, O as xsdAnimClass, On as XmlifyedFile, Ot as xsdUnderlineStyle, P as xsdAxisLabelAlignment, Pn as Zippable, Pt as uniqueId, Q as xsdJcAlignment, Qt as convertToInch, R as xsdChartBuild, Rn as strFromU8, Rt as derivePasswordHash, S as replaceOlePlaceholders, Sn as partPathToRelsPath, St as xsdTextBuild, T as replaceVideoPlaceholders, Tn as CompressionOptions, Tt as xsdTextVerticalType, U as xsdDataLabelPosition, Ut as convertEmuToPoints, V as xsdConsolidateFunction, Vn as zipSync, Vt as convertEmuToInches, W as xsdDiagramBuild, Wt as convertEmuToTwip, X as xsdHueDirection, Xt as convertPointsToTwip, Y as xsdHierBranch, Yt as convertPointsToEmu, Z as xsdIterateType, Zt as convertToEmu, _ as replaceImageLinkPlaceholders, _n as RelationshipType, _t as xsdSplitType, a as findAndReplaceImagePlaceholders, an as convertUniversalMeasureToPt, at as xsdOnOffStyle, b as replaceNumberingPlaceholders, bn as buildRootRelationships, bt as xsdTextAlign, c as getMediaRefs, cn as emitPercent, ct as xsdPattern, d as getVideoRefs, dn as parsePercent, dt as xsdPresetShadow, en as convertToTwip, et as xsdLightRigDirection, f as hasPlaceholders, fn as parsePercentAttr, ft as xsdRectAlignment, g as replaceHyperlinkPlaceholders, gn as compileMapping, gt as xsdSlideLayoutType, h as replaceChartPlaceholders, hn as addBinaryFile, ht as xsdSizeRepresents, i as collectPlaceholderKeys, in as convertUniversalMeasureToInch, it as xsdMathStyle, j as xsdAnimationDgmBuild, jn as ZipOptions, jt as imageTypeFromPath, k as xsdAnimLevel, kn as ZIP_DEFLATE_LEVEL, kt as xsdVerticalMergeRev, l as getOleRefs, ln as mapOptional, lt as xsdPenAlignment, m as replaceAudioPlaceholders, mn as XmlifyedFileEntry, mt as xsdShadingPattern, n as SmartArtRelOptions, nn as convertTwipToPoints, nt as xsdLineEndSize, o as formatId, on as convertUniversalMeasureToTwip, ot as xsdOrient, p as replaceAllPlaceholders, pn as parseUniversalMeasure, pt as xsdResizeHandles, q as xsdErrorValueType, qt as convertMillimetersToTwip, r as addSmartArtRelationships, rn as convertUniversalMeasureToEmu, rt as xsdMaterialType, s as getAudioRefs, sn as emitAngle, st as xsdPathFillMode, t as IdFormat, tn as convertTwipToEmu, tt as xsdLineCap, u as getReferencedMedia, un as parseAngle, ut as xsdPlaceholderType, v as replaceImagePlaceholders, vn as Relationships, vt as xsdStrikeStyle, w as replaceSmartArtPlaceholders, wn as CompileFn, wt as xsdTextTabAlignment, x as replaceOleLinkPlaceholders, xn as optionalRelsPart, xt as xsdTextAnchor, y as replaceMediaPlaceholders, yn as TargetModeType, yt as xsdTableWidthType, z as xsdComments, zn as unzipSync, zt as hashPasswordAgile } from "./index-
|
|
8
|
+
import { $ as xsdLegendPosition, $t as convertToPt, A as xsdAnimValueType, An as ZIP_STORED_LEVEL, At as ImageFileType, B as xsdCompoundLine, Bn as zipAndConvert, Bt as randomBytes, C as replacePlaceholders, Cn as resolveRelationshipTarget, Ct as xsdTextCaps, D as xsdAnimCalcMode, Dn as PackerOptions, Dt as xsdTrendlineType, E as invertMap, En as Packer, Et as xsdTotalsRowFunction, F as xsdAxisOrientation, Fn as createPacker, Ft as uniqueNumericIdCreator, G as xsdDiagramDirection, Gt as convertInchesToEmu, H as xsdDashStyle, Hn as zipSyncAndConvert, Ht as convertEmuToPixels, I as xsdAxisPosition, In as createZipStream, It as uniqueUuid, J as xsdFontAlignment, Jt as convertPixelsToEmu, K as xsdEffectContainer, Kt as convertInchesToTwip, L as xsdBlendMode, Ln as levelForMediaName, Lt as extUriMatches, M as xsdAxisCrossBetween, Mn as ZipPartSink, Mt as UniqueNumericIdCreator, N as xsdAxisCrosses, Nn as ZipStreamWriter, Nt as hashedId, O as xsdAnimClass, On as XmlifyedFile, Ot as xsdUnderlineStyle, P as xsdAxisLabelAlignment, Pn as Zippable, Pt as uniqueId, Q as xsdJcAlignment, Qt as convertToInch, R as xsdChartBuild, Rn as strFromU8, Rt as derivePasswordHash, S as replaceOlePlaceholders, Sn as partPathToRelsPath, St as xsdTextBuild, T as replaceVideoPlaceholders, Tn as CompressionOptions, Tt as xsdTextVerticalType, U as xsdDataLabelPosition, Ut as convertEmuToPoints, V as xsdConsolidateFunction, Vn as zipSync, Vt as convertEmuToInches, W as xsdDiagramBuild, Wt as convertEmuToTwip, X as xsdHueDirection, Xt as convertPointsToTwip, Y as xsdHierBranch, Yt as convertPointsToEmu, Z as xsdIterateType, Zt as convertToEmu, _ as replaceImageLinkPlaceholders, _n as RelationshipType, _t as xsdSplitType, a as findAndReplaceImagePlaceholders, an as convertUniversalMeasureToPt, at as xsdOnOffStyle, b as replaceNumberingPlaceholders, bn as buildRootRelationships, bt as xsdTextAlign, c as getMediaRefs, cn as emitPercent, ct as xsdPattern, d as getVideoRefs, dn as parsePercent, dt as xsdPresetShadow, en as convertToTwip, et as xsdLightRigDirection, f as hasPlaceholders, fn as parsePercentAttr, ft as xsdRectAlignment, g as replaceHyperlinkPlaceholders, gn as compileMapping, gt as xsdSlideLayoutType, h as replaceChartPlaceholders, hn as addBinaryFile, ht as xsdSizeRepresents, i as collectPlaceholderKeys, in as convertUniversalMeasureToInch, it as xsdMathStyle, j as xsdAnimationDgmBuild, jn as ZipOptions, jt as imageTypeFromPath, k as xsdAnimLevel, kn as ZIP_DEFLATE_LEVEL, kt as xsdVerticalMergeRev, l as getOleRefs, ln as mapOptional, lt as xsdPenAlignment, m as replaceAudioPlaceholders, mn as XmlifyedFileEntry, mt as xsdShadingPattern, n as SmartArtRelOptions, nn as convertTwipToPoints, nt as xsdLineEndSize, o as formatId, on as convertUniversalMeasureToTwip, ot as xsdOrient, p as replaceAllPlaceholders, pn as parseUniversalMeasure, pt as xsdResizeHandles, q as xsdErrorValueType, qt as convertMillimetersToTwip, r as addSmartArtRelationships, rn as convertUniversalMeasureToEmu, rt as xsdMaterialType, s as getAudioRefs, sn as emitAngle, st as xsdPathFillMode, t as IdFormat, tn as convertTwipToEmu, tt as xsdLineCap, u as getReferencedMedia, un as parseAngle, ut as xsdPlaceholderType, v as replaceImagePlaceholders, vn as Relationships, vt as xsdStrikeStyle, w as replaceSmartArtPlaceholders, wn as CompileFn, wt as xsdTextTabAlignment, x as replaceOleLinkPlaceholders, xn as optionalRelsPart, xt as xsdTextAnchor, y as replaceMediaPlaceholders, yn as TargetModeType, yt as xsdTableWidthType, z as xsdComments, zn as unzipSync, zt as hashPasswordAgile } from "./index-DF3lKLF_.mjs";
|
|
9
9
|
import { C as PPTX_NS, D as parseCorePropsElement, E as buildCorePropertiesXmlString, S as DOCX_NS, T as CorePropertiesOptions, _ as createTraverser, a as getNextRelationshipIndex, b as ReplacerOptions, c as removeOverride, d as nextNumericId, f as patchSpaceAttribute, g as createTokenReplacer, h as createSplitInject, i as appendRelationship, l as createTextElementContents, m as TokenNotFoundError, n as PlaceholderDelimiters, o as appendContentType, p as toJson, r as applyCorePropertiesOverride, s as appendOverride, t as BasePatchOptions, u as getFirstLevelElements, v as RenderedParagraphNode, w as XmlNamespaceOptions, x as createReplacer, y as createRunRenderer } from "./index-CaNwM5_e.mjs";
|
|
10
|
-
import { $ as stringifyConnection, A as LayoutNodeChild, B as parseLayoutDefinition, C as ConstraintOptions, D as DiagramIterationOptions, E as DiagramDirection, F as ResizeHandles, G as ModelConnectionOptions, H as stringifyLayoutDefinitionPart, I as SampleDataOptions, J as stringifyDataModel, K as ModelPointOptions, L as VariableListOptions, M as LayoutRuleOptions, N as LayoutShapeOptions, O as ForEachOptions, P as OtherwiseOptions, Q as stringifyTransPoint, R as WhenOptions, S as ConstraintOperator, T as ConstraintType, U as withDiagramNamespaces, V as stringifyLayoutDefinition, W as DataModelOptions, X as PointPropertySetOptions, Y as stringifyDataModelOptions, Z as stringifyPoint, _ as AlgorithmType, a as SmartArtRawParts, at as DEFAULT_DRAWING_XML, b as ConditionFunction, c as StyleLabelOptions, ct as getStyleXml, d as stringifyStyleDefinition, dt as STYLE_CATEGORIES, et as ColorDefinitionOptions, f as stringifyStyleDefinitionPart, g as AlgorithmParameterType, h as AlgorithmParameterOptions, i as SmartArtData, it as stringifyColorDefinitionPart, j as LayoutNodeOptions, k as LayoutDefinitionOptions, l as TextProperties3DOptions, lt as COLOR_CATEGORIES, m as AlgorithmOptions, n as createDataModel, nt as parseColorDefinition, o as definitionId, ot as getColorXml, p as styleDefDesc, q as parseDataModelOptions, r as SmartArtCollection, rt as stringifyColorDefinition, s as StyleDefinitionOptions, st as getLayoutXml, t as TreeNode, tt as colorsDefDesc, u as parseStyleDefinition, ut as LAYOUT_CATEGORIES, v as ChildOrder, w as ConstraintRelationship, x as ConditionOperator, y as ChooseOptions, z as layoutDefDesc } from "./index-
|
|
10
|
+
import { $ as stringifyConnection, A as LayoutNodeChild, B as parseLayoutDefinition, C as ConstraintOptions, D as DiagramIterationOptions, E as DiagramDirection, F as ResizeHandles, G as ModelConnectionOptions, H as stringifyLayoutDefinitionPart, I as SampleDataOptions, J as stringifyDataModel, K as ModelPointOptions, L as VariableListOptions, M as LayoutRuleOptions, N as LayoutShapeOptions, O as ForEachOptions, P as OtherwiseOptions, Q as stringifyTransPoint, R as WhenOptions, S as ConstraintOperator, T as ConstraintType, U as withDiagramNamespaces, V as stringifyLayoutDefinition, W as DataModelOptions, X as PointPropertySetOptions, Y as stringifyDataModelOptions, Z as stringifyPoint, _ as AlgorithmType, a as SmartArtRawParts, at as DEFAULT_DRAWING_XML, b as ConditionFunction, c as StyleLabelOptions, ct as getStyleXml, d as stringifyStyleDefinition, dt as STYLE_CATEGORIES, et as ColorDefinitionOptions, f as stringifyStyleDefinitionPart, g as AlgorithmParameterType, h as AlgorithmParameterOptions, i as SmartArtData, it as stringifyColorDefinitionPart, j as LayoutNodeOptions, k as LayoutDefinitionOptions, l as TextProperties3DOptions, lt as COLOR_CATEGORIES, m as AlgorithmOptions, n as createDataModel, nt as parseColorDefinition, o as definitionId, ot as getColorXml, p as styleDefDesc, q as parseDataModelOptions, r as SmartArtCollection, rt as stringifyColorDefinition, s as StyleDefinitionOptions, st as getLayoutXml, t as TreeNode, tt as colorsDefDesc, u as parseStyleDefinition, ut as LAYOUT_CATEGORIES, v as ChildOrder, w as ConstraintRelationship, x as ConditionOperator, y as ChooseOptions, z as layoutDefDesc } from "./index-DRggxtp7.mjs";
|
|
11
11
|
import { $ as stringifyVmlGroup, $n as stringifyVmlCallout, $t as stringifyVmlPath, A as VmlPolylineOptions, An as VmlExtrusionType, Ar as VmlOfficeShapeAttributes, At as stringifyVmlTextbox, B as parseVmlGroup, Bn as VmlSkewOptions, Br as stringifyVmlTrueFalseBlank, Bt as stringifyVmlStroke, C as VmlBaseShapeFields, Cn as VmlDiagramRelationOptions, Cr as VmlConnectType, Ct as stringifyVmlWrap, D as VmlImageOptions, Dn as VmlExtrusionOptions, Dr as VmlHorizontalRuleAlign, Dt as stringifyVmlTextPath, E as VmlGroupOptions, En as VmlExtensionMode, Er as VmlDiagramLayout, Et as parseVmlTextPath, F as VmlShapetypeOptions, Fn as VmlOleDrawAspect, Fr as parseVmlAttributes, Ft as VmlStrokeEndCap, G as parseVmlRect, Gn as parseVmlEquationXml, Gr as stringifyVmlStyle, Gt as VmlIsCommentOptions, H as parseVmlLine, Hn as parseVmlClipPath, Hr as VmlShapeStyle, Ht as VmlShadowType, I as nextVmlShapeId, In as VmlOleObjectOptions, Ir as parseVmlTrueFalse, It as VmlStrokeJoinStyle, J as parseVmlShapeChild, Jn as parseVmlLock, Jt as parseVmlTextData, K as parseVmlRoundRect, Kn as parseVmlExtrusion, Kr as styleToKeyMap, Kt as VmlTextDataOptions, L as parseVmlArc, Ln as VmlOleObjectType, Lr as parseVmlTrueFalseBlank, Lt as VmlStrokeLineStyle, M as VmlRoundRectOptions, Mn as VmlLockOptions, Mr as VmlShapeAttributes, Mt as VmlStrokeArrowType, N as VmlShapeChild, Nn as VmlOfficeFillOptions, Nr as VmlTrueFalse, Nt as VmlStrokeArrowWidth, O as VmlLineOptions, On as VmlExtrusionPlane, Or as VmlInsetMode, Ot as VmlTextboxOptions, P as VmlShapeOptions, Pn as VmlOfficeFillType, Pr as VmlTrueFalseBlank, Pt as VmlStrokeChildOptions, Q as stringifyVmlCurve, Qn as parseVmlSkew, Qt as parseVmlPath, R as parseVmlBackground, Rn as VmlOleUpdateMode, Rr as stringifyVmlAttributes, Rt as VmlStrokeOptions, S as VmlBackgroundOptions, Sn as VmlDiagramOptions, Sr as VmlColor, St as stringifyVmlBorder, T as VmlEditAs, Tn as VmlExtAttribute, Tr as VmlCoreAttributes, Tt as VmlTextPathStyle, U as parseVmlOval, Un as parseVmlComplex, Ur as parseVmlShapeStyle, Ut as parseVmlShadow, V as parseVmlImage, Vn as parseVmlCallout, Vr as LengthUnit, Vt as VmlShadowOptions, W as parseVmlPolyline, Wn as parseVmlDiagram, Wr as parseVmlStyle, Wt as stringifyVmlShadow, X as stringifyVmlArc, Xn as parseVmlOleObject, Xt as stringifyVmlTextData, Y as parseVmlShapetype, Yn as parseVmlOfficeFill, Yt as stringifyVmlIsComment, Z as stringifyVmlBackground, Zn as parseVmlSignatureLine, Zt as VmlPathOptions, _ as stringifyVmlColorMenu, _n as VmlCalloutAngle, _r as VML_OFFICE_SHAPE_ATTRS, _t as VmlWrapType, a as VmlRegroupTableOptions, an as parseVmlHandles, ar as stringifyVmlInk, at as stringifyVmlRoundRect, b as stringifyVmlShapeLayout, bn as VmlColorMode, br as VmlAttrSpec, bt as parseVmlWrap, c as VmlRuleProxyOptions, cn as parseVmlFormulas, cr as stringifyVmlOleObject, ct as stringifyVmlShapetype, d as VmlShapeDefaultsOptions, dn as VmlFillOptions, dr as VmlClientDataOptions, dt as VmlBorderOptions, en as VmlImageDataOptions, er as stringifyVmlClipPath, et as stringifyVmlImage, f as VmlShapeLayoutOptions, fn as VmlFillType, fr as VmlClientObjectType, ft as VmlBorderType, g as parseVmlShapeLayout, gn as EXT_ATTR, gr as VML_OFFICE_CORE_ATTRS, gt as VmlWrapSide, h as parseVmlShapeDefaults, hn as stringifyVmlFill, hr as VML_CORE_ATTRS, ht as VmlWrapOptions, i as VmlRegroupEntryOptions, in as VmlHandlesOptions, ir as stringifyVmlExtrusion, it as stringifyVmlRect, j as VmlRectOptions, jn as VmlInkOptions, jr as VmlScreenSize, jt as VmlStrokeArrowLength, k as VmlOvalOptions, kn as VmlExtrusionRender, kr as VmlOfficeCoreAttributes, kt as parseVmlTextbox, l as VmlRuleType, ln as stringifyVmlFormulas, lr as stringifyVmlSignatureLine, lt as VML_BORDER_TAGS, m as parseVmlColorMru, mn as parseVmlFill, mr as stringifyVmlClientData, mt as VmlVerticalAnchor, n as VmlColorMruOptions, nn as stringifyVmlImageData, nr as stringifyVmlDiagram, nt as stringifyVmlOval, o as VmlRuleHow, on as stringifyVmlHandles, or as stringifyVmlLock, ot as stringifyVmlShape, p as parseVmlColorMenu, pn as VmlImageAspect, pr as parseVmlClientData, pt as VmlHorizontalAnchor, q as parseVmlShape, qn as parseVmlInk, qt as parseVmlIsComment, r as VmlIdMapOptions, rn as VmlHandleOptions, rr as stringifyVmlEquationXml, rt as stringifyVmlPolyline, s as VmlRuleOptions, sn as VmlFormulasOptions, sr as stringifyVmlOfficeFill, st as stringifyVmlShapeChild, t as VmlColorMenuOptions, tn as parseVmlImageData, tr as stringifyVmlComplex, tt as stringifyVmlLine, u as VmlRulesOptions, un as VmlFillMethod, ur as stringifyVmlSkew, ut as VmlAnchorLockOptions, v as stringifyVmlColorMru, vn as VmlCalloutOptions, vr as VML_SHAPE_ATTRS, vt as parseVmlAnchorLock, w as VmlCurveOptions, wn as VmlEquationXmlOptions, wr as VmlConnectorType, wt as VmlTextPathOptions, x as VmlArcOptions, xn as VmlComplexOptions, xr as VmlBlackWhiteMode, xt as stringifyVmlAnchorLock, y as stringifyVmlShapeDefaults, yn as VmlClipPathOptions, yr as VmlAttrKind, yt as parseVmlBorder, z as parseVmlCurve, zn as VmlSignatureLineOptions, zr as stringifyVmlTrueFalse, zt as parseVmlStroke } from "./index-L6AXewfV.mjs";
|
|
12
12
|
import { a as stringifyColorMapping, c as themeOverrideDesc, d as buildThemeXml, f as createThemeXml, i as parseColorMapping, l as themeDesc, n as stringifyShapeStyle, o as ThemeManagerOptions, r as DEFAULT_COLOR_MAPPING, s as themeManagerDesc, t as parseShapeStyle, u as DEFAULT_COLORS } from "./index-DcukVskh.mjs";
|
|
13
13
|
import { Element, ParseOptions } from "@office-open/xml";
|
|
@@ -22,6 +22,7 @@ declare class Media<T extends BaseMediaEntry> {
|
|
|
22
22
|
private readonly byContent;
|
|
23
23
|
private readonly verified;
|
|
24
24
|
private counter;
|
|
25
|
+
private cachedArray;
|
|
25
26
|
addMedia(data: Uint8Array, type: string, build: (fileName: string) => T, fileName?: string): T;
|
|
26
27
|
private nextName;
|
|
27
28
|
private contentKey;
|
|
@@ -39,6 +40,7 @@ interface EmbeddingData {
|
|
|
39
40
|
declare class EmbeddingCollection {
|
|
40
41
|
private map;
|
|
41
42
|
private counter;
|
|
43
|
+
private cachedArray;
|
|
42
44
|
nextEmbeddingName(): string;
|
|
43
45
|
addEmbedding(data: Uint8Array, requestedName?: string, progId?: string, relationshipType?: EmbeddingData["relationshipType"]): EmbeddingData;
|
|
44
46
|
get array(): EmbeddingData[];
|
|
@@ -297,6 +299,13 @@ declare const DOCX_PARTS: {
|
|
|
297
299
|
readonly kind: "repeated";
|
|
298
300
|
readonly countFrom: "chartCount";
|
|
299
301
|
};
|
|
302
|
+
}, {
|
|
303
|
+
readonly path: "word/charts/userShapes${i}.xml";
|
|
304
|
+
readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.chartUserShapes+xml";
|
|
305
|
+
readonly presence: {
|
|
306
|
+
readonly kind: "repeated";
|
|
307
|
+
readonly countFrom: "charts with user shapes";
|
|
308
|
+
};
|
|
300
309
|
}, {
|
|
301
310
|
readonly path: "word/diagrams/data${i}.xml";
|
|
302
311
|
readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml";
|
|
@@ -535,6 +544,13 @@ declare const PPTX_PARTS: {
|
|
|
535
544
|
readonly kind: "repeated";
|
|
536
545
|
readonly countFrom: "charts";
|
|
537
546
|
};
|
|
547
|
+
}, {
|
|
548
|
+
readonly path: "ppt/charts/userShapes${i}.xml";
|
|
549
|
+
readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.chartUserShapes+xml";
|
|
550
|
+
readonly presence: {
|
|
551
|
+
readonly kind: "repeated";
|
|
552
|
+
readonly countFrom: "charts with user shapes";
|
|
553
|
+
};
|
|
538
554
|
}, {
|
|
539
555
|
readonly path: "ppt/diagrams/data${i}.xml";
|
|
540
556
|
readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml";
|
|
@@ -688,6 +704,13 @@ declare const XLSX_PARTS: {
|
|
|
688
704
|
readonly kind: "repeated";
|
|
689
705
|
readonly countFrom: "charts";
|
|
690
706
|
};
|
|
707
|
+
}, {
|
|
708
|
+
readonly path: "xl/charts/userShapes${i}.xml";
|
|
709
|
+
readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.chartUserShapes+xml";
|
|
710
|
+
readonly presence: {
|
|
711
|
+
readonly kind: "repeated";
|
|
712
|
+
readonly countFrom: "charts with user shapes";
|
|
713
|
+
};
|
|
691
714
|
}, {
|
|
692
715
|
readonly path: "xl/pivotTables/pivotTable${i}.xml";
|
|
693
716
|
readonly contentType: "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml";
|
|
@@ -910,5 +933,5 @@ interface BaseGroupOptions extends NonVisualDrawingPropertiesOptions {
|
|
|
910
933
|
}
|
|
911
934
|
declare function pickGroupBase(opts: BaseGroupOptions | undefined): Partial<BaseGroupOptions>;
|
|
912
935
|
//#endregion
|
|
913
|
-
export { AbsoluteSizeAnchorOptions, type AdjustListOptions, type AdjustOptions, AlgorithmOptions, AlgorithmParameterOptions, AlgorithmParameterType, AlgorithmType, type AnimateOneByOne, type AnimateOneByOneOptions, type AnimationLevel, type AnimationLevelOptions, type AppPropertiesInput, type AppPropertiesOptions, ArgbHexColor, AutoNumberFormat, AxisCrossBetween, AxisCrosses, AxisKind, AxisLabelAlignment, AxisNumberFormatOptions, AxisOptions, AxisOrientation, AxisPosition, AxisScalingOptions, AxisTickLabelPosition, AxisTickMark, type BackdropOptions, BandFormatOptions, BarShape, Base64, BaseConnectorOptions, BaseGroupOptions, type BaseMediaEntry, type BasePatchOptions, BasePictureOptions, BaseTableCellOptions, BaseTableOptions, BaseTableRowOptions, type BevelOptions, type BevelPreset, type BlackWhiteMode, BlendMode, type BlipCompression, BlipDescriptorOptions, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, BodyPropertiesOptions, BubbleSeriesData, BuiltInDisplayUnit, BulletAutoNumOptions, BulletCharOptions, BulletNoneOption, BulletOptions, BulletPictureOptions, BulletStyleOptions, COLOR_CATEGORIES, type CameraOptions, Cell3DOptions, ChartCollection, ChartData, ChartGrouping, ChartHeaderFooterOptions, ChartLinesOptions, ChartPageMarginsOptions, ChartPageSetupOptions, ChartPivotFormatOptions, ChartSeriesCommon, ChartSeriesData, ChartSpaceOptions, ChartStyle2010Options, ChartTitleOptions, ChartType, ChildOrder, ChooseOptions, ColorDefinitionOptions, type ColorListOptions, type ColorMappingOptions, type ColorMethod, type ColorSchemeIndex, type ColorSchemeOptions, type ColorStyleLabelOptions, type ColorTransformOptions, type ColorsDefinitionHeaderListOptions, type ColorsDefinitionHeaderOptions, type CompileFn, type CompoundLine, type CompoundLineType, type CompressionOptions, ConditionFunction, ConditionOperator, type ConnectionSite, type ConnectorLockingOptions, ConstraintOperator, ConstraintOptions, ConstraintRelationship, ConstraintType, type ContentPartLockingOptions, type ContentTypeDefault, type ContentTypeOverride, type ContentTypeOverrideEntry, type ContentTypesInput, type CorePropertiesOptions, type CustomColorOptions, type CustomDescriptor, type CustomGeometryOptions, type CustomPropertiesInput, type CustomPropertyOptions, DEFAULT_COLORS, DEFAULT_COLOR_MAPPING, DEFAULT_DRAWING_XML, DEFAULT_OUTLINE_WIDTH, DEFAULT_SHADOW_ALPHA, DEFAULT_SHADOW_BLUR_RADIUS, DEFAULT_SHADOW_DIRECTION, DEFAULT_SHADOW_DISTANCE, DEFAULT_TEXT_STYLES, DOCX_NS, DOCX_PARTS, type DashStop, DataLabelOptions, DataLabelPosition, DataLabelsOptions, DataModelOptions, DataPointOptions, DataTableOptions, DataType, DateTime, type DefaultShapeDefinitionOptions, type DefaultShapeStyleOptions, type DeriveContentTypesOptions, type DescriptorFieldSpec, type DiagramCategoryOptions, type DiagramDescriptionOptions, DiagramDirection, type DiagramExtensionListOptions, type DiagramExtensionOptions, DiagramIterationOptions, type DiagramNameOptions, type DiagramRelationshipIdsOptions, type DiagramStyleOptions, type DiagramTextPropertiesOptions, DisplayBlanksAs, DisplayUnitsOptions, EXT_ATTR, type EffectContainer, type EffectDagOptions, type EffectExtent, type EffectListOptions, type EffectStyleOptions, EmbeddingCollection, type EmbeddingData, type EncryptedContainerOptions, type EndpointConnectionOptions, ErrorBarDirection, ErrorBarOptions, ErrorBarType, ErrorValueType, ExternalDataOptions, type ExtraColorSchemeOptions, FIELD_SPECS, type FieldConsistencyReport, type FillOptions, type FillOverlayEffectOptions, FlatTextOptions, FontCollectionIndex, type FontCollectionOptions, type FontReferenceOptions, type FontSchemeOptions, ForEachOptions, type FormatSchemeOptions, type GeomRect, type GeometryGuide, type GlowEffectOptions, type GradientFillOptions, type GradientShadeOptions, type GradientStop, type GradientStopOptions, type GraphicFrameLockingOptions, type GroupLockingOptions, GroupShapePropertiesOptions, type GroupTransform2DOptions, Guid, type HeadingPairOptions, HexColor, HexColorOrAuto, type HierBranch, type HierBranchOptions, type HslColorOptions, type HueDirection, type HyperlinkTarget, IMAGE_MEDIA_CONTENT_TYPES, IdFormat, ImageFileType, type InnerShadowEffectOptions, LAYOUT_CATEGORIES, type LayoutDefinitionHeaderListOptions, type LayoutDefinitionHeaderOptions, LayoutDefinitionOptions, LayoutMode, LayoutNodeChild, LayoutNodeOptions, LayoutRuleOptions, LayoutShapeOptions, LayoutTarget, LegendEntryOptions, LegendPosition, LengthUnit, type LightRigOptions, type LineCap, type LineEndLength, type LineEndOptions, type LineEndType, type LineEndWidth, type LineJoin, type LinearShadeOptions, LongHexNumber, ManualLayoutOptions, MarkerOptions, MarkerSymbol, type MaxChildrenOptions, Media, ModelConnectionOptions, ModelPointOptions, Mutable, type NonVisualContentPartPropertiesOptions, type NonVisualDrawingPropertiesOptions, NormalAutofitOptions, OOXML_CANONICAL_PREFIXES, type ObjectDefaultsOptions, OfPieType, type OnOffStyleType, OoxmlMimeType, type OpcCode, type OpcIssue, type OpcSeverity, type OrderViolation, type OrgChartOptions, OtherwiseOptions, type OuterShadowEffectOptions, type OutlineFillProperties, type OutlineOptions, type OutputByType, type OutputType, PART_REGISTRIES, PPTX_NS, PPTX_PARTS, type PackagePartRegistry, type Packer, type PackerOptions, PageSetupOrientation, Panose, ParagraphDescriptorOptions, ParsedArchive, type PartContentTypeResolver, type PartDefinition, type PartPresence, type PassthroughPart, type PassthroughRelationship, type PassthroughResult, type PathCommand, type PathFillMode, type PathOptions, type PathShade, type PathShadeOptions, type PatternFillOptions, type PenAlignment, Percentage, PictureFormat, type PictureLockingOptions, PictureOptionsOptions, PivotSourceOptions, type PlaceholderDelimiters, type Point3D, PointPropertySetOptions, PositivePercentage, PositiveUniversalMeasure, type PreferredChildrenOptions, type PresentationLayoutVariablesOptions, PresetColor, type PresetColorOptions, type PresetDash, type PresetGeometryOptions, type PresetMaterial, type PresetPattern, type PresetShadow, type PresetShadowEffectOptions, PresetTextShapeOptions, PrintSettingsOptions, ProtectionOptions, RadarStyle, type ReadContext, type RectAlignment, type ReflectionEffectOptions, type RelationshipType, Relationships, RelativeMeasure, type RelativeRect, RelativeSizeAnchorOptions, type RenderedParagraphNode, type ReplacerOptions, ResizeHandles, type RgbColorOptions, type RoundTripResult, RunFont, STYLE_CATEGORIES, SampleDataOptions, type ScRgbColorOptions, ScatterSeriesData, type Scene3DOptions, SchemeColor, type SchemeColorOptions, SecondaryChartGroupOptions, type Shape3DOptions, type ShapeLockingOptions, ShapePropertiesExtensionOptions, ShapePropertiesOptions, type ShapeType, ShortHexNumber, SizeRepresents, SmartArtCollection, SmartArtData, SmartArtRawParts, SmartArtRelOptions, type SolidFillOptions, type SourceRectangleOptions, type SphereCoords, SplitType, StrikeStyle, type StyleDefinitionHeaderListOptions, type StyleDefinitionHeaderOptions, StyleDefinitionOptions, StyleLabelOptions, type StyleMatrixIndex, type StyleMatrixReferenceOptions, type SupplementalFontOptions, SurfaceOptions, SystemColor, type SystemColorOptions, TabStopOptions, type TableBackgroundStyleOptions, type TableCellBorderOptions, type TableCellStyleOptions, type TableFontReferenceOptions, type TablePartStyleOptions, type TableStyleListOptions, type TableStyleOptions, type TableStyleRegion, type TableTextStyleOptions, TargetModeType, TextAlignment, TextBodyOptions, TextBodyWrapping, TextBreakOptions, TextCapitalization, TextCharacterPropertiesOptions, TextFieldOptions, TextFont, type TextFontOptions, TextHorzOverflow, TextHyperlinkOptions, TextListStyleOptions, TextParagraphPropertiesOptions, TextProperties3DOptions, TextRunOptions, TextShapePreset, TextStylesOptions, TextTabAlignment, TextVertOverflow, TextVertical, ThemeColor, ThemeFont, type ThemeManagerOptions, type ThemeOptions, type ThemeOverrideOptions, type ThemeableLineStyleOptions, type TileAlignment, type TileFlipMode, type TileOptions, TimeUnit, ToUint8ArrayOptions, TokenNotFoundError, type Transform2DOptions, TreeNode, TrendlineLabelOptions, TrendlineOptions, TrendlineType, UcharHexNumber, UnderlineStyle, UniqueNumericIdCreator, UniversalMeasure, UnsignedShortHex, UserShapeConnectorOptions, UserShapeExtentOptions, UserShapeGraphicFrameOptions, UserShapeGroupOptions, UserShapeMarkerOptions, UserShapeObjectOptions, UserShapePictureOptions, UserShapeShapeOptions, UserShapesOptions, VML_BORDER_TAGS, VML_CORE_ATTRS, VML_OFFICE_CORE_ATTRS, VML_OFFICE_SHAPE_ATTRS, VML_SHAPE_ATTRS, VariableListOptions, type VariantValue, type Vector3D, VerticalAnchor, View3DOptions, VmlAnchorLockOptions, VmlArcOptions, VmlAttrKind, VmlAttrSpec, VmlBackgroundOptions, VmlBaseShapeFields, VmlBlackWhiteMode, VmlBorderOptions, VmlBorderType, VmlCalloutAngle, VmlCalloutOptions, VmlClientDataOptions, VmlClientObjectType, VmlClipPathOptions, VmlColor, VmlColorMenuOptions, VmlColorMode, VmlColorMruOptions, VmlComplexOptions, VmlConnectType, VmlConnectorType, VmlCoreAttributes, VmlCurveOptions, VmlDiagramLayout, VmlDiagramOptions, VmlDiagramRelationOptions, VmlEditAs, VmlEquationXmlOptions, VmlExtAttribute, VmlExtensionMode, VmlExtrusionOptions, VmlExtrusionPlane, VmlExtrusionRender, VmlExtrusionType, VmlFillMethod, VmlFillOptions, VmlFillType, VmlFormulasOptions, VmlGroupOptions, VmlHandleOptions, VmlHandlesOptions, VmlHorizontalAnchor, VmlHorizontalRuleAlign, VmlIdMapOptions, VmlImageAspect, VmlImageDataOptions, VmlImageOptions, VmlInkOptions, VmlInsetMode, VmlIsCommentOptions, VmlLineOptions, VmlLockOptions, VmlOfficeCoreAttributes, VmlOfficeFillOptions, VmlOfficeFillType, VmlOfficeShapeAttributes, VmlOleDrawAspect, VmlOleObjectOptions, VmlOleObjectType, VmlOleUpdateMode, VmlOvalOptions, VmlPathOptions, VmlPolylineOptions, VmlRectOptions, VmlRegroupEntryOptions, VmlRegroupTableOptions, VmlRoundRectOptions, VmlRuleHow, VmlRuleOptions, VmlRuleProxyOptions, VmlRuleType, VmlRulesOptions, VmlScreenSize, VmlShadowOptions, VmlShadowType, VmlShapeAttributes, VmlShapeChild, VmlShapeDefaultsOptions, VmlShapeLayoutOptions, VmlShapeOptions, VmlShapeStyle, VmlShapetypeOptions, VmlSignatureLineOptions, VmlSkewOptions, VmlStrokeArrowLength, VmlStrokeArrowType, VmlStrokeArrowWidth, VmlStrokeChildOptions, VmlStrokeEndCap, VmlStrokeJoinStyle, VmlStrokeLineStyle, VmlStrokeOptions, VmlTextDataOptions, VmlTextPathOptions, VmlTextPathStyle, VmlTextboxOptions, VmlTrueFalse, VmlTrueFalseBlank, VmlVerticalAnchor, VmlWrapOptions, VmlWrapSide, VmlWrapType, WhenOptions, type WriteContext, XLSX_PARTS, type XmlNamespaceOptions, type XmlifyedFile, XmlifyedFileEntry, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, type ZipOptions, type ZipPartSink, ZipStreamWriter, type Zippable, addBinaryFile, addSmartArtRelationships, appPropertiesDesc, appendContentType, appendOverride, appendRelationship, applyCorePropertiesOverride, assertEncryptedExclusive, bevelDesc, blipDesc, blipFillDesc, bodyPropertiesDesc, buildContentTypeOverrides, buildCorePropertiesXmlString, buildFill, buildHyperlinkElement, buildRootRelationships, buildThemeXml, calculateEffectExtent, cell3DDesc, chartSpaceDesc, checkOrder, collectPassthroughParts, collectPlaceholderKeys, colorsDefDesc, compileMapping, connectorLockingDesc, contentTypesDesc, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertEmuToTwip, convertInchesToEmu, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertPixelsToEmu, convertPointsToEmu, convertPointsToTwip, convertToEmu, convertToInch, convertToPt, convertToTwip, convertTwipToEmu, convertTwipToPoints, convertUniversalMeasureToEmu, convertUniversalMeasureToInch, convertUniversalMeasureToPt, convertUniversalMeasureToTwip, createAdjust, createAdjustList, createAnimateOneByOne, createAnimationLevel, createBevel, createBlip, createBlipEffects, createBlipFill, createBodyProperties, createBottomBevel, createColorElement, createColorTransforms, createColorsDefinitionHeader, createColorsDefinitionHeaderList, createConnectorLocking, createContentPartLocking, createCustomDash, createCustomGeometry, createDataModel, createDiagramExtensionList, createDiagramRelationshipIds, createDiagramShape3D, createDiagramStyle, createDiagramTextProperties, createEffectColorList, createEffectDag, createEffectList, createExtensionList, createFillColorList, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefinitionHeader, createLayoutDefinitionHeaderList, createLineColorList, createLineEnd, createMaxChildren, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createPacker, createPatternFill, createPictureLocking, createPreferredChildren, createPresentationLayoutVariables, createPresetColor, createPresetShadowEffect, createReflectionEffect, createReplacer, createRgbColor, createRunRenderer, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createSplitInject, createStyleDefinitionHeader, createStyleDefinitionHeaderList, createStyleLabel, createSystemColor, createTableStyle, createTableStyleList, createTextEffectColorList, createTextElementContents, createTextFillColorList, createTextLineColorList, createThemeXml, createTileInfo, createTokenReplacer, createTransform2D, createTraverser, createZipStream, customGeometryDesc, customPropertiesDesc, dateTimeValue, decimalNumber, decodeBase64, definitionId, deriveContentTypes, derivePasswordHash, diagramExtensionListDesc, diagramRelationshipIdsDesc, diagramStyleDesc, diffTagSets, dropDanglingPassthroughRels, effectListDesc, eighthPointMeasureValue, emitAngle, emitColorChoice, emitFillXml, emitPercent, encodeBase64, encryptedContainerOutput, encryptedContainerStream, extUriMatches, extractBlipFillMedia, fillDesc, findAndReplaceImagePlaceholders, findFieldSpec, findFillChild, formatId, getAudioRefs, getColorXml, getFirstLevelElements, getLayoutXml, getMediaRefs, getNextRelationshipIndex, getOleRefs, getReferencedMedia, getStyleXml, getVideoRefs, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupShapePropertiesDesc, groupTransform2DDesc, hasPlaceholders, hashPasswordAgile, hashedId, hexBinary, hexColorValue, hpsMeasureValue, hslColorDesc, imageTypeFromPath, invertMap, isBase64DataURL, isEncryptedContainer, isPlainRgbColor, layoutDefDesc, levelForMediaName, longHexNumber, mapOptional, measurementOrPercentValue, nextNumericId, nextVmlShapeId, optionalRelsPart, outlineDesc, paragraphDesc, parse, parseAngle, parseArchive, parseBodyProperties, parseColorChoice, parseColorChoiceElement, parseColorDefinition, parseColorMapping, parseCorePropsElement, parseDataModelOptions, parseEndpointConnection, parseLayoutDefinition, parseNonVisualContentPartProperties, parseNonVisualDrawingProperties, parseOnOff, parsePercent, parsePercentAttr, parseShapeStyle, parseStyleDefinition, parseTableStyle, parseTableStyleList, parseTextStyles, parseUniversalMeasure, parseVariantValue, parseVector, parseVmlAnchorLock, parseVmlArc, parseVmlAttributes, parseVmlBackground, parseVmlBorder, parseVmlCallout, parseVmlClientData, parseVmlClipPath, parseVmlColorMenu, parseVmlColorMru, parseVmlComplex, parseVmlCurve, parseVmlDiagram, parseVmlEquationXml, parseVmlExtrusion, parseVmlFill, parseVmlFormulas, parseVmlGroup, parseVmlHandles, parseVmlImage, parseVmlImageData, parseVmlInk, parseVmlIsComment, parseVmlLine, parseVmlLock, parseVmlOfficeFill, parseVmlOleObject, parseVmlOval, parseVmlPath, parseVmlPolyline, parseVmlRect, parseVmlRoundRect, parseVmlShadow, parseVmlShape, parseVmlShapeChild, parseVmlShapeDefaults, parseVmlShapeLayout, parseVmlShapeStyle, parseVmlShapetype, parseVmlSignatureLine, parseVmlSkew, parseVmlStroke, parseVmlStyle, parseVmlTextData, parseVmlTextPath, parseVmlTextbox, parseVmlTrueFalse, parseVmlTrueFalseBlank, parseVmlWrap, partPathToRelsPath, patchSpaceAttribute, patternFillDesc, percentageValue, pickConnectorBase, pickGroupBase, pickNonVisualDrawingProperties, pictureLockingDesc, pointMeasureValue, positiveUniversalMeasureValue, presentationLayoutVariablesDesc, presetColorDesc, presetGeometryDesc, randomBytes, readHyperlink, readParagraphProperties, registerHyperlink, removeOverride, replaceAllPlaceholders, replaceAudioPlaceholders, replaceChartPlaceholders, replaceHyperlinkPlaceholders, replaceImageLinkPlaceholders, replaceImagePlaceholders, replaceMediaPlaceholders, replaceNumberingPlaceholders, replaceOleLinkPlaceholders, replaceOlePlaceholders, replacePlaceholders, replaceSmartArtPlaceholders, replaceVideoPlaceholders, resolveRelationshipTarget, resolverFromRegistry, rgbColorDesc, roundTripFields, runPropertiesDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, shapePropertiesDesc, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, solidFillDesc, sourceRectangleDesc, strFromU8, stretchDesc, stringify, stringifyAdjustmentValues, stringifyBlipEffects, stringifyColorChoice, stringifyColorDefinition, stringifyColorDefinitionPart, stringifyColorMapping, stringifyConnection, stringifyDataModel, stringifyDataModelOptions, stringifyEndpointConnection, stringifyLayoutDefinition, stringifyLayoutDefinitionPart, stringifyLineProperties, stringifyNonVisualContentPartProperties, stringifyNonVisualDrawingProperties, stringifyParagraphPropertiesElement, stringifyPoint, stringifyPresetGeometry, stringifyRunProperties, stringifyShapeStyle, stringifyStretch, stringifyStringVector, stringifyStyleDefinition, stringifyStyleDefinitionPart, stringifyTextListStyleTag, stringifyTextRun, stringifyTextStyles, stringifyTransPoint, stringifyVariantValue, stringifyVmlAnchorLock, stringifyVmlArc, stringifyVmlAttributes, stringifyVmlBackground, stringifyVmlBorder, stringifyVmlCallout, stringifyVmlClientData, stringifyVmlClipPath, stringifyVmlColorMenu, stringifyVmlColorMru, stringifyVmlComplex, stringifyVmlCurve, stringifyVmlDiagram, stringifyVmlEquationXml, stringifyVmlExtrusion, stringifyVmlFill, stringifyVmlFormulas, stringifyVmlGroup, stringifyVmlHandles, stringifyVmlImage, stringifyVmlImageData, stringifyVmlInk, stringifyVmlIsComment, stringifyVmlLine, stringifyVmlLock, stringifyVmlOfficeFill, stringifyVmlOleObject, stringifyVmlOval, stringifyVmlPath, stringifyVmlPolyline, stringifyVmlRect, stringifyVmlRoundRect, stringifyVmlShadow, stringifyVmlShape, stringifyVmlShapeChild, stringifyVmlShapeDefaults, stringifyVmlShapeLayout, stringifyVmlShapetype, stringifyVmlSignatureLine, stringifyVmlSkew, stringifyVmlStroke, stringifyVmlStyle, stringifyVmlTextData, stringifyVmlTextPath, stringifyVmlTextbox, stringifyVmlTrueFalse, stringifyVmlTrueFalseBlank, stringifyVmlWrap, stripColorHashPrefix, styleDefDesc, styleToKeyMap, summarizeOpcIssues, systemColorDesc, textBodyDesc, textListStyleDesc, textRunDesc, textStylesDesc, themeDesc, themeManagerDesc, themeOverrideDesc, tileDesc, toJson, toUint8Array, transform2DDesc, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber, unzipSync, userShapesDesc, validateOpcConsistency, withDiagramNamespaces, xsdAnimCalcMode, xsdAnimClass, xsdAnimLevel, xsdAnimValueType, xsdAnimationDgmBuild, xsdAxisCrossBetween, xsdAxisCrosses, xsdAxisLabelAlignment, xsdAxisOrientation, xsdAxisPosition, xsdBlendMode, xsdChartBuild, xsdComments, xsdCompoundLine, xsdConsolidateFunction, xsdDashStyle, xsdDataLabelPosition, xsdDiagramBuild, xsdDiagramDirection, xsdEffectContainer, xsdErrorValueType, xsdFontAlignment, xsdHierBranch, xsdHueDirection, xsdIterateType, xsdJcAlignment, xsdLegendPosition, xsdLightRigDirection, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdMathStyle, xsdOnOffStyle, xsdOrient, xsdPathFillMode, xsdPattern, xsdPenAlignment, xsdPlaceholderType, xsdPresetShadow, xsdRectAlignment, xsdResizeHandles, xsdShadingPattern, xsdSizeRepresents, xsdSlideLayoutType, xsdSplitType, xsdStrikeStyle, xsdTableWidthType, xsdTextAlign, xsdTextAnchor, xsdTextBuild, xsdTextCaps, xsdTextTabAlignment, xsdTextVerticalType, xsdTotalsRowFunction, xsdTrendlineType, xsdUnderlineStyle, xsdVerticalMergeRev, zipAndConvert, zipSync, zipSyncAndConvert };
|
|
936
|
+
export { AbsoluteSizeAnchorOptions, type AdjustListOptions, type AdjustOptions, AlgorithmOptions, AlgorithmParameterOptions, AlgorithmParameterType, AlgorithmType, type AnimateOneByOne, type AnimateOneByOneOptions, type AnimationLevel, type AnimationLevelOptions, type AppPropertiesInput, type AppPropertiesOptions, ArgbHexColor, AutoNumberFormat, AxisCrossBetween, AxisCrosses, AxisKind, AxisLabelAlignment, AxisNumberFormatOptions, AxisOptions, AxisOrientation, AxisPosition, AxisScalingOptions, AxisTickLabelPosition, AxisTickMark, type BackdropOptions, BandFormatOptions, BarShape, Base64, BaseConnectorOptions, BaseGroupOptions, type BaseMediaEntry, type BasePatchOptions, BasePictureOptions, BaseTableCellOptions, BaseTableOptions, BaseTableRowOptions, type BevelOptions, type BevelPreset, type BlackWhiteMode, BlendMode, type BlipCompression, BlipDescriptorOptions, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, BodyPropertiesOptions, BubbleSeriesData, BuiltInDisplayUnit, BulletAutoNumOptions, BulletCharOptions, BulletNoneOption, BulletOptions, BulletPictureOptions, BulletStyleOptions, COLOR_CATEGORIES, type CameraOptions, Cell3DOptions, ChartCollection, ChartData, ChartGrouping, ChartHeaderFooterOptions, ChartLinesOptions, ChartPageMarginsOptions, ChartPageSetupOptions, ChartPivotFormatOptions, ChartSeriesCommon, ChartSeriesData, ChartSpaceOptions, ChartStyle2010Options, ChartTitleOptions, ChartType, ChartUserShapesOptions, ChildOrder, ChooseOptions, ColorDefinitionOptions, type ColorListOptions, type ColorMappingOptions, type ColorMethod, type ColorSchemeIndex, type ColorSchemeOptions, type ColorStyleLabelOptions, type ColorTransformOptions, type ColorsDefinitionHeaderListOptions, type ColorsDefinitionHeaderOptions, type CompileFn, type CompoundLine, type CompoundLineType, type CompressionOptions, ConditionFunction, ConditionOperator, type ConnectionSite, type ConnectorLockingOptions, ConstraintOperator, ConstraintOptions, ConstraintRelationship, ConstraintType, type ContentPartLockingOptions, type ContentTypeDefault, type ContentTypeOverride, type ContentTypeOverrideEntry, type ContentTypesInput, type CorePropertiesOptions, type CustomColorOptions, type CustomDescriptor, type CustomGeometryOptions, type CustomPropertiesInput, type CustomPropertyOptions, DEFAULT_COLORS, DEFAULT_COLOR_MAPPING, DEFAULT_DRAWING_XML, DEFAULT_OUTLINE_WIDTH, DEFAULT_SHADOW_ALPHA, DEFAULT_SHADOW_BLUR_RADIUS, DEFAULT_SHADOW_DIRECTION, DEFAULT_SHADOW_DISTANCE, DEFAULT_TEXT_STYLES, DOCX_NS, DOCX_PARTS, type DashStop, DataLabelOptions, DataLabelPosition, DataLabelsOptions, DataModelOptions, DataPointOptions, DataTableOptions, DataType, DateTime, type DefaultShapeDefinitionOptions, type DefaultShapeStyleOptions, type DeriveContentTypesOptions, type DescriptorFieldSpec, type DiagramCategoryOptions, type DiagramDescriptionOptions, DiagramDirection, type DiagramExtensionListOptions, type DiagramExtensionOptions, DiagramIterationOptions, type DiagramNameOptions, type DiagramRelationshipIdsOptions, type DiagramStyleOptions, type DiagramTextPropertiesOptions, DisplayBlanksAs, DisplayUnitsOptions, EXT_ATTR, type EffectContainer, type EffectDagOptions, type EffectExtent, type EffectListOptions, type EffectStyleOptions, EmbeddingCollection, type EmbeddingData, type EncryptedContainerOptions, type EndpointConnectionOptions, ErrorBarDirection, ErrorBarOptions, ErrorBarType, ErrorValueType, ExternalDataOptions, type ExtraColorSchemeOptions, FIELD_SPECS, type FieldConsistencyReport, type FillOptions, type FillOverlayEffectOptions, FlatTextOptions, FontCollectionIndex, type FontCollectionOptions, type FontReferenceOptions, type FontSchemeOptions, ForEachOptions, type FormatSchemeOptions, type GeomRect, type GeometryGuide, type GlowEffectOptions, type GradientFillOptions, type GradientShadeOptions, type GradientStop, type GradientStopOptions, type GraphicFrameLockingOptions, type GroupLockingOptions, GroupShapePropertiesOptions, type GroupTransform2DOptions, Guid, type HeadingPairOptions, HexColor, HexColorOrAuto, type HierBranch, type HierBranchOptions, type HslColorOptions, type HueDirection, type HyperlinkTarget, IMAGE_MEDIA_CONTENT_TYPES, IdFormat, ImageFileType, type InnerShadowEffectOptions, LAYOUT_CATEGORIES, type LayoutDefinitionHeaderListOptions, type LayoutDefinitionHeaderOptions, LayoutDefinitionOptions, LayoutMode, LayoutNodeChild, LayoutNodeOptions, LayoutRuleOptions, LayoutShapeOptions, LayoutTarget, LegendEntryOptions, LegendPosition, LengthUnit, type LightRigOptions, type LineCap, type LineEndLength, type LineEndOptions, type LineEndType, type LineEndWidth, type LineJoin, type LinearShadeOptions, LongHexNumber, ManualLayoutOptions, MarkerOptions, MarkerSymbol, type MaxChildrenOptions, Media, ModelConnectionOptions, ModelPointOptions, Mutable, type NonVisualContentPartPropertiesOptions, type NonVisualDrawingPropertiesOptions, NormalAutofitOptions, OOXML_CANONICAL_PREFIXES, type ObjectDefaultsOptions, OfPieType, type OnOffStyleType, OoxmlMimeType, type OpcCode, type OpcIssue, type OpcSeverity, type OrderViolation, type OrgChartOptions, OtherwiseOptions, type OuterShadowEffectOptions, type OutlineFillProperties, type OutlineOptions, type OutputByType, type OutputType, PART_REGISTRIES, PPTX_NS, PPTX_PARTS, type PackagePartRegistry, type Packer, type PackerOptions, PageSetupOrientation, Panose, ParagraphDescriptorOptions, ParsedArchive, type PartContentTypeResolver, type PartDefinition, type PartPresence, type PassthroughPart, type PassthroughRelationship, type PassthroughResult, type PathCommand, type PathFillMode, type PathOptions, type PathShade, type PathShadeOptions, type PatternFillOptions, type PenAlignment, Percentage, PictureFormat, type PictureLockingOptions, PictureOptionsOptions, PivotSourceOptions, type PlaceholderDelimiters, type Point3D, PointPropertySetOptions, PositivePercentage, PositiveUniversalMeasure, type PreferredChildrenOptions, type PresentationLayoutVariablesOptions, PresetColor, type PresetColorOptions, type PresetDash, type PresetGeometryOptions, type PresetMaterial, type PresetPattern, type PresetShadow, type PresetShadowEffectOptions, PresetTextShapeOptions, PrintSettingsOptions, ProtectionOptions, RadarStyle, type ReadContext, type RectAlignment, type ReflectionEffectOptions, type RelationshipType, Relationships, RelativeMeasure, type RelativeRect, RelativeSizeAnchorOptions, type RenderedParagraphNode, type ReplacerOptions, ResizeHandles, type RgbColorOptions, type RoundTripResult, RunFont, STYLE_CATEGORIES, SampleDataOptions, type ScRgbColorOptions, ScatterSeriesData, type Scene3DOptions, SchemeColor, type SchemeColorOptions, SecondaryChartGroupOptions, type Shape3DOptions, type ShapeLockingOptions, ShapePropertiesExtensionOptions, ShapePropertiesOptions, type ShapeType, ShortHexNumber, SizeRepresents, SmartArtCollection, SmartArtData, SmartArtRawParts, SmartArtRelOptions, type SolidFillOptions, type SourceRectangleOptions, type SphereCoords, SplitType, StrikeStyle, type StyleDefinitionHeaderListOptions, type StyleDefinitionHeaderOptions, StyleDefinitionOptions, StyleLabelOptions, type StyleMatrixIndex, type StyleMatrixReferenceOptions, type SupplementalFontOptions, SurfaceOptions, SystemColor, type SystemColorOptions, TabStopOptions, type TableBackgroundStyleOptions, type TableCellBorderOptions, type TableCellStyleOptions, type TableFontReferenceOptions, type TablePartStyleOptions, type TableStyleListOptions, type TableStyleOptions, type TableStyleRegion, type TableTextStyleOptions, TargetModeType, TextAlignment, TextBodyOptions, TextBodyWrapping, TextBreakOptions, TextCapitalization, TextCharacterPropertiesOptions, TextFieldOptions, TextFont, type TextFontOptions, TextHorzOverflow, TextHyperlinkOptions, TextListStyleOptions, TextParagraphPropertiesOptions, TextProperties3DOptions, TextRunOptions, TextShapePreset, TextStylesOptions, TextTabAlignment, TextVertOverflow, TextVertical, ThemeColor, ThemeFont, type ThemeManagerOptions, type ThemeOptions, type ThemeOverrideOptions, type ThemeableLineStyleOptions, type TileAlignment, type TileFlipMode, type TileOptions, TimeUnit, ToUint8ArrayOptions, TokenNotFoundError, type Transform2DOptions, TreeNode, TrendlineLabelOptions, TrendlineOptions, TrendlineType, UcharHexNumber, UnderlineStyle, UniqueNumericIdCreator, UniversalMeasure, UnsignedShortHex, UserShapeConnectorOptions, UserShapeExtentOptions, UserShapeGraphicFrameOptions, UserShapeGroupOptions, UserShapeMarkerOptions, UserShapeObjectOptions, UserShapePictureOptions, UserShapeShapeOptions, UserShapesOptions, VML_BORDER_TAGS, VML_CORE_ATTRS, VML_OFFICE_CORE_ATTRS, VML_OFFICE_SHAPE_ATTRS, VML_SHAPE_ATTRS, VariableListOptions, type VariantValue, type Vector3D, VerticalAnchor, View3DOptions, VmlAnchorLockOptions, VmlArcOptions, VmlAttrKind, VmlAttrSpec, VmlBackgroundOptions, VmlBaseShapeFields, VmlBlackWhiteMode, VmlBorderOptions, VmlBorderType, VmlCalloutAngle, VmlCalloutOptions, VmlClientDataOptions, VmlClientObjectType, VmlClipPathOptions, VmlColor, VmlColorMenuOptions, VmlColorMode, VmlColorMruOptions, VmlComplexOptions, VmlConnectType, VmlConnectorType, VmlCoreAttributes, VmlCurveOptions, VmlDiagramLayout, VmlDiagramOptions, VmlDiagramRelationOptions, VmlEditAs, VmlEquationXmlOptions, VmlExtAttribute, VmlExtensionMode, VmlExtrusionOptions, VmlExtrusionPlane, VmlExtrusionRender, VmlExtrusionType, VmlFillMethod, VmlFillOptions, VmlFillType, VmlFormulasOptions, VmlGroupOptions, VmlHandleOptions, VmlHandlesOptions, VmlHorizontalAnchor, VmlHorizontalRuleAlign, VmlIdMapOptions, VmlImageAspect, VmlImageDataOptions, VmlImageOptions, VmlInkOptions, VmlInsetMode, VmlIsCommentOptions, VmlLineOptions, VmlLockOptions, VmlOfficeCoreAttributes, VmlOfficeFillOptions, VmlOfficeFillType, VmlOfficeShapeAttributes, VmlOleDrawAspect, VmlOleObjectOptions, VmlOleObjectType, VmlOleUpdateMode, VmlOvalOptions, VmlPathOptions, VmlPolylineOptions, VmlRectOptions, VmlRegroupEntryOptions, VmlRegroupTableOptions, VmlRoundRectOptions, VmlRuleHow, VmlRuleOptions, VmlRuleProxyOptions, VmlRuleType, VmlRulesOptions, VmlScreenSize, VmlShadowOptions, VmlShadowType, VmlShapeAttributes, VmlShapeChild, VmlShapeDefaultsOptions, VmlShapeLayoutOptions, VmlShapeOptions, VmlShapeStyle, VmlShapetypeOptions, VmlSignatureLineOptions, VmlSkewOptions, VmlStrokeArrowLength, VmlStrokeArrowType, VmlStrokeArrowWidth, VmlStrokeChildOptions, VmlStrokeEndCap, VmlStrokeJoinStyle, VmlStrokeLineStyle, VmlStrokeOptions, VmlTextDataOptions, VmlTextPathOptions, VmlTextPathStyle, VmlTextboxOptions, VmlTrueFalse, VmlTrueFalseBlank, VmlVerticalAnchor, VmlWrapOptions, VmlWrapSide, VmlWrapType, WhenOptions, type WriteContext, XLSX_PARTS, type XmlNamespaceOptions, type XmlifyedFile, XmlifyedFileEntry, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, type ZipOptions, type ZipPartSink, ZipStreamWriter, type Zippable, addBinaryFile, addSmartArtRelationships, appPropertiesDesc, appendContentType, appendOverride, appendRelationship, applyCorePropertiesOverride, assertEncryptedExclusive, bevelDesc, blipDesc, blipFillDesc, bodyPropertiesDesc, buildContentTypeOverrides, buildCorePropertiesXmlString, buildFill, buildHyperlinkElement, buildRootRelationships, buildThemeXml, buildUserShapesData, calculateEffectExtent, cell3DDesc, chartSpaceDesc, checkOrder, collectPassthroughParts, collectPlaceholderKeys, colorsDefDesc, compileMapping, connectorLockingDesc, contentTypesDesc, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertEmuToTwip, convertInchesToEmu, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertPixelsToEmu, convertPointsToEmu, convertPointsToTwip, convertToEmu, convertToInch, convertToPt, convertToTwip, convertTwipToEmu, convertTwipToPoints, convertUniversalMeasureToEmu, convertUniversalMeasureToInch, convertUniversalMeasureToPt, convertUniversalMeasureToTwip, createAdjust, createAdjustList, createAnimateOneByOne, createAnimationLevel, createBevel, createBlip, createBlipEffects, createBlipFill, createBodyProperties, createBottomBevel, createColorElement, createColorTransforms, createColorsDefinitionHeader, createColorsDefinitionHeaderList, createConnectorLocking, createContentPartLocking, createCustomDash, createCustomGeometry, createDataModel, createDiagramExtensionList, createDiagramRelationshipIds, createDiagramShape3D, createDiagramStyle, createDiagramTextProperties, createEffectColorList, createEffectDag, createEffectList, createExtensionList, createFillColorList, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefinitionHeader, createLayoutDefinitionHeaderList, createLineColorList, createLineEnd, createMaxChildren, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createPacker, createPatternFill, createPictureLocking, createPreferredChildren, createPresentationLayoutVariables, createPresetColor, createPresetShadowEffect, createReflectionEffect, createReplacer, createRgbColor, createRunRenderer, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createSplitInject, createStyleDefinitionHeader, createStyleDefinitionHeaderList, createStyleLabel, createSystemColor, createTableStyle, createTableStyleList, createTextEffectColorList, createTextElementContents, createTextFillColorList, createTextLineColorList, createThemeXml, createTileInfo, createTokenReplacer, createTransform2D, createTraverser, createZipStream, customGeometryDesc, customPropertiesDesc, dateTimeValue, decimalNumber, decodeBase64, definitionId, deriveContentTypes, derivePasswordHash, diagramExtensionListDesc, diagramRelationshipIdsDesc, diagramStyleDesc, diffTagSets, dropDanglingPassthroughRels, effectListDesc, eighthPointMeasureValue, emitAngle, emitColorChoice, emitFillXml, emitPercent, encodeBase64, encryptedContainerOutput, encryptedContainerStream, extUriMatches, extractBlipFillMedia, fillDesc, findAndReplaceImagePlaceholders, findFieldSpec, findFillChild, formatId, getAudioRefs, getColorXml, getFirstLevelElements, getLayoutXml, getMediaRefs, getNextRelationshipIndex, getOleRefs, getReferencedMedia, getStyleXml, getVideoRefs, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupShapePropertiesDesc, groupTransform2DDesc, hasPlaceholders, hashPasswordAgile, hashedId, hexBinary, hexColorValue, hpsMeasureValue, hslColorDesc, imageTypeFromPath, invertMap, isBase64DataURL, isEncryptedContainer, isPlainRgbColor, layoutDefDesc, levelForMediaName, longHexNumber, mapOptional, measurementOrPercentValue, nextNumericId, nextVmlShapeId, optionalRelsPart, outlineDesc, paragraphDesc, parse, parseAngle, parseArchive, parseBodyProperties, parseColorChoice, parseColorChoiceElement, parseColorDefinition, parseColorMapping, parseCorePropsElement, parseDataModelOptions, parseEndpointConnection, parseLayoutDefinition, parseNonVisualContentPartProperties, parseNonVisualDrawingProperties, parseOnOff, parsePercent, parsePercentAttr, parseShapeStyle, parseStyleDefinition, parseTableStyle, parseTableStyleList, parseTextStyles, parseUniversalMeasure, parseVariantValue, parseVector, parseVmlAnchorLock, parseVmlArc, parseVmlAttributes, parseVmlBackground, parseVmlBorder, parseVmlCallout, parseVmlClientData, parseVmlClipPath, parseVmlColorMenu, parseVmlColorMru, parseVmlComplex, parseVmlCurve, parseVmlDiagram, parseVmlEquationXml, parseVmlExtrusion, parseVmlFill, parseVmlFormulas, parseVmlGroup, parseVmlHandles, parseVmlImage, parseVmlImageData, parseVmlInk, parseVmlIsComment, parseVmlLine, parseVmlLock, parseVmlOfficeFill, parseVmlOleObject, parseVmlOval, parseVmlPath, parseVmlPolyline, parseVmlRect, parseVmlRoundRect, parseVmlShadow, parseVmlShape, parseVmlShapeChild, parseVmlShapeDefaults, parseVmlShapeLayout, parseVmlShapeStyle, parseVmlShapetype, parseVmlSignatureLine, parseVmlSkew, parseVmlStroke, parseVmlStyle, parseVmlTextData, parseVmlTextPath, parseVmlTextbox, parseVmlTrueFalse, parseVmlTrueFalseBlank, parseVmlWrap, partPathToRelsPath, patchSpaceAttribute, patternFillDesc, percentageValue, pickConnectorBase, pickGroupBase, pickNonVisualDrawingProperties, pictureLockingDesc, pointMeasureValue, positiveUniversalMeasureValue, presentationLayoutVariablesDesc, presetColorDesc, presetGeometryDesc, randomBytes, readHyperlink, readParagraphProperties, registerHyperlink, removeOverride, replaceAllPlaceholders, replaceAudioPlaceholders, replaceChartPlaceholders, replaceHyperlinkPlaceholders, replaceImageLinkPlaceholders, replaceImagePlaceholders, replaceMediaPlaceholders, replaceNumberingPlaceholders, replaceOleLinkPlaceholders, replaceOlePlaceholders, replacePlaceholders, replaceSmartArtPlaceholders, replaceVideoPlaceholders, resolveRelationshipTarget, resolverFromRegistry, rgbColorDesc, roundTripFields, runPropertiesDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, shapePropertiesDesc, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, solidFillDesc, sourceRectangleDesc, strFromU8, stretchDesc, stringify, stringifyAdjustmentValues, stringifyBlipEffects, stringifyColorChoice, stringifyColorDefinition, stringifyColorDefinitionPart, stringifyColorMapping, stringifyConnection, stringifyDataModel, stringifyDataModelOptions, stringifyEndpointConnection, stringifyLayoutDefinition, stringifyLayoutDefinitionPart, stringifyLineProperties, stringifyNonVisualContentPartProperties, stringifyNonVisualDrawingProperties, stringifyParagraphPropertiesElement, stringifyPoint, stringifyPresetGeometry, stringifyRunProperties, stringifyShapeStyle, stringifyStretch, stringifyStringVector, stringifyStyleDefinition, stringifyStyleDefinitionPart, stringifyTextListStyleTag, stringifyTextRun, stringifyTextStyles, stringifyTransPoint, stringifyVariantValue, stringifyVmlAnchorLock, stringifyVmlArc, stringifyVmlAttributes, stringifyVmlBackground, stringifyVmlBorder, stringifyVmlCallout, stringifyVmlClientData, stringifyVmlClipPath, stringifyVmlColorMenu, stringifyVmlColorMru, stringifyVmlComplex, stringifyVmlCurve, stringifyVmlDiagram, stringifyVmlEquationXml, stringifyVmlExtrusion, stringifyVmlFill, stringifyVmlFormulas, stringifyVmlGroup, stringifyVmlHandles, stringifyVmlImage, stringifyVmlImageData, stringifyVmlInk, stringifyVmlIsComment, stringifyVmlLine, stringifyVmlLock, stringifyVmlOfficeFill, stringifyVmlOleObject, stringifyVmlOval, stringifyVmlPath, stringifyVmlPolyline, stringifyVmlRect, stringifyVmlRoundRect, stringifyVmlShadow, stringifyVmlShape, stringifyVmlShapeChild, stringifyVmlShapeDefaults, stringifyVmlShapeLayout, stringifyVmlShapetype, stringifyVmlSignatureLine, stringifyVmlSkew, stringifyVmlStroke, stringifyVmlStyle, stringifyVmlTextData, stringifyVmlTextPath, stringifyVmlTextbox, stringifyVmlTrueFalse, stringifyVmlTrueFalseBlank, stringifyVmlWrap, stripColorHashPrefix, styleDefDesc, styleToKeyMap, summarizeOpcIssues, systemColorDesc, textBodyDesc, textListStyleDesc, textRunDesc, textStylesDesc, themeDesc, themeManagerDesc, themeOverrideDesc, tileDesc, toJson, toUint8Array, transform2DDesc, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber, unzipSync, userShapesDesc, validateOpcConsistency, withDiagramNamespaces, xsdAnimCalcMode, xsdAnimClass, xsdAnimLevel, xsdAnimValueType, xsdAnimationDgmBuild, xsdAxisCrossBetween, xsdAxisCrosses, xsdAxisLabelAlignment, xsdAxisOrientation, xsdAxisPosition, xsdBlendMode, xsdChartBuild, xsdComments, xsdCompoundLine, xsdConsolidateFunction, xsdDashStyle, xsdDataLabelPosition, xsdDiagramBuild, xsdDiagramDirection, xsdEffectContainer, xsdErrorValueType, xsdFontAlignment, xsdHierBranch, xsdHueDirection, xsdIterateType, xsdJcAlignment, xsdLegendPosition, xsdLightRigDirection, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdMathStyle, xsdOnOffStyle, xsdOrient, xsdPathFillMode, xsdPattern, xsdPenAlignment, xsdPlaceholderType, xsdPresetShadow, xsdRectAlignment, xsdResizeHandles, xsdShadingPattern, xsdSizeRepresents, xsdSlideLayoutType, xsdSplitType, xsdStrikeStyle, xsdTableWidthType, xsdTextAlign, xsdTextAnchor, xsdTextBuild, xsdTextCaps, xsdTextTabAlignment, xsdTextVerticalType, xsdTotalsRowFunction, xsdTrendlineType, xsdUnderlineStyle, xsdVerticalMergeRev, zipAndConvert, zipSync, zipSyncAndConvert };
|
|
914
937
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/opc/media.ts","../src/opc/embeddings.ts","../src/opc/variant-types.ts","../src/opc/app-properties.ts","../src/opc/custom-properties.ts","../src/opc/encryption.ts","../src/util/base64.ts","../src/opc/parser.ts","../src/opc/namespaces.ts","../src/opc/part-registry.ts","../src/opc/opc-consistency.ts","../src/opc/content-type-overrides.ts","../src/opc/content-types-input.ts","../src/opc/passthrough.ts","../src/table/types.ts","../src/picture/types.ts","../src/connector/types.ts","../src/group/types.ts"],"mappings":";;;;;;;;;;;;;;UAyBiB;EACf;EACA,MAAM;EACN;;cAeW,MAAM,UAAU;mBACV;mBAEA;mBAEA;UACT;EAYD,SACL,MAAM,YACN,cACA,QAAQ,qBAAqB,GAC7B,oBACC;
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/opc/media.ts","../src/opc/embeddings.ts","../src/opc/variant-types.ts","../src/opc/app-properties.ts","../src/opc/custom-properties.ts","../src/opc/encryption.ts","../src/util/base64.ts","../src/opc/parser.ts","../src/opc/namespaces.ts","../src/opc/part-registry.ts","../src/opc/opc-consistency.ts","../src/opc/content-type-overrides.ts","../src/opc/content-types-input.ts","../src/opc/passthrough.ts","../src/table/types.ts","../src/picture/types.ts","../src/connector/types.ts","../src/group/types.ts"],"mappings":"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"}
|