@office-open/core 0.12.0 → 0.12.1

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.
@@ -11,6 +11,10 @@ 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;
@@ -19,6 +23,80 @@ declare class ChartCollection {
19
23
  get array(): ChartData[];
20
24
  }
21
25
  //#endregion
26
+ //#region src/chart/user-shapes/user-shapes.d.ts
27
+ interface UserShapeMarkerOptions {
28
+ x: number;
29
+ y: number;
30
+ }
31
+ interface UserShapeExtentOptions {
32
+ width: number;
33
+ height: number;
34
+ }
35
+ interface RelativeSizeAnchorOptions {
36
+ from: UserShapeMarkerOptions;
37
+ to: UserShapeMarkerOptions;
38
+ object: UserShapeObjectOptions;
39
+ }
40
+ interface AbsoluteSizeAnchorOptions {
41
+ from: UserShapeMarkerOptions;
42
+ extent: UserShapeExtentOptions;
43
+ object: UserShapeObjectOptions;
44
+ }
45
+ interface ObjectCommonAttributes {
46
+ id: number;
47
+ macro?: string;
48
+ published?: boolean;
49
+ }
50
+ interface UserShapeShapeOptions extends ObjectCommonAttributes {
51
+ type: "shape";
52
+ nonVisualProperties?: NonVisualDrawingPropertiesOptions;
53
+ textBox?: boolean;
54
+ shapeProperties: ShapePropertiesOptions;
55
+ style?: DefaultShapeStyleOptions;
56
+ textBody?: TextBodyOptions;
57
+ textLink?: string;
58
+ locksText?: boolean;
59
+ }
60
+ interface UserShapeConnectorOptions extends ObjectCommonAttributes {
61
+ type: "connector";
62
+ nonVisualProperties?: NonVisualDrawingPropertiesOptions;
63
+ shapeProperties: ShapePropertiesOptions;
64
+ style?: DefaultShapeStyleOptions;
65
+ }
66
+ interface UserShapePictureOptions extends ObjectCommonAttributes {
67
+ type: "picture";
68
+ nonVisualProperties?: NonVisualDrawingPropertiesOptions;
69
+ referenceId: string;
70
+ blipFill?: BlipFillOptions;
71
+ shapeProperties: ShapePropertiesOptions;
72
+ style?: DefaultShapeStyleOptions;
73
+ }
74
+ interface UserShapeGraphicFrameOptions extends ObjectCommonAttributes {
75
+ type: "graphicFrame";
76
+ nonVisualProperties?: NonVisualDrawingPropertiesOptions;
77
+ graphicFrameLocks?: GraphicFrameLockingOptions | null;
78
+ transform: Transform2DOptions;
79
+ graphic: string;
80
+ }
81
+ interface UserShapeGroupOptions extends ObjectCommonAttributes {
82
+ type: "group";
83
+ nonVisualProperties?: NonVisualDrawingPropertiesOptions;
84
+ groupShapeProperties: GroupShapePropertiesOptions;
85
+ children: UserShapeObjectOptions[];
86
+ }
87
+ type UserShapeObjectOptions = UserShapeShapeOptions | UserShapeConnectorOptions | UserShapePictureOptions | UserShapeGraphicFrameOptions | UserShapeGroupOptions;
88
+ interface UserShapesOptions {
89
+ anchors: (RelativeSizeAnchorOptions | AbsoluteSizeAnchorOptions)[];
90
+ }
91
+ declare const userShapesDesc: CustomDescriptor<UserShapesOptions>;
92
+ declare function buildUserShapesData(userShapes: {
93
+ relationshipId?: string;
94
+ anchors: UserShapesOptions["anchors"];
95
+ }): {
96
+ relationshipId: string;
97
+ xml: string;
98
+ };
99
+ //#endregion
22
100
  //#region src/chart/types.d.ts
23
101
  interface ChartSeriesCommon {
24
102
  index?: number;
@@ -223,9 +301,13 @@ interface ChartSpaceOptions {
223
301
  legendLayout?: boolean | ManualLayoutOptions;
224
302
  legendTextProperties?: TextBodyOptions;
225
303
  legendEntries?: readonly LegendEntryOptions[];
226
- userShapes?: string;
304
+ userShapes?: ChartUserShapesOptions;
227
305
  ext?: string;
228
306
  }
307
+ interface ChartUserShapesOptions {
308
+ relationshipId?: string;
309
+ anchors: (RelativeSizeAnchorOptions | AbsoluteSizeAnchorOptions)[];
310
+ }
229
311
  type TimeUnit = "days" | "months" | "years";
230
312
  interface View3DOptions {
231
313
  rotX?: number;
@@ -418,72 +500,5 @@ interface LegendEntryOptions {
418
500
  //#region src/chart/chart-descriptors.d.ts
419
501
  declare const chartSpaceDesc: CustomDescriptor<ChartSpaceOptions>;
420
502
  //#endregion
421
- //#region src/chart/user-shapes/user-shapes.d.ts
422
- interface UserShapeMarkerOptions {
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
503
+ 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 };
504
+ //# sourceMappingURL=index-k1h_t946.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-k1h_t946.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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"}
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { i as toUint8Array, n as ToUint8ArrayOptions, r as isBase64DataURL, t as DataType } from "./data-type-CZMKVaaT.mjs";
2
- import { $ as LayoutMode, A as ChartHeaderFooterOptions, B as ChartType, C as AxisTickLabelPosition, Ct as View3DOptions, D as BubbleSeriesData, E as BarShape, F as ChartSeriesCommon, G as DataTableOptions, H as DataLabelPosition, I as ChartSeriesData, J as ErrorBarDirection, K as DisplayBlanksAs, L as ChartSpaceOptions, M as ChartPageMarginsOptions, N as ChartPageSetupOptions, O as BuiltInDisplayUnit, P as ChartPivotFormatOptions, Q as ExternalDataOptions, R as ChartStyle2010Options, S as AxisScalingOptions, St as TrendlineType, T as BandFormatOptions, Tt as ChartData, U as DataLabelsOptions, V as DataLabelOptions, W as DataPointOptions, X as ErrorBarType, Y as ErrorBarOptions, Z as ErrorValueType, _ as AxisLabelAlignment, _t as SplitType, a as UserShapeGraphicFrameOptions, at as MarkerSymbol, b as AxisOrientation, bt as TrendlineLabelOptions, c as UserShapeObjectOptions, ct as PictureFormat, d as UserShapesOptions, dt as PrintSettingsOptions, et as LayoutTarget, f as userShapesDesc, ft as ProtectionOptions, g as AxisKind, gt as SizeRepresents, h as AxisCrosses, ht as SecondaryChartGroupOptions, i as UserShapeExtentOptions, it as MarkerOptions, j as ChartLinesOptions, k as ChartGrouping, l as UserShapePictureOptions, lt as PictureOptionsOptions, m as AxisCrossBetween, mt as ScatterSeriesData, n as RelativeSizeAnchorOptions, nt as LegendPosition, o as UserShapeGroupOptions, ot as OfPieType, p as chartSpaceDesc, pt as RadarStyle, q as DisplayUnitsOptions, r as UserShapeConnectorOptions, rt as ManualLayoutOptions, s as UserShapeMarkerOptions, st as PageSetupOrientation, t as AbsoluteSizeAnchorOptions, tt as LegendEntryOptions, u as UserShapeShapeOptions, ut as PivotSourceOptions, v as AxisNumberFormatOptions, vt as SurfaceOptions, w as AxisTickMark, wt as ChartCollection, x as AxisPosition, xt as TrendlineOptions, y as AxisOptions, yt as TimeUnit, z as ChartTitleOptions } from "./index-BP541uS-.mjs";
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-k1h_t946.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";
@@ -297,6 +297,13 @@ declare const DOCX_PARTS: {
297
297
  readonly kind: "repeated";
298
298
  readonly countFrom: "chartCount";
299
299
  };
300
+ }, {
301
+ readonly path: "word/charts/userShapes${i}.xml";
302
+ readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.chartUserShapes+xml";
303
+ readonly presence: {
304
+ readonly kind: "repeated";
305
+ readonly countFrom: "charts with user shapes";
306
+ };
300
307
  }, {
301
308
  readonly path: "word/diagrams/data${i}.xml";
302
309
  readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml";
@@ -535,6 +542,13 @@ declare const PPTX_PARTS: {
535
542
  readonly kind: "repeated";
536
543
  readonly countFrom: "charts";
537
544
  };
545
+ }, {
546
+ readonly path: "ppt/charts/userShapes${i}.xml";
547
+ readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.chartUserShapes+xml";
548
+ readonly presence: {
549
+ readonly kind: "repeated";
550
+ readonly countFrom: "charts with user shapes";
551
+ };
538
552
  }, {
539
553
  readonly path: "ppt/diagrams/data${i}.xml";
540
554
  readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml";
@@ -688,6 +702,13 @@ declare const XLSX_PARTS: {
688
702
  readonly kind: "repeated";
689
703
  readonly countFrom: "charts";
690
704
  };
705
+ }, {
706
+ readonly path: "xl/charts/userShapes${i}.xml";
707
+ readonly contentType: "application/vnd.openxmlformats-officedocument.drawingml.chartUserShapes+xml";
708
+ readonly presence: {
709
+ readonly kind: "repeated";
710
+ readonly countFrom: "charts with user shapes";
711
+ };
691
712
  }, {
692
713
  readonly path: "xl/pivotTables/pivotTable${i}.xml";
693
714
  readonly contentType: "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml";
@@ -910,5 +931,5 @@ interface BaseGroupOptions extends NonVisualDrawingPropertiesOptions {
910
931
  }
911
932
  declare function pickGroupBase(opts: BaseGroupOptions | undefined): Partial<BaseGroupOptions>;
912
933
  //#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 };
934
+ 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
935
  //# sourceMappingURL=index.d.mts.map
@@ -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;UAsCK;UAaA;UAoBA;MASG,SAAS;;;;UCvIL;EAEf;EAEA,MAAM;EAEN;EAOA;;cAQW;UACH;UACA;EAGD;EAeA,aACL,MAAM,YACN,wBACA,iBACA,mBAAmB,oCAClB;MAoBQ,SAAS;UAIZ;;;;KCzDE,2CAA2C;iBA+CvC,sBAAsB,OAAO,cAAc;iBAkB3C,kBAAkB,IAAI,UAAU;iBAuBhC,sBAAsB;iBAgBtB,YAAY,IAAI,sBAAsB;;;UCpGrC;EAEf;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAMA,SAAS;EAET;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA,eAAe;EAEf;EAMA;;UAIe;EAEf;EAEA;;KAIU,qBAAqB;cAEpB,mBAAmB,iBAAiB;;;UC9EhC;EAEf;EAEA,OAAO;EAMP;;UAIe;EACf,YAAY;;cAGD,sBAAsB,iBAAiB;;;UCpBnC;EAEf,MAAM;;iBAIQ,qBAAqB,MAAM;iBAQ3B,yBAAyB,UAAU,YACjD;EAAQ,YAAY;GACpB,MAAM,GACN,mBACC,aAAa;iBAOA,yBAAyB;EACvC,YAAY;IACV,eAAe;iBAmBH,yBACd;EAAQ,YAAY;GACpB;;;iBCvDc,aAAa,gBAAgB;iBAkB7B,aAAa,OAAO;;;cCXvB;mBACM;mBACA;mBACA;EAEE,YAAA,MAAM;EAkBlB,IAAI,cAAc,eAAe,eAAe;EAwBhD,IAAI,cAAc,SAAS;EAU3B,OAAO,eAAe;EAKtB,OAAO,cAAc,MAAM;EAM3B,OAAO;EAMP,IAAI;EAKJ,KAAK;EAYL,QAAQ;;iBAqBD,aAAa,MAAM,aAAa;;;cCgBnC,0BAA0B,SAAS;;;KCzHpC;WACG;;WACA;WAA8B;;WAC9B;WAA2B;;UAEzB;EAKf;EAMA;EACA,UAAU;;UAGK;EACf;EACA,gBAAgB;EAMhB;;cAKW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA6JA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA+KA,iBAAiB,OAAO,+BAA+B;;;KCnjBxD;KAEA;UAEK;EACf,MAAM;EACN,UAAU;EAEV;EACA;;iBA0Ic,uBACd,SAAS,6BACT,UAAU,sBACT;iBAmIa,mBAAmB,iBAAiB;EAClD;EACA;;;;UC/Re;EACf;EACA;;iBAcc,0BACd,UAAU,qBACV,OAAO,wCACN;;;UCjBc;EACf;EACA;;UAGe;EACf;EACA;;UAOe;EACf,UAAU;EACV,WAAW;;cAKA,kBAAkB,iBAAiB;KAiDpC,2BAA2B;iBAgBvB,qBAAqB,UAAU,sBAAsB;UAgBpD;EAGf,SAAS;EAET,mBAAmB,SAAS;EAE5B,eAAe;EAMf,YAAY;IAAgB;IAAc;;EAU1C,SAAS;EAQT,gBAAgB;;iBAkBF,mBACd,WAAW,kBACX,SAAS,4BACR;cAyJU,2BAA2B;;;UC5SvB;EACf;EACA,MAAM;EAON;;UAGe;EAKf;EACA;EAEA;EAEA;EAEA;;UAGe;EACf,OAAO;EACP,eAAe;;iBAuBD,wBACd,SAAS,eACT,cAAc,mBACb;iBA+Ga,4BACd,OAAO,UACP,mCAAmC;;;UClLpB;EAEf;EAEA;EAEA;;UAKe,oBAAoB,QAAQ;EAC3C,OAAO;;UAKQ,iBAAiB,OAAO;EACvC,MAAM;EAMN,yBAAyB;EAEzB;EACA;EACA;EACA;EACA;EACA;;;;UCnCe,2BAA2B;EAM1C,OAAO;EAOP;EAEA;;;;UCXe,6BAA6B;EAE5C,UAAU;EAEV,kBAAkB;EAElB,gBAAgB;;iBAQF,kBACd,MAAM,mCACL,QAAQ;;;UClBM,yBAAyB;EAOxC,UAAU;;iBAQI,cAAc,MAAM,+BAA+B,QAAQ"}
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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"}
package/dist/index.mjs CHANGED
@@ -1,14 +1,14 @@
1
1
  import { A as ZIP_STORED_LEVEL, B as OoxmlMimeType, C as replaceVideoPlaceholders, D as addBinaryFile, E as randomBytes, F as strFromU8, H as hasNativeInflate, I as unzipSync, L as zipAndConvert, M as createPacker, N as createZipStream, O as compileMapping, P as levelForMediaName, R as zipSync, S as replaceSmartArtPlaceholders, T as hashPasswordAgile, U as nativeCrc32, V as convertOutput, W as nativeUnzip, _ as replaceMediaPlaceholders, a as getAudioRefs, b as replaceOlePlaceholders, c as getReferencedMedia, d as replaceAllPlaceholders, f as replaceAudioPlaceholders, g as replaceImagePlaceholders, h as replaceImageLinkPlaceholders, i as formatId, j as ZipStreamWriter, k as ZIP_DEFLATE_LEVEL, l as getVideoRefs, m as replaceHyperlinkPlaceholders, n as collectPlaceholderKeys, o as getMediaRefs, p as replaceChartPlaceholders, r as findAndReplaceImagePlaceholders, s as getOleRefs, t as addSmartArtRelationships, u as hasPlaceholders, v as replaceNumberingPlaceholders, w as derivePasswordHash, x as replacePlaceholders, y as replaceOleLinkPlaceholders, z as zipSyncAndConvert } from "./util-ptE16MEk.mjs";
2
2
  import { _ as toJson, a as appendOverride, b as buildCorePropertiesXmlString, c as createTraverser, d as TokenNotFoundError, f as createSplitInject, g as patchSpaceAttribute, h as nextNumericId, i as appendContentType, l as createRunRenderer, m as getFirstLevelElements, n as appendRelationship, o as removeOverride, p as createTextElementContents, r as getNextRelationshipIndex, s as createReplacer, t as applyCorePropertiesOverride, u as createTokenReplacer, v as DOCX_NS, x as parseCorePropsElement, y as PPTX_NS } from "./patch-AkQY17CD.mjs";
3
3
  import { $ as xsdDiagramDirection, $t as pointMeasureValue, A as parseAngle, At as xsdTextBuild, B as xsdAxisCrossBetween, Bt as decodeBase64, C as convertUniversalMeasureToEmu, Ct as xsdSizeRepresents, D as emitAngle, Dt as xsdTableWidthType, E as convertUniversalMeasureToTwip, Et as xsdStrikeStyle, F as xsdAnimCalcMode, Ft as xsdTrendlineType, G as xsdBlendMode, Gt as eighthPointMeasureValue, H as xsdAxisLabelAlignment, I as xsdAnimClass, It as xsdUnderlineStyle, J as xsdCompoundLine, Jt as hpsMeasureValue, K as xsdChartBuild, Kt as hexBinary, L as xsdAnimLevel, Lt as xsdVerticalMergeRev, M as parsePercentAttr, Mt as xsdTextTabAlignment, N as parseUniversalMeasure, Nt as xsdTextVerticalType, O as emitPercent, Ot as xsdTextAlign, P as invertMap, Pt as xsdTotalsRowFunction, Q as xsdDiagramBuild, Qt as percentageValue, R as xsdAnimValueType, Rt as isBase64DataURL, S as convertTwipToPoints, St as xsdShadingPattern, T as convertUniversalMeasureToPt, Tt as xsdSplitType, U as xsdAxisOrientation, Ut as dateTimeValue, V as xsdAxisCrosses, Vt as encodeBase64, W as xsdAxisPosition, Wt as decimalNumber, X as xsdDashStyle, Xt as measurementOrPercentValue, Y as xsdConsolidateFunction, Yt as longHexNumber, Z as xsdDataLabelPosition, Zt as parseOnOff, _ as convertToEmu, _t as xsdPenAlignment, a as uniqueNumericIdCreator, an as twipsMeasureValue, at as xsdIterateType, b as convertToTwip, bt as xsdRectAlignment, c as convertEmuToPixels, cn as unsignedDecimalNumber, ct as xsdLightRigDirection, d as convertInchesToEmu, dt as xsdMaterialType, en as positiveUniversalMeasureValue, et as xsdEffectContainer, f as convertInchesToTwip, ft as xsdMathStyle, g as convertPointsToTwip, gt as xsdPattern, h as convertPointsToEmu, ht as xsdPathFillMode, i as uniqueId, in as stripColorHashPrefix, it as xsdHueDirection, j as parsePercent, jt as xsdTextCaps, k as mapOptional, kt as xsdTextAnchor, l as convertEmuToPoints, lt as xsdLineCap, m as convertPixelsToEmu, mt as xsdOrient, n as imageTypeFromPath, nn as signedHpsMeasureValue, nt as xsdFontAlignment, o as uniqueUuid, on as uCharHexNumber, ot as xsdJcAlignment, p as convertMillimetersToTwip, pt as xsdOnOffStyle, q as xsdComments, qt as hexColorValue, r as hashedId, rn as signedTwipsMeasureValue, rt as xsdHierBranch, s as convertEmuToInches, sn as universalMeasureValue, st as xsdLegendPosition, t as extUriMatches, tn as shortHexNumber, tt as xsdErrorValueType, u as convertEmuToTwip, ut as xsdLineEndSize, v as convertToInch, vt as xsdPlaceholderType, w as convertUniversalMeasureToInch, wt as xsdSlideLayoutType, x as convertTwipToEmu, xt as xsdResizeHandles, y as convertToPt, yt as xsdPresetShadow, z as xsdAnimationDgmBuild, zt as toUint8Array } from "./ext-uri-BHBcIrW7.mjs";
4
- import { C as stringifyDataModelOptions, D as COLOR_CATEGORIES, E as stringifyConnection, O as LAYOUT_CATEGORIES, S as stringifyDataModel, T as stringifyTransPoint, _ as parseLayoutDefinition, a as getColorXml, b as withDiagramNamespaces, c as parseStyleDefinition, d as styleDefDesc, f as colorsDefDesc, g as layoutDefDesc, h as stringifyColorDefinitionPart, i as DEFAULT_DRAWING_XML, k as STYLE_CATEGORIES, l as stringifyStyleDefinition, m as stringifyColorDefinition, n as SmartArtCollection, o as getLayoutXml, p as parseColorDefinition, r as definitionId, s as getStyleXml, t as createDataModel, u as stringifyStyleDefinitionPart, v as stringifyLayoutDefinition, w as stringifyPoint, x as parseDataModelOptions, y as stringifyLayoutDefinitionPart } from "./smartart-n1kYJ6Jg.mjs";
5
- import { $ as createAdjustList, $n as createSystemColor, $t as createGroupFill, A as groupShapePropertiesDesc, An as createEffectColorList, At as createCustomGeometry, B as shapeLockingDesc, Bn as emitColorChoice, Bt as createSoftEdgeEffect, C as createBodyProperties, Cn as bevelDesc, Ct as parseTableStyleList, D as DEFAULT_SHADOW_BLUR_RADIUS, Dn as FontCollectionIndex, Dt as createBlipFill, E as DEFAULT_SHADOW_ALPHA, En as shape3DDesc, Et as stringifyStretch, F as presetGeometryDesc, Fn as createTextFillColorList, Ft as createBottomBevel, G as createDiagramRelationshipIds, Gn as presetColorDesc, Gt as createGlowEffect, H as createDiagramExtensionList, Hn as isPlainRgbColor, Ht as createPresetShadowEffect, I as connectorLockingDesc, In as createTextLineColorList, It as createScene3D, J as createLayoutDefinitionHeader, Jn as schemeColorDesc, Jt as outlineDesc, K as createColorsDefinitionHeader, Kn as rgbColorDesc, Kt as BlendMode, L as graphicFrameLockingDesc, Lt as createEffectDag, M as groupTransform2DDesc, Mn as createLineColorList, Mt as stringifyAdjustmentValues, N as transform2DDesc, Nn as createStyleLabel, Nt as createShape3D, O as DEFAULT_SHADOW_DIRECTION, Ot as createBlip, P as customGeometryDesc, Pn as createTextEffectColorList, Pt as createBevel, Q as createAdjust, Qn as SystemColor, Qt as createCustomDash, R as groupLockingDesc, Rn as createColorElement, Rt as calculateEffectExtent, S as bodyPropertiesDesc, Sn as createRgbColor, St as parseTableStyle, T as DEFAULT_OUTLINE_WIDTH, Tn as scene3DDesc, Tt as createTransform2D, U as createDiagramShape3D, Un as parseColorChoice, Ut as createOuterShadowEffect, V as effectListDesc, Vn as hslColorDesc, Vt as createReflectionEffect, W as createDiagramTextProperties, Wn as parseColorChoiceElement, Wt as createInnerShadowEffect, X as createStyleDefinitionHeader, Xn as stringifyColorChoice, Xt as createOutline, Y as createLayoutDefinitionHeaderList, Yn as solidFillDesc, Yt as stringifyLineProperties, Z as createStyleDefinitionHeaderList, Zn as systemColorDesc, Zt as createLineEnd, _ as buildHyperlinkElement, _n as stretchDesc, _t as createGroupLocking, a as textBodyDesc, an as extractBlipFillMedia, at as createPreferredChildren, b as runPropertiesDesc, bn as createScRgbColor, bt as createTableStyle, c as stringifyTextListStyleTag, cn as findFillChild, ct as stringifyNonVisualContentPartProperties, d as textStylesDesc, dn as createTileInfo, dt as stringifyNonVisualDrawingProperties, en as createPatternFill, er as SchemeColor, et as createAnimateOneByOne, f as paragraphDesc, fn as createSourceRectangle, ft as parseEndpointConnection, g as textRunDesc, gn as sourceRectangleDesc, gt as createGraphicFrameLocking, h as stringifyTextRun, hn as blipFillDesc, ht as createContentPartLocking, i as presentationLayoutVariablesDesc, in as buildFill, ir as createColorTransforms, it as createOrgChart, j as shapePropertiesDesc, jn as createFillColorList, jt as stringifyPresetGeometry, k as DEFAULT_SHADOW_DISTANCE, kn as createDiagramStyle, kt as createExtensionList, l as stringifyTextStyles, ln as gradientFillDesc, lt as parseNonVisualDrawingProperties, m as stringifyParagraphPropertiesElement, mn as blipDesc, mt as createConnectorLocking, n as diagramRelationshipIdsDesc, nn as createGradientStop, nr as PresetColor, nt as createHierBranch, o as DEFAULT_TEXT_STYLES, on as emitFillXml, ot as createPresentationLayoutVariables, p as readParagraphProperties, pn as createBlipEffects, pt as stringifyEndpointConnection, q as createColorsDefinitionHeaderList, qn as scRgbColorDesc, qt as createFillOverlayEffect, r as diagramStyleDesc, rn as createNoFill, rr as createPresetColor, rt as createMaxChildren, s as parseTextStyles, sn as fillDesc, st as parseNonVisualContentPartProperties, t as diagramExtensionListDesc, tn as createGradientFill, tr as createSchemeColor, tt as createAnimationLevel, u as textListStyleDesc, un as patternFillDesc, ut as pickNonVisualDrawingProperties, v as readHyperlink, vn as stringifyBlipEffects, vt as createPictureLocking, w as parseBodyProperties, wn as cell3DDesc, wt as createGroupTransform2D, x as stringifyRunProperties, xn as createHslColor, xt as createTableStyleList, y as registerHyperlink, yn as tileDesc, yt as createShapeLocking, z as pictureLockingDesc, zn as createSolidFill, zt as createEffectList } from "./drawing-BCAyrCCw.mjs";
4
+ import { C as stringifyDataModelOptions, D as COLOR_CATEGORIES, E as stringifyConnection, O as LAYOUT_CATEGORIES, S as stringifyDataModel, T as stringifyTransPoint, _ as parseLayoutDefinition, a as getColorXml, b as withDiagramNamespaces, c as parseStyleDefinition, d as styleDefDesc, f as colorsDefDesc, g as layoutDefDesc, h as stringifyColorDefinitionPart, i as DEFAULT_DRAWING_XML, k as STYLE_CATEGORIES, l as stringifyStyleDefinition, m as stringifyColorDefinition, n as SmartArtCollection, o as getLayoutXml, p as parseColorDefinition, r as definitionId, s as getStyleXml, t as createDataModel, u as stringifyStyleDefinitionPart, v as stringifyLayoutDefinition, w as stringifyPoint, x as parseDataModelOptions, y as stringifyLayoutDefinitionPart } from "./smartart-DV6ZcN5R.mjs";
5
+ import { $ as createAdjustList, $n as createSystemColor, $t as createGroupFill, A as groupShapePropertiesDesc, An as createEffectColorList, At as createCustomGeometry, B as shapeLockingDesc, Bn as emitColorChoice, Bt as createSoftEdgeEffect, C as createBodyProperties, Cn as bevelDesc, Ct as parseTableStyleList, D as DEFAULT_SHADOW_BLUR_RADIUS, Dn as FontCollectionIndex, Dt as createBlipFill, E as DEFAULT_SHADOW_ALPHA, En as shape3DDesc, Et as stringifyStretch, F as presetGeometryDesc, Fn as createTextFillColorList, Ft as createBottomBevel, G as createDiagramRelationshipIds, Gn as presetColorDesc, Gt as createGlowEffect, H as createDiagramExtensionList, Hn as isPlainRgbColor, Ht as createPresetShadowEffect, I as connectorLockingDesc, In as createTextLineColorList, It as createScene3D, J as createLayoutDefinitionHeader, Jn as schemeColorDesc, Jt as outlineDesc, K as createColorsDefinitionHeader, Kn as rgbColorDesc, Kt as BlendMode, L as graphicFrameLockingDesc, Lt as createEffectDag, M as groupTransform2DDesc, Mn as createLineColorList, Mt as stringifyAdjustmentValues, N as transform2DDesc, Nn as createStyleLabel, Nt as createShape3D, O as DEFAULT_SHADOW_DIRECTION, Ot as createBlip, P as customGeometryDesc, Pn as createTextEffectColorList, Pt as createBevel, Q as createAdjust, Qn as SystemColor, Qt as createCustomDash, R as groupLockingDesc, Rn as createColorElement, Rt as calculateEffectExtent, S as bodyPropertiesDesc, Sn as createRgbColor, St as parseTableStyle, T as DEFAULT_OUTLINE_WIDTH, Tn as scene3DDesc, Tt as createTransform2D, U as createDiagramShape3D, Un as parseColorChoice, Ut as createOuterShadowEffect, V as effectListDesc, Vn as hslColorDesc, Vt as createReflectionEffect, W as createDiagramTextProperties, Wn as parseColorChoiceElement, Wt as createInnerShadowEffect, X as createStyleDefinitionHeader, Xn as stringifyColorChoice, Xt as createOutline, Y as createLayoutDefinitionHeaderList, Yn as solidFillDesc, Yt as stringifyLineProperties, Z as createStyleDefinitionHeaderList, Zn as systemColorDesc, Zt as createLineEnd, _ as buildHyperlinkElement, _n as stretchDesc, _t as createGroupLocking, a as textBodyDesc, an as extractBlipFillMedia, at as createPreferredChildren, b as runPropertiesDesc, bn as createScRgbColor, bt as createTableStyle, c as stringifyTextListStyleTag, cn as findFillChild, ct as stringifyNonVisualContentPartProperties, d as textStylesDesc, dn as createTileInfo, dt as stringifyNonVisualDrawingProperties, en as createPatternFill, er as SchemeColor, et as createAnimateOneByOne, f as paragraphDesc, fn as createSourceRectangle, ft as parseEndpointConnection, g as textRunDesc, gn as sourceRectangleDesc, gt as createGraphicFrameLocking, h as stringifyTextRun, hn as blipFillDesc, ht as createContentPartLocking, i as presentationLayoutVariablesDesc, in as buildFill, ir as createColorTransforms, it as createOrgChart, j as shapePropertiesDesc, jn as createFillColorList, jt as stringifyPresetGeometry, k as DEFAULT_SHADOW_DISTANCE, kn as createDiagramStyle, kt as createExtensionList, l as stringifyTextStyles, ln as gradientFillDesc, lt as parseNonVisualDrawingProperties, m as stringifyParagraphPropertiesElement, mn as blipDesc, mt as createConnectorLocking, n as diagramRelationshipIdsDesc, nn as createGradientStop, nr as PresetColor, nt as createHierBranch, o as DEFAULT_TEXT_STYLES, on as emitFillXml, ot as createPresentationLayoutVariables, p as readParagraphProperties, pn as createBlipEffects, pt as stringifyEndpointConnection, q as createColorsDefinitionHeaderList, qn as scRgbColorDesc, qt as createFillOverlayEffect, r as diagramStyleDesc, rn as createNoFill, rr as createPresetColor, rt as createMaxChildren, s as parseTextStyles, sn as fillDesc, st as parseNonVisualContentPartProperties, t as diagramExtensionListDesc, tn as createGradientFill, tr as createSchemeColor, tt as createAnimationLevel, u as textListStyleDesc, un as patternFillDesc, ut as pickNonVisualDrawingProperties, v as readHyperlink, vn as stringifyBlipEffects, vt as createPictureLocking, w as parseBodyProperties, wn as cell3DDesc, wt as createGroupTransform2D, x as stringifyRunProperties, xn as createHslColor, xt as createTableStyleList, y as registerHyperlink, yn as tileDesc, yt as createShapeLocking, z as pictureLockingDesc, zn as createSolidFill, zt as createEffectList } from "./drawing-BVwCkNXB.mjs";
6
6
  import { a as roundTripFields, i as diffTagSets, n as findFieldSpec, o as parse, r as checkOrder, s as stringify, t as FIELD_SPECS } from "./descriptor-BqaNZrrZ.mjs";
7
- import { i as stringifyShapeStyle, n as parseShapeStyle } from "./style-matrix-B6jhPAT3.mjs";
8
- import { n as chartSpaceDesc, r as ChartCollection, t as userShapesDesc } from "./chart-DED4tXC9.mjs";
7
+ import { i as stringifyShapeStyle, n as parseShapeStyle } from "./style-matrix-DjhMuuQg.mjs";
8
+ import { i as ChartCollection, n as userShapesDesc, r as chartSpaceDesc, t as buildUserShapesData } from "./chart-BAnjzVoe.mjs";
9
9
  import { n as parseColorMapping, r as stringifyColorMapping, t as DEFAULT_COLOR_MAPPING } from "./color-mapping-CFF0vRSe.mjs";
10
10
  import { $ as stringifyVmlIsComment, A as stringifyVmlPolyline, At as stringifyVmlEquationXml, B as stringifyVmlAnchorLock, Bt as VML_OFFICE_SHAPE_ATTRS, C as stringifyVmlArc, Ct as parseVmlOleObject, D as stringifyVmlImage, Dt as stringifyVmlClipPath, E as stringifyVmlGroup, Et as stringifyVmlCallout, F as stringifyVmlShapetype, Ft as stringifyVmlOleObject, G as parseVmlTextbox, Gt as stringifyVmlAttributes, H as stringifyVmlWrap, Ht as parseVmlAttributes, I as VML_BORDER_TAGS, It as stringifyVmlSignatureLine, J as stringifyVmlStroke, Jt as parseVmlShapeStyle, K as stringifyVmlTextbox, Kt as stringifyVmlTrueFalse, L as parseVmlAnchorLock, Lt as stringifyVmlSkew, M as stringifyVmlRoundRect, Mt as stringifyVmlInk, N as stringifyVmlShape, Nt as stringifyVmlLock, O as stringifyVmlLine, Ot as stringifyVmlComplex, P as stringifyVmlShapeChild, Pt as stringifyVmlOfficeFill, Q as parseVmlTextData, R as parseVmlBorder, Rt as VML_CORE_ATTRS, S as parseVmlShapetype, St as parseVmlOfficeFill, T as stringifyVmlCurve, Tt as parseVmlSkew, U as parseVmlTextPath, Ut as parseVmlTrueFalse, V as stringifyVmlBorder, Vt as VML_SHAPE_ATTRS, W as stringifyVmlTextPath, Wt as parseVmlTrueFalseBlank, X as stringifyVmlShadow, Xt as stringifyVmlStyle, Y as parseVmlShadow, Yt as parseVmlStyle, Z as parseVmlIsComment, Zt as styleToKeyMap, _ as parseVmlPolyline, _t as parseVmlDiagram, a as stringifyVmlColorMenu, at as parseVmlHandles, b as parseVmlShape, bt as parseVmlInk, c as stringifyVmlShapeLayout, ct as stringifyVmlFormulas, d as parseVmlBackground, dt as parseVmlClientData, et as stringifyVmlTextData, f as parseVmlCurve, ft as stringifyVmlClientData, g as parseVmlOval, gt as parseVmlComplex, h as parseVmlLine, ht as parseVmlClipPath, i as parseVmlShapeLayout, it as stringifyVmlImageData, j as stringifyVmlRect, jt as stringifyVmlExtrusion, k as stringifyVmlOval, kt as stringifyVmlDiagram, l as nextVmlShapeId, lt as parseVmlFill, m as parseVmlImage, mt as parseVmlCallout, n as parseVmlColorMru, nt as stringifyVmlPath, o as stringifyVmlColorMru, ot as stringifyVmlHandles, p as parseVmlGroup, pt as EXT_ATTR, q as parseVmlStroke, qt as stringifyVmlTrueFalseBlank, r as parseVmlShapeDefaults, rt as parseVmlImageData, s as stringifyVmlShapeDefaults, st as parseVmlFormulas, t as parseVmlColorMenu, tt as parseVmlPath, u as parseVmlArc, ut as stringifyVmlFill, v as parseVmlRect, vt as parseVmlEquationXml, w as stringifyVmlBackground, wt as parseVmlSignatureLine, x as parseVmlShapeChild, xt as parseVmlLock, y as parseVmlRoundRect, yt as parseVmlExtrusion, z as parseVmlWrap, zt as VML_OFFICE_CORE_ATTRS } from "./vector-DhLGZjP5.mjs";
11
- import { a as buildThemeXml, i as createThemeXml, n as themeOverrideDesc, o as DEFAULT_COLORS, r as themeDesc, t as themeManagerDesc } from "./theme-BKnXRmvn.mjs";
11
+ import { a as buildThemeXml, i as createThemeXml, n as themeOverrideDesc, o as DEFAULT_COLORS, r as themeDesc, t as themeManagerDesc } from "./theme-Dx0Db9bX.mjs";
12
12
  import { attr, escapeXml, parse as parse$1, stringify as stringify$1, textOf } from "@office-open/xml";
13
13
  import { strFromU8 as strFromU8$1, strToU8, unzipSync as unzipSync$1, zipSync as zipSync$1 } from "fflate";
14
14
  //#region src/opc/relationships.ts
@@ -1433,6 +1433,14 @@ const DOCX_PARTS = {
1433
1433
  countFrom: "chartCount"
1434
1434
  }
1435
1435
  },
1436
+ {
1437
+ path: "word/charts/userShapes${i}.xml",
1438
+ contentType: "application/vnd.openxmlformats-officedocument.drawingml.chartUserShapes+xml",
1439
+ presence: {
1440
+ kind: "repeated",
1441
+ countFrom: "charts with user shapes"
1442
+ }
1443
+ },
1436
1444
  {
1437
1445
  path: "word/diagrams/data${i}.xml",
1438
1446
  contentType: "application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml",
@@ -1714,6 +1722,14 @@ const PPTX_PARTS = {
1714
1722
  countFrom: "charts"
1715
1723
  }
1716
1724
  },
1725
+ {
1726
+ path: "ppt/charts/userShapes${i}.xml",
1727
+ contentType: "application/vnd.openxmlformats-officedocument.drawingml.chartUserShapes+xml",
1728
+ presence: {
1729
+ kind: "repeated",
1730
+ countFrom: "charts with user shapes"
1731
+ }
1732
+ },
1717
1733
  {
1718
1734
  path: "ppt/diagrams/data${i}.xml",
1719
1735
  contentType: "application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml",
@@ -1897,6 +1913,14 @@ const XLSX_PARTS = {
1897
1913
  countFrom: "charts"
1898
1914
  }
1899
1915
  },
1916
+ {
1917
+ path: "xl/charts/userShapes${i}.xml",
1918
+ contentType: "application/vnd.openxmlformats-officedocument.drawingml.chartUserShapes+xml",
1919
+ presence: {
1920
+ kind: "repeated",
1921
+ countFrom: "charts with user shapes"
1922
+ }
1923
+ },
1900
1924
  {
1901
1925
  path: "xl/pivotTables/pivotTable${i}.xml",
1902
1926
  contentType: "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml",
@@ -2482,6 +2506,6 @@ function pickGroupBase(opts) {
2482
2506
  };
2483
2507
  }
2484
2508
  //#endregion
2485
- export { BlendMode, COLOR_CATEGORIES, ChartCollection, 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, EXT_ATTR, EmbeddingCollection, FIELD_SPECS, FontCollectionIndex, IMAGE_MEDIA_CONTENT_TYPES, LAYOUT_CATEGORIES, Media, OOXML_CANONICAL_PREFIXES, OoxmlMimeType, PART_REGISTRIES, PPTX_NS, PPTX_PARTS, ParsedArchive, PresetColor, Relationships, STYLE_CATEGORIES, SchemeColor, SmartArtCollection, SystemColor, TargetModeType, TokenNotFoundError, VML_BORDER_TAGS, VML_CORE_ATTRS, VML_OFFICE_CORE_ATTRS, VML_OFFICE_SHAPE_ATTRS, VML_SHAPE_ATTRS, XLSX_PARTS, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, ZipStreamWriter, 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 };
2509
+ export { BlendMode, COLOR_CATEGORIES, ChartCollection, 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, EXT_ATTR, EmbeddingCollection, FIELD_SPECS, FontCollectionIndex, IMAGE_MEDIA_CONTENT_TYPES, LAYOUT_CATEGORIES, Media, OOXML_CANONICAL_PREFIXES, OoxmlMimeType, PART_REGISTRIES, PPTX_NS, PPTX_PARTS, ParsedArchive, PresetColor, Relationships, STYLE_CATEGORIES, SchemeColor, SmartArtCollection, SystemColor, TargetModeType, TokenNotFoundError, VML_BORDER_TAGS, VML_CORE_ATTRS, VML_OFFICE_CORE_ATTRS, VML_OFFICE_SHAPE_ATTRS, VML_SHAPE_ATTRS, XLSX_PARTS, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, ZipStreamWriter, 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 };
2486
2510
 
2487
2511
  //# sourceMappingURL=index.mjs.map