@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.
Files changed (55) hide show
  1. package/dist/chart/index.d.mts +2 -2
  2. package/dist/chart/index.mjs +1 -1
  3. package/dist/{chart-DEIF3VZn.mjs → chart-Bn_McAo-.mjs} +4 -4
  4. package/dist/chart-Bn_McAo-.mjs.map +1 -0
  5. package/dist/drawing/index.d.mts +2 -2
  6. package/dist/drawing/index.mjs +1 -1
  7. package/dist/{drawing-BVwCkNXB.mjs → drawing-DJ363Awy.mjs} +102 -108
  8. package/dist/drawing-DJ363Awy.mjs.map +1 -0
  9. package/dist/{ext-uri-BHBcIrW7.mjs → ext-uri-BR1ouCh3.mjs} +6 -11
  10. package/dist/ext-uri-BR1ouCh3.mjs.map +1 -0
  11. package/dist/{index-DRggxtp7.d.mts → index-6_MYd0cg.d.mts} +3 -3
  12. package/dist/{index-DRggxtp7.d.mts.map → index-6_MYd0cg.d.mts.map} +1 -1
  13. package/dist/{index-DPkf_CtG.d.mts → index-BDeoFmTS.d.mts} +146 -149
  14. package/dist/index-BDeoFmTS.d.mts.map +1 -0
  15. package/dist/{index-DfFszyH1.d.mts → index-Cd0lFS5x.d.mts} +9 -17
  16. package/dist/index-Cd0lFS5x.d.mts.map +1 -0
  17. package/dist/{index-DcukVskh.d.mts → index-DOtPArpl.d.mts} +2 -2
  18. package/dist/{index-DcukVskh.d.mts.map → index-DOtPArpl.d.mts.map} +1 -1
  19. package/dist/{index-BwRtWyaP.d.mts → index-Dg0nIw2S.d.mts} +7 -7
  20. package/dist/{index-BwRtWyaP.d.mts.map → index-Dg0nIw2S.d.mts.map} +1 -1
  21. package/dist/{index-L6AXewfV.d.mts → index-DkJrkIVp.d.mts} +2 -3
  22. package/dist/index-DkJrkIVp.d.mts.map +1 -0
  23. package/dist/index.d.mts +8 -8
  24. package/dist/index.mjs +30 -10
  25. package/dist/index.mjs.map +1 -1
  26. package/dist/patch-AkQY17CD.mjs.map +1 -1
  27. package/dist/smartart/index.d.mts +1 -1
  28. package/dist/smartart/index.mjs +1 -1
  29. package/dist/{smartart-YH87Emca.mjs → smartart-D-8KBdQ_.mjs} +4 -4
  30. package/dist/{smartart-YH87Emca.mjs.map → smartart-D-8KBdQ_.mjs.map} +1 -1
  31. package/dist/{style-matrix-DjhMuuQg.mjs → style-matrix-B6YSVw6a.mjs} +2 -2
  32. package/dist/{style-matrix-DjhMuuQg.mjs.map → style-matrix-B6YSVw6a.mjs.map} +1 -1
  33. package/dist/theme/index.d.mts +3 -3
  34. package/dist/theme/index.mjs +2 -2
  35. package/dist/{theme-Dx0Db9bX.mjs → theme-BdqG5lmO.mjs} +3 -3
  36. package/dist/theme-BdqG5lmO.mjs.map +1 -0
  37. package/dist/{theme-options-kO89NUEX.d.mts → theme-options-wZX4i_xx.d.mts} +2 -2
  38. package/dist/{theme-options-kO89NUEX.d.mts.map → theme-options-wZX4i_xx.d.mts.map} +1 -1
  39. package/dist/util/index.d.mts +2 -2
  40. package/dist/util/index.mjs +3 -3
  41. package/dist/{util-iHHKF2Rx.mjs → util-BGfk-gE0.mjs} +2 -2
  42. package/dist/{util-iHHKF2Rx.mjs.map → util-BGfk-gE0.mjs.map} +1 -1
  43. package/dist/vector/index.d.mts +2 -2
  44. package/dist/vector/index.mjs +2 -2
  45. package/dist/{vector-DZ_OteHJ.mjs → vector-BhETDAdp.mjs} +2 -9
  46. package/dist/vector-BhETDAdp.mjs.map +1 -0
  47. package/package.json +2 -2
  48. package/dist/chart-DEIF3VZn.mjs.map +0 -1
  49. package/dist/drawing-BVwCkNXB.mjs.map +0 -1
  50. package/dist/ext-uri-BHBcIrW7.mjs.map +0 -1
  51. package/dist/index-DPkf_CtG.d.mts.map +0 -1
  52. package/dist/index-DfFszyH1.d.mts.map +0 -1
  53. package/dist/index-L6AXewfV.d.mts.map +0 -1
  54. package/dist/theme-Dx0Db9bX.mjs.map +0 -1
  55. 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 $, stringifyVmlCallout as $n, stringifyVmlPath as $t, VmlPolylineOptions as A, VmlExtrusionType as An, VmlOfficeShapeAttributes as Ar, stringifyVmlTextbox as At, parseVmlGroup as B, VmlSkewOptions as Bn, stringifyVmlTrueFalseBlank as Br, stringifyVmlStroke as Bt, VmlBaseShapeFields as C, VmlDiagramRelationOptions as Cn, VmlConnectType as Cr, stringifyVmlWrap as Ct, VmlImageOptions as D, VmlExtrusionOptions as Dn, VmlHorizontalRuleAlign as Dr, stringifyVmlTextPath as Dt, VmlGroupOptions as E, VmlExtensionMode as En, VmlDiagramLayout as Er, parseVmlTextPath as Et, VmlShapetypeOptions as F, VmlOleDrawAspect as Fn, parseVmlAttributes as Fr, VmlStrokeEndCap as Ft, parseVmlRect as G, parseVmlEquationXml as Gn, stringifyVmlStyle as Gr, VmlIsCommentOptions as Gt, parseVmlLine as H, parseVmlClipPath as Hn, VmlShapeStyle as Hr, VmlShadowType as Ht, nextVmlShapeId as I, VmlOleObjectOptions as In, parseVmlTrueFalse as Ir, VmlStrokeJoinStyle as It, parseVmlShapeChild as J, parseVmlLock as Jn, parseVmlTextData as Jt, parseVmlRoundRect as K, parseVmlExtrusion as Kn, styleToKeyMap as Kr, VmlTextDataOptions as Kt, parseVmlArc as L, VmlOleObjectType as Ln, parseVmlTrueFalseBlank as Lr, VmlStrokeLineStyle as Lt, VmlRoundRectOptions as M, VmlLockOptions as Mn, VmlShapeAttributes as Mr, VmlStrokeArrowType as Mt, VmlShapeChild as N, VmlOfficeFillOptions as Nn, VmlTrueFalse as Nr, VmlStrokeArrowWidth as Nt, VmlLineOptions as O, VmlExtrusionPlane as On, VmlInsetMode as Or, VmlTextboxOptions as Ot, VmlShapeOptions as P, VmlOfficeFillType as Pn, VmlTrueFalseBlank as Pr, VmlStrokeChildOptions as Pt, stringifyVmlCurve as Q, parseVmlSkew as Qn, parseVmlPath as Qt, parseVmlBackground as R, VmlOleUpdateMode as Rn, stringifyVmlAttributes as Rr, VmlStrokeOptions as Rt, VmlBackgroundOptions as S, VmlDiagramOptions as Sn, VmlColor as Sr, stringifyVmlBorder as St, VmlEditAs as T, VmlExtAttribute as Tn, VmlCoreAttributes as Tr, VmlTextPathStyle as Tt, parseVmlOval as U, parseVmlComplex as Un, parseVmlShapeStyle as Ur, parseVmlShadow as Ut, parseVmlImage as V, parseVmlCallout as Vn, LengthUnit as Vr, VmlShadowOptions as Vt, parseVmlPolyline as W, parseVmlDiagram as Wn, parseVmlStyle as Wr, stringifyVmlShadow as Wt, stringifyVmlArc as X, parseVmlOleObject as Xn, stringifyVmlTextData as Xt, parseVmlShapetype as Y, parseVmlOfficeFill as Yn, stringifyVmlIsComment as Yt, stringifyVmlBackground as Z, parseVmlSignatureLine as Zn, VmlPathOptions as Zt, stringifyVmlColorMenu as _, VmlCalloutAngle as _n, VML_OFFICE_SHAPE_ATTRS as _r, VmlWrapType as _t, VmlRegroupTableOptions as a, parseVmlHandles as an, stringifyVmlInk as ar, stringifyVmlRoundRect as at, stringifyVmlShapeLayout as b, VmlColorMode as bn, VmlAttrSpec as br, parseVmlWrap as bt, VmlRuleProxyOptions as c, parseVmlFormulas as cn, stringifyVmlOleObject as cr, stringifyVmlShapetype as ct, VmlShapeDefaultsOptions as d, VmlFillOptions as dn, VmlClientDataOptions as dr, VmlBorderOptions as dt, VmlImageDataOptions as en, stringifyVmlClipPath as er, stringifyVmlImage as et, VmlShapeLayoutOptions as f, VmlFillType as fn, VmlClientObjectType as fr, VmlBorderType as ft, parseVmlShapeLayout as g, EXT_ATTR as gn, VML_OFFICE_CORE_ATTRS as gr, VmlWrapSide as gt, parseVmlShapeDefaults as h, stringifyVmlFill as hn, VML_CORE_ATTRS as hr, VmlWrapOptions as ht, VmlRegroupEntryOptions as i, VmlHandlesOptions as in, stringifyVmlExtrusion as ir, stringifyVmlRect as it, VmlRectOptions as j, VmlInkOptions as jn, VmlScreenSize as jr, VmlStrokeArrowLength as jt, VmlOvalOptions as k, VmlExtrusionRender as kn, VmlOfficeCoreAttributes as kr, parseVmlTextbox as kt, VmlRuleType as l, stringifyVmlFormulas as ln, stringifyVmlSignatureLine as lr, VML_BORDER_TAGS as lt, parseVmlColorMru as m, parseVmlFill as mn, stringifyVmlClientData as mr, VmlVerticalAnchor as mt, VmlColorMruOptions as n, stringifyVmlImageData as nn, stringifyVmlDiagram as nr, stringifyVmlOval as nt, VmlRuleHow as o, stringifyVmlHandles as on, stringifyVmlLock as or, stringifyVmlShape as ot, parseVmlColorMenu as p, VmlImageAspect as pn, parseVmlClientData as pr, VmlHorizontalAnchor as pt, parseVmlShape as q, parseVmlInk as qn, parseVmlIsComment as qt, VmlIdMapOptions as r, VmlHandleOptions as rn, stringifyVmlEquationXml as rr, stringifyVmlPolyline as rt, VmlRuleOptions as s, VmlFormulasOptions as sn, stringifyVmlOfficeFill as sr, stringifyVmlShapeChild as st, VmlColorMenuOptions as t, parseVmlImageData as tn, stringifyVmlComplex as tr, stringifyVmlLine as tt, VmlRulesOptions as u, VmlFillMethod as un, stringifyVmlSkew as ur, VmlAnchorLockOptions as ut, stringifyVmlColorMru as v, VmlCalloutOptions as vn, VML_SHAPE_ATTRS as vr, parseVmlAnchorLock as vt, VmlCurveOptions as w, VmlEquationXmlOptions as wn, VmlConnectorType as wr, VmlTextPathOptions as wt, VmlArcOptions as x, VmlComplexOptions as xn, VmlBlackWhiteMode as xr, stringifyVmlAnchorLock as xt, stringifyVmlShapeDefaults as y, VmlClipPathOptions as yn, VmlAttrKind as yr, parseVmlBorder as yt, parseVmlCurve as z, VmlSignatureLineOptions as zn, stringifyVmlTrueFalse as zr, parseVmlStroke as zt };
872
- //# sourceMappingURL=index-L6AXewfV.d.mts.map
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":";;;KAuBY,+BAA+B,aAAa,mBAAmB;iBAuC3D,kBAAkB,OAAO;iBAezB,cAAc,mBAAmB;iBAqBjC,mBAAmB,QAAQ,yBAAyB;UAsBnD;EAEf;EAEA,SAAS;EAET,OAAO;EAEP,eAAe;EAEf,aAAa;EAEb,cAAc;EAEd,YAAY;EAEZ;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA,MAAM;EAEN;EAEA,QAAQ;EAER;;;;KClJU;KAGA;KAGA;KAGA;KAeA;KAGA;KAGA;KAGA;KAGA;KAGA;UAGK;EACf;EACA,QAAQ;EACR;EACA;EACA;EACA;EACA;EAEA;EAEA;EACA;EACA,QAAQ;;UAIO;EACf,YAAY;EACZ,SAAS;EACT,YAAY;EACZ;EACA,UAAU;EACV,cAAc;EACd;EACA,WAAW;;KAMD;UAEK;EAEf;EAEA;EACA,MAAM;;cAIK,yBAAyB;cAczB,0BAA0B;UAiBtB;EAEf;EAEA,OAAO;EACP;EACA,oBAAoB;EAEpB,SAAS;EACT,aAAa;EAEb,SAAS;EAET,KAAK;EACL,QAAQ;EACR,YAAY;EAEZ;EACA,UAAU;EACV,cAAc;EACd,eAAe;EACf,YAAY;EACZ,iBAAiB;EACjB,kBAAkB;EAClB,oBAAoB;EACpB,mBAAmB;EACnB,YAAY;EACZ;EACA,eAAe;EACf,YAAY;;UAMG;EAEf;EACA,gBAAgB;EAChB,SAAS;EACT,SAAS;EACT,WAAW;EAEX,YAAY;EACZ,UAAU;EAEV,MAAM;EACN,iBAAiB;EACjB,aAAa;EACb,OAAO;;cAII,gCAAgC;cA2BhC,iCAAiC;iBAiB9B,sBAAsB;iBAKtB,kBAAkB;iBAWlB,uBACd,MAAM,yBACN,gBAAgB;iBAoBF,2BAA2B,OAAO;iBAKlC,uBAAuB,gBAAgB;iBAKvC,mBACd,IAAI,SACJ,gBAAgB,eAChB,KAAK;;;KC3QK;UAsBK;EACf,YAAY;EAEZ,gBAAgB;EAChB,gBAAgB;EAChB,SAAS;EACT,cAAc;EACd,cAAc;EACd,WAAW;EACX,WAAW;EACX,WAAW;EACX,WAAW;EACX,WAAW;EACX,YAAY;EACZ,aAAa;EACb,UAAU;EACV,OAAO;EACP,SAAS;EACT,UAAU;EACV,UAAU;EACV,YAAY;EACZ,YAAY;EACZ,YAAY;EACZ,UAAU;EACV,WAAW;EACX,YAAY;EACZ,UAAU;EACV,WAAW;EACX,cAAc;EACd,QAAQ;EACR,SAAS;EACT,SAAS;EACT,eAAe;EACf,YAAY;EACZ,MAAM;EACN,QAAQ;EAER;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;;iBAoFc,uBAAuB,MAAM;iBAoB7B,mBAAmB,IAAI,UAAa;;;KC1KxC;UAGK;EACf,MAAM;;cAIK,mBAAmB;UAKf,uBAAuB;EACtC;EACA,KAAK;EACL;EACA;EACA;;iBAYc,iBAAiB,MAAM;iBAKvB,aAAa,IAAI,UAAa;KASlC;KAGA;KAGA;KAGA;UAGK,4BAA4B;EAC3C,KAAK;EACL,OAAO;EACP,SAAS;EACT;EACA;EACA,QAAQ;EACR;EACA;EACA;EACA;EACA;EACA;EACA,qBAAqB;EACrB,qBAAqB;EACrB;EACA;EACA,YAAY;EACZ,QAAQ;EACR;EACA;EACA;EACA,QAAQ;EACR;EACA;EACA,YAAY;EACZ;EACA;EACA;EACA,aAAa;EACb;EACA;EACA,cAAc;;iBAuCA,sBAAsB,MAAM;iBAK5B,kBAAkB,IAAI,UAAa;KASvC;UAGK,0BAA0B;EACzC,KAAK;EACL;EACA;EACA,QAAQ;EACR,WAAW;EACX;EACA;EACA,kBAAkB;EAClB;EACA,YAAY;EACZ,aAAa;EACb,SAAS;EACT,SAAS;;iBAoBK,oBAAoB,MAAM;iBAK1B,gBAAgB,IAAI,UAAa;UAShC,uBAAuB;EACtC,WAAW;EACX,YAAY;EACZ,WAAW;EACX,aAAa;EACb,WAAW;EACX,WAAW;EACX,YAAY;EACZ,gBAAgB;EAChB,OAAO;EACP,cAAc;EACd,YAAY;;iBAkBE,iBAAiB,MAAM;iBAKvB,aAAa,IAAI,UAAa;UAS7B;EAEf;;iBAIc,qBAAqB,MAAM;iBAK3B,iBAAiB,IAAI,UAAa;UAOjC,gCAAgC;EAC/C,kBAAkB;EAElB,KAAK;EACL,SAAS;EACT,yBAAyB;EACzB,gBAAgB;EAChB,eAAe;EACf;EACA;EACA;EACA;EACA;EACA;;iBAoBc,0BAA0B,MAAM;iBAKhC,sBAAsB,IAAI,UAAa;UAStC;EAEf;EACA,aAAa;EACb;;iBAIc,gBAAgB,MAAM;iBAUtB,YAAY,IAAI,UAAa;UAiB5B;EACf;EAEA;;iBAIc,wBAAwB,MAAM;iBAO9B,oBAAoB,IAAI,UAAa;UAgBpC,kCAAkC;EACjD;EACA;EACA;;UAUe,0BAA0B;EACzC;EACA,aAAa;EACb,UAAU;EACV,aAAa;EACb;EACA;EACA;EACA;EACA;EACA,YAAY;;iBAgBE,oBAAoB,MAAM;iBAY1B,gBAAgB,IAAI,UAAa;UAuBhC,0BAA0B;iBAG3B,oBAAoB,MAAM;iBAK1B,gBAAgB,IAAI,UAAa;KASrC;UAYK,6BAA6B;EAC5C,OAAO;;iBAIO,uBAAuB,MAAM;iBAK7B,mBAAmB,IAAI,UAAa;KAUxC;KAGA;KAGA;UAMK;EACf,OAAO;EACP;EACA;EACA,aAAa;EACb;EAEA;EACA,aAAa;EAEb;EAEA,cAAc;EAEd;;iBAcc,sBAAsB,MAAM;iBAuB5B,kBAAkB,IAAI,UAAa;;;KC1jBvC;KAGA;KAGA;UAGK;EACf;EACA,OAAO;EACP,KAAK;EACL,QAAQ;EACR;EACA,SAAS;EACT;EACA;EACA;EACA;EACA,SAAS;EACT;EAEA;EACA,aAAa;EACb;EACA;EACA;EACA,SAAS;EACT,UAAU;EACV,SAAS;EAET;EAGA;EAEA;EAEA,mBAAmB;EAEnB;EAEA;EAEA;EAEA,aAAa;;iBAkCC,iBAAiB,MAAM;iBAOvB,aAAa,IAAI,UAAa;;;UC1G7B;EAEf;;iBAIc,qBAAqB,MAAM;iBAM3B,iBAAiB,IAAI,UAAa;;;UCVjC;EACf;EACA;EACA;EACA,OAAO;EACP,OAAO;EACP,SAAS;EACT;EACA;EACA;;UAIe;EACf,UAAU;;iBAcI,oBAAoB,MAAM;iBAkB1B,gBAAgB,IAAI,UAAa;;;UCpChC;EACf;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YAAY;EACZ,UAAU;EACV,YAAY;EACZ,cAAc;EACd,gBAAgB;EAEhB;EAEA;EAEA;EAGA;EAEA;EAEA;EAEA;EAEA,mBAAmB;EAEnB;EAEA;;iBA+Bc,sBAAsB,MAAM;iBAK5B,kBAAkB,IAAI,UAAa;;;UC5ElC;EACf;EAEA;EACA;EACA;EACA,SAAS;EACT,WAAW;EACX,WAAW;EACX,UAAU;EACV,kBAAkB;EAClB,aAAa;EACb,aAAa;EAGb,cAAc;EAEd;EAEA;EAEA,cAAc;;iBAsBA,iBAAiB,MAAM;iBAKvB,aAAa,IAAI,UAAa;;;UCvD7B;iBAGD,sBAAsB,OAAO;iBAK7B,kBAAkB,KAAK,UAAa;UAKnC;EAEf;;iBAIc,qBAAqB,MAAM;iBAK3B,iBAAiB,IAAI,UAAa;;;KCjBtC;UAGK;EACf;EACA,KAAK;EACL,OAAO;EACP,WAAW;EACX,QAAQ;EACR;EACA;EACA,SAAS;EACT;EACA;EACA;;iBAkBc,mBAAmB,MAAM;iBAKzB,eAAe,IAAI,UAAa;;;KChCpC;KAQA;KAGA;KAGA;KAGA;KAGA;UAGK;EACf;EACA,KAAK;EAEL;EACA,QAAQ;EACR;EACA,YAAY;EACZ;EACA,YAAY;EACZ,SAAS;EAET;EACA,WAAW;EACX;EACA,cAAc;EACd;EACA,kBAAkB;EAClB,SAAS;EACT,aAAa;EACb,kBAAkB;EAClB,mBAAmB;EACnB,WAAW;EACX,gBAAgB;EAChB,iBAAiB;EAEjB;EACA,WAAW;EAGX;EAEA;EAEA;EAEA,YAAY;EAEZ;EAEA,aAAa;EACb,YAAY;EACZ,cAAc;EACd,eAAe;EACf,eAAe;;UAOA;EACf;EACA,KAAK;EACL;EACA,QAAQ;EACR,SAAS;EACT;EACA,YAAY;EACZ;EACA,YAAY;EACZ,SAAS;EACT;EACA,WAAW;EACX,WAAW;EACX;EACA,cAAc;EACd;EACA,kBAAkB;EAClB,aAAa;EACb,kBAAkB;EAClB,mBAAmB;EACnB,WAAW;EACX,gBAAgB;EAChB,iBAAiB;EAEjB;EAEA;EAEA;EAEA,YAAY;;iBA8EE,mBAAmB,MAAM;iBAkBzB,eAAe,IAAI,UAAa;;;UC5M/B;EACf;EACA,QAAQ;EAER;EAEA;EAEA,YAAY;EAEZ;EAEA;;iBAOc,oBAAoB,MAAM;iBAqB1B,gBAAgB,IAAI,UAAa;;;UCtChC;EACf;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EAEA;EAEA;EAEA;;UA0Ce;EACf;EACA,QAAQ;EACR,KAAK;EACL,WAAW;EACX,UAAU;EACV,OAAO;EACP,SAAS;EACT;;iBAcc,qBAAqB,MAAM;iBAY3B,iBAAiB,IAAI,UAAa;;;KChGtC;KAGA;KAGA;KAGA;KAGA;UA8BK;EACf,OAAO;EACP,OAAO;EACP,UAAU;EACV,UAAU;;iBAWI,iBAAiB,MAAM;iBAKvB,aAAa,IAAI,UAAa;UAO7B;iBAGD,uBAAuB,OAAO;iBAK9B,mBAAmB,KAAK,UAAa;UAKpC;EACf,OAAO;EAEP;EACA,SAAS;;cAUL;iBAQU,mBACd,aAAa,0BACb,MAAM;iBAMQ,eAAe,IAAI,UAAa;;;iBCEhC;UAWC,2BACP,mBAAmB,yBAAyB,oBAAoB;EAExE;EAEA,cAAc;EACd,WAAW;EACX,UAAU;EACV,OAAO;EACP,SAAS;EACT,SAAS;EACT,UAAU;EACV,WAAW;EACX,YAAY;EAEZ,OAAO;EACP,YAAY;EACZ,UAAU;EACV,OAAO;EACP,WAAW;EACX,gBAAgB;EAEhB,OAAO;EACP,aAAa;EACb,YAAY;EACZ,eAAe;EACf,aAAa;EACb,cAAc;EACd,aAAa;EACb,WAAW;EAKX;;KAIU;UAYK,wBAAwB;EAEvC;EAEA;EAEA;EAEA;EAEA,MAAM;EAEN,qBAAqB;EAErB,YAAY;;UAIG,4BAA4B;EAC3C;EAEA;EAEA,UAAU;;KAMA;EACN,OAAO;;EACP,WAAW;;EACX,OAAO;;EACP,KAAK;;EACL,OAAO;;EACP,OAAO;;EACP,MAAM;;EACN,MAAM;;EACN,UAAU;;EACV,MAAM;;EACN,WAAW;;UAGA,wBAAwB;EACvC,SAAS;EACT,YAAY;EACZ,SAAS;EAET;EACA;EAEA,UAAU;EACV,WAAW;;UAII;EACf;EACA,SAAS;EACT,YAAY;EACZ,SAAS;EACT,SAAS;EACT,WAAW;EACX,mBAAmB;EACnB,OAAO;;UAIQ,sBAAsB;EAErC;EAEA;;UAIe,wBAAwB;EACvC;EACA;EACA;EACA;;UAIe,wBAAwB;EACvC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YAAY;EACZ,UAAU;;UAIK,uBAAuB;EACtC;EACA;;UAIe,uBAAuB;UAGvB,2BAA2B;EAC1C;EAEA,MAAM;;UAIS,uBAAuB;UAGvB,4BAA4B;EAC3C;;iBAoQc,kBAAkB,MAAM;iBAgBxB,cAAc,IAAI,UAAa;iBAkB/B,sBAAsB,MAAM;iBAa5B,kBAAkB,IAAI,UAAa;iBAgBnC,uBAAuB,OAAO;iBA2B9B,mBAAmB,IAAI,UAAa;iBA8BpC,kBAAkB,MAAM;iBAaxB,cAAc,IAAI,UAAa;iBAmC/B,uBAAuB,MAAM;iBAe7B,mBAAmB,IAAI,UAAa;iBAepC,gBAAgB,MAAM;iBAUtB,YAAY,IAAI,UAAa;iBAQ7B,kBAAkB,MAAM;iBAUxB,cAAc,IAAI,UAAa;iBAQ/B,kBAAkB,MAAM;iBAUxB,cAAc,IAAI,UAAa;iBAQ/B,iBAAiB,MAAM;iBAUvB,aAAa,IAAI,UAAa;iBAQ9B,iBAAiB,MAAM;iBAUvB,aAAa,IAAI,UAAa;iBAQ9B,qBAAqB,MAAM;iBAY3B,iBAAiB,IAAI,UAAa;iBAclC,iBAAiB,MAAM;iBAUvB,aAAa,IAAI,UAAa;iBAQ9B,sBAAsB,MAAM;iBAU5B,kBAAkB,IAAI,UAAa;;;UC51BlC,gCAAgC;EAE/C;EACA;EACA,OAAO;EACP,YAAY;EACZ,SAAS;EACT,cAAc;EAEd,cAAc;EAEd,cAAc;EACd,gBAAgB;EAChB,UAAU;EACV,SAAS;EACT,OAAO;EACP,YAAY;EACZ,UAAU;EACV,OAAO;EACP,WAAW;EACX,YAAY;;iBAeE,0BAA0B,MAAM;iBAmBhC,sBAAsB,IAAI,UAAa;UA4CtC,2BAA2B;EAC1C;;iBAIc,qBAAqB,MAAM;iBAQ3B,iBAAiB,IAAI,UAAa;UAOjC,4BAA4B;EAC3C,cAAc;EACd,YAAY;EACZ,cAAc;EACd,iBAAiB;;iBAYH,sBAAsB,MAAM;iBAK5B,kBAAkB,IAAI,UAAa;UASlC;EACf;EACA;;UASe,+BAA+B;EAC9C,UAAU;;KAIA;KAGA;UAGK;EACf;EACA;EACA;EACA;;UAIe;EACf;EACA,OAAO;EACP,MAAM;EACN;EACA,UAAU;;UAIK,wBAAwB;EACvC,QAAQ;;UAIO,wBAAwB;EAEvC;;UAIe,8BAA8B;EAC7C,QAAQ;EACR,eAAe;EACf,QAAQ;;iBAyHM,wBAAwB,MAAM;iBAY9B,oBAAoB,IAAI,UAAa"}
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 DataLabelOptions, B as ErrorValueType, C as ChartSeriesCommon, Ct as UserShapesOptions, D as ChartTitleOptions, Dt as ChartData, E as ChartStyle2010Options, Et as ChartCollection, F as DisplayBlanksAs, G as LegendPosition, H as LayoutMode, I as DisplayUnitsOptions, J as MarkerSymbol, K as ManualLayoutOptions, L as ErrorBarDirection, M as DataLabelsOptions, N as DataPointOptions, O as ChartType, P as DataTableOptions, Q as PictureOptionsOptions, R as ErrorBarOptions, S as ChartPivotFormatOptions, St as UserShapeShapeOptions, T as ChartSpaceOptions, Tt as userShapesDesc, U as LayoutTarget, V as ExternalDataOptions, W as LegendEntryOptions, X as PageSetupOrientation, Y as OfPieType, Z as PictureFormat, _ as ChartGrouping, _t as UserShapeGraphicFrameOptions, a as AxisLabelAlignment, at as SizeRepresents, b as ChartPageMarginsOptions, bt as UserShapeObjectOptions, c as AxisOrientation, ct as TimeUnit, d as AxisTickLabelPosition, dt as TrendlineType, et as PrintSettingsOptions, f as AxisTickMark, ft as View3DOptions, g as BuiltInDisplayUnit, gt as UserShapeExtentOptions, h as BubbleSeriesData, ht as UserShapeConnectorOptions, i as AxisKind, it as SecondaryChartGroupOptions, j as DataLabelPosition, k as ChartUserShapesOptions, l as AxisPosition, lt as TrendlineLabelOptions, m as BarShape, mt as RelativeSizeAnchorOptions, n as AxisCrossBetween, nt as RadarStyle, o as AxisNumberFormatOptions, ot as SplitType, p as BandFormatOptions, pt as AbsoluteSizeAnchorOptions, q as MarkerOptions, r as AxisCrosses, rt as ScatterSeriesData, s as AxisOptions, st as SurfaceOptions, t as chartSpaceDesc, tt as ProtectionOptions, u as AxisScalingOptions, ut as TrendlineOptions, v as ChartHeaderFooterOptions, vt as UserShapeGroupOptions, w as ChartSeriesData, wt as buildUserShapesData, x as ChartPageSetupOptions, xt as UserShapePictureOptions, y as ChartLinesOptions, yt as UserShapeMarkerOptions, z as ErrorBarType } from "./index-BwRtWyaP.mjs";
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 SchemeColorOptions, $i as FillOptions, $n as createGroupFill, $r as TextShapePreset, $t as pickNonVisualDrawingProperties, A as patternFillDesc, Aa as PatternFillOptions, Ai as PresetDash, An as parseTableStyle, Ar as DEFAULT_SHADOW_BLUR_RADIUS, At as AnimateOneByOneOptions, B as solidFillDesc, Ba as createGradientFill, Bi as ShapeType, Bn as Transform2DOptions, Br as TextFieldOptions, Bt as createAdjustList, C as pictureLockingDesc, Ca as InnerShadowEffectOptions, Ci as createScene3D, Cn as TableStyleListOptions, Cr as BulletCharOptions, Ct as createLayoutDefinitionHeader, D as fillDesc, Da as BlendMode, Di as OutlineFillProperties, Dn as ThemeableLineStyleOptions, Dr as BulletStyleOptions, Dt as AdjustListOptions, E as emitFillXml, Ea as createGlowEffect, Ei as LineJoin, En as TableTextStyleOptions, Er as BulletPictureOptions, Et as createStyleDefinitionHeaderList, F as parseColorChoiceElement, Fa as GradientStop, Fi as LineEndWidth, Fn as scene3DDesc, Fr as TabStopOptions, Ft as MaxChildrenOptions, G as DiagramTextPropertiesOptions, Ga as createTileInfo, Gi as PathCommand, Gn as BlipFillOptions, Gr as TextTabAlignment, Gt as createOrgChart, H as systemColorDesc, Ha as TileAlignment, Hi as ConnectionSite, Hn as createTransform2D, Hr as TextHyperlinkOptions, Ht as createAnimationLevel, I as presetColorDesc, Ia as LinearShadeOptions, Ii as createLineEnd, In as shape3DDesc, Ir as TextAlignment, It as OrgChartOptions, J as createDiagramTextProperties, Ja as createSolidFill, Ji as createCustomGeometry, Jn as BlipOptions, Jr as FlatTextOptions, Jt as NonVisualContentPartPropertiesOptions, K as createDiagramExtensionList, Ka as SolidFillOptions, Ki as PathFillMode, Kn as createBlipFill, Kr as UnderlineStyle, Kt as createPreferredChildren, L as rgbColorDesc, La as PathShade, Li as DashStop, Ln as StyleMatrixReferenceOptions, Lr as TextBreakOptions, Lt as PreferredChildrenOptions, M as hslColorDesc, Ma as createPatternFill, Mi as LineEndLength, Mn as Cell3DOptions, Mr as DEFAULT_SHADOW_DISTANCE, Mt as AnimationLevelOptions, N as isPlainRgbColor, Na as GradientFillOptions, Ni as LineEndOptions, Nn as bevelDesc, Nr as RunFont, Nt as HierBranch, O as findFillChild, Oa as FillOverlayEffectOptions, Oi as OutlineOptions, On as createTableStyle, Or as DEFAULT_OUTLINE_WIDTH, Ot as AdjustOptions, P as parseColorChoice, Pa as GradientShadeOptions, Pi as LineEndType, Pn as cell3DDesc, Pr as StrikeStyle, Pt as HierBranchOptions, Q as ColorMethod, Qa as SchemeColor, Qi as BlipFillMediaData, Qn as stringifyLineProperties, Qr as TextHorzOverflow, Qt as parseNonVisualDrawingProperties, R as scRgbColorDesc, Ra as PathShadeOptions, Ri as createCustomDash, Rn as BlackWhiteMode, Rr as TextCapitalization, Rt as PresentationLayoutVariablesOptions, S as groupLockingDesc, Sa as createOuterShadowEffect, Si as Vector3D, Sn as TablePartStyleOptions, Sr as BulletAutoNumOptions, St as createColorsDefinitionHeaderList, T as effectListDesc, Ta as GlowEffectOptions, Ti as LineCap, Tn as TableStyleRegion, Tr as BulletOptions, Tt as createStyleDefinitionHeader, U as DiagramExtensionListOptions, Ua as TileFlipMode, Ui as CustomGeometryOptions, Un as stringifyStretch, Ur as TextParagraphPropertiesOptions, Ut as createHierBranch, V as stringifyColorChoice, Va as createGradientStop, Vi as stringifyPresetGeometry, Vn as createGroupTransform2D, Vr as TextFont, Vt as createAnimateOneByOne, W as DiagramExtensionOptions, Wa as TileOptions, Wi as GeomRect, Wn as createExtensionList, Wr as TextRunOptions, Wt as createMaxChildren, X as createDiagramRelationshipIds, Xa as SystemColorOptions, Xi as stringifyAdjustmentValues, Xn as createSoftEdgeEffect, Xr as PresetTextShapeOptions, Xt as stringifyNonVisualContentPartProperties, Y as DiagramRelationshipIdsOptions, Ya as SystemColor, Yi as GeometryGuide, Yn as createBlip, Yr as NormalAutofitOptions, Yt as parseNonVisualContentPartProperties, Z as ColorListOptions, Za as createSystemColor, Zi as BlipFillConfigOptions, Zn as outlineDesc, Zr as TextBodyWrapping, Zt as NonVisualDrawingPropertiesOptions, _ as transform2DDesc, _a as PresetShadow, _i as CameraOptions, _n as OnOffStyleType, _r as stringifyTextListStyleTag, _t as LayoutDefinitionHeaderListOptions, a as BlipDescriptorOptions, aa as EffectContainer, ai as parseBodyProperties, an as ContentPartLockingOptions, ao as PresetColor, ar as readParagraphProperties, at as createEffectColorList, b as connectorLockingDesc, ba as OuterShadowEffectOptions, bi as Scene3DOptions, bn as TableCellStyleOptions, br as textStylesDesc, bt as StyleDefinitionHeaderOptions, c as sourceRectangleDesc, ca as BlipEffectsOptions, ci as shapePropertiesDesc, cn as PictureLockingOptions, co as HslColorOptions, cr as buildHyperlinkElement, ct as createStyleLabel, d as tileDesc, da as EffectExtent, di as createShape3D, dn as createContentPartLocking, do as createColorTransforms, dr as runPropertiesDesc, dt as createTextLineColorList, ea as GradientStopOptions, ei as TextVertOverflow, en as stringifyNonVisualDrawingProperties, eo as createSchemeColor, er as createNoFill, et as DiagramStyleOptions, f as stringifyTextRun, fa as EffectListOptions, fi as BevelOptions, fn as createGraphicFrameLocking, fr as stringifyRunProperties, ft as ColorsDefinitionHeaderListOptions, g as groupTransform2DDesc, ga as createReflectionEffect, gi as BackdropOptions, gn as CompoundLineType, gr as parseTextStyles, gt as DiagramNameOptions, h as groupShapePropertiesDesc, ha as ReflectionEffectOptions, hi as createBottomBevel, hn as createShapeLocking, hr as TextStylesOptions, ht as DiagramDescriptionOptions, i as presentationLayoutVariablesDesc, ia as createSourceRectangle, ii as createBodyProperties, in as ConnectorLockingOptions, io as createRgbColor, ir as paragraphDesc, it as createDiagramStyle, j as emitColorChoice, ja as PresetPattern, ji as createOutline, jn as parseTableStyleList, jr as DEFAULT_SHADOW_DIRECTION, jt as AnimationLevel, k as gradientFillDesc, ka as createFillOverlayEffect, ki as PenAlignment, kn as createTableStyleList, kr as DEFAULT_SHADOW_ALPHA, kt as AnimateOneByOne, l as stretchDesc, la as createBlipEffects, li as PresetMaterial, ln as ShapeLockingOptions, lo as createHslColor, lr as readHyperlink, lt as createTextEffectColorList, m as GroupShapePropertiesOptions, ma as createEffectList, mi as createBevel, mn as createPictureLocking, mr as TextListStyleOptions, mt as DiagramCategoryOptions, n as diagramRelationshipIdsDesc, na as extractBlipFillMedia, ni as VerticalAnchor, nn as parseEndpointConnection, no as createScRgbColor, nr as textBodyDesc, nt as HueDirection, o as blipDesc, oa as EffectDagOptions, oi as ShapePropertiesExtensionOptions, on as GraphicFrameLockingOptions, oo as PresetColorOptions, or as stringifyParagraphPropertiesElement, ot as createFillColorList, p as textRunDesc, pa as calculateEffectExtent, pi as BevelPreset, pn as createGroupLocking, pr as DEFAULT_TEXT_STYLES, pt as ColorsDefinitionHeaderOptions, q as createDiagramShape3D, qa as createColorElement, qi as PathOptions, qn as BlipCompression, qr as BodyPropertiesOptions, qt as createPresentationLayoutVariables, r as diagramStyleDesc, ra as SourceRectangleOptions, ri as bodyPropertiesDesc, rn as stringifyEndpointConnection, ro as RgbColorOptions, rr as ParagraphDescriptorOptions, rt as StyleMatrixIndex, s as blipFillDesc, sa as createEffectDag, si as ShapePropertiesOptions, sn as GroupLockingOptions, so as createPresetColor, sr as Mutable, st as createLineColorList, t as diagramExtensionListDesc, ta as buildFill, ti as TextVertical, tn as EndpointConnectionOptions, to as ScRgbColorOptions, tr as TextBodyOptions, tt as FontCollectionIndex, u as stringifyBlipEffects, ua as BlurEffectOptions, ui as Shape3DOptions, un as createConnectorLocking, uo as ColorTransformOptions, ur as registerHyperlink, ut as createTextFillColorList, v as customGeometryDesc, va as PresetShadowEffectOptions, vi as LightRigOptions, vn as TableBackgroundStyleOptions, vr as stringifyTextStyles, vt as LayoutDefinitionHeaderOptions, w as shapeLockingDesc, wa as createInnerShadowEffect, wi as CompoundLine, wn as TableStyleOptions, wr as BulletNoneOption, wt as createLayoutDefinitionHeaderList, x as graphicFrameLockingDesc, xa as RectAlignment, xi as SphereCoords, xn as TableFontReferenceOptions, xr as AutoNumberFormat, xt as createColorsDefinitionHeader, y as presetGeometryDesc, ya as createPresetShadowEffect, yi as Point3D, yn as TableCellBorderOptions, yr as textListStyleDesc, yt as StyleDefinitionHeaderListOptions, z as schemeColorDesc, za as RelativeRect, zi as PresetGeometryOptions, zn as GroupTransform2DOptions, zr as TextCharacterPropertiesOptions, zt as createAdjust } from "./index-DPkf_CtG.mjs";
6
- import { _ as ThemeOverrideOptions, a as DefaultShapeDefinitionOptions, c as ExtraColorSchemeOptions, d as FontSchemeOptions, f as FormatSchemeOptions, g as ThemeOptions, h as TextFontOptions, i as CustomColorOptions, l as FontCollectionOptions, m as SupplementalFontOptions, n as ColorSchemeIndex, o as DefaultShapeStyleOptions, p as ObjectDefaultsOptions, r as ColorSchemeOptions, s as EffectStyleOptions, t as ColorMappingOptions, u as FontReferenceOptions } from "./theme-options-kO89NUEX.mjs";
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 xsdLegendPosition, $t as convertToPt, A as xsdAnimValueType, An as ZIP_STORED_LEVEL, At as ImageFileType, B as xsdCompoundLine, Bn as zipAndConvert, Bt as randomBytes, C as replacePlaceholders, Cn as resolveRelationshipTarget, Ct as xsdTextCaps, D as xsdAnimCalcMode, Dn as PackerOptions, Dt as xsdTrendlineType, E as invertMap, En as Packer, Et as xsdTotalsRowFunction, F as xsdAxisOrientation, Fn as createPacker, Ft as uniqueNumericIdCreator, G as xsdDiagramDirection, Gt as convertInchesToEmu, H as xsdDashStyle, Hn as zipSyncAndConvert, Ht as convertEmuToPixels, I as xsdAxisPosition, In as createZipStream, It as uniqueUuid, J as xsdFontAlignment, Jt as convertPixelsToEmu, K as xsdEffectContainer, Kt as convertInchesToTwip, L as xsdBlendMode, Ln as levelForMediaName, Lt as extUriMatches, M as xsdAxisCrossBetween, Mn as ZipPartSink, Mt as UniqueNumericIdCreator, N as xsdAxisCrosses, Nn as ZipStreamWriter, Nt as hashedId, O as xsdAnimClass, On as XmlifyedFile, Ot as xsdUnderlineStyle, P as xsdAxisLabelAlignment, Pn as Zippable, Pt as uniqueId, Q as xsdJcAlignment, Qt as convertToInch, R as xsdChartBuild, Rn as strFromU8, Rt as derivePasswordHash, S as replaceOlePlaceholders, Sn as partPathToRelsPath, St as xsdTextBuild, T as replaceVideoPlaceholders, Tn as CompressionOptions, Tt as xsdTextVerticalType, U as xsdDataLabelPosition, Ut as convertEmuToPoints, V as xsdConsolidateFunction, Vn as zipSync, Vt as convertEmuToInches, W as xsdDiagramBuild, Wt as convertEmuToTwip, X as xsdHueDirection, Xt as convertPointsToTwip, Y as xsdHierBranch, Yt as convertPointsToEmu, Z as xsdIterateType, Zt as convertToEmu, _ as replaceImageLinkPlaceholders, _n as RelationshipType, _t as xsdSplitType, a as findAndReplaceImagePlaceholders, an as convertUniversalMeasureToPt, at as xsdOnOffStyle, b as replaceNumberingPlaceholders, bn as buildRootRelationships, bt as xsdTextAlign, c as getMediaRefs, cn as emitPercent, ct as xsdPattern, d as getVideoRefs, dn as parsePercent, dt as xsdPresetShadow, en as convertToTwip, et as xsdLightRigDirection, f as hasPlaceholders, fn as parsePercentAttr, ft as xsdRectAlignment, g as replaceHyperlinkPlaceholders, gn as compileMapping, gt as xsdSlideLayoutType, h as replaceChartPlaceholders, hn as addBinaryFile, ht as xsdSizeRepresents, i as collectPlaceholderKeys, in as convertUniversalMeasureToInch, it as xsdMathStyle, j as xsdAnimationDgmBuild, jn as ZipOptions, jt as imageTypeFromPath, k as xsdAnimLevel, kn as ZIP_DEFLATE_LEVEL, kt as xsdVerticalMergeRev, l as getOleRefs, ln as mapOptional, lt as xsdPenAlignment, m as replaceAudioPlaceholders, mn as XmlifyedFileEntry, mt as xsdShadingPattern, n as SmartArtRelOptions, nn as convertTwipToPoints, nt as xsdLineEndSize, o as formatId, on as convertUniversalMeasureToTwip, ot as xsdOrient, p as replaceAllPlaceholders, pn as parseUniversalMeasure, pt as xsdResizeHandles, q as xsdErrorValueType, qt as convertMillimetersToTwip, r as addSmartArtRelationships, rn as convertUniversalMeasureToEmu, rt as xsdMaterialType, s as getAudioRefs, sn as emitAngle, st as xsdPathFillMode, t as IdFormat, tn as convertTwipToEmu, tt as xsdLineCap, u as getReferencedMedia, un as parseAngle, ut as xsdPlaceholderType, v as replaceImagePlaceholders, vn as Relationships, vt as xsdStrikeStyle, w as replaceSmartArtPlaceholders, wn as CompileFn, wt as xsdTextTabAlignment, x as replaceOleLinkPlaceholders, xn as optionalRelsPart, xt as xsdTextAnchor, y as replaceMediaPlaceholders, yn as TargetModeType, yt as xsdTableWidthType, z as xsdComments, zn as unzipSync, zt as hashPasswordAgile } from "./index-DfFszyH1.mjs";
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-DRggxtp7.mjs";
11
- import { $ as stringifyVmlGroup, $n as stringifyVmlCallout, $t as stringifyVmlPath, A as VmlPolylineOptions, An as VmlExtrusionType, Ar as VmlOfficeShapeAttributes, At as stringifyVmlTextbox, B as parseVmlGroup, Bn as VmlSkewOptions, Br as stringifyVmlTrueFalseBlank, Bt as stringifyVmlStroke, C as VmlBaseShapeFields, Cn as VmlDiagramRelationOptions, Cr as VmlConnectType, Ct as stringifyVmlWrap, D as VmlImageOptions, Dn as VmlExtrusionOptions, Dr as VmlHorizontalRuleAlign, Dt as stringifyVmlTextPath, E as VmlGroupOptions, En as VmlExtensionMode, Er as VmlDiagramLayout, Et as parseVmlTextPath, F as VmlShapetypeOptions, Fn as VmlOleDrawAspect, Fr as parseVmlAttributes, Ft as VmlStrokeEndCap, G as parseVmlRect, Gn as parseVmlEquationXml, Gr as stringifyVmlStyle, Gt as VmlIsCommentOptions, H as parseVmlLine, Hn as parseVmlClipPath, Hr as VmlShapeStyle, Ht as VmlShadowType, I as nextVmlShapeId, In as VmlOleObjectOptions, Ir as parseVmlTrueFalse, It as VmlStrokeJoinStyle, J as parseVmlShapeChild, Jn as parseVmlLock, Jt as parseVmlTextData, K as parseVmlRoundRect, Kn as parseVmlExtrusion, Kr as styleToKeyMap, Kt as VmlTextDataOptions, L as parseVmlArc, Ln as VmlOleObjectType, Lr as parseVmlTrueFalseBlank, Lt as VmlStrokeLineStyle, M as VmlRoundRectOptions, Mn as VmlLockOptions, Mr as VmlShapeAttributes, Mt as VmlStrokeArrowType, N as VmlShapeChild, Nn as VmlOfficeFillOptions, Nr as VmlTrueFalse, Nt as VmlStrokeArrowWidth, O as VmlLineOptions, On as VmlExtrusionPlane, Or as VmlInsetMode, Ot as VmlTextboxOptions, P as VmlShapeOptions, Pn as VmlOfficeFillType, Pr as VmlTrueFalseBlank, Pt as VmlStrokeChildOptions, Q as stringifyVmlCurve, Qn as parseVmlSkew, Qt as parseVmlPath, R as parseVmlBackground, Rn as VmlOleUpdateMode, Rr as stringifyVmlAttributes, Rt as VmlStrokeOptions, S as VmlBackgroundOptions, Sn as VmlDiagramOptions, Sr as VmlColor, St as stringifyVmlBorder, T as VmlEditAs, Tn as VmlExtAttribute, Tr as VmlCoreAttributes, Tt as VmlTextPathStyle, U as parseVmlOval, Un as parseVmlComplex, Ur as parseVmlShapeStyle, Ut as parseVmlShadow, V as parseVmlImage, Vn as parseVmlCallout, Vr as LengthUnit, Vt as VmlShadowOptions, W as parseVmlPolyline, Wn as parseVmlDiagram, Wr as parseVmlStyle, Wt as stringifyVmlShadow, X as stringifyVmlArc, Xn as parseVmlOleObject, Xt as stringifyVmlTextData, Y as parseVmlShapetype, Yn as parseVmlOfficeFill, Yt as stringifyVmlIsComment, Z as stringifyVmlBackground, Zn as parseVmlSignatureLine, Zt as VmlPathOptions, _ as stringifyVmlColorMenu, _n as VmlCalloutAngle, _r as VML_OFFICE_SHAPE_ATTRS, _t as VmlWrapType, a as VmlRegroupTableOptions, an as parseVmlHandles, ar as stringifyVmlInk, at as stringifyVmlRoundRect, b as stringifyVmlShapeLayout, bn as VmlColorMode, br as VmlAttrSpec, bt as parseVmlWrap, c as VmlRuleProxyOptions, cn as parseVmlFormulas, cr as stringifyVmlOleObject, ct as stringifyVmlShapetype, d as VmlShapeDefaultsOptions, dn as VmlFillOptions, dr as VmlClientDataOptions, dt as VmlBorderOptions, en as VmlImageDataOptions, er as stringifyVmlClipPath, et as stringifyVmlImage, f as VmlShapeLayoutOptions, fn as VmlFillType, fr as VmlClientObjectType, ft as VmlBorderType, g as parseVmlShapeLayout, gn as EXT_ATTR, gr as VML_OFFICE_CORE_ATTRS, gt as VmlWrapSide, h as parseVmlShapeDefaults, hn as stringifyVmlFill, hr as VML_CORE_ATTRS, ht as VmlWrapOptions, i as VmlRegroupEntryOptions, in as VmlHandlesOptions, ir as stringifyVmlExtrusion, it as stringifyVmlRect, j as VmlRectOptions, jn as VmlInkOptions, jr as VmlScreenSize, jt as VmlStrokeArrowLength, k as VmlOvalOptions, kn as VmlExtrusionRender, kr as VmlOfficeCoreAttributes, kt as parseVmlTextbox, l as VmlRuleType, ln as stringifyVmlFormulas, lr as stringifyVmlSignatureLine, lt as VML_BORDER_TAGS, m as parseVmlColorMru, mn as parseVmlFill, mr as stringifyVmlClientData, mt as VmlVerticalAnchor, n as VmlColorMruOptions, nn as stringifyVmlImageData, nr as stringifyVmlDiagram, nt as stringifyVmlOval, o as VmlRuleHow, on as stringifyVmlHandles, or as stringifyVmlLock, ot as stringifyVmlShape, p as parseVmlColorMenu, pn as VmlImageAspect, pr as parseVmlClientData, pt as VmlHorizontalAnchor, q as parseVmlShape, qn as parseVmlInk, qt as parseVmlIsComment, r as VmlIdMapOptions, rn as VmlHandleOptions, rr as stringifyVmlEquationXml, rt as stringifyVmlPolyline, s as VmlRuleOptions, sn as VmlFormulasOptions, sr as stringifyVmlOfficeFill, st as stringifyVmlShapeChild, t as VmlColorMenuOptions, tn as parseVmlImageData, tr as stringifyVmlComplex, tt as stringifyVmlLine, u as VmlRulesOptions, un as VmlFillMethod, ur as stringifyVmlSkew, ut as VmlAnchorLockOptions, v as stringifyVmlColorMru, vn as VmlCalloutOptions, vr as VML_SHAPE_ATTRS, vt as parseVmlAnchorLock, w as VmlCurveOptions, wn as VmlEquationXmlOptions, wr as VmlConnectorType, wt as VmlTextPathOptions, x as VmlArcOptions, xn as VmlComplexOptions, xr as VmlBlackWhiteMode, xt as stringifyVmlAnchorLock, y as stringifyVmlShapeDefaults, yn as VmlClipPathOptions, yr as VmlAttrKind, yt as parseVmlBorder, z as parseVmlCurve, zn as VmlSignatureLineOptions, zr as stringifyVmlTrueFalse, zt as parseVmlStroke } from "./index-L6AXewfV.mjs";
12
- import { a as stringifyColorMapping, c as themeOverrideDesc, d as buildThemeXml, f as createThemeXml, i as parseColorMapping, l as themeDesc, n as stringifyShapeStyle, o as ThemeManagerOptions, r as DEFAULT_COLOR_MAPPING, s as themeManagerDesc, t as parseShapeStyle, u as DEFAULT_COLORS } from "./index-DcukVskh.mjs";
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-iHHKF2Rx.mjs";
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 xsdDiagramDirection, $t as pointMeasureValue, A as parseAngle, At as xsdTextBuild, B as xsdAxisCrossBetween, Bt as decodeBase64, C as convertUniversalMeasureToEmu, Ct as xsdSizeRepresents, D as emitAngle, Dt as xsdTableWidthType, E as convertUniversalMeasureToTwip, Et as xsdStrikeStyle, F as xsdAnimCalcMode, Ft as xsdTrendlineType, G as xsdBlendMode, Gt as eighthPointMeasureValue, H as xsdAxisLabelAlignment, I as xsdAnimClass, It as xsdUnderlineStyle, J as xsdCompoundLine, Jt as hpsMeasureValue, K as xsdChartBuild, Kt as hexBinary, L as xsdAnimLevel, Lt as xsdVerticalMergeRev, M as parsePercentAttr, Mt as xsdTextTabAlignment, N as parseUniversalMeasure, Nt as xsdTextVerticalType, O as emitPercent, Ot as xsdTextAlign, P as invertMap, Pt as xsdTotalsRowFunction, Q as xsdDiagramBuild, Qt as percentageValue, R as xsdAnimValueType, Rt as isBase64DataURL, S as convertTwipToPoints, St as xsdShadingPattern, T as convertUniversalMeasureToPt, Tt as xsdSplitType, U as xsdAxisOrientation, Ut as dateTimeValue, V as xsdAxisCrosses, Vt as encodeBase64, W as xsdAxisPosition, Wt as decimalNumber, X as xsdDashStyle, Xt as measurementOrPercentValue, Y as xsdConsolidateFunction, Yt as longHexNumber, Z as xsdDataLabelPosition, Zt as parseOnOff, _ as convertToEmu, _t as xsdPenAlignment, a as uniqueNumericIdCreator, an as twipsMeasureValue, at as xsdIterateType, b as convertToTwip, bt as xsdRectAlignment, c as convertEmuToPixels, cn as unsignedDecimalNumber, ct as xsdLightRigDirection, d as convertInchesToEmu, dt as xsdMaterialType, en as positiveUniversalMeasureValue, et as xsdEffectContainer, f as convertInchesToTwip, ft as xsdMathStyle, g as convertPointsToTwip, gt as xsdPattern, h as convertPointsToEmu, ht as xsdPathFillMode, i as uniqueId, in as stripColorHashPrefix, it as xsdHueDirection, j as parsePercent, jt as xsdTextCaps, k as mapOptional, kt as xsdTextAnchor, l as convertEmuToPoints, lt as xsdLineCap, m as convertPixelsToEmu, mt as xsdOrient, n as imageTypeFromPath, nn as signedHpsMeasureValue, nt as xsdFontAlignment, o as uniqueUuid, on as uCharHexNumber, ot as xsdJcAlignment, p as convertMillimetersToTwip, pt as xsdOnOffStyle, q as xsdComments, qt as hexColorValue, r as hashedId, rn as signedTwipsMeasureValue, rt as xsdHierBranch, s as convertEmuToInches, sn as universalMeasureValue, st as xsdLegendPosition, t as extUriMatches, tn as shortHexNumber, tt as xsdErrorValueType, u as convertEmuToTwip, ut as xsdLineEndSize, v as convertToInch, vt as xsdPlaceholderType, w as convertUniversalMeasureToInch, wt as xsdSlideLayoutType, x as convertTwipToEmu, xt as xsdResizeHandles, y as convertToPt, yt as xsdPresetShadow, z as xsdAnimationDgmBuild, zt as toUint8Array } from "./ext-uri-BHBcIrW7.mjs";
4
- import { C as stringifyDataModelOptions, D as COLOR_CATEGORIES, E as stringifyConnection, O as LAYOUT_CATEGORIES, S as stringifyDataModel, T as stringifyTransPoint, _ as parseLayoutDefinition, a as getColorXml, b as withDiagramNamespaces, c as parseStyleDefinition, d as styleDefDesc, f as colorsDefDesc, g as layoutDefDesc, h as stringifyColorDefinitionPart, i as DEFAULT_DRAWING_XML, k as STYLE_CATEGORIES, l as stringifyStyleDefinition, m as stringifyColorDefinition, n as SmartArtCollection, o as getLayoutXml, p as parseColorDefinition, r as definitionId, s as getStyleXml, t as createDataModel, u as stringifyStyleDefinitionPart, v as stringifyLayoutDefinition, w as stringifyPoint, x as parseDataModelOptions, y as stringifyLayoutDefinitionPart } from "./smartart-YH87Emca.mjs";
5
- import { $ as createAdjustList, $n as createSystemColor, $t as createGroupFill, A as groupShapePropertiesDesc, An as createEffectColorList, At as createCustomGeometry, B as shapeLockingDesc, Bn as emitColorChoice, Bt as createSoftEdgeEffect, C as createBodyProperties, Cn as bevelDesc, Ct as parseTableStyleList, D as DEFAULT_SHADOW_BLUR_RADIUS, Dn as FontCollectionIndex, Dt as createBlipFill, E as DEFAULT_SHADOW_ALPHA, En as shape3DDesc, Et as stringifyStretch, F as presetGeometryDesc, Fn as createTextFillColorList, Ft as createBottomBevel, G as createDiagramRelationshipIds, Gn as presetColorDesc, Gt as createGlowEffect, H as createDiagramExtensionList, Hn as isPlainRgbColor, Ht as createPresetShadowEffect, I as connectorLockingDesc, In as createTextLineColorList, It as createScene3D, J as createLayoutDefinitionHeader, Jn as schemeColorDesc, Jt as outlineDesc, K as createColorsDefinitionHeader, Kn as rgbColorDesc, Kt as BlendMode, L as graphicFrameLockingDesc, Lt as createEffectDag, M as groupTransform2DDesc, Mn as createLineColorList, Mt as stringifyAdjustmentValues, N as transform2DDesc, Nn as createStyleLabel, Nt as createShape3D, O as DEFAULT_SHADOW_DIRECTION, Ot as createBlip, P as customGeometryDesc, Pn as createTextEffectColorList, Pt as createBevel, Q as createAdjust, Qn as SystemColor, Qt as createCustomDash, R as groupLockingDesc, Rn as createColorElement, Rt as calculateEffectExtent, S as bodyPropertiesDesc, Sn as createRgbColor, St as parseTableStyle, T as DEFAULT_OUTLINE_WIDTH, Tn as scene3DDesc, Tt as createTransform2D, U as createDiagramShape3D, Un as parseColorChoice, Ut as createOuterShadowEffect, V as effectListDesc, Vn as hslColorDesc, Vt as createReflectionEffect, W as createDiagramTextProperties, Wn as parseColorChoiceElement, Wt as createInnerShadowEffect, X as createStyleDefinitionHeader, Xn as stringifyColorChoice, Xt as createOutline, Y as createLayoutDefinitionHeaderList, Yn as solidFillDesc, Yt as stringifyLineProperties, Z as createStyleDefinitionHeaderList, Zn as systemColorDesc, Zt as createLineEnd, _ as buildHyperlinkElement, _n as stretchDesc, _t as createGroupLocking, a as textBodyDesc, an as extractBlipFillMedia, at as createPreferredChildren, b as runPropertiesDesc, bn as createScRgbColor, bt as createTableStyle, c as stringifyTextListStyleTag, cn as findFillChild, ct as stringifyNonVisualContentPartProperties, d as textStylesDesc, dn as createTileInfo, dt as stringifyNonVisualDrawingProperties, en as createPatternFill, er as SchemeColor, et as createAnimateOneByOne, f as paragraphDesc, fn as createSourceRectangle, ft as parseEndpointConnection, g as textRunDesc, gn as sourceRectangleDesc, gt as createGraphicFrameLocking, h as stringifyTextRun, hn as blipFillDesc, ht as createContentPartLocking, i as presentationLayoutVariablesDesc, in as buildFill, ir as createColorTransforms, it as createOrgChart, j as shapePropertiesDesc, jn as createFillColorList, jt as stringifyPresetGeometry, k as DEFAULT_SHADOW_DISTANCE, kn as createDiagramStyle, kt as createExtensionList, l as stringifyTextStyles, ln as gradientFillDesc, lt as parseNonVisualDrawingProperties, m as stringifyParagraphPropertiesElement, mn as blipDesc, mt as createConnectorLocking, n as diagramRelationshipIdsDesc, nn as createGradientStop, nr as PresetColor, nt as createHierBranch, o as DEFAULT_TEXT_STYLES, on as emitFillXml, ot as createPresentationLayoutVariables, p as readParagraphProperties, pn as createBlipEffects, pt as stringifyEndpointConnection, q as createColorsDefinitionHeaderList, qn as scRgbColorDesc, qt as createFillOverlayEffect, r as diagramStyleDesc, rn as createNoFill, rr as createPresetColor, rt as createMaxChildren, s as parseTextStyles, sn as fillDesc, st as parseNonVisualContentPartProperties, t as diagramExtensionListDesc, tn as createGradientFill, tr as createSchemeColor, tt as createAnimationLevel, u as textListStyleDesc, un as patternFillDesc, ut as pickNonVisualDrawingProperties, v as readHyperlink, vn as stringifyBlipEffects, vt as createPictureLocking, w as parseBodyProperties, wn as cell3DDesc, wt as createGroupTransform2D, x as stringifyRunProperties, xn as createHslColor, xt as createTableStyleList, y as registerHyperlink, yn as tileDesc, yt as createShapeLocking, z as pictureLockingDesc, zn as createSolidFill, zt as createEffectList } from "./drawing-BVwCkNXB.mjs";
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-DjhMuuQg.mjs";
8
- import { i as ChartCollection, n as userShapesDesc, r as chartSpaceDesc, t as buildUserShapesData } from "./chart-DEIF3VZn.mjs";
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 stringifyVmlIsComment, A as stringifyVmlPolyline, At as stringifyVmlEquationXml, B as stringifyVmlAnchorLock, Bt as stringifyVmlStyle, C as stringifyVmlArc, Ct as parseVmlOleObject, D as stringifyVmlImage, Dt as stringifyVmlClipPath, E as stringifyVmlGroup, Et as stringifyVmlCallout, F as stringifyVmlShapetype, Ft as stringifyVmlOleObject, G as parseVmlTextbox, Gt as VML_SHAPE_ATTRS, H as stringifyVmlWrap, Ht as VML_CORE_ATTRS, I as VML_BORDER_TAGS, It as stringifyVmlSignatureLine, J as stringifyVmlStroke, Jt as parseVmlTrueFalseBlank, K as stringifyVmlTextbox, Kt as parseVmlAttributes, L as parseVmlAnchorLock, Lt as stringifyVmlSkew, M as stringifyVmlRoundRect, Mt as stringifyVmlInk, N as stringifyVmlShape, Nt as stringifyVmlLock, O as stringifyVmlLine, Ot as stringifyVmlComplex, P as stringifyVmlShapeChild, Pt as stringifyVmlOfficeFill, Q as parseVmlTextData, R as parseVmlBorder, Rt as parseVmlShapeStyle, S as parseVmlShapetype, St as parseVmlOfficeFill, T as stringifyVmlCurve, Tt as parseVmlSkew, U as parseVmlTextPath, Ut as VML_OFFICE_CORE_ATTRS, V as stringifyVmlBorder, Vt as styleToKeyMap, W as stringifyVmlTextPath, Wt as VML_OFFICE_SHAPE_ATTRS, X as stringifyVmlShadow, Xt as stringifyVmlTrueFalse, Y as parseVmlShadow, Yt as stringifyVmlAttributes, Z as parseVmlIsComment, Zt as stringifyVmlTrueFalseBlank, _ as parseVmlPolyline, _t as parseVmlDiagram, a as stringifyVmlColorMenu, at as parseVmlHandles, b as parseVmlShape, bt as parseVmlInk, c as stringifyVmlShapeLayout, ct as stringifyVmlFormulas, d as parseVmlBackground, dt as parseVmlClientData, et as stringifyVmlTextData, f as parseVmlCurve, ft as stringifyVmlClientData, g as parseVmlOval, gt as parseVmlComplex, h as parseVmlLine, ht as parseVmlClipPath, i as parseVmlShapeLayout, it as stringifyVmlImageData, j as stringifyVmlRect, jt as stringifyVmlExtrusion, k as stringifyVmlOval, kt as stringifyVmlDiagram, l as nextVmlShapeId, lt as parseVmlFill, m as parseVmlImage, mt as parseVmlCallout, n as parseVmlColorMru, nt as stringifyVmlPath, o as stringifyVmlColorMru, ot as stringifyVmlHandles, p as parseVmlGroup, pt as EXT_ATTR, q as parseVmlStroke, qt as parseVmlTrueFalse, r as parseVmlShapeDefaults, rt as parseVmlImageData, s as stringifyVmlShapeDefaults, st as parseVmlFormulas, t as parseVmlColorMenu, tt as parseVmlPath, u as parseVmlArc, ut as stringifyVmlFill, v as parseVmlRect, vt as parseVmlEquationXml, w as stringifyVmlBackground, wt as parseVmlSignatureLine, x as parseVmlShapeChild, xt as parseVmlLock, y as parseVmlRoundRect, yt as parseVmlExtrusion, z as parseVmlWrap, zt as parseVmlStyle } from "./vector-DZ_OteHJ.mjs";
11
- import { a as buildThemeXml, i as createThemeXml, n as themeOverrideDesc, o as DEFAULT_COLORS, r as themeDesc, t as themeManagerDesc } from "./theme-Dx0Db9bX.mjs";
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