@office-open/core 0.12.3 → 0.13.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.
- package/dist/chart/index.d.mts +2 -2
- package/dist/chart/index.mjs +1 -1
- package/dist/{chart-DEIF3VZn.mjs → chart-Bn_McAo-.mjs} +4 -4
- package/dist/chart-Bn_McAo-.mjs.map +1 -0
- package/dist/drawing/index.d.mts +2 -2
- package/dist/drawing/index.mjs +1 -1
- package/dist/{drawing-BVwCkNXB.mjs → drawing-DJ363Awy.mjs} +102 -108
- package/dist/drawing-DJ363Awy.mjs.map +1 -0
- package/dist/{ext-uri-BHBcIrW7.mjs → ext-uri-BR1ouCh3.mjs} +6 -11
- package/dist/ext-uri-BR1ouCh3.mjs.map +1 -0
- package/dist/{index-DRggxtp7.d.mts → index-6_MYd0cg.d.mts} +3 -3
- package/dist/{index-DRggxtp7.d.mts.map → index-6_MYd0cg.d.mts.map} +1 -1
- package/dist/{index-DPkf_CtG.d.mts → index-BDeoFmTS.d.mts} +146 -149
- package/dist/index-BDeoFmTS.d.mts.map +1 -0
- package/dist/{index-DfFszyH1.d.mts → index-Cd0lFS5x.d.mts} +9 -17
- package/dist/index-Cd0lFS5x.d.mts.map +1 -0
- package/dist/{index-DcukVskh.d.mts → index-DOtPArpl.d.mts} +2 -2
- package/dist/{index-DcukVskh.d.mts.map → index-DOtPArpl.d.mts.map} +1 -1
- package/dist/{index-BwRtWyaP.d.mts → index-Dg0nIw2S.d.mts} +7 -7
- package/dist/{index-BwRtWyaP.d.mts.map → index-Dg0nIw2S.d.mts.map} +1 -1
- package/dist/{index-L6AXewfV.d.mts → index-DkJrkIVp.d.mts} +2 -3
- package/dist/index-DkJrkIVp.d.mts.map +1 -0
- package/dist/index.d.mts +8 -8
- package/dist/index.mjs +30 -10
- package/dist/index.mjs.map +1 -1
- package/dist/patch-AkQY17CD.mjs.map +1 -1
- package/dist/smartart/index.d.mts +1 -1
- package/dist/smartart/index.mjs +1 -1
- package/dist/{smartart-YH87Emca.mjs → smartart-D-8KBdQ_.mjs} +4 -4
- package/dist/{smartart-YH87Emca.mjs.map → smartart-D-8KBdQ_.mjs.map} +1 -1
- package/dist/{style-matrix-DjhMuuQg.mjs → style-matrix-B6YSVw6a.mjs} +2 -2
- package/dist/{style-matrix-DjhMuuQg.mjs.map → style-matrix-B6YSVw6a.mjs.map} +1 -1
- package/dist/theme/index.d.mts +3 -3
- package/dist/theme/index.mjs +2 -2
- package/dist/{theme-Dx0Db9bX.mjs → theme-BdqG5lmO.mjs} +3 -3
- package/dist/theme-BdqG5lmO.mjs.map +1 -0
- package/dist/{theme-options-kO89NUEX.d.mts → theme-options-wZX4i_xx.d.mts} +2 -2
- package/dist/{theme-options-kO89NUEX.d.mts.map → theme-options-wZX4i_xx.d.mts.map} +1 -1
- package/dist/util/index.d.mts +2 -2
- package/dist/util/index.mjs +3 -3
- package/dist/{util-iHHKF2Rx.mjs → util-BGfk-gE0.mjs} +2 -2
- package/dist/{util-iHHKF2Rx.mjs.map → util-BGfk-gE0.mjs.map} +1 -1
- package/dist/vector/index.d.mts +2 -2
- package/dist/vector/index.mjs +2 -2
- package/dist/{vector-DZ_OteHJ.mjs → vector-BhETDAdp.mjs} +2 -9
- package/dist/vector-BhETDAdp.mjs.map +1 -0
- package/package.json +2 -2
- package/dist/chart-DEIF3VZn.mjs.map +0 -1
- package/dist/drawing-BVwCkNXB.mjs.map +0 -1
- package/dist/ext-uri-BHBcIrW7.mjs.map +0 -1
- package/dist/index-DPkf_CtG.d.mts.map +0 -1
- package/dist/index-DfFszyH1.d.mts.map +0 -1
- package/dist/index-L6AXewfV.d.mts.map +0 -1
- package/dist/theme-Dx0Db9bX.mjs.map +0 -1
- package/dist/vector-DZ_OteHJ.mjs.map +0 -1
|
@@ -2,7 +2,6 @@ import { _ as UniversalMeasure, f as RelativeMeasure, i as Guid, l as Percentage
|
|
|
2
2
|
import { Element } from "@office-open/xml";
|
|
3
3
|
//#region src/vector/style.d.ts
|
|
4
4
|
type LengthUnit = "auto" | number | Percentage | UniversalMeasure | RelativeMeasure;
|
|
5
|
-
declare const styleToKeyMap: Record<keyof VmlShapeStyle, string>;
|
|
6
5
|
declare function stringifyVmlStyle(style: VmlShapeStyle): string;
|
|
7
6
|
declare function parseVmlStyle(styleStr: string): Record<string, string>;
|
|
8
7
|
declare function parseVmlShapeStyle(record: Record<string, string>): VmlShapeStyle;
|
|
@@ -868,5 +867,5 @@ interface VmlShapeLayoutOptions extends VmlExtAttribute {
|
|
|
868
867
|
declare function stringifyVmlShapeLayout(opts: VmlShapeLayoutOptions): string;
|
|
869
868
|
declare function parseVmlShapeLayout(el: Element): VmlShapeLayoutOptions;
|
|
870
869
|
//#endregion
|
|
871
|
-
export { stringifyVmlGroup as $,
|
|
872
|
-
//# sourceMappingURL=index-
|
|
870
|
+
export { stringifyVmlGroup as $, stringifyVmlClipPath as $n, VmlImageDataOptions as $t, VmlPolylineOptions as A, VmlInkOptions as An, VmlScreenSize as Ar, VmlStrokeArrowLength as At, parseVmlGroup as B, parseVmlCallout as Bn, LengthUnit as Br, VmlShadowOptions as Bt, VmlBaseShapeFields as C, VmlEquationXmlOptions as Cn, VmlConnectorType as Cr, VmlTextPathOptions as Ct, VmlImageOptions as D, VmlExtrusionPlane as Dn, VmlInsetMode as Dr, VmlTextboxOptions as Dt, VmlGroupOptions as E, VmlExtrusionOptions as En, VmlHorizontalRuleAlign as Er, stringifyVmlTextPath as Et, VmlShapetypeOptions as F, VmlOleObjectOptions as Fn, parseVmlTrueFalse as Fr, VmlStrokeJoinStyle as Ft, parseVmlRect as G, parseVmlExtrusion as Gn, VmlTextDataOptions as Gt, parseVmlLine as H, parseVmlComplex as Hn, parseVmlShapeStyle as Hr, parseVmlShadow as Ht, nextVmlShapeId as I, VmlOleObjectType as In, parseVmlTrueFalseBlank as Ir, VmlStrokeLineStyle as It, parseVmlShapeChild as J, parseVmlOfficeFill as Jn, stringifyVmlIsComment as Jt, parseVmlRoundRect as K, parseVmlInk as Kn, parseVmlIsComment as Kt, parseVmlArc as L, VmlOleUpdateMode as Ln, stringifyVmlAttributes as Lr, VmlStrokeOptions as Lt, VmlRoundRectOptions as M, VmlOfficeFillOptions as Mn, VmlTrueFalse as Mr, VmlStrokeArrowWidth as Mt, VmlShapeChild as N, VmlOfficeFillType as Nn, VmlTrueFalseBlank as Nr, VmlStrokeChildOptions as Nt, VmlLineOptions as O, VmlExtrusionRender as On, VmlOfficeCoreAttributes as Or, parseVmlTextbox as Ot, VmlShapeOptions as P, VmlOleDrawAspect as Pn, parseVmlAttributes as Pr, VmlStrokeEndCap as Pt, stringifyVmlCurve as Q, stringifyVmlCallout as Qn, stringifyVmlPath as Qt, parseVmlBackground as R, VmlSignatureLineOptions as Rn, stringifyVmlTrueFalse as Rr, parseVmlStroke as Rt, VmlBackgroundOptions as S, VmlDiagramRelationOptions as Sn, VmlConnectType as Sr, stringifyVmlWrap as St, VmlEditAs as T, VmlExtensionMode as Tn, VmlDiagramLayout as Tr, parseVmlTextPath as Tt, parseVmlOval as U, parseVmlDiagram as Un, parseVmlStyle as Ur, stringifyVmlShadow as Ut, parseVmlImage as V, parseVmlClipPath as Vn, VmlShapeStyle as Vr, VmlShadowType as Vt, parseVmlPolyline as W, parseVmlEquationXml as Wn, stringifyVmlStyle as Wr, VmlIsCommentOptions as Wt, stringifyVmlArc as X, parseVmlSignatureLine as Xn, VmlPathOptions as Xt, parseVmlShapetype as Y, parseVmlOleObject as Yn, stringifyVmlTextData as Yt, stringifyVmlBackground as Z, parseVmlSkew as Zn, parseVmlPath as Zt, stringifyVmlColorMenu as _, VmlCalloutOptions as _n, VML_SHAPE_ATTRS as _r, parseVmlAnchorLock as _t, VmlRegroupTableOptions as a, stringifyVmlHandles as an, stringifyVmlLock as ar, stringifyVmlRoundRect as at, stringifyVmlShapeLayout as b, VmlComplexOptions as bn, VmlBlackWhiteMode as br, stringifyVmlAnchorLock as bt, VmlRuleProxyOptions as c, stringifyVmlFormulas as cn, stringifyVmlSignatureLine as cr, stringifyVmlShapetype as ct, VmlShapeDefaultsOptions as d, VmlFillType as dn, VmlClientObjectType as dr, VmlBorderType as dt, parseVmlImageData as en, stringifyVmlComplex as er, stringifyVmlImage as et, VmlShapeLayoutOptions as f, VmlImageAspect as fn, parseVmlClientData as fr, VmlHorizontalAnchor as ft, parseVmlShapeLayout as g, VmlCalloutAngle as gn, VML_OFFICE_SHAPE_ATTRS as gr, VmlWrapType as gt, parseVmlShapeDefaults as h, EXT_ATTR as hn, VML_OFFICE_CORE_ATTRS as hr, VmlWrapSide as ht, VmlRegroupEntryOptions as i, parseVmlHandles as in, stringifyVmlInk as ir, stringifyVmlRect as it, VmlRectOptions as j, VmlLockOptions as jn, VmlShapeAttributes as jr, VmlStrokeArrowType as jt, VmlOvalOptions as k, VmlExtrusionType as kn, VmlOfficeShapeAttributes as kr, stringifyVmlTextbox as kt, VmlRuleType as l, VmlFillMethod as ln, stringifyVmlSkew as lr, VmlAnchorLockOptions as lt, parseVmlColorMru as m, stringifyVmlFill as mn, VML_CORE_ATTRS as mr, VmlWrapOptions as mt, VmlColorMruOptions as n, VmlHandleOptions as nn, stringifyVmlEquationXml as nr, stringifyVmlOval as nt, VmlRuleHow as o, VmlFormulasOptions as on, stringifyVmlOfficeFill as or, stringifyVmlShape as ot, parseVmlColorMenu as p, parseVmlFill as pn, stringifyVmlClientData as pr, VmlVerticalAnchor as pt, parseVmlShape as q, parseVmlLock as qn, parseVmlTextData as qt, VmlIdMapOptions as r, VmlHandlesOptions as rn, stringifyVmlExtrusion as rr, stringifyVmlPolyline as rt, VmlRuleOptions as s, parseVmlFormulas as sn, stringifyVmlOleObject as sr, stringifyVmlShapeChild as st, VmlColorMenuOptions as t, stringifyVmlImageData as tn, stringifyVmlDiagram as tr, stringifyVmlLine as tt, VmlRulesOptions as u, VmlFillOptions as un, VmlClientDataOptions as ur, VmlBorderOptions as ut, stringifyVmlColorMru as v, VmlClipPathOptions as vn, VmlAttrKind as vr, parseVmlBorder as vt, VmlCurveOptions as w, VmlExtAttribute as wn, VmlCoreAttributes as wr, VmlTextPathStyle as wt, VmlArcOptions as x, VmlDiagramOptions as xn, VmlColor as xr, stringifyVmlBorder as xt, stringifyVmlShapeDefaults as y, VmlColorMode as yn, VmlAttrSpec as yr, parseVmlWrap as yt, parseVmlCurve as z, VmlSkewOptions as zn, stringifyVmlTrueFalseBlank as zr, stringifyVmlStroke as zt };
|
|
871
|
+
//# sourceMappingURL=index-DkJrkIVp.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-DkJrkIVp.d.mts","names":[],"sources":["../src/vector/style.ts","../src/vector/attributes.ts","../src/vector/shape-elements/client-data.ts","../src/vector/shape-elements/office-elements.ts","../src/vector/shape-elements/fill.ts","../src/vector/shape-elements/formulas.ts","../src/vector/shape-elements/handles.ts","../src/vector/shape-elements/imagedata.ts","../src/vector/shape-elements/path.ts","../src/vector/shape-elements/presentation-elements.ts","../src/vector/shape-elements/shadow.ts","../src/vector/shape-elements/stroke.ts","../src/vector/shape-elements/textbox.ts","../src/vector/shape-elements/textpath.ts","../src/vector/shape-elements/word-elements.ts","../src/vector/shapes.ts","../src/vector/office-shape-defaults.ts"],"mappings":"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"}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { i as toUint8Array, n as ToUint8ArrayOptions, r as isBase64DataURL, t as DataType } from "./data-type-CZMKVaaT.mjs";
|
|
2
|
-
import { $ as PivotSourceOptions, A as
|
|
2
|
+
import { $ as PivotSourceOptions, A as ChartUserShapesOptions, B as ErrorBarType, C as ChartPivotFormatOptions, Ct as UserShapesOptions, D as ChartStyle2010Options, Dt as ChartData, E as ChartSpaceOptions, Et as ChartCollection, F as DataTableOptions, G as LegendEntryOptions, H as ExternalDataOptions, I as DisplayBlanksAs, J as MarkerOptions, K as LegendPosition, L as DisplayUnitsOptions, M as DataLabelPosition, N as DataLabelsOptions, O as ChartTitleOptions, P as DataPointOptions, Q as PictureFormat, R as ErrorBarDirection, S as ChartPictureOptions, St as UserShapeShapeOptions, T as ChartSeriesData, Tt as userShapesDesc, U as LayoutMode, V as ErrorValueType, W as LayoutTarget, X as OfPieType, Y as MarkerSymbol, Z as PageSetupOrientation, _ 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 DataLabelOptions, k as ChartType, 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 ManualLayoutOptions, 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 ChartSeriesCommon, wt as buildUserShapesData, x as ChartPageSetupOptions, xt as UserShapePictureOptions, y as ChartLinesOptions, yt as UserShapeMarkerOptions, z as ErrorBarOptions } from "./index-Dg0nIw2S.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
|
-
import { $ as ColorStyleLabelOptions, $a as
|
|
6
|
-
import { _ as ThemeOverrideOptions, a as DefaultShapeDefinitionOptions, c as ExtraColorSchemeOptions, d as FontSchemeOptions, f as FormatSchemeOptions, g as ThemeOptions, h as TextFontOptions, i as CustomColorOptions, l as FontCollectionOptions, m as SupplementalFontOptions, n as ColorSchemeIndex, o as DefaultShapeStyleOptions, p as ObjectDefaultsOptions, r as ColorSchemeOptions, s as EffectStyleOptions, t as ColorMappingOptions, u as FontReferenceOptions } from "./theme-options-
|
|
5
|
+
import { $ as ColorStyleLabelOptions, $a as ScRgbColorOptions, $i as calculateEffectExtent, $n as ParagraphDescriptorOptions, $r as bodyPropertiesDesc, $t as pickNonVisualDrawingProperties, A as patternFillDesc, Aa as PatternFillOptions, Ai as LineEndType, An as parseTableStyleList, Ar as StrikeStyle, At as AnimateOneByOneOptions, B as solidFillDesc, Ba as TileAlignment, Bi as GeomRect, Bn as createGroupTransform2D, Br as TextRunOptions, Bt as createAdjustList, C as pictureLockingDesc, Ca as createGradientStop, Ci as OutlineFillProperties, Cn as TableStyleOptions, Cr as BulletStyleOptions, Ct as createLayoutDefinitionHeader, D as fillDesc, Da as GradientStopOptions, Di as createOutline, Dn as createTableStyle, Dr as DEFAULT_SHADOW_DIRECTION, Dt as AdjustListOptions, E as emitFillXml, Ea as FillOptions, Ei as PresetDash, En as ThemeableLineStyleOptions, Er as DEFAULT_SHADOW_BLUR_RADIUS, Et as createStyleDefinitionHeaderList, F as parseColorChoiceElement, Fa as BlipCompression, Fi as PresetGeometryOptions, Fn as shape3DDesc, Fr as TextCharacterPropertiesOptions, Ft as MaxChildrenOptions, G as DiagramTextPropertiesOptions, Ga as createColorElement, Gi as GeometryGuide, Gn as createBlipFill, Gr as NormalAutofitOptions, Gt as createOrgChart, H as systemColorDesc, Ha as TileOptions, Hi as PathFillMode, Hn as stringifyStretch, Hr as UnderlineStyle, Ht as createAnimationLevel, I as presetColorDesc, Ia as BlipOptions, Ii as ShapeType, In as StyleMatrixReferenceOptions, Ir as TextFieldOptions, It as OrgChartOptions, J as createDiagramTextProperties, Ja as SystemColorOptions, Ji as EffectDagOptions, Jn as stringifyLineProperties, Jr as TextHorzOverflow, Jt as NonVisualContentPartPropertiesOptions, K as createDiagramExtensionList, Ka as createSolidFill, Ki as stringifyAdjustmentValues, Kn as createSoftEdgeEffect, Kr as PresetTextShapeOptions, Kt as createPreferredChildren, L as rgbColorDesc, La as createBlip, Li as stringifyPresetGeometry, Ln as BlackWhiteMode, Lr as TextFont, Lt as PreferredChildrenOptions, M as hslColorDesc, Ma as createPatternFill, Mi as createLineEnd, Mn as bevelDesc, Mr as TextAlignment, Mt as AnimationLevelOptions, N as isPlainRgbColor, Na as SourceRectangleOptions, Ni as DashStop, Nn as cell3DDesc, Nr as TextBreakOptions, Nt as HierBranch, O as findFillChild, Oa as buildFill, Oi as LineEndLength, On as createTableStyleList, Or as DEFAULT_SHADOW_DISTANCE, Ot as AdjustOptions, P as parseColorChoice, Pa as createSourceRectangle, Pi as createCustomDash, Pn as scene3DDesc, Pr as TextCapitalization, Pt as HierBranchOptions, Q as ColorMethod, Qa as createSchemeColor, Qi as EffectListOptions, Qn as textBodyDesc, Qr as VerticalAnchor, Qt as parseNonVisualDrawingProperties, R as scRgbColorDesc, Ra as BlipEffectsOptions, Ri as ConnectionSite, Rn as GroupTransform2DOptions, Rr as TextHyperlinkOptions, Rt as PresentationLayoutVariablesOptions, S as groupLockingDesc, Sa as createGradientFill, Si as LineJoin, Sn as TableStyleListOptions, Sr as BulletPictureOptions, St as createColorsDefinitionHeaderList, T as effectListDesc, Ta as BlipFillMediaData, Ti as PenAlignment, Tn as TableTextStyleOptions, Tr as DEFAULT_SHADOW_ALPHA, Tt as createStyleDefinitionHeader, U as DiagramExtensionListOptions, Ua as createTileInfo, Ui as PathOptions, Un as createExtensionList, Ur as BodyPropertiesOptions, Ut as createHierBranch, V as stringifyColorChoice, Va as TileFlipMode, Vi as PathCommand, Vn as createTransform2D, Vr as TextTabAlignment, Vt as createAnimateOneByOne, W as DiagramExtensionOptions, Wa as SolidFillOptions, Wi as createCustomGeometry, Wn as BlipFillOptions, Wr as FlatTextOptions, Wt as createMaxChildren, X as createDiagramRelationshipIds, Xa as SchemeColor, Xi as BlurEffectOptions, Xn as createNoFill, Xr as TextVertOverflow, Xt as stringifyNonVisualContentPartProperties, Y as DiagramRelationshipIdsOptions, Ya as createSystemColor, Yi as createEffectDag, Yn as createGroupFill, Yr as TextShapePreset, Yt as parseNonVisualContentPartProperties, Z as ColorListOptions, Za as SchemeColorOptions, Zi as EffectExtent, Zn as TextBodyOptions, Zr as TextVertical, Zt as NonVisualDrawingPropertiesOptions, _ as transform2DDesc, _a as GradientShadeOptions, _i as SphereCoords, _n as TableBackgroundStyleOptions, _r as AutoNumberFormat, _t as LayoutDefinitionHeaderListOptions, a as BlipDescriptorOptions, aa as createPresetShadowEffect, ai as PresetMaterial, an as ContentPartLockingOptions, ao as createPresetColor, ar as readHyperlink, at as createEffectColorList, b as connectorLockingDesc, ba as PathShadeOptions, bi as CompoundLine, bn as TableFontReferenceOptions, br as BulletNoneOption, bt as StyleDefinitionHeaderOptions, c as sourceRectangleDesc, ca as createOuterShadowEffect, ci as BevelOptions, cn as PictureLockingOptions, co as ColorTransformOptions, cr as stringifyRunProperties, ct as createStyleLabel, d as tileDesc, da as GlowEffectOptions, di as createBottomBevel, dn as createContentPartLocking, dr as TextStylesOptions, dt as createTextLineColorList, ea as createEffectList, ei as createBodyProperties, en as stringifyNonVisualDrawingProperties, eo as createScRgbColor, er as paragraphDesc, et as DiagramStyleOptions, f as stringifyTextRun, fa as createGlowEffect, fi as BackdropOptions, fn as createGraphicFrameLocking, fr as parseTextStyles, ft as ColorsDefinitionHeaderListOptions, g as groupTransform2DDesc, ga as GradientFillOptions, gi as Scene3DOptions, gn as OnOffStyleType, gr as textStylesDesc, gt as DiagramNameOptions, h as groupShapePropertiesDesc, ha as createFillOverlayEffect, hi as Point3D, hn as createShapeLocking, hr as textListStyleDesc, ht as DiagramDescriptionOptions, i as presentationLayoutVariablesDesc, ia as PresetShadowEffectOptions, ii as shapePropertiesDesc, in as ConnectorLockingOptions, io as PresetColorOptions, ir as buildHyperlinkElement, it as createDiagramStyle, j as emitColorChoice, ja as PresetPattern, ji as LineEndWidth, jn as Cell3DOptions, jr as TabStopOptions, jt as AnimationLevel, k as gradientFillDesc, ka as extractBlipFillMedia, ki as LineEndOptions, kn as parseTableStyle, kr as RunFont, kt as AnimateOneByOne, l as stretchDesc, la as InnerShadowEffectOptions, li as BevelPreset, ln as ShapeLockingOptions, lo as createColorTransforms, lr as DEFAULT_TEXT_STYLES, lt as createTextEffectColorList, m as GroupShapePropertiesOptions, ma as FillOverlayEffectOptions, mi as LightRigOptions, mn as createPictureLocking, mr as stringifyTextStyles, mt as DiagramCategoryOptions, n as diagramRelationshipIdsDesc, na as createReflectionEffect, ni as ShapePropertiesExtensionOptions, nn as parseEndpointConnection, no as createRgbColor, nr as stringifyParagraphPropertiesElement, nt as HueDirection, o as blipDesc, oa as OuterShadowEffectOptions, oi as Shape3DOptions, on as GraphicFrameLockingOptions, oo as HslColorOptions, or as registerHyperlink, ot as createFillColorList, p as textRunDesc, pa as BlendMode, pi as CameraOptions, pn as createGroupLocking, pr as stringifyTextListStyleTag, pt as ColorsDefinitionHeaderOptions, q as createDiagramShape3D, qa as SystemColor, qi as EffectContainer, qn as outlineDesc, qr as TextBodyWrapping, qt as createPresentationLayoutVariables, r as diagramStyleDesc, ra as PresetShadow, ri as ShapePropertiesOptions, rn as stringifyEndpointConnection, ro as PresetColor, rr as Mutable, rt as StyleMatrixIndex, s as blipFillDesc, sa as RectAlignment, si as createShape3D, sn as GroupLockingOptions, so as createHslColor, sr as runPropertiesDesc, st as createLineColorList, t as diagramExtensionListDesc, ta as ReflectionEffectOptions, ti as parseBodyProperties, tn as EndpointConnectionOptions, to as RgbColorOptions, tr as readParagraphProperties, tt as FontCollectionIndex, u as stringifyBlipEffects, ua as createInnerShadowEffect, ui as createBevel, un as createConnectorLocking, ur as TextListStyleOptions, ut as createTextFillColorList, v as customGeometryDesc, va as LinearShadeOptions, vi as Vector3D, vn as TableCellBorderOptions, vr as BulletAutoNumOptions, vt as LayoutDefinitionHeaderOptions, w as shapeLockingDesc, wa as BlipFillConfigOptions, wi as OutlineOptions, wn as TableStyleRegion, wr as DEFAULT_OUTLINE_WIDTH, wt as createLayoutDefinitionHeaderList, x as graphicFrameLockingDesc, xa as RelativeRect, xi as LineCap, xn as TablePartStyleOptions, xr as BulletOptions, xt as createColorsDefinitionHeader, y as presetGeometryDesc, ya as PathShade, yi as createScene3D, yn as TableCellStyleOptions, yr as BulletCharOptions, yt as StyleDefinitionHeaderListOptions, z as schemeColorDesc, za as createBlipEffects, zi as CustomGeometryOptions, zn as Transform2DOptions, zr as TextParagraphPropertiesOptions, zt as createAdjust } from "./index-BDeoFmTS.mjs";
|
|
6
|
+
import { _ as ThemeOverrideOptions, a as DefaultShapeDefinitionOptions, c as ExtraColorSchemeOptions, d as FontSchemeOptions, f as FormatSchemeOptions, g as ThemeOptions, h as TextFontOptions, i as CustomColorOptions, l as FontCollectionOptions, m as SupplementalFontOptions, n as ColorSchemeIndex, o as DefaultShapeStyleOptions, p as ObjectDefaultsOptions, r as ColorSchemeOptions, s as EffectStyleOptions, t as ColorMappingOptions, u as FontReferenceOptions } from "./theme-options-wZX4i_xx.mjs";
|
|
7
7
|
import { i as convertOutput, n as OutputByType, r as OutputType, t as OoxmlMimeType } from "./output-yyxdkG0C.mjs";
|
|
8
|
-
import { $ as
|
|
8
|
+
import { $ as xsdLightRigDirection, $t as convertTwipToEmu, A as xsdAnimValueType, An as ZipStreamWriter, At as UniqueNumericIdCreator, B as xsdCompoundLine, Bt as convertEmuToPixels, C as replacePlaceholders, Cn as Packer, Ct as xsdTextVerticalType, D as xsdAnimCalcMode, Dn as ZIP_STORED_LEVEL, Dt as xsdVerticalMergeRev, E as invertMap, En as ZIP_DEFLATE_LEVEL, Et as xsdUnderlineStyle, F as xsdAxisOrientation, Fn as strFromU8, Ft as extUriMatches, G as xsdEffectContainer, Gt as convertMillimetersToTwip, H as xsdDataLabelPosition, Ht as convertEmuToTwip, I as xsdAxisPosition, In as unzipSync, It as derivePasswordHash, J as xsdHierBranch, Jt as convertPointsToTwip, K as xsdErrorValueType, Kt as convertPixelsToEmu, L as xsdBlendMode, Ln as zipAndConvert, Lt as hashPasswordAgile, M as xsdAxisCrossBetween, Mn as createPacker, Mt as uniqueId, N as xsdAxisCrosses, Nn as createZipStream, Nt as uniqueNumericIdCreator, O as xsdAnimClass, On as ZipOptions, Ot as ImageFileType, P as xsdAxisLabelAlignment, Pn as levelForMediaName, Pt as uniqueUuid, Q as xsdLegendPosition, Qt as convertToTwip, R as xsdChartBuild, Rn as zipSync, Rt as randomBytes, S as replaceOlePlaceholders, Sn as CompressionOptions, St as xsdTextTabAlignment, T as replaceVideoPlaceholders, Tn as XmlifyedFile, Tt as xsdTrendlineType, U as xsdDiagramBuild, Ut as convertInchesToEmu, V as xsdConsolidateFunction, Vt as convertEmuToPoints, W as xsdDiagramDirection, Wt as convertInchesToTwip, X as xsdIterateType, Xt as convertToInch, Y as xsdHueDirection, Yt as convertToEmu, Z as xsdJcAlignment, Zt as convertToPt, _ as replaceImageLinkPlaceholders, _n as buildRootRelationships, _t as xsdTableWidthType, a as findAndReplaceImagePlaceholders, an as emitPercent, at as xsdPathFillMode, b as replaceNumberingPlaceholders, bn as resolveRelationshipTarget, bt as xsdTextBuild, c as getMediaRefs, cn as parsePercent, ct as xsdPlaceholderType, d as getVideoRefs, dn as XmlifyedFileEntry, dt as xsdResizeHandles, en as convertUniversalMeasureToEmu, et as xsdLineCap, f as hasPlaceholders, fn as addBinaryFile, ft as xsdShadingPattern, g as replaceHyperlinkPlaceholders, gn as TargetModeType, gt as xsdStrikeStyle, h as replaceChartPlaceholders, hn as Relationships, ht as xsdSplitType, i as collectPlaceholderKeys, in as emitAngle, it as xsdOrient, j as xsdAnimationDgmBuild, jn as Zippable, jt as hashedId, k as xsdAnimLevel, kn as ZipPartSink, kt as imageTypeFromPath, l as getOleRefs, ln as parsePercentAttr, lt as xsdPresetShadow, m as replaceAudioPlaceholders, mn as RelationshipType, mt as xsdSlideLayoutType, n as SmartArtRelOptions, nn as convertUniversalMeasureToPt, nt as xsdMaterialType, o as formatId, on as mapOptional, ot as xsdPattern, p as replaceAllPlaceholders, pn as compileMapping, pt as xsdSizeRepresents, q as xsdFontAlignment, qt as convertPointsToEmu, r as addSmartArtRelationships, rn as convertUniversalMeasureToTwip, rt as xsdMathStyle, s as getAudioRefs, sn as parseAngle, st as xsdPenAlignment, t as IdFormat, tn as convertUniversalMeasureToInch, tt as xsdLineEndSize, u as getReferencedMedia, un as parseUniversalMeasure, ut as xsdRectAlignment, v as replaceImagePlaceholders, vn as optionalRelsPart, vt as xsdTextAlign, w as replaceSmartArtPlaceholders, wn as PackerOptions, wt as xsdTotalsRowFunction, x as replaceOleLinkPlaceholders, xn as CompileFn, xt as xsdTextCaps, y as replaceMediaPlaceholders, yn as partPathToRelsPath, yt as xsdTextAnchor, z as xsdComments, zn as zipSyncAndConvert, zt as convertEmuToInches } from "./index-Cd0lFS5x.mjs";
|
|
9
9
|
import { C as PPTX_NS, D as parseCorePropsElement, E as buildCorePropertiesXmlString, S as DOCX_NS, T as CorePropertiesOptions, _ as createTraverser, a as getNextRelationshipIndex, b as ReplacerOptions, c as removeOverride, d as nextNumericId, f as patchSpaceAttribute, g as createTokenReplacer, h as createSplitInject, i as appendRelationship, l as createTextElementContents, m as TokenNotFoundError, n as PlaceholderDelimiters, o as appendContentType, p as toJson, r as applyCorePropertiesOverride, s as appendOverride, t as BasePatchOptions, u as getFirstLevelElements, v as RenderedParagraphNode, w as XmlNamespaceOptions, x as createReplacer, y as createRunRenderer } from "./index-CaNwM5_e.mjs";
|
|
10
|
-
import { $ as stringifyConnection, A as LayoutNodeChild, B as parseLayoutDefinition, C as ConstraintOptions, D as DiagramIterationOptions, E as DiagramDirection, F as ResizeHandles, G as ModelConnectionOptions, H as stringifyLayoutDefinitionPart, I as SampleDataOptions, J as stringifyDataModel, K as ModelPointOptions, L as VariableListOptions, M as LayoutRuleOptions, N as LayoutShapeOptions, O as ForEachOptions, P as OtherwiseOptions, Q as stringifyTransPoint, R as WhenOptions, S as ConstraintOperator, T as ConstraintType, U as withDiagramNamespaces, V as stringifyLayoutDefinition, W as DataModelOptions, X as PointPropertySetOptions, Y as stringifyDataModelOptions, Z as stringifyPoint, _ as AlgorithmType, a as SmartArtRawParts, at as DEFAULT_DRAWING_XML, b as ConditionFunction, c as StyleLabelOptions, ct as getStyleXml, d as stringifyStyleDefinition, dt as STYLE_CATEGORIES, et as ColorDefinitionOptions, f as stringifyStyleDefinitionPart, g as AlgorithmParameterType, h as AlgorithmParameterOptions, i as SmartArtData, it as stringifyColorDefinitionPart, j as LayoutNodeOptions, k as LayoutDefinitionOptions, l as TextProperties3DOptions, lt as COLOR_CATEGORIES, m as AlgorithmOptions, n as createDataModel, nt as parseColorDefinition, o as definitionId, ot as getColorXml, p as styleDefDesc, q as parseDataModelOptions, r as SmartArtCollection, rt as stringifyColorDefinition, s as StyleDefinitionOptions, st as getLayoutXml, t as TreeNode, tt as colorsDefDesc, u as parseStyleDefinition, ut as LAYOUT_CATEGORIES, v as ChildOrder, w as ConstraintRelationship, x as ConditionOperator, y as ChooseOptions, z as layoutDefDesc } from "./index-
|
|
11
|
-
import { $ as stringifyVmlGroup, $n as
|
|
12
|
-
import { a as stringifyColorMapping, c as themeOverrideDesc, d as buildThemeXml, f as createThemeXml, i as parseColorMapping, l as themeDesc, n as stringifyShapeStyle, o as ThemeManagerOptions, r as DEFAULT_COLOR_MAPPING, s as themeManagerDesc, t as parseShapeStyle, u as DEFAULT_COLORS } from "./index-
|
|
10
|
+
import { $ as stringifyConnection, A as LayoutNodeChild, B as parseLayoutDefinition, C as ConstraintOptions, D as DiagramIterationOptions, E as DiagramDirection, F as ResizeHandles, G as ModelConnectionOptions, H as stringifyLayoutDefinitionPart, I as SampleDataOptions, J as stringifyDataModel, K as ModelPointOptions, L as VariableListOptions, M as LayoutRuleOptions, N as LayoutShapeOptions, O as ForEachOptions, P as OtherwiseOptions, Q as stringifyTransPoint, R as WhenOptions, S as ConstraintOperator, T as ConstraintType, U as withDiagramNamespaces, V as stringifyLayoutDefinition, W as DataModelOptions, X as PointPropertySetOptions, Y as stringifyDataModelOptions, Z as stringifyPoint, _ as AlgorithmType, a as SmartArtRawParts, at as DEFAULT_DRAWING_XML, b as ConditionFunction, c as StyleLabelOptions, ct as getStyleXml, d as stringifyStyleDefinition, dt as STYLE_CATEGORIES, et as ColorDefinitionOptions, f as stringifyStyleDefinitionPart, g as AlgorithmParameterType, h as AlgorithmParameterOptions, i as SmartArtData, it as stringifyColorDefinitionPart, j as LayoutNodeOptions, k as LayoutDefinitionOptions, l as TextProperties3DOptions, lt as COLOR_CATEGORIES, m as AlgorithmOptions, n as createDataModel, nt as parseColorDefinition, o as definitionId, ot as getColorXml, p as styleDefDesc, q as parseDataModelOptions, r as SmartArtCollection, rt as stringifyColorDefinition, s as StyleDefinitionOptions, st as getLayoutXml, t as TreeNode, tt as colorsDefDesc, u as parseStyleDefinition, ut as LAYOUT_CATEGORIES, v as ChildOrder, w as ConstraintRelationship, x as ConditionOperator, y as ChooseOptions, z as layoutDefDesc } from "./index-6_MYd0cg.mjs";
|
|
11
|
+
import { $ as stringifyVmlGroup, $n as stringifyVmlClipPath, $t as VmlImageDataOptions, A as VmlPolylineOptions, An as VmlInkOptions, Ar as VmlScreenSize, At as VmlStrokeArrowLength, B as parseVmlGroup, Bn as parseVmlCallout, Br as LengthUnit, Bt as VmlShadowOptions, C as VmlBaseShapeFields, Cn as VmlEquationXmlOptions, Cr as VmlConnectorType, Ct as VmlTextPathOptions, D as VmlImageOptions, Dn as VmlExtrusionPlane, Dr as VmlInsetMode, Dt as VmlTextboxOptions, E as VmlGroupOptions, En as VmlExtrusionOptions, Er as VmlHorizontalRuleAlign, Et as stringifyVmlTextPath, F as VmlShapetypeOptions, Fn as VmlOleObjectOptions, Fr as parseVmlTrueFalse, Ft as VmlStrokeJoinStyle, G as parseVmlRect, Gn as parseVmlExtrusion, Gt as VmlTextDataOptions, H as parseVmlLine, Hn as parseVmlComplex, Hr as parseVmlShapeStyle, Ht as parseVmlShadow, I as nextVmlShapeId, In as VmlOleObjectType, Ir as parseVmlTrueFalseBlank, It as VmlStrokeLineStyle, J as parseVmlShapeChild, Jn as parseVmlOfficeFill, Jt as stringifyVmlIsComment, K as parseVmlRoundRect, Kn as parseVmlInk, Kt as parseVmlIsComment, L as parseVmlArc, Ln as VmlOleUpdateMode, Lr as stringifyVmlAttributes, Lt as VmlStrokeOptions, M as VmlRoundRectOptions, Mn as VmlOfficeFillOptions, Mr as VmlTrueFalse, Mt as VmlStrokeArrowWidth, N as VmlShapeChild, Nn as VmlOfficeFillType, Nr as VmlTrueFalseBlank, Nt as VmlStrokeChildOptions, O as VmlLineOptions, On as VmlExtrusionRender, Or as VmlOfficeCoreAttributes, Ot as parseVmlTextbox, P as VmlShapeOptions, Pn as VmlOleDrawAspect, Pr as parseVmlAttributes, Pt as VmlStrokeEndCap, Q as stringifyVmlCurve, Qn as stringifyVmlCallout, Qt as stringifyVmlPath, R as parseVmlBackground, Rn as VmlSignatureLineOptions, Rr as stringifyVmlTrueFalse, Rt as parseVmlStroke, S as VmlBackgroundOptions, Sn as VmlDiagramRelationOptions, Sr as VmlConnectType, St as stringifyVmlWrap, T as VmlEditAs, Tn as VmlExtensionMode, Tr as VmlDiagramLayout, Tt as parseVmlTextPath, U as parseVmlOval, Un as parseVmlDiagram, Ur as parseVmlStyle, Ut as stringifyVmlShadow, V as parseVmlImage, Vn as parseVmlClipPath, Vr as VmlShapeStyle, Vt as VmlShadowType, W as parseVmlPolyline, Wn as parseVmlEquationXml, Wr as stringifyVmlStyle, Wt as VmlIsCommentOptions, X as stringifyVmlArc, Xn as parseVmlSignatureLine, Xt as VmlPathOptions, Y as parseVmlShapetype, Yn as parseVmlOleObject, Yt as stringifyVmlTextData, Z as stringifyVmlBackground, Zn as parseVmlSkew, Zt as parseVmlPath, _ as stringifyVmlColorMenu, _n as VmlCalloutOptions, _r as VML_SHAPE_ATTRS, _t as parseVmlAnchorLock, a as VmlRegroupTableOptions, an as stringifyVmlHandles, ar as stringifyVmlLock, at as stringifyVmlRoundRect, b as stringifyVmlShapeLayout, bn as VmlComplexOptions, br as VmlBlackWhiteMode, bt as stringifyVmlAnchorLock, c as VmlRuleProxyOptions, cn as stringifyVmlFormulas, cr as stringifyVmlSignatureLine, ct as stringifyVmlShapetype, d as VmlShapeDefaultsOptions, dn as VmlFillType, dr as VmlClientObjectType, dt as VmlBorderType, en as parseVmlImageData, er as stringifyVmlComplex, et as stringifyVmlImage, f as VmlShapeLayoutOptions, fn as VmlImageAspect, fr as parseVmlClientData, ft as VmlHorizontalAnchor, g as parseVmlShapeLayout, gn as VmlCalloutAngle, gr as VML_OFFICE_SHAPE_ATTRS, gt as VmlWrapType, h as parseVmlShapeDefaults, hn as EXT_ATTR, hr as VML_OFFICE_CORE_ATTRS, ht as VmlWrapSide, i as VmlRegroupEntryOptions, in as parseVmlHandles, ir as stringifyVmlInk, it as stringifyVmlRect, j as VmlRectOptions, jn as VmlLockOptions, jr as VmlShapeAttributes, jt as VmlStrokeArrowType, k as VmlOvalOptions, kn as VmlExtrusionType, kr as VmlOfficeShapeAttributes, kt as stringifyVmlTextbox, l as VmlRuleType, ln as VmlFillMethod, lr as stringifyVmlSkew, lt as VmlAnchorLockOptions, m as parseVmlColorMru, mn as stringifyVmlFill, mr as VML_CORE_ATTRS, mt as VmlWrapOptions, n as VmlColorMruOptions, nn as VmlHandleOptions, nr as stringifyVmlEquationXml, nt as stringifyVmlOval, o as VmlRuleHow, on as VmlFormulasOptions, or as stringifyVmlOfficeFill, ot as stringifyVmlShape, p as parseVmlColorMenu, pn as parseVmlFill, pr as stringifyVmlClientData, pt as VmlVerticalAnchor, q as parseVmlShape, qn as parseVmlLock, qt as parseVmlTextData, r as VmlIdMapOptions, rn as VmlHandlesOptions, rr as stringifyVmlExtrusion, rt as stringifyVmlPolyline, s as VmlRuleOptions, sn as parseVmlFormulas, sr as stringifyVmlOleObject, st as stringifyVmlShapeChild, t as VmlColorMenuOptions, tn as stringifyVmlImageData, tr as stringifyVmlDiagram, tt as stringifyVmlLine, u as VmlRulesOptions, un as VmlFillOptions, ur as VmlClientDataOptions, ut as VmlBorderOptions, v as stringifyVmlColorMru, vn as VmlClipPathOptions, vr as VmlAttrKind, vt as parseVmlBorder, w as VmlCurveOptions, wn as VmlExtAttribute, wr as VmlCoreAttributes, wt as VmlTextPathStyle, x as VmlArcOptions, xn as VmlDiagramOptions, xr as VmlColor, xt as stringifyVmlBorder, y as stringifyVmlShapeDefaults, yn as VmlColorMode, yr as VmlAttrSpec, yt as parseVmlWrap, z as parseVmlCurve, zn as VmlSkewOptions, zr as stringifyVmlTrueFalseBlank, zt as stringifyVmlStroke } from "./index-DkJrkIVp.mjs";
|
|
12
|
+
import { a as stringifyColorMapping, c as themeOverrideDesc, d as buildThemeXml, f as createThemeXml, i as parseColorMapping, l as themeDesc, n as stringifyShapeStyle, o as ThemeManagerOptions, r as DEFAULT_COLOR_MAPPING, s as themeManagerDesc, t as parseShapeStyle, u as DEFAULT_COLORS } from "./index-DOtPArpl.mjs";
|
|
13
13
|
import { Element, ParseOptions } from "@office-open/xml";
|
|
14
14
|
//#region src/opc/media.d.ts
|
|
15
15
|
interface BaseMediaEntry {
|
|
@@ -933,5 +933,5 @@ interface BaseGroupOptions extends NonVisualDrawingPropertiesOptions {
|
|
|
933
933
|
}
|
|
934
934
|
declare function pickGroupBase(opts: BaseGroupOptions | undefined): Partial<BaseGroupOptions>;
|
|
935
935
|
//#endregion
|
|
936
|
-
export { AbsoluteSizeAnchorOptions, type AdjustListOptions, type AdjustOptions, AlgorithmOptions, AlgorithmParameterOptions, AlgorithmParameterType, AlgorithmType, type AnimateOneByOne, type AnimateOneByOneOptions, type AnimationLevel, type AnimationLevelOptions, type AppPropertiesInput, type AppPropertiesOptions, ArgbHexColor, AutoNumberFormat, AxisCrossBetween, AxisCrosses, AxisKind, AxisLabelAlignment, AxisNumberFormatOptions, AxisOptions, AxisOrientation, AxisPosition, AxisScalingOptions, AxisTickLabelPosition, AxisTickMark, type BackdropOptions, BandFormatOptions, BarShape, Base64, BaseConnectorOptions, BaseGroupOptions, type BaseMediaEntry, type BasePatchOptions, BasePictureOptions, BaseTableCellOptions, BaseTableOptions, BaseTableRowOptions, type BevelOptions, type BevelPreset, type BlackWhiteMode, BlendMode, type BlipCompression, BlipDescriptorOptions, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, BodyPropertiesOptions, BubbleSeriesData, BuiltInDisplayUnit, BulletAutoNumOptions, BulletCharOptions, BulletNoneOption, BulletOptions, BulletPictureOptions, BulletStyleOptions, COLOR_CATEGORIES, type CameraOptions, Cell3DOptions, ChartCollection, ChartData, ChartGrouping, ChartHeaderFooterOptions, ChartLinesOptions, ChartPageMarginsOptions, ChartPageSetupOptions, ChartPivotFormatOptions, ChartSeriesCommon, ChartSeriesData, ChartSpaceOptions, ChartStyle2010Options, ChartTitleOptions, ChartType, ChartUserShapesOptions, ChildOrder, ChooseOptions, ColorDefinitionOptions, type ColorListOptions, type ColorMappingOptions, type ColorMethod, type ColorSchemeIndex, type ColorSchemeOptions, type ColorStyleLabelOptions, type ColorTransformOptions, type ColorsDefinitionHeaderListOptions, type ColorsDefinitionHeaderOptions, type CompileFn, type CompoundLine, type CompoundLineType, type CompressionOptions, ConditionFunction, ConditionOperator, type ConnectionSite, type ConnectorLockingOptions, ConstraintOperator, ConstraintOptions, ConstraintRelationship, ConstraintType, type ContentPartLockingOptions, type ContentTypeDefault, type ContentTypeOverride, type ContentTypeOverrideEntry, type ContentTypesInput, type CorePropertiesOptions, type CustomColorOptions, type CustomDescriptor, type CustomGeometryOptions, type CustomPropertiesInput, type CustomPropertyOptions, DEFAULT_COLORS, DEFAULT_COLOR_MAPPING, DEFAULT_DRAWING_XML, DEFAULT_OUTLINE_WIDTH, DEFAULT_SHADOW_ALPHA, DEFAULT_SHADOW_BLUR_RADIUS, DEFAULT_SHADOW_DIRECTION, DEFAULT_SHADOW_DISTANCE, DEFAULT_TEXT_STYLES, DOCX_NS, DOCX_PARTS, type DashStop, DataLabelOptions, DataLabelPosition, DataLabelsOptions, DataModelOptions, DataPointOptions, DataTableOptions, DataType, DateTime, type DefaultShapeDefinitionOptions, type DefaultShapeStyleOptions, type DeriveContentTypesOptions, type DescriptorFieldSpec, type DiagramCategoryOptions, type DiagramDescriptionOptions, DiagramDirection, type DiagramExtensionListOptions, type DiagramExtensionOptions, DiagramIterationOptions, type DiagramNameOptions, type DiagramRelationshipIdsOptions, type DiagramStyleOptions, type DiagramTextPropertiesOptions, DisplayBlanksAs, DisplayUnitsOptions, EXT_ATTR, type EffectContainer, type EffectDagOptions, type EffectExtent, type EffectListOptions, type EffectStyleOptions, EmbeddingCollection, type EmbeddingData, type EncryptedContainerOptions, type EndpointConnectionOptions, ErrorBarDirection, ErrorBarOptions, ErrorBarType, ErrorValueType, ExternalDataOptions, type ExtraColorSchemeOptions, FIELD_SPECS, type FieldConsistencyReport, type FillOptions, type FillOverlayEffectOptions, FlatTextOptions, FontCollectionIndex, type FontCollectionOptions, type FontReferenceOptions, type FontSchemeOptions, ForEachOptions, type FormatSchemeOptions, type GeomRect, type GeometryGuide, type GlowEffectOptions, type GradientFillOptions, type GradientShadeOptions, type GradientStop, type GradientStopOptions, type GraphicFrameLockingOptions, type GroupLockingOptions, GroupShapePropertiesOptions, type GroupTransform2DOptions, Guid, type HeadingPairOptions, HexColor, HexColorOrAuto, type HierBranch, type HierBranchOptions, type HslColorOptions, type HueDirection, type HyperlinkTarget, IMAGE_MEDIA_CONTENT_TYPES, IdFormat, ImageFileType, type InnerShadowEffectOptions, LAYOUT_CATEGORIES, type LayoutDefinitionHeaderListOptions, type LayoutDefinitionHeaderOptions, LayoutDefinitionOptions, LayoutMode, LayoutNodeChild, LayoutNodeOptions, LayoutRuleOptions, LayoutShapeOptions, LayoutTarget, LegendEntryOptions, LegendPosition, LengthUnit, type LightRigOptions, type LineCap, type LineEndLength, type LineEndOptions, type LineEndType, type LineEndWidth, type LineJoin, type LinearShadeOptions, LongHexNumber, ManualLayoutOptions, MarkerOptions, MarkerSymbol, type MaxChildrenOptions, Media, ModelConnectionOptions, ModelPointOptions, Mutable, type NonVisualContentPartPropertiesOptions, type NonVisualDrawingPropertiesOptions, NormalAutofitOptions, OOXML_CANONICAL_PREFIXES, type ObjectDefaultsOptions, OfPieType, type OnOffStyleType, OoxmlMimeType, type OpcCode, type OpcIssue, type OpcSeverity, type OrderViolation, type OrgChartOptions, OtherwiseOptions, type OuterShadowEffectOptions, type OutlineFillProperties, type OutlineOptions, type OutputByType, type OutputType, PART_REGISTRIES, PPTX_NS, PPTX_PARTS, type PackagePartRegistry, type Packer, type PackerOptions, PageSetupOrientation, Panose, ParagraphDescriptorOptions, ParsedArchive, type PartContentTypeResolver, type PartDefinition, type PartPresence, type PassthroughPart, type PassthroughRelationship, type PassthroughResult, type PathCommand, type PathFillMode, type PathOptions, type PathShade, type PathShadeOptions, type PatternFillOptions, type PenAlignment, Percentage, PictureFormat, type PictureLockingOptions, PictureOptionsOptions, PivotSourceOptions, type PlaceholderDelimiters, type Point3D, PointPropertySetOptions, PositivePercentage, PositiveUniversalMeasure, type PreferredChildrenOptions, type PresentationLayoutVariablesOptions, PresetColor, type PresetColorOptions, type PresetDash, type PresetGeometryOptions, type PresetMaterial, type PresetPattern, type PresetShadow, type PresetShadowEffectOptions, PresetTextShapeOptions, PrintSettingsOptions, ProtectionOptions, RadarStyle, type ReadContext, type RectAlignment, type ReflectionEffectOptions, type RelationshipType, Relationships, RelativeMeasure, type RelativeRect, RelativeSizeAnchorOptions, type RenderedParagraphNode, type ReplacerOptions, ResizeHandles, type RgbColorOptions, type RoundTripResult, RunFont, STYLE_CATEGORIES, SampleDataOptions, type ScRgbColorOptions, ScatterSeriesData, type Scene3DOptions, SchemeColor, type SchemeColorOptions, SecondaryChartGroupOptions, type Shape3DOptions, type ShapeLockingOptions, ShapePropertiesExtensionOptions, ShapePropertiesOptions, type ShapeType, ShortHexNumber, SizeRepresents, SmartArtCollection, SmartArtData, SmartArtRawParts, SmartArtRelOptions, type SolidFillOptions, type SourceRectangleOptions, type SphereCoords, SplitType, StrikeStyle, type StyleDefinitionHeaderListOptions, type StyleDefinitionHeaderOptions, StyleDefinitionOptions, StyleLabelOptions, type StyleMatrixIndex, type StyleMatrixReferenceOptions, type SupplementalFontOptions, SurfaceOptions, SystemColor, type SystemColorOptions, TabStopOptions, type TableBackgroundStyleOptions, type TableCellBorderOptions, type TableCellStyleOptions, type TableFontReferenceOptions, type TablePartStyleOptions, type TableStyleListOptions, type TableStyleOptions, type TableStyleRegion, type TableTextStyleOptions, TargetModeType, TextAlignment, TextBodyOptions, TextBodyWrapping, TextBreakOptions, TextCapitalization, TextCharacterPropertiesOptions, TextFieldOptions, TextFont, type TextFontOptions, TextHorzOverflow, TextHyperlinkOptions, TextListStyleOptions, TextParagraphPropertiesOptions, TextProperties3DOptions, TextRunOptions, TextShapePreset, TextStylesOptions, TextTabAlignment, TextVertOverflow, TextVertical, ThemeColor, ThemeFont, type ThemeManagerOptions, type ThemeOptions, type ThemeOverrideOptions, type ThemeableLineStyleOptions, type TileAlignment, type TileFlipMode, type TileOptions, TimeUnit, ToUint8ArrayOptions, TokenNotFoundError, type Transform2DOptions, TreeNode, TrendlineLabelOptions, TrendlineOptions, TrendlineType, UcharHexNumber, UnderlineStyle, UniqueNumericIdCreator, UniversalMeasure, UnsignedShortHex, UserShapeConnectorOptions, UserShapeExtentOptions, UserShapeGraphicFrameOptions, UserShapeGroupOptions, UserShapeMarkerOptions, UserShapeObjectOptions, UserShapePictureOptions, UserShapeShapeOptions, UserShapesOptions, VML_BORDER_TAGS, VML_CORE_ATTRS, VML_OFFICE_CORE_ATTRS, VML_OFFICE_SHAPE_ATTRS, VML_SHAPE_ATTRS, VariableListOptions, type VariantValue, type Vector3D, VerticalAnchor, View3DOptions, VmlAnchorLockOptions, VmlArcOptions, VmlAttrKind, VmlAttrSpec, VmlBackgroundOptions, VmlBaseShapeFields, VmlBlackWhiteMode, VmlBorderOptions, VmlBorderType, VmlCalloutAngle, VmlCalloutOptions, VmlClientDataOptions, VmlClientObjectType, VmlClipPathOptions, VmlColor, VmlColorMenuOptions, VmlColorMode, VmlColorMruOptions, VmlComplexOptions, VmlConnectType, VmlConnectorType, VmlCoreAttributes, VmlCurveOptions, VmlDiagramLayout, VmlDiagramOptions, VmlDiagramRelationOptions, VmlEditAs, VmlEquationXmlOptions, VmlExtAttribute, VmlExtensionMode, VmlExtrusionOptions, VmlExtrusionPlane, VmlExtrusionRender, VmlExtrusionType, VmlFillMethod, VmlFillOptions, VmlFillType, VmlFormulasOptions, VmlGroupOptions, VmlHandleOptions, VmlHandlesOptions, VmlHorizontalAnchor, VmlHorizontalRuleAlign, VmlIdMapOptions, VmlImageAspect, VmlImageDataOptions, VmlImageOptions, VmlInkOptions, VmlInsetMode, VmlIsCommentOptions, VmlLineOptions, VmlLockOptions, VmlOfficeCoreAttributes, VmlOfficeFillOptions, VmlOfficeFillType, VmlOfficeShapeAttributes, VmlOleDrawAspect, VmlOleObjectOptions, VmlOleObjectType, VmlOleUpdateMode, VmlOvalOptions, VmlPathOptions, VmlPolylineOptions, VmlRectOptions, VmlRegroupEntryOptions, VmlRegroupTableOptions, VmlRoundRectOptions, VmlRuleHow, VmlRuleOptions, VmlRuleProxyOptions, VmlRuleType, VmlRulesOptions, VmlScreenSize, VmlShadowOptions, VmlShadowType, VmlShapeAttributes, VmlShapeChild, VmlShapeDefaultsOptions, VmlShapeLayoutOptions, VmlShapeOptions, VmlShapeStyle, VmlShapetypeOptions, VmlSignatureLineOptions, VmlSkewOptions, VmlStrokeArrowLength, VmlStrokeArrowType, VmlStrokeArrowWidth, VmlStrokeChildOptions, VmlStrokeEndCap, VmlStrokeJoinStyle, VmlStrokeLineStyle, VmlStrokeOptions, VmlTextDataOptions, VmlTextPathOptions, VmlTextPathStyle, VmlTextboxOptions, VmlTrueFalse, VmlTrueFalseBlank, VmlVerticalAnchor, VmlWrapOptions, VmlWrapSide, VmlWrapType, WhenOptions, type WriteContext, XLSX_PARTS, type XmlNamespaceOptions, type XmlifyedFile, XmlifyedFileEntry, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, type ZipOptions, type ZipPartSink, ZipStreamWriter, type Zippable, addBinaryFile, addSmartArtRelationships, appPropertiesDesc, appendContentType, appendOverride, appendRelationship, applyCorePropertiesOverride, assertEncryptedExclusive, bevelDesc, blipDesc, blipFillDesc, bodyPropertiesDesc, buildContentTypeOverrides, buildCorePropertiesXmlString, buildFill, buildHyperlinkElement, buildRootRelationships, buildThemeXml, buildUserShapesData, calculateEffectExtent, cell3DDesc, chartSpaceDesc, checkOrder, collectPassthroughParts, collectPlaceholderKeys, colorsDefDesc, compileMapping, connectorLockingDesc, contentTypesDesc, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertEmuToTwip, convertInchesToEmu, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertPixelsToEmu, convertPointsToEmu, convertPointsToTwip, convertToEmu, convertToInch, convertToPt, convertToTwip, convertTwipToEmu, convertTwipToPoints, convertUniversalMeasureToEmu, convertUniversalMeasureToInch, convertUniversalMeasureToPt, convertUniversalMeasureToTwip, createAdjust, createAdjustList, createAnimateOneByOne, createAnimationLevel, createBevel, createBlip, createBlipEffects, createBlipFill, createBodyProperties, createBottomBevel, createColorElement, createColorTransforms, createColorsDefinitionHeader, createColorsDefinitionHeaderList, createConnectorLocking, createContentPartLocking, createCustomDash, createCustomGeometry, createDataModel, createDiagramExtensionList, createDiagramRelationshipIds, createDiagramShape3D, createDiagramStyle, createDiagramTextProperties, createEffectColorList, createEffectDag, createEffectList, createExtensionList, createFillColorList, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefinitionHeader, createLayoutDefinitionHeaderList, createLineColorList, createLineEnd, createMaxChildren, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createPacker, createPatternFill, createPictureLocking, createPreferredChildren, createPresentationLayoutVariables, createPresetColor, createPresetShadowEffect, createReflectionEffect, createReplacer, createRgbColor, createRunRenderer, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createSplitInject, createStyleDefinitionHeader, createStyleDefinitionHeaderList, createStyleLabel, createSystemColor, createTableStyle, createTableStyleList, createTextEffectColorList, createTextElementContents, createTextFillColorList, createTextLineColorList, createThemeXml, createTileInfo, createTokenReplacer, createTransform2D, createTraverser, createZipStream, customGeometryDesc, customPropertiesDesc, dateTimeValue, decimalNumber, decodeBase64, definitionId, deriveContentTypes, derivePasswordHash, diagramExtensionListDesc, diagramRelationshipIdsDesc, diagramStyleDesc, diffTagSets, dropDanglingPassthroughRels, effectListDesc, eighthPointMeasureValue, emitAngle, emitColorChoice, emitFillXml, emitPercent, encodeBase64, encryptedContainerOutput, encryptedContainerStream, extUriMatches, extractBlipFillMedia, fillDesc, findAndReplaceImagePlaceholders, findFieldSpec, findFillChild, formatId, getAudioRefs, getColorXml, getFirstLevelElements, getLayoutXml, getMediaRefs, getNextRelationshipIndex, getOleRefs, getReferencedMedia, getStyleXml, getVideoRefs, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupShapePropertiesDesc, groupTransform2DDesc, hasPlaceholders, hashPasswordAgile, hashedId, hexBinary, hexColorValue, hpsMeasureValue, hslColorDesc, imageTypeFromPath, invertMap, isBase64DataURL, isEncryptedContainer, isPlainRgbColor, layoutDefDesc, levelForMediaName, longHexNumber, mapOptional, measurementOrPercentValue, nextNumericId, nextVmlShapeId, optionalRelsPart, outlineDesc, paragraphDesc, parse, parseAngle, parseArchive, parseBodyProperties, parseColorChoice, parseColorChoiceElement, parseColorDefinition, parseColorMapping, parseCorePropsElement, parseDataModelOptions, parseEndpointConnection, parseLayoutDefinition, parseNonVisualContentPartProperties, parseNonVisualDrawingProperties, parseOnOff, parsePercent, parsePercentAttr, parseShapeStyle, parseStyleDefinition, parseTableStyle, parseTableStyleList, parseTextStyles, parseUniversalMeasure, parseVariantValue, parseVector, parseVmlAnchorLock, parseVmlArc, parseVmlAttributes, parseVmlBackground, parseVmlBorder, parseVmlCallout, parseVmlClientData, parseVmlClipPath, parseVmlColorMenu, parseVmlColorMru, parseVmlComplex, parseVmlCurve, parseVmlDiagram, parseVmlEquationXml, parseVmlExtrusion, parseVmlFill, parseVmlFormulas, parseVmlGroup, parseVmlHandles, parseVmlImage, parseVmlImageData, parseVmlInk, parseVmlIsComment, parseVmlLine, parseVmlLock, parseVmlOfficeFill, parseVmlOleObject, parseVmlOval, parseVmlPath, parseVmlPolyline, parseVmlRect, parseVmlRoundRect, parseVmlShadow, parseVmlShape, parseVmlShapeChild, parseVmlShapeDefaults, parseVmlShapeLayout, parseVmlShapeStyle, parseVmlShapetype, parseVmlSignatureLine, parseVmlSkew, parseVmlStroke, parseVmlStyle, parseVmlTextData, parseVmlTextPath, parseVmlTextbox, parseVmlTrueFalse, parseVmlTrueFalseBlank, parseVmlWrap, partPathToRelsPath, patchSpaceAttribute, patternFillDesc, percentageValue, pickConnectorBase, pickGroupBase, pickNonVisualDrawingProperties, pictureLockingDesc, pointMeasureValue, positiveUniversalMeasureValue, presentationLayoutVariablesDesc, presetColorDesc, presetGeometryDesc, randomBytes, readHyperlink, readParagraphProperties, registerHyperlink, removeOverride, replaceAllPlaceholders, replaceAudioPlaceholders, replaceChartPlaceholders, replaceHyperlinkPlaceholders, replaceImageLinkPlaceholders, replaceImagePlaceholders, replaceMediaPlaceholders, replaceNumberingPlaceholders, replaceOleLinkPlaceholders, replaceOlePlaceholders, replacePlaceholders, replaceSmartArtPlaceholders, replaceVideoPlaceholders, resolveRelationshipTarget, resolverFromRegistry, rgbColorDesc, roundTripFields, runPropertiesDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, shapePropertiesDesc, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, solidFillDesc, sourceRectangleDesc, strFromU8, stretchDesc, stringify, stringifyAdjustmentValues, stringifyBlipEffects, stringifyColorChoice, stringifyColorDefinition, stringifyColorDefinitionPart, stringifyColorMapping, stringifyConnection, stringifyDataModel, stringifyDataModelOptions, stringifyEndpointConnection, stringifyLayoutDefinition, stringifyLayoutDefinitionPart, stringifyLineProperties, stringifyNonVisualContentPartProperties, stringifyNonVisualDrawingProperties, stringifyParagraphPropertiesElement, stringifyPoint, stringifyPresetGeometry, stringifyRunProperties, stringifyShapeStyle, stringifyStretch, stringifyStringVector, stringifyStyleDefinition, stringifyStyleDefinitionPart, stringifyTextListStyleTag, stringifyTextRun, stringifyTextStyles, stringifyTransPoint, stringifyVariantValue, stringifyVmlAnchorLock, stringifyVmlArc, stringifyVmlAttributes, stringifyVmlBackground, stringifyVmlBorder, stringifyVmlCallout, stringifyVmlClientData, stringifyVmlClipPath, stringifyVmlColorMenu, stringifyVmlColorMru, stringifyVmlComplex, stringifyVmlCurve, stringifyVmlDiagram, stringifyVmlEquationXml, stringifyVmlExtrusion, stringifyVmlFill, stringifyVmlFormulas, stringifyVmlGroup, stringifyVmlHandles, stringifyVmlImage, stringifyVmlImageData, stringifyVmlInk, stringifyVmlIsComment, stringifyVmlLine, stringifyVmlLock, stringifyVmlOfficeFill, stringifyVmlOleObject, stringifyVmlOval, stringifyVmlPath, stringifyVmlPolyline, stringifyVmlRect, stringifyVmlRoundRect, stringifyVmlShadow, stringifyVmlShape, stringifyVmlShapeChild, stringifyVmlShapeDefaults, stringifyVmlShapeLayout, stringifyVmlShapetype, stringifyVmlSignatureLine, stringifyVmlSkew, stringifyVmlStroke, stringifyVmlStyle, stringifyVmlTextData, stringifyVmlTextPath, stringifyVmlTextbox, stringifyVmlTrueFalse, stringifyVmlTrueFalseBlank, stringifyVmlWrap, stripColorHashPrefix, styleDefDesc, styleToKeyMap, summarizeOpcIssues, systemColorDesc, textBodyDesc, textListStyleDesc, textRunDesc, textStylesDesc, themeDesc, themeManagerDesc, themeOverrideDesc, tileDesc, toJson, toUint8Array, transform2DDesc, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber, unzipSync, userShapesDesc, validateOpcConsistency, withDiagramNamespaces, xsdAnimCalcMode, xsdAnimClass, xsdAnimLevel, xsdAnimValueType, xsdAnimationDgmBuild, xsdAxisCrossBetween, xsdAxisCrosses, xsdAxisLabelAlignment, xsdAxisOrientation, xsdAxisPosition, xsdBlendMode, xsdChartBuild, xsdComments, xsdCompoundLine, xsdConsolidateFunction, xsdDashStyle, xsdDataLabelPosition, xsdDiagramBuild, xsdDiagramDirection, xsdEffectContainer, xsdErrorValueType, xsdFontAlignment, xsdHierBranch, xsdHueDirection, xsdIterateType, xsdJcAlignment, xsdLegendPosition, xsdLightRigDirection, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdMathStyle, xsdOnOffStyle, xsdOrient, xsdPathFillMode, xsdPattern, xsdPenAlignment, xsdPlaceholderType, xsdPresetShadow, xsdRectAlignment, xsdResizeHandles, xsdShadingPattern, xsdSizeRepresents, xsdSlideLayoutType, xsdSplitType, xsdStrikeStyle, xsdTableWidthType, xsdTextAlign, xsdTextAnchor, xsdTextBuild, xsdTextCaps, xsdTextTabAlignment, xsdTextVerticalType, xsdTotalsRowFunction, xsdTrendlineType, xsdUnderlineStyle, xsdVerticalMergeRev, zipAndConvert, zipSync, zipSyncAndConvert };
|
|
936
|
+
export { AbsoluteSizeAnchorOptions, type AdjustListOptions, type AdjustOptions, AlgorithmOptions, AlgorithmParameterOptions, AlgorithmParameterType, AlgorithmType, type AnimateOneByOne, type AnimateOneByOneOptions, type AnimationLevel, type AnimationLevelOptions, type AppPropertiesInput, type AppPropertiesOptions, ArgbHexColor, AutoNumberFormat, AxisCrossBetween, AxisCrosses, AxisKind, AxisLabelAlignment, AxisNumberFormatOptions, AxisOptions, AxisOrientation, AxisPosition, AxisScalingOptions, AxisTickLabelPosition, AxisTickMark, type BackdropOptions, BandFormatOptions, BarShape, Base64, BaseConnectorOptions, BaseGroupOptions, type BaseMediaEntry, type BasePatchOptions, BasePictureOptions, BaseTableCellOptions, BaseTableOptions, BaseTableRowOptions, type BevelOptions, type BevelPreset, type BlackWhiteMode, BlendMode, type BlipCompression, BlipDescriptorOptions, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, BodyPropertiesOptions, BubbleSeriesData, BuiltInDisplayUnit, BulletAutoNumOptions, BulletCharOptions, BulletNoneOption, BulletOptions, BulletPictureOptions, BulletStyleOptions, COLOR_CATEGORIES, type CameraOptions, Cell3DOptions, ChartCollection, ChartData, ChartGrouping, ChartHeaderFooterOptions, ChartLinesOptions, ChartPageMarginsOptions, ChartPageSetupOptions, ChartPictureOptions, 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 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 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, 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_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, 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, 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, xsdDataLabelPosition, xsdDiagramBuild, xsdDiagramDirection, xsdEffectContainer, xsdErrorValueType, xsdFontAlignment, xsdHierBranch, xsdHueDirection, xsdIterateType, xsdJcAlignment, xsdLegendPosition, xsdLightRigDirection, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdMathStyle, 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 };
|
|
937
937
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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-
|
|
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-BGfk-gE0.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
|
-
import { $ as
|
|
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-
|
|
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
|
|
3
|
+
import { $ as xsdErrorValueType, $t as signedHpsMeasureValue, A as parsePercent, At as xsdTextVerticalType, B as xsdAxisCrosses, Bt as dateTimeValue, C as convertUniversalMeasureToInch, Ct as xsdStrikeStyle, D as emitPercent, Dt as xsdTextBuild, E as emitAngle, Et as xsdTextAnchor, F as xsdAnimClass, Ft as isBase64DataURL, G as xsdChartBuild, Gt as hpsMeasureValue, H as xsdAxisOrientation, Ht as eighthPointMeasureValue, I as xsdAnimLevel, It as toUint8Array, J as xsdConsolidateFunction, Jt as parseOnOff, K as xsdComments, Kt as longHexNumber, L as xsdAnimValueType, Lt as decodeBase64, M as parseUniversalMeasure, Mt as xsdTrendlineType, N as invertMap, Nt as xsdUnderlineStyle, O as mapOptional, Ot as xsdTextCaps, P as xsdAnimCalcMode, Pt as xsdVerticalMergeRev, Q as xsdEffectContainer, Qt as shortHexNumber, R as xsdAnimationDgmBuild, Rt as encodeBase64, S as convertUniversalMeasureToEmu, St as xsdSplitType, T as convertUniversalMeasureToTwip, Tt as xsdTextAlign, U as xsdAxisPosition, Ut as hexBinary, V as xsdAxisLabelAlignment, Vt as decimalNumber, W as xsdBlendMode, Wt as hexColorValue, X as xsdDiagramBuild, Xt as pointMeasureValue, Y as xsdDataLabelPosition, Yt as percentageValue, Z as xsdDiagramDirection, Zt as positiveUniversalMeasureValue, _ as convertToEmu, _t as xsdRectAlignment, a as uniqueNumericIdCreator, an as unsignedDecimalNumber, at as xsdLegendPosition, b as convertToTwip, bt as xsdSizeRepresents, c as convertEmuToPixels, ct as xsdLineEndSize, d as convertInchesToEmu, dt as xsdOrient, en as signedTwipsMeasureValue, et as xsdFontAlignment, f as convertInchesToTwip, ft as xsdPathFillMode, g as convertPointsToTwip, gt as xsdPresetShadow, h as convertPointsToEmu, ht as xsdPlaceholderType, i as uniqueId, in as universalMeasureValue, it as xsdJcAlignment, j as parsePercentAttr, jt as xsdTotalsRowFunction, k as parseAngle, kt as xsdTextTabAlignment, l as convertEmuToPoints, lt as xsdMaterialType, m as convertPixelsToEmu, mt as xsdPenAlignment, n as imageTypeFromPath, nn as twipsMeasureValue, nt as xsdHueDirection, o as uniqueUuid, ot as xsdLightRigDirection, p as convertMillimetersToTwip, pt as xsdPattern, q as xsdCompoundLine, qt as measurementOrPercentValue, r as hashedId, rn as uCharHexNumber, rt as xsdIterateType, s as convertEmuToInches, st as xsdLineCap, t as extUriMatches, tn as stripColorHashPrefix, tt as xsdHierBranch, u as convertEmuToTwip, ut as xsdMathStyle, v as convertToInch, vt as xsdResizeHandles, w as convertUniversalMeasureToPt, wt as xsdTableWidthType, x as convertTwipToEmu, xt as xsdSlideLayoutType, y as convertToPt, yt as xsdShadingPattern, z as xsdAxisCrossBetween } from "./ext-uri-BR1ouCh3.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-D-8KBdQ_.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 fillDesc, at as createPreferredChildren, b as runPropertiesDesc, bn as createScRgbColor, bt as createTableStyle, c as stringifyTextListStyleTag, cn as patternFillDesc, 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 emitFillXml, 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 createGradientFill, lt as parseNonVisualDrawingProperties, m as stringifyParagraphPropertiesElement, mn as blipDesc, mt as createConnectorLocking, n as diagramRelationshipIdsDesc, nn as buildFill, nr as PresetColor, nt as createHierBranch, o as DEFAULT_TEXT_STYLES, on as findFillChild, 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 extractBlipFillMedia, rr as createPresetColor, rt as createMaxChildren, s as parseTextStyles, sn as gradientFillDesc, st as parseNonVisualContentPartProperties, t as diagramExtensionListDesc, tn as createNoFill, tr as createSchemeColor, tt as createAnimationLevel, u as textListStyleDesc, un as createGradientStop, 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-DJ363Awy.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-
|
|
8
|
-
import { i as ChartCollection, n as userShapesDesc, r as chartSpaceDesc, t as buildUserShapesData } from "./chart-
|
|
7
|
+
import { i as stringifyShapeStyle, n as parseShapeStyle } from "./style-matrix-B6YSVw6a.mjs";
|
|
8
|
+
import { i as ChartCollection, n as userShapesDesc, r as chartSpaceDesc, t as buildUserShapesData } from "./chart-Bn_McAo-.mjs";
|
|
9
9
|
import { n as parseColorMapping, r as stringifyColorMapping, t as DEFAULT_COLOR_MAPPING } from "./color-mapping-CFF0vRSe.mjs";
|
|
10
|
-
import { $ as
|
|
11
|
-
import { a as buildThemeXml, i as createThemeXml, n as themeOverrideDesc, o as DEFAULT_COLORS, r as themeDesc, t as themeManagerDesc } from "./theme-
|
|
10
|
+
import { $ as stringifyVmlTextData, A as stringifyVmlPolyline, At as stringifyVmlExtrusion, B as stringifyVmlBorder, Bt as VML_CORE_ATTRS, C as stringifyVmlArc, Ct as parseVmlSignatureLine, D as stringifyVmlImage, Dt as stringifyVmlComplex, E as stringifyVmlGroup, Et as stringifyVmlClipPath, F as stringifyVmlShapetype, Ft as stringifyVmlSignatureLine, G as stringifyVmlTextbox, Gt as parseVmlTrueFalse, H as parseVmlTextPath, Ht as VML_OFFICE_SHAPE_ATTRS, I as parseVmlAnchorLock, It as stringifyVmlSkew, J as parseVmlShadow, Jt as stringifyVmlTrueFalse, K as parseVmlStroke, Kt as parseVmlTrueFalseBlank, L as parseVmlBorder, Lt as parseVmlShapeStyle, M as stringifyVmlRoundRect, Mt as stringifyVmlLock, N as stringifyVmlShape, Nt as stringifyVmlOfficeFill, O as stringifyVmlLine, Ot as stringifyVmlDiagram, P as stringifyVmlShapeChild, Pt as stringifyVmlOleObject, Q as stringifyVmlIsComment, R as parseVmlWrap, Rt as parseVmlStyle, S as parseVmlShapetype, St as parseVmlOleObject, T as stringifyVmlCurve, Tt as stringifyVmlCallout, U as stringifyVmlTextPath, Ut as VML_SHAPE_ATTRS, V as stringifyVmlWrap, Vt as VML_OFFICE_CORE_ATTRS, W as parseVmlTextbox, Wt as parseVmlAttributes, X as parseVmlIsComment, Y as stringifyVmlShadow, Yt as stringifyVmlTrueFalseBlank, Z as parseVmlTextData, _ as parseVmlPolyline, _t as parseVmlEquationXml, a as stringifyVmlColorMenu, at as stringifyVmlHandles, b as parseVmlShape, bt as parseVmlLock, c as stringifyVmlShapeLayout, ct as parseVmlFill, d as parseVmlBackground, dt as stringifyVmlClientData, et as parseVmlPath, f as parseVmlCurve, ft as EXT_ATTR, g as parseVmlOval, gt as parseVmlDiagram, h as parseVmlLine, ht as parseVmlComplex, i as parseVmlShapeLayout, it as parseVmlHandles, j as stringifyVmlRect, jt as stringifyVmlInk, k as stringifyVmlOval, kt as stringifyVmlEquationXml, l as nextVmlShapeId, lt as stringifyVmlFill, m as parseVmlImage, mt as parseVmlClipPath, n as parseVmlColorMru, nt as parseVmlImageData, o as stringifyVmlColorMru, ot as parseVmlFormulas, p as parseVmlGroup, pt as parseVmlCallout, q as stringifyVmlStroke, qt as stringifyVmlAttributes, r as parseVmlShapeDefaults, rt as stringifyVmlImageData, s as stringifyVmlShapeDefaults, st as stringifyVmlFormulas, t as parseVmlColorMenu, tt as stringifyVmlPath, u as parseVmlArc, ut as parseVmlClientData, v as parseVmlRect, vt as parseVmlExtrusion, w as stringifyVmlBackground, wt as parseVmlSkew, x as parseVmlShapeChild, xt as parseVmlOfficeFill, y as parseVmlRoundRect, yt as parseVmlInk, z as stringifyVmlAnchorLock, zt as stringifyVmlStyle } from "./vector-BhETDAdp.mjs";
|
|
11
|
+
import { a as buildThemeXml, i as createThemeXml, n as themeOverrideDesc, o as DEFAULT_COLORS, r as themeDesc, t as themeManagerDesc } from "./theme-BdqG5lmO.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
|
|
@@ -27,7 +27,7 @@ var Relationships = class {
|
|
|
27
27
|
if (n) this.maxId = Math.max(this.maxId, Number(n[1]));
|
|
28
28
|
}
|
|
29
29
|
addRelationship(id, type, target, targetMode) {
|
|
30
|
-
const rid = `rId${id}
|
|
30
|
+
const rid = typeof id === "number" ? `rId${id}` : id;
|
|
31
31
|
this.trackId(rid);
|
|
32
32
|
this.entries.push({
|
|
33
33
|
id: rid,
|
|
@@ -67,6 +67,26 @@ var Relationships = class {
|
|
|
67
67
|
get nextRelationshipId() {
|
|
68
68
|
return this.maxId + 1;
|
|
69
69
|
}
|
|
70
|
+
/** Pre-claim a source id without registering an entry. Reserving every
|
|
71
|
+
* passthrough source id up front keeps auto-allocated ids (add(), next)
|
|
72
|
+
* strictly above the source id space, so a part the source didn't carry
|
|
73
|
+
* (a fresh comment, say) can never take an id a later source re-use will
|
|
74
|
+
* need — re-emitting the source rel at a taken id corrupts the package.
|
|
75
|
+
* Accepts the passthrough `rId` form ("rId7") or a bare number. */
|
|
76
|
+
reserveId(id) {
|
|
77
|
+
const n = typeof id === "number" ? id : /^rId(\d+)$/.exec(id)?.[1];
|
|
78
|
+
if (n !== void 0) this.trackId(`rId${n}`);
|
|
79
|
+
}
|
|
80
|
+
/** Reserve every passthrough id held by one source part — the uniform entry
|
|
81
|
+
* point compilers call before filling a part's rels from the model. Without
|
|
82
|
+
* it the model's batch allocations (offset snapshots, add()) can land on a
|
|
83
|
+
* source id, forcing the later source re-emission to collide or renumber
|
|
84
|
+
* (renumbering dangles the verbatim references that motivated keeping the
|
|
85
|
+
* source id). Reserving is invisible to hasId/hasRelationship, so source
|
|
86
|
+
* re-emission and rename-to-source-id still work. */
|
|
87
|
+
reserveSourceRids(source, passthrough) {
|
|
88
|
+
for (const rel of passthrough) if (rel.source === source) this.reserveId(rel.rId);
|
|
89
|
+
}
|
|
70
90
|
/** Rename the first entry matching `type` to `newId` — used to promote a
|
|
71
91
|
* structured rel (e.g. the slide layout) to its source id when the
|
|
72
92
|
* source rId is free. No-op when the slot is taken or no match. */
|
|
@@ -2522,6 +2542,6 @@ function pickGroupBase(opts) {
|
|
|
2522
2542
|
};
|
|
2523
2543
|
}
|
|
2524
2544
|
//#endregion
|
|
2525
|
-
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 };
|
|
2545
|
+
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_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, 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, 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, xsdDataLabelPosition, xsdDiagramBuild, xsdDiagramDirection, xsdEffectContainer, xsdErrorValueType, xsdFontAlignment, xsdHierBranch, xsdHueDirection, xsdIterateType, xsdJcAlignment, xsdLegendPosition, xsdLightRigDirection, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdMathStyle, 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 };
|
|
2526
2546
|
|
|
2527
2547
|
//# sourceMappingURL=index.mjs.map
|