@office-open/core 0.9.3 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  ## Features
10
10
 
11
- - **Descriptor Runtime** — `CustomDescriptor<T>` and `ElementDescriptor<T>` for bidirectional XML stringify/parse
11
+ - **Descriptor Runtime** — `CustomDescriptor<T>` for bidirectional XML stringify/parse
12
12
  - **DrawingML** — Fills, outlines, effects, geometry, text body, scene 3D, and more
13
13
  - **Chart Components** — Shared chart types (bar, line, pie, area, scatter) and chart collection
14
14
  - **SmartArt Components** — Data model, tree-to-model converter, layout/style/color definitions
@@ -1,2 +1,2 @@
1
- import { _ as ChartCollection, a as ChartSpaceOptions, c as DataLabelsOptions, d as ErrorBarType, f as ErrorValueType, g as View3DOptions, h as TrendlineType, i as ChartSeriesData, l as ErrorBarDirection, m as TrendlineOptions, n as AxisChartType, o as ChartType, p as TimeUnit, r as BubbleSeriesData, s as DataLabelPosition, t as chartSpaceDesc, u as ErrorBarOptions, v as ChartData } from "../index-xXbaecaB.mjs";
1
+ import { _ as ChartCollection, a as ChartSpaceOptions, c as DataLabelsOptions, d as ErrorBarType, f as ErrorValueType, g as View3DOptions, h as TrendlineType, i as ChartSeriesData, l as ErrorBarDirection, m as TrendlineOptions, n as AxisChartType, o as ChartType, p as TimeUnit, r as BubbleSeriesData, s as DataLabelPosition, t as chartSpaceDesc, u as ErrorBarOptions, v as ChartData } from "../index-DMw7eid7.mjs";
2
2
  export { AxisChartType, BubbleSeriesData, ChartCollection, ChartData, ChartSeriesData, ChartSpaceOptions, ChartType, DataLabelPosition, DataLabelsOptions, ErrorBarDirection, ErrorBarOptions, ErrorBarType, ErrorValueType, TimeUnit, TrendlineOptions, TrendlineType, View3DOptions, chartSpaceDesc };
@@ -1,2 +1,2 @@
1
- import { a as TimeUnit, c as ChartCollection, i as ErrorValueType, n as ErrorBarDirection, o as TrendlineType, r as ErrorBarType, s as chartSpaceDesc, t as DataLabelPosition } from "../chart-DNpai28f.mjs";
1
+ import { a as TimeUnit, c as ChartCollection, i as ErrorValueType, n as ErrorBarDirection, o as TrendlineType, r as ErrorBarType, s as chartSpaceDesc, t as DataLabelPosition } from "../chart-DwE8FCFk.mjs";
2
2
  export { ChartCollection, DataLabelPosition, ErrorBarDirection, ErrorBarType, ErrorValueType, TimeUnit, TrendlineType, chartSpaceDesc };
@@ -1,4 +1,4 @@
1
- import { children, escapeXml, findChild } from "@office-open/xml";
1
+ import { attr, children, escapeXml, findChild } from "@office-open/xml";
2
2
  //#region src/chart/chart-collection.ts
3
3
  var ChartCollection = class {
4
4
  map;
@@ -271,6 +271,12 @@ const chartSpaceDesc = {
271
271
  if (mapping) {
272
272
  detectedType = mapping.type;
273
273
  threeD = mapping.threeD ?? false;
274
+ if (child.name === "c:barChart" || child.name === "c:bar3DChart") {
275
+ const barDir = findChild(child, "c:barDir");
276
+ const barDirVal = barDir ? attr(barDir, "val") : void 0;
277
+ if (barDirVal === "bar") detectedType = "bar";
278
+ else if (barDirVal === "col") detectedType = "column";
279
+ }
274
280
  break;
275
281
  }
276
282
  }
@@ -1,2 +1,2 @@
1
- import { _ as TextSpec, a as enumEncode, b as ReadContext, c as DescriptorBuilder, d as ChildSpec, f as ChildrenSpec, g as ElementDescriptor, h as Descriptor, i as enumDecode, l as element, m as CustomDescriptor, n as boolDecode, o as parse, p as ContentSpec, r as boolEncode, s as stringify, t as DescriptorRegistry, u as AttrSpec, v as UnionSpec, x as WriteContext, y as UnionVariant } from "../index-D81RV9Vc.mjs";
2
- export { type AttrSpec, type ChildSpec, type ChildrenSpec, type ContentSpec, type CustomDescriptor, type Descriptor, DescriptorBuilder, DescriptorRegistry, type ElementDescriptor, type ReadContext, type TextSpec, type UnionSpec, type UnionVariant, type WriteContext, boolDecode, boolEncode, element, enumDecode, enumEncode, parse, stringify };
1
+ import { a as enumEncode, c as CustomDescriptor, d as WriteContext, i as enumDecode, l as Descriptor, n as boolDecode, o as parse, r as boolEncode, s as stringify, t as DescriptorRegistry, u as ReadContext } from "../index-C4r2WLEy.mjs";
2
+ export { type CustomDescriptor, type Descriptor, DescriptorRegistry, type ReadContext, type WriteContext, boolDecode, boolEncode, enumDecode, enumEncode, parse, stringify };
@@ -1,2 +1,2 @@
1
- import { a as enumEncode, c as DescriptorBuilder, i as enumDecode, l as element, n as boolDecode, o as parse, r as boolEncode, s as stringify, t as DescriptorRegistry } from "../descriptor-57JUzfpG.mjs";
2
- export { DescriptorBuilder, DescriptorRegistry, boolDecode, boolEncode, element, enumDecode, enumEncode, parse, stringify };
1
+ import { a as enumEncode, i as enumDecode, n as boolDecode, o as parse, r as boolEncode, s as stringify, t as DescriptorRegistry } from "../descriptor-DcQm32dg.mjs";
2
+ export { DescriptorRegistry, boolDecode, boolEncode, enumDecode, enumEncode, parse, stringify };
@@ -0,0 +1,71 @@
1
+ //#region src/descriptor/runtime.ts
2
+ /**
3
+ * Serialize an Options object to an XML string using its descriptor.
4
+ * Returns `undefined` when an optional element should be omitted.
5
+ */
6
+ function stringify(desc, value, ctx) {
7
+ return desc.stringify(value, ctx);
8
+ }
9
+ /** Parse an XML Element into an Options object using its descriptor. */
10
+ function parse(desc, el, ctx) {
11
+ return desc.parse(el, ctx);
12
+ }
13
+ //#endregion
14
+ //#region src/descriptor/helpers.ts
15
+ /**
16
+ * OOXML-specific encode/decode helpers for descriptors.
17
+ *
18
+ * XML traversal helpers (findChild, etc.) are in @office-open/xml utils.
19
+ * This file only contains OOXML value encoding/decoding.
20
+ *
21
+ * @module
22
+ */
23
+ /** Encode boolean for CT_OnOff: true → omit val, false → "0". */
24
+ const boolEncode = (v) => {
25
+ if (v === void 0) return void 0;
26
+ return v ? void 0 : "0";
27
+ };
28
+ /** Decode CT_OnOff: absent or "true"/"1" → true, "0"/"false" → false. */
29
+ const boolDecode = (raw) => raw !== "0" && raw !== "false";
30
+ /** Create an enum encoder from a JS↔XML mapping. */
31
+ const enumEncode = (map) => (v) => {
32
+ if (v === void 0) return void 0;
33
+ return map[v] ?? v;
34
+ };
35
+ /** Create an enum decoder from a JS↔XML mapping (inverted). */
36
+ const enumDecode = (map) => {
37
+ const inv = invertRecord(map);
38
+ return (raw) => inv[raw] ?? raw;
39
+ };
40
+ function invertRecord(map) {
41
+ const result = {};
42
+ for (const key of Object.keys(map)) result[map[key]] = key;
43
+ return result;
44
+ }
45
+ //#endregion
46
+ //#region src/descriptor/registry.ts
47
+ var DescriptorRegistry = class DescriptorRegistry {
48
+ static _map = /* @__PURE__ */ new Map();
49
+ /** Register a descriptor with its XML tag. */
50
+ static register(tag, desc) {
51
+ DescriptorRegistry._map.set(tag, desc);
52
+ }
53
+ /** Look up a descriptor by XML tag. */
54
+ static get(tag) {
55
+ return DescriptorRegistry._map.get(tag);
56
+ }
57
+ /** Get all registered tags. */
58
+ static tags() {
59
+ return new Set(DescriptorRegistry._map.keys());
60
+ }
61
+ /** Check if a tag is registered. */
62
+ static has(tag) {
63
+ return DescriptorRegistry._map.has(tag);
64
+ }
65
+ /** Get the number of registered descriptors. */
66
+ static get size() {
67
+ return DescriptorRegistry._map.size;
68
+ }
69
+ };
70
+ //#endregion
71
+ export { enumEncode as a, enumDecode as i, boolDecode as n, parse as o, boolEncode as r, stringify as s, DescriptorRegistry as t };
@@ -1,2 +1,2 @@
1
- import { $ as createStyleLbl, $a as createSchemeColor, $n as ReflectionEffectOptions, $t as TableStyleOptions, A as scRgbColorDesc, Aa as GradientStop, An as Shape3DOptions, At as createAdj, B as DiagramRelIdsOptions, Ba as createTileInfo, Bn as Scene3DOptions, Bt as GroupLockingOptions, C as fillDesc, Ca as BlipFillMediaData, Cn as PathOptions, Cr as LineEndOptions, Ct as AnimOneValue, D as hslColorDesc, Da as extractBlipFillMedia, Dn as GeometryGuide, Dr as DashStop, Dt as HierBranchStyle, E as getColorDescriptor, Ea as buildFill, En as stringifyPresetGeometry, Er as createLineEnd, Et as HierBranchOptions, F as DiagramExtensionOptions, Fa as TileFlipMode, Fn as createBottomBevel, Ft as createChPref, G as DiagramStyleOptions, Ga as SolidFillOptions, Gn as EffectContainerType, Gt as createPictureLocking, H as ColorListOptions, Ha as createSourceRectangle, Hn as Vector3D, Ht as ShapeLockingOptions, I as DiagramTextPropsOptions, Ia as createGradientFill, In as BackdropOptions, It as createHierBranch, J as StyleMatrixIndex, Ja as SystemColor, Jn as BlurEffectOptions, Jt as StyleMatrixReferenceOptions, K as FontCollectionIndex, Ka as createColorElement, Kn as EffectDagOptions, Kt as createShapeLocking, L as createDiagramExtLst, La as createGradientStop, Ln as CameraOptions, Lt as createOrgChart, M as solidFillDesc, Ma as PathShadeOptions, Mn as BevelOptions, Mt as createAnimLvl, N as systemColorDesc, Na as PathShadeType, Nn as BevelPresetType, Nt as createAnimOne, O as presetColorDesc, Oa as GradientFillOptions, On as stringifyAdjustmentValues, Or as createCustomDash, Ot as OrgChartOptions, P as DiagramExtLstOptions, Pa as RelativeRect, Pn as createBevel, Pt as createChMax, Q as createLinClrLst, Qa as SchemeColorOptions, Qn as createEffectList, Qt as TableStyleListOptions, R as createDiagramSp3d, Ra as TileAlignment, Rn as LightRigOptions, Rt as createPresLayoutVars, S as outlineDesc, Sa as BlipFillConfigOptions, Sn as PathFillMode, Sr as LineEndLength, St as AnimOneOptions, T as patternFillDesc, Ta as GradientStopOptions, Tn as PresetGeometryOptions, Tr as LineEndWidth, Tt as ChPrefOptions, U as ColorMethod, Ua as BlipEffectsOptions, Un as createScene3D, Ut as createGraphicFrameLocking, V as createDiagramRelIds, Va as SourceRectangleOptions, Vn as SphereCoords, Vt as PictureLockingOptions, W as DiagramStyleLblOptions, Wa as createBlipEffects, Wn as createSoftEdgeEffect, Wt as createGroupLocking, X as createEffectClrLst, Xa as createSystemColor, Xn as EffectListOptions, Xt as TableCellStyleOptions, Y as createDiagramStyle, Ya as SystemColorOptions, Yn as EffectExtent, Yt as TableCellBorderOptions, Z as createFillClrLst, Za as SchemeColor, Zn as calculateEffectExtent, Zt as TablePartStyleOptions, _ as graphicFrameLockingDesc, _a as createGroupFill, _n as createBlip, _r as OutlineFillProperties, _t as createStyleDefHdrLst, a as blipDesc, an as MediaDataTransformation, ao as PresetColorOptions, ar as RectAlignment, at as DiagramCategoryOptions, b as shapeLockingDesc, ba as createPatternFill, bn as GeomRect, br as PresetDash, bt as AnimLevelValue, c as stretchDesc, cn as GroupTransform2DOptions, co as createHslColor, cr as createInnerShadowEffect, ct as LayoutDefHdrLstOptions, d as scene3DDesc, dn as createTransform2D, dr as BlendMode, dt as StyleDefHdrOptions, en as TableStyleRegion, eo as ScRgbColorOptions, er as createReflectionEffect, et as createTxEffectClrLst, f as shape3DDesc, fn as stringifyStretch, fr as FillOverlayEffectOptions, ft as createColorsDefHdr, g as presetGeometryDesc, gn as BlipOptions, gr as LineJoin, gt as createStyleDefHdr, h as customGeometryDesc, hn as createBlipFill, hr as LineCap, ht as createLayoutDefHdrLst, i as presLayoutVarsDesc, in as createTableStyleList, io as PresetColor, ir as OuterShadowEffectOptions, it as ColorsDefHdrOptions, j as schemeColorDesc, ja as LinearShadeOptions, jn as createShape3D, jt as createAdjLst, k as rgbColorDesc, ka as GradientShadeOptions, kn as PresetMaterialType, kt as PresLayoutVarsOptions, l as tileDesc, ln as Transform2DOptions, lo as ColorTransformOptions, lr as GlowEffectOptions, lt as LayoutDefHdrOptions, m as transform2DDesc, mn as BlipFillOptions, mr as CompoundLine, mt as createLayoutDefHdr, n as diagramRelIdsDesc, nn as ThemeableLineStyleOptions, no as RgbColorOptions, nr as PresetShadowVal, nt as createTxLinClrLst, o as blipFillDesc, on as MediaTransformation, oo as createPresetColor, or as createOuterShadowEffect, ot as DiagramDescriptionOptions, p as groupTransform2DDesc, pn as createExtentionList, pr as createFillOverlayEffect, pt as createColorsDefHdrLst, q as HueDirection, qa as createSolidFill, qn as createEffectDag, qt as OnOffStyleType, r as diagramStyleDesc, rn as createTableStyle, ro as createRgbColor, rr as createPresetShadowEffect, rt as ColorsDefHdrLstOptions, s as sourceRectangleDesc, sn as createTransformation, so as HslColorOptions, sr as InnerShadowEffectOptions, st as DiagramNameOptions, t as diagramExtLstDesc, tn as TableTextStyleOptions, to as createScRgbColor, tr as PresetShadowEffectOptions, tt as createTxFillClrLst, u as bevelDesc, un as createGroupTransform2D, uo as createColorTransforms, ur as createGlowEffect, ut as StyleDefHdrLstOptions, v as groupLockingDesc, va as PatternFillOptions, vn as ConnectionSite, vr as OutlineOptions, vt as AdjLstOptions, w as gradientFillDesc, wa as FillOptions, wn as createCustomGeometry, wr as LineEndType, wt as ChMaxOptions, x as effectListDesc, xa as createNoFill, xn as PathCommand, xr as createOutline, xt as AnimLvlOptions, y as pictureLockingDesc, ya as PresetPattern, yn as CustomGeometryOptions, yr as PenAlignment, yt as AdjOptions, z as createDiagramTxPr, za as TileOptions, zn as Point3D, zt as GraphicFrameLockingOptions } from "../index-BqJRDf5H.mjs";
2
- export { type AdjLstOptions, type AdjOptions, AnimLevelValue, type AnimLvlOptions, type AnimOneOptions, AnimOneValue, type BackdropOptions, type BevelOptions, BevelPresetType, BlendMode, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, type CameraOptions, type ChMaxOptions, type ChPrefOptions, type ColorListOptions, ColorMethod, type ColorTransformOptions, type ColorsDefHdrLstOptions, type ColorsDefHdrOptions, CompoundLine, type ConnectionSite, type CustomGeometryOptions, type DashStop, type DiagramCategoryOptions, type DiagramDescriptionOptions, type DiagramExtLstOptions, type DiagramExtensionOptions, type DiagramNameOptions, type DiagramRelIdsOptions, type DiagramStyleLblOptions, type DiagramStyleOptions, type DiagramTextPropsOptions, type EffectContainerType, type EffectDagOptions, type EffectExtent, type EffectListOptions, type FillOptions, type FillOverlayEffectOptions, FontCollectionIndex, type GeomRect, type GeometryGuide, type GlowEffectOptions, type GradientFillOptions, type GradientShadeOptions, type GradientStop, type GradientStopOptions, type GraphicFrameLockingOptions, type GroupLockingOptions, type GroupTransform2DOptions, type HierBranchOptions, HierBranchStyle, type HslColorOptions, HueDirection, type InnerShadowEffectOptions, type LayoutDefHdrLstOptions, type LayoutDefHdrOptions, type LightRigOptions, LineCap, LineEndLength, type LineEndOptions, LineEndType, LineEndWidth, LineJoin, type LinearShadeOptions, type MediaDataTransformation, type MediaTransformation, type OnOffStyleType, type OrgChartOptions, type OuterShadowEffectOptions, type OutlineFillProperties, type OutlineOptions, type PathCommand, type PathFillMode, type PathOptions, type PathShadeOptions, PathShadeType, type PatternFillOptions, PenAlignment, type PictureLockingOptions, type Point3D, type PresLayoutVarsOptions, PresetColor, type PresetColorOptions, PresetDash, type PresetGeometryOptions, PresetMaterialType, PresetPattern, type PresetShadowEffectOptions, PresetShadowVal, RectAlignment, type ReflectionEffectOptions, type RelativeRect, type RgbColorOptions, type ScRgbColorOptions, type Scene3DOptions, SchemeColor, type SchemeColorOptions, type Shape3DOptions, type ShapeLockingOptions, type SolidFillOptions, type SourceRectangleOptions, type SphereCoords, type StyleDefHdrLstOptions, type StyleDefHdrOptions, StyleMatrixIndex, type StyleMatrixReferenceOptions, SystemColor, type SystemColorOptions, type TableCellBorderOptions, type TableCellStyleOptions, type TablePartStyleOptions, type TableStyleListOptions, type TableStyleOptions, type TableStyleRegion, type TableTextStyleOptions, type ThemeableLineStyleOptions, TileAlignment, TileFlipMode, type TileOptions, type Transform2DOptions, type Vector3D, bevelDesc, blipDesc, blipFillDesc, buildFill, calculateEffectExtent, createAdj, createAdjLst, createAnimLvl, createAnimOne, createBevel, createBlip, createBlipEffects, createBlipFill, createBottomBevel, createChMax, createChPref, createColorElement, createColorTransforms, createColorsDefHdr, createColorsDefHdrLst, createCustomDash, createCustomGeometry, createDiagramExtLst, createDiagramRelIds, createDiagramSp3d, createDiagramStyle, createDiagramTxPr, createEffectClrLst, createEffectDag, createEffectList, createExtentionList, createFillClrLst, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefHdr, createLayoutDefHdrLst, createLinClrLst, createLineEnd, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createPatternFill, createPictureLocking, createPresLayoutVars, createPresetColor, createPresetShadowEffect, createReflectionEffect, createRgbColor, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createStyleDefHdr, createStyleDefHdrLst, createStyleLbl, createSystemColor, createTableStyle, createTableStyleList, createTileInfo, createTransform2D, createTransformation, createTxEffectClrLst, createTxFillClrLst, createTxLinClrLst, customGeometryDesc, diagramExtLstDesc, diagramRelIdsDesc, diagramStyleDesc, effectListDesc, extractBlipFillMedia, fillDesc, getColorDescriptor, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupTransform2DDesc, hslColorDesc, outlineDesc, patternFillDesc, pictureLockingDesc, presLayoutVarsDesc, presetColorDesc, presetGeometryDesc, rgbColorDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, solidFillDesc, sourceRectangleDesc, stretchDesc, stringifyAdjustmentValues, stringifyPresetGeometry, stringifyStretch, systemColorDesc, tileDesc, transform2DDesc };
1
+ import { $ as createLinClrLst, $a as SchemeColor, $n as calculateEffectExtent, $t as TableStyleListOptions, A as rgbColorDesc, Aa as GradientFillOptions, An as stringifyAdjustmentValues, Ar as createCustomDash, At as PresLayoutVarsOptions, B as createDiagramTxPr, Ba as TileAlignment, Bn as LightRigOptions, Bt as GraphicFrameLockingOptions, C as fillDesc, Ca as createNoFill, Cn as PathCommand, Cr as createOutline, Ct as AnimOneOptions, D as hslColorDesc, Da as GradientStopOptions, Dn as PresetGeometryOptions, Dr as LineEndWidth, Dt as HierBranchOptions, E as getColorDescriptor, Ea as FillOptions, En as createCustomGeometry, Er as LineEndType, Et as ChPrefOptions, F as DiagramExtLstOptions, Fa as PathShadeType, Fn as BevelPresetType, Ft as createChMax, G as DiagramStyleLblOptions, Ga as BlipEffectsOptions, Gn as createScene3D, Gt as createGroupLocking, H as createDiagramRelIds, Ha as createTileInfo, Hn as Scene3DOptions, Ht as PictureLockingOptions, I as DiagramExtensionOptions, Ia as RelativeRect, In as createBevel, It as createChPref, J as HueDirection, Ja as createColorElement, Jn as EffectDagOptions, Jt as OnOffStyleType, K as DiagramStyleOptions, Ka as createBlipEffects, Kn as createSoftEdgeEffect, Kt as createPictureLocking, L as DiagramTextPropsOptions, La as TileFlipMode, Ln as createBottomBevel, Lt as createHierBranch, M as schemeColorDesc, Ma as GradientStop, Mn as Shape3DOptions, Mt as createAdjLst, N as solidFillDesc, Na as LinearShadeOptions, Nn as createShape3D, Nt as createAnimLvl, O as parseColorChoice, Oa as buildFill, On as stringifyPresetGeometry, Or as createLineEnd, Ot as HierBranchStyle, P as systemColorDesc, Pa as PathShadeOptions, Pn as BevelOptions, Pt as createAnimOne, Q as createFillClrLst, Qa as createSystemColor, Qn as EffectListOptions, Qt as TablePartStyleOptions, R as createDiagramExtLst, Ra as createGradientFill, Rn as BackdropOptions, Rt as createOrgChart, S as outlineDesc, Sa as createPatternFill, Sn as GeomRect, Sr as PresetDash, St as AnimLvlOptions, T as patternFillDesc, Ta as BlipFillMediaData, Tn as PathOptions, Tr as LineEndOptions, Tt as ChMaxOptions, U as ColorListOptions, Ua as SourceRectangleOptions, Un as SphereCoords, Ut as ShapeLockingOptions, V as DiagramRelIdsOptions, Va as TileOptions, Vn as Point3D, Vt as GroupLockingOptions, W as ColorMethod, Wa as createSourceRectangle, Wn as Vector3D, Wt as createGraphicFrameLocking, X as createDiagramStyle, Xa as SystemColor, Xn as BlurEffectOptions, Xt as TableCellBorderOptions, Y as StyleMatrixIndex, Ya as createSolidFill, Yn as createEffectDag, Yt as StyleMatrixReferenceOptions, Z as createEffectClrLst, Za as SystemColorOptions, Zn as EffectExtent, Zt as TableCellStyleOptions, _ as graphicFrameLockingDesc, _n as createBlipFill, _r as LineCap, _t as createStyleDefHdr, a as blipDesc, an as createTableStyleList, ao as createRgbColor, ar as createPresetShadowEffect, at as ColorsDefHdrOptions, b as shapeLockingDesc, ba as PatternFillOptions, bn as ConnectionSite, br as OutlineOptions, bt as AdjOptions, c as stretchDesc, cn as MediaTransformation, co as createPresetColor, cr as createOuterShadowEffect, ct as DiagramNameOptions, d as scene3DDesc, dn as Transform2DOptions, do as ColorTransformOptions, dr as GlowEffectOptions, dt as StyleDefHdrLstOptions, en as TableStyleOptions, eo as SchemeColorOptions, er as createEffectList, et as createStyleLbl, f as shape3DDesc, fn as createGroupTransform2D, fo as createColorTransforms, fr as createGlowEffect, ft as StyleDefHdrOptions, g as presetGeometryDesc, gn as BlipFillOptions, gr as CompoundLine, gt as createLayoutDefHdrLst, h as customGeometryDesc, hn as createExtentionList, hr as createFillOverlayEffect, ht as createLayoutDefHdr, i as presLayoutVarsDesc, in as createTableStyle, io as RgbColorOptions, ir as PresetShadowVal, it as ColorsDefHdrLstOptions, j as scRgbColorDesc, ja as GradientShadeOptions, jn as PresetMaterialType, jt as createAdj, k as presetColorDesc, ka as extractBlipFillMedia, kn as GeometryGuide, kr as DashStop, kt as OrgChartOptions, l as tileDesc, ln as createTransformation, lo as HslColorOptions, lr as InnerShadowEffectOptions, lt as LayoutDefHdrLstOptions, m as transform2DDesc, mn as stringifyStretch, mr as FillOverlayEffectOptions, mt as createColorsDefHdrLst, n as diagramRelIdsDesc, nn as TableTextStyleOptions, no as ScRgbColorOptions, nr as createReflectionEffect, nt as createTxFillClrLst, o as blipFillDesc, on as parseTableStyleList, oo as PresetColor, or as OuterShadowEffectOptions, ot as DiagramCategoryOptions, p as groupTransform2DDesc, pn as createTransform2D, pr as BlendMode, pt as createColorsDefHdr, q as FontCollectionIndex, qa as SolidFillOptions, qn as EffectContainerType, qt as createShapeLocking, r as diagramStyleDesc, rn as ThemeableLineStyleOptions, ro as createScRgbColor, rr as PresetShadowEffectOptions, rt as createTxLinClrLst, s as sourceRectangleDesc, sn as MediaDataTransformation, so as PresetColorOptions, sr as RectAlignment, st as DiagramDescriptionOptions, t as diagramExtLstDesc, tn as TableStyleRegion, to as createSchemeColor, tr as ReflectionEffectOptions, tt as createTxEffectClrLst, u as bevelDesc, un as GroupTransform2DOptions, uo as createHslColor, ur as createInnerShadowEffect, ut as LayoutDefHdrOptions, v as groupLockingDesc, vn as BlipOptions, vr as LineJoin, vt as createStyleDefHdrLst, w as gradientFillDesc, wa as BlipFillConfigOptions, wn as PathFillMode, wr as LineEndLength, wt as AnimOneValue, x as effectListDesc, xa as PresetPattern, xn as CustomGeometryOptions, xr as PenAlignment, xt as AnimLevelValue, y as pictureLockingDesc, ya as createGroupFill, yn as createBlip, yr as OutlineFillProperties, yt as AdjLstOptions, z as createDiagramSp3d, za as createGradientStop, zn as CameraOptions, zt as createPresLayoutVars } from "../index-FByLiyYM.mjs";
2
+ export { type AdjLstOptions, type AdjOptions, AnimLevelValue, type AnimLvlOptions, type AnimOneOptions, AnimOneValue, type BackdropOptions, type BevelOptions, BevelPresetType, BlendMode, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, type CameraOptions, type ChMaxOptions, type ChPrefOptions, type ColorListOptions, ColorMethod, type ColorTransformOptions, type ColorsDefHdrLstOptions, type ColorsDefHdrOptions, CompoundLine, type ConnectionSite, type CustomGeometryOptions, type DashStop, type DiagramCategoryOptions, type DiagramDescriptionOptions, type DiagramExtLstOptions, type DiagramExtensionOptions, type DiagramNameOptions, type DiagramRelIdsOptions, type DiagramStyleLblOptions, type DiagramStyleOptions, type DiagramTextPropsOptions, type EffectContainerType, type EffectDagOptions, type EffectExtent, type EffectListOptions, type FillOptions, type FillOverlayEffectOptions, FontCollectionIndex, type GeomRect, type GeometryGuide, type GlowEffectOptions, type GradientFillOptions, type GradientShadeOptions, type GradientStop, type GradientStopOptions, type GraphicFrameLockingOptions, type GroupLockingOptions, type GroupTransform2DOptions, type HierBranchOptions, HierBranchStyle, type HslColorOptions, HueDirection, type InnerShadowEffectOptions, type LayoutDefHdrLstOptions, type LayoutDefHdrOptions, type LightRigOptions, LineCap, LineEndLength, type LineEndOptions, LineEndType, LineEndWidth, LineJoin, type LinearShadeOptions, type MediaDataTransformation, type MediaTransformation, type OnOffStyleType, type OrgChartOptions, type OuterShadowEffectOptions, type OutlineFillProperties, type OutlineOptions, type PathCommand, type PathFillMode, type PathOptions, type PathShadeOptions, PathShadeType, type PatternFillOptions, PenAlignment, type PictureLockingOptions, type Point3D, type PresLayoutVarsOptions, PresetColor, type PresetColorOptions, PresetDash, type PresetGeometryOptions, PresetMaterialType, PresetPattern, type PresetShadowEffectOptions, PresetShadowVal, RectAlignment, type ReflectionEffectOptions, type RelativeRect, type RgbColorOptions, type ScRgbColorOptions, type Scene3DOptions, SchemeColor, type SchemeColorOptions, type Shape3DOptions, type ShapeLockingOptions, type SolidFillOptions, type SourceRectangleOptions, type SphereCoords, type StyleDefHdrLstOptions, type StyleDefHdrOptions, StyleMatrixIndex, type StyleMatrixReferenceOptions, SystemColor, type SystemColorOptions, type TableCellBorderOptions, type TableCellStyleOptions, type TablePartStyleOptions, type TableStyleListOptions, type TableStyleOptions, type TableStyleRegion, type TableTextStyleOptions, type ThemeableLineStyleOptions, TileAlignment, TileFlipMode, type TileOptions, type Transform2DOptions, type Vector3D, bevelDesc, blipDesc, blipFillDesc, buildFill, calculateEffectExtent, createAdj, createAdjLst, createAnimLvl, createAnimOne, createBevel, createBlip, createBlipEffects, createBlipFill, createBottomBevel, createChMax, createChPref, createColorElement, createColorTransforms, createColorsDefHdr, createColorsDefHdrLst, createCustomDash, createCustomGeometry, createDiagramExtLst, createDiagramRelIds, createDiagramSp3d, createDiagramStyle, createDiagramTxPr, createEffectClrLst, createEffectDag, createEffectList, createExtentionList, createFillClrLst, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefHdr, createLayoutDefHdrLst, createLinClrLst, createLineEnd, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createPatternFill, createPictureLocking, createPresLayoutVars, createPresetColor, createPresetShadowEffect, createReflectionEffect, createRgbColor, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createStyleDefHdr, createStyleDefHdrLst, createStyleLbl, createSystemColor, createTableStyle, createTableStyleList, createTileInfo, createTransform2D, createTransformation, createTxEffectClrLst, createTxFillClrLst, createTxLinClrLst, customGeometryDesc, diagramExtLstDesc, diagramRelIdsDesc, diagramStyleDesc, effectListDesc, extractBlipFillMedia, fillDesc, getColorDescriptor, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupTransform2DDesc, hslColorDesc, outlineDesc, parseColorChoice, parseTableStyleList, patternFillDesc, pictureLockingDesc, presLayoutVarsDesc, presetColorDesc, presetGeometryDesc, rgbColorDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, solidFillDesc, sourceRectangleDesc, stretchDesc, stringifyAdjustmentValues, stringifyPresetGeometry, stringifyStretch, systemColorDesc, tileDesc, transform2DDesc };
@@ -1,2 +1,2 @@
1
- import { $ as systemColorDesc, A as bevelDesc, An as LineCap, Ar as PresetColor, At as createChPref, B as shapeLockingDesc, Bn as createGroupFill, Bt as createTransformation, C as diagramStyleDesc, Cn as RectAlignment, Cr as createSolidFill, Ct as AnimOneValue, D as sourceRectangleDesc, Dn as BlendMode, Dr as createSchemeColor, Dt as createAnimLvl, E as blipFillDesc, En as createGlowEffect, Er as SchemeColor, Et as createAdjLst, F as customGeometryDesc, Fn as LineEndLength, Ft as createGroupLocking, G as patternFillDesc, Gn as createPatternFill, H as outlineDesc, Hn as buildFill, I as presetGeometryDesc, In as LineEndType, It as createPictureLocking, J as presetColorDesc, Jn as createGradientFill, K as getColorDescriptor, Kn as PathShadeType, L as graphicFrameLockingDesc, Ln as LineEndWidth, Lt as createShapeLocking, M as shape3DDesc, Mn as PenAlignment, Mr as createHslColor, Mt as createOrgChart, N as groupTransform2DDesc, Nn as PresetDash, Nr as createColorTransforms, Nt as createPresLayoutVars, O as stretchDesc, On as createFillOverlayEffect, Or as createScRgbColor, Ot as createAnimOne, P as transform2DDesc, Pn as createOutline, Pt as createGraphicFrameLocking, Q as solidFillDesc, R as groupLockingDesc, Rn as createLineEnd, Rt as createTableStyle, S as diagramRelIdsDesc, Sn as createPresetShadowEffect, Sr as createColorElement, St as AnimLevelValue, T as blipDesc, Tn as createInnerShadowEffect, Tr as createSystemColor, Tt as createAdj, U as fillDesc, Un as extractBlipFillMedia, V as effectListDesc, Vn as createNoFill, W as gradientFillDesc, Wn as PresetPattern, X as scRgbColorDesc, Xn as TileAlignment, Y as rgbColorDesc, Yn as createGradientStop, Z as schemeColorDesc, Zn as createTileInfo, _n as calculateEffectExtent, _r as createBlipEffects, _t as createColorsDefHdrLst, an as createBlip, at as FontCollectionIndex, bn as createReflectionEffect, bt as createStyleDefHdr, cn as stringifyPresetGeometry, ct as createDiagramStyle, dn as createShape3D, dt as createLinClrLst, et as createDiagramExtLst, fn as BevelPresetType, ft as createStyleLbl, gn as createEffectDag, gr as createSourceRectangle, gt as createColorsDefHdr, hn as createScene3D, ht as createTxLinClrLst, in as createBlipFill, it as ColorMethod, j as scene3DDesc, jn as LineJoin, jr as createPresetColor, jt as createHierBranch, k as tileDesc, kn as CompoundLine, kr as createRgbColor, kt as createChMax, ln as stringifyAdjustmentValues, lt as createEffectClrLst, mn as createBottomBevel, mt as createTxFillClrLst, nn as createTransform2D, nt as createDiagramTxPr, on as createExtentionList, ot as HueDirection, pn as createBevel, pt as createTxEffectClrLst, q as hslColorDesc, qn as TileFlipMode, rn as stringifyStretch, rt as createDiagramRelIds, sn as createCustomGeometry, st as StyleMatrixIndex, tn as createGroupTransform2D, tt as createDiagramSp3d, un as PresetMaterialType, ut as createFillClrLst, vn as createEffectList, vt as createLayoutDefHdr, w as presLayoutVarsDesc, wn as createOuterShadowEffect, wr as SystemColor, wt as HierBranchStyle, x as diagramExtLstDesc, xn as PresetShadowVal, xt as createStyleDefHdrLst, yn as createSoftEdgeEffect, yt as createLayoutDefHdrLst, z as pictureLockingDesc, zn as createCustomDash, zt as createTableStyleList } from "../src-DPuDEZYF.mjs";
2
- export { AnimLevelValue, AnimOneValue, BevelPresetType, BlendMode, ColorMethod, CompoundLine, FontCollectionIndex, HierBranchStyle, HueDirection, LineCap, LineEndLength, LineEndType, LineEndWidth, LineJoin, PathShadeType, PenAlignment, PresetColor, PresetDash, PresetMaterialType, PresetPattern, PresetShadowVal, RectAlignment, SchemeColor, StyleMatrixIndex, SystemColor, TileAlignment, TileFlipMode, bevelDesc, blipDesc, blipFillDesc, buildFill, calculateEffectExtent, createAdj, createAdjLst, createAnimLvl, createAnimOne, createBevel, createBlip, createBlipEffects, createBlipFill, createBottomBevel, createChMax, createChPref, createColorElement, createColorTransforms, createColorsDefHdr, createColorsDefHdrLst, createCustomDash, createCustomGeometry, createDiagramExtLst, createDiagramRelIds, createDiagramSp3d, createDiagramStyle, createDiagramTxPr, createEffectClrLst, createEffectDag, createEffectList, createExtentionList, createFillClrLst, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefHdr, createLayoutDefHdrLst, createLinClrLst, createLineEnd, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createPatternFill, createPictureLocking, createPresLayoutVars, createPresetColor, createPresetShadowEffect, createReflectionEffect, createRgbColor, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createStyleDefHdr, createStyleDefHdrLst, createStyleLbl, createSystemColor, createTableStyle, createTableStyleList, createTileInfo, createTransform2D, createTransformation, createTxEffectClrLst, createTxFillClrLst, createTxLinClrLst, customGeometryDesc, diagramExtLstDesc, diagramRelIdsDesc, diagramStyleDesc, effectListDesc, extractBlipFillMedia, fillDesc, getColorDescriptor, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupTransform2DDesc, hslColorDesc, outlineDesc, patternFillDesc, pictureLockingDesc, presLayoutVarsDesc, presetColorDesc, presetGeometryDesc, rgbColorDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, solidFillDesc, sourceRectangleDesc, stretchDesc, stringifyAdjustmentValues, stringifyPresetGeometry, stringifyStretch, systemColorDesc, tileDesc, transform2DDesc };
1
+ import { $ as solidFillDesc, $n as createTileInfo, A as bevelDesc, An as createFillOverlayEffect, Ar as createScRgbColor, At as createChMax, B as shapeLockingDesc, Bn as createLineEnd, Bt as createTableStyleList, C as diagramStyleDesc, Cn as PresetShadowVal, Ct as AnimLevelValue, D as sourceRectangleDesc, Dn as createInnerShadowEffect, Dr as createSystemColor, Dt as createAdjLst, E as blipFillDesc, En as createOuterShadowEffect, Er as SystemColor, Et as createAdj, F as customGeometryDesc, Fn as PresetDash, Fr as createColorTransforms, Ft as createGraphicFrameLocking, G as patternFillDesc, Gn as extractBlipFillMedia, H as outlineDesc, Hn as createGroupFill, Ht as createTransformation, I as presetGeometryDesc, In as createOutline, It as createGroupLocking, J as parseColorChoice, Jn as PathShadeType, K as getColorDescriptor, Kn as PresetPattern, L as graphicFrameLockingDesc, Ln as LineEndLength, Lt as createPictureLocking, M as shape3DDesc, Mn as LineCap, Mr as PresetColor, Mt as createHierBranch, N as groupTransform2DDesc, Nn as LineJoin, Nr as createPresetColor, Nt as createOrgChart, O as stretchDesc, On as createGlowEffect, Or as SchemeColor, Ot as createAnimLvl, P as transform2DDesc, Pn as PenAlignment, Pr as createHslColor, Pt as createPresLayoutVars, Q as schemeColorDesc, Qn as TileAlignment, R as groupLockingDesc, Rn as LineEndType, Rt as createShapeLocking, S as diagramRelIdsDesc, Sn as createReflectionEffect, St as createStyleDefHdrLst, T as blipDesc, Tn as RectAlignment, Tr as createSolidFill, Tt as HierBranchStyle, U as fillDesc, Un as createNoFill, V as effectListDesc, Vn as createCustomDash, Vt as parseTableStyleList, W as gradientFillDesc, Wn as buildFill, X as rgbColorDesc, Xn as createGradientFill, Y as presetColorDesc, Yn as TileFlipMode, Z as scRgbColorDesc, Zn as createGradientStop, _n as createScene3D, _t as createColorsDefHdr, an as stringifyStretch, at as ColorMethod, bn as createEffectList, bt as createLayoutDefHdrLst, cn as createExtentionList, ct as StyleMatrixIndex, dn as stringifyAdjustmentValues, dt as createFillClrLst, et as systemColorDesc, fn as PresetMaterialType, ft as createLinClrLst, gn as createBottomBevel, gt as createTxLinClrLst, hn as createBevel, ht as createTxFillClrLst, in as createTransform2D, it as createDiagramRelIds, j as scene3DDesc, jn as CompoundLine, jr as createRgbColor, jt as createChPref, k as tileDesc, kn as BlendMode, kr as createSchemeColor, kt as createAnimOne, ln as createCustomGeometry, lt as createDiagramStyle, mn as BevelPresetType, mt as createTxEffectClrLst, nt as createDiagramSp3d, on as createBlipFill, ot as FontCollectionIndex, pn as createShape3D, pt as createStyleLbl, q as hslColorDesc, qn as createPatternFill, rn as createGroupTransform2D, rt as createDiagramTxPr, sn as createBlip, st as HueDirection, tt as createDiagramExtLst, un as stringifyPresetGeometry, ut as createEffectClrLst, vn as createEffectDag, vr as createSourceRectangle, vt as createColorsDefHdrLst, w as presLayoutVarsDesc, wn as createPresetShadowEffect, wr as createColorElement, wt as AnimOneValue, x as diagramExtLstDesc, xn as createSoftEdgeEffect, xt as createStyleDefHdr, yn as calculateEffectExtent, yr as createBlipEffects, yt as createLayoutDefHdr, z as pictureLockingDesc, zn as LineEndWidth, zt as createTableStyle } from "../src-Bd5Aw7iO.mjs";
2
+ export { AnimLevelValue, AnimOneValue, BevelPresetType, BlendMode, ColorMethod, CompoundLine, FontCollectionIndex, HierBranchStyle, HueDirection, LineCap, LineEndLength, LineEndType, LineEndWidth, LineJoin, PathShadeType, PenAlignment, PresetColor, PresetDash, PresetMaterialType, PresetPattern, PresetShadowVal, RectAlignment, SchemeColor, StyleMatrixIndex, SystemColor, TileAlignment, TileFlipMode, bevelDesc, blipDesc, blipFillDesc, buildFill, calculateEffectExtent, createAdj, createAdjLst, createAnimLvl, createAnimOne, createBevel, createBlip, createBlipEffects, createBlipFill, createBottomBevel, createChMax, createChPref, createColorElement, createColorTransforms, createColorsDefHdr, createColorsDefHdrLst, createCustomDash, createCustomGeometry, createDiagramExtLst, createDiagramRelIds, createDiagramSp3d, createDiagramStyle, createDiagramTxPr, createEffectClrLst, createEffectDag, createEffectList, createExtentionList, createFillClrLst, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefHdr, createLayoutDefHdrLst, createLinClrLst, createLineEnd, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createPatternFill, createPictureLocking, createPresLayoutVars, createPresetColor, createPresetShadowEffect, createReflectionEffect, createRgbColor, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createStyleDefHdr, createStyleDefHdrLst, createStyleLbl, createSystemColor, createTableStyle, createTableStyleList, createTileInfo, createTransform2D, createTransformation, createTxEffectClrLst, createTxFillClrLst, createTxLinClrLst, customGeometryDesc, diagramExtLstDesc, diagramRelIdsDesc, diagramStyleDesc, effectListDesc, extractBlipFillMedia, fillDesc, getColorDescriptor, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupTransform2DDesc, hslColorDesc, outlineDesc, parseColorChoice, parseTableStyleList, patternFillDesc, pictureLockingDesc, presLayoutVarsDesc, presetColorDesc, presetGeometryDesc, rgbColorDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, solidFillDesc, sourceRectangleDesc, stretchDesc, stringifyAdjustmentValues, stringifyPresetGeometry, stringifyStretch, systemColorDesc, tileDesc, transform2DDesc };
@@ -1,4 +1,4 @@
1
- import { m as CustomDescriptor } from "./index-D81RV9Vc.mjs";
1
+ import { c as CustomDescriptor } from "./index-C4r2WLEy.mjs";
2
2
 
3
3
  //#region src/theme/theme-options.d.ts
4
4
  /**
@@ -0,0 +1,73 @@
1
+ import { Element } from "@office-open/xml";
2
+
3
+ //#region src/descriptor/context.d.ts
4
+ /** Context passed during stringify (write path). */
5
+ interface WriteContext {
6
+ /** Register a relationship and return its rId. */
7
+ addRelationship(type: string, target: string, mode?: string): string;
8
+ /** Add a media file and return its reference. */
9
+ addMedia(data: Uint8Array, type: string): string;
10
+ }
11
+ /** Context passed during parse (parse path). */
12
+ interface ReadContext {
13
+ /** Resolve a relationship rId to its target path. */
14
+ resolveRelationship(rId: string): string | undefined;
15
+ /** Get a parsed XML part by path. */
16
+ getPart(path: string): Element | undefined;
17
+ /** Get raw binary data (images, media, etc.) by path. */
18
+ getRaw(path: string): Uint8Array | undefined;
19
+ }
20
+ //#endregion
21
+ //#region src/descriptor/types.d.ts
22
+ /** Custom descriptor — hand-written stringify/parse for an OOXML part. */
23
+ interface CustomDescriptor<T, Ctx = WriteContext> {
24
+ readonly kind: "custom";
25
+ stringify(value: T, ctx: Ctx): string | undefined;
26
+ parse(el: Element, ctx: ReadContext): T;
27
+ }
28
+ /** Alias for "any descriptor" — retained for call-site readability. */
29
+ type Descriptor<T> = CustomDescriptor<T>;
30
+ //#endregion
31
+ //#region src/descriptor/runtime.d.ts
32
+ /**
33
+ * Serialize an Options object to an XML string using its descriptor.
34
+ * Returns `undefined` when an optional element should be omitted.
35
+ */
36
+ declare function stringify$1<T>(desc: CustomDescriptor<T>, value: T, ctx: WriteContext): string | undefined;
37
+ /** Parse an XML Element into an Options object using its descriptor. */
38
+ declare function parse<T>(desc: CustomDescriptor<T>, el: Element, ctx: ReadContext): T;
39
+ //#endregion
40
+ //#region src/descriptor/helpers.d.ts
41
+ /**
42
+ * OOXML-specific encode/decode helpers for descriptors.
43
+ *
44
+ * XML traversal helpers (findChild, etc.) are in @office-open/xml utils.
45
+ * This file only contains OOXML value encoding/decoding.
46
+ *
47
+ * @module
48
+ */
49
+ /** Encode boolean for CT_OnOff: true → omit val, false → "0". */
50
+ declare const boolEncode: (v: boolean | undefined) => string | undefined;
51
+ /** Decode CT_OnOff: absent or "true"/"1" → true, "0"/"false" → false. */
52
+ declare const boolDecode: (raw: string) => boolean;
53
+ /** Create an enum encoder from a JS↔XML mapping. */
54
+ declare const enumEncode: (map: Record<string, string>) => (v: string | undefined) => string | undefined;
55
+ /** Create an enum decoder from a JS↔XML mapping (inverted). */
56
+ declare const enumDecode: (map: Record<string, string>) => (raw: string) => string;
57
+ //#endregion
58
+ //#region src/descriptor/registry.d.ts
59
+ declare class DescriptorRegistry {
60
+ private static readonly _map;
61
+ /** Register a descriptor with its XML tag. */
62
+ static register(tag: string, desc: Descriptor<any>): void;
63
+ /** Look up a descriptor by XML tag. */
64
+ static get(tag: string): Descriptor<any> | undefined;
65
+ /** Get all registered tags. */
66
+ static tags(): ReadonlySet<string>;
67
+ /** Check if a tag is registered. */
68
+ static has(tag: string): boolean;
69
+ /** Get the number of registered descriptors. */
70
+ static get size(): number;
71
+ }
72
+ //#endregion
73
+ export { enumEncode as a, CustomDescriptor as c, WriteContext as d, enumDecode as i, Descriptor as l, boolDecode as n, parse as o, boolEncode as r, stringify$1 as s, DescriptorRegistry as t, ReadContext as u };
@@ -1,4 +1,4 @@
1
- import { m as CustomDescriptor } from "./index-D81RV9Vc.mjs";
1
+ import { c as CustomDescriptor } from "./index-C4r2WLEy.mjs";
2
2
 
3
3
  //#region src/chart/chart-collection.d.ts
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { m as CustomDescriptor } from "./index-D81RV9Vc.mjs";
1
+ import { c as CustomDescriptor, u as ReadContext } from "./index-C4r2WLEy.mjs";
2
2
  import { s as UniversalMeasure } from "./values-Dqj8cbcy.mjs";
3
3
  import { Element } from "@office-open/xml";
4
4
  import { ZipOptions, Zippable, Zippable as Zippable$1, strFromU8 as strFromU8$1, unzipSync as unzipSync$1 } from "fflate";
@@ -3760,7 +3760,7 @@ interface MediaTransformation {
3760
3760
  */
3761
3761
  declare const createTransformation: (options: MediaTransformation) => MediaDataTransformation;
3762
3762
  //#endregion
3763
- //#region src/drawingml/table-style/table-style.d.ts
3763
+ //#region src/drawingml/table-style.d.ts
3764
3764
  type TableStyleRegion = "tblBg" | "wholeTbl" | "band1H" | "band2H" | "band1V" | "band2V" | "lastCol" | "firstCol" | "lastRow" | "seCell" | "swCell" | "firstRow" | "neCell" | "nwCell";
3765
3765
  type OnOffStyleType = "on" | "off" | "def";
3766
3766
  interface TablePartStyleOptions {
@@ -3827,6 +3827,8 @@ interface TableStyleListOptions {
3827
3827
  declare function createTableStyle(opts: TableStyleOptions): string;
3828
3828
  /** Create table style list (CT_TableStyleList) */
3829
3829
  declare function createTableStyleList(opts: TableStyleListOptions): string;
3830
+ /** Parse a:tblStyleLst → TableStyleListOptions (reverse of createTableStyleList). */
3831
+ declare function parseTableStyleList(el: Element): TableStyleListOptions;
3830
3832
  //#endregion
3831
3833
  //#region src/drawingml/locking/locking.d.ts
3832
3834
  interface BaseLockingOptions {
@@ -4269,6 +4271,13 @@ declare const systemColorDesc: CustomDescriptor<SystemColorOptions>;
4269
4271
  declare const presetColorDesc: CustomDescriptor<PresetColorOptions>;
4270
4272
  declare const scRgbColorDesc: CustomDescriptor<ScRgbColorOptions>;
4271
4273
  declare function getColorDescriptor(color: SolidFillOptions): CustomDescriptor<any>;
4274
+ /**
4275
+ * Parse an EG_ColorChoice from an element's direct children. Handles all six
4276
+ * color element kinds (srgbClr/schemeClr/hslClr/sysClr/prstClr/scrgbClr) —
4277
+ * used both by {@link solidFillDesc} (under a:solidFill) and by fill
4278
+ * descriptors reading direct colors under a:gs / a:fgClr / a:bgClr.
4279
+ */
4280
+ declare function parseColorChoice(el: Element, ctx: ReadContext): SolidFillOptions;
4272
4281
  declare const solidFillDesc: CustomDescriptor<SolidFillOptions>;
4273
4282
  //#endregion
4274
4283
  //#region src/drawingml/fill/fill-descriptors.d.ts
@@ -4319,4 +4328,4 @@ declare const diagramStyleDesc: CustomDescriptor<DiagramStyleOptions>;
4319
4328
  declare const presLayoutVarsDesc: CustomDescriptor<PresLayoutVarsOptions>;
4320
4329
  declare const diagramExtLstDesc: CustomDescriptor<DiagramExtLstOptions>;
4321
4330
  //#endregion
4322
- export { createStyleLbl as $, createSchemeColor as $a, zipAndConvert as $i, ReflectionEffectOptions as $n, xsdMaterialType as $r, TableStyleOptions as $t, scRgbColorDesc as A, GradientStop as Aa, convertToEmu as Ai, Shape3DOptions as An, SmartArtRelOptions as Ar, createAdj as At, DiagramRelIdsOptions as B, createTileInfo as Ba, DataType as Bi, Scene3DOptions as Bn, replaceChartPlaceholders as Br, GroupLockingOptions as Bt, fillDesc as C, BlipFillMediaData as Ca, convertEmuToPoints as Ci, PathOptions as Cn, LineEndOptions as Cr, AnimOneValue as Ct, hslColorDesc as D, extractBlipFillMedia as Da, convertPixelsToEmu as Di, GeometryGuide as Dn, DashStop as Dr, HierBranchStyle as Dt, getColorDescriptor as E, buildFill as Ea, convertMillimetersToTwip as Ei, stringifyPresetGeometry as En, createLineEnd as Er, HierBranchOptions as Et, DiagramExtensionOptions as F, TileFlipMode as Fa, compileMapping as Fi, createBottomBevel as Fn, getMediaRefs as Fr, createChPref as Ft, DiagramStyleOptions as G, SolidFillOptions as Ga, ZIP_STORED_LEVEL as Gi, EffectContainerType as Gn, replaceSmartArtPlaceholders as Gr, createPictureLocking as Gt, ColorListOptions as H, createSourceRectangle as Ha, PackerOptions as Hi, Vector3D as Hn, replaceImagePlaceholders as Hr, ShapeLockingOptions as Ht, DiagramTextPropsOptions as I, createGradientFill as Ia, ParsedArchive as Ii, BackdropOptions as In, getReferencedMedia as Ir, createHierBranch as It, StyleMatrixIndex as J, SystemColor as Ja, createPacker as Ji, BlurEffectOptions as Jn, xsdBlendMode as Jr, StyleMatrixReferenceOptions as Jt, FontCollectionIndex as K, createColorElement as Ka, ZipOptions as Ki, EffectDagOptions as Kn, replaceVideoPlaceholders as Kr, createShapeLocking as Kt, createDiagramExtLst as L, createGradientStop as La, parseArchive as Li, CameraOptions as Ln, getVideoRefs as Lr, createOrgChart as Lt, solidFillDesc as M, PathShadeOptions as Ma, convertUniversalMeasureToEmu as Mi, BevelOptions as Mn, collectPlaceholderKeys as Mr, createAnimLvl as Mt, systemColorDesc as N, PathShadeType as Na, convertUniversalMeasureToTwip as Ni, BevelPresetType as Nn, findAndReplaceImagePlaceholders as Nr, createAnimOne as Nt, presetColorDesc as O, GradientFillOptions as Oa, convertPointsToEmu as Oi, stringifyAdjustmentValues as On, createCustomDash as Or, OrgChartOptions as Ot, DiagramExtLstOptions as P, RelativeRect as Pa, parseUniversalMeasure as Pi, createBevel as Pn, formatId as Pr, createChMax as Pt, createLinClrLst as Q, SchemeColorOptions as Qa, unzipSync$1 as Qi, createEffectList as Qn, xsdLineEndSize as Qr, TableStyleListOptions as Qt, createDiagramSp3d as R, TileAlignment as Ra, CompileFn as Ri, LightRigOptions as Rn, hasPlaceholders as Rr, createPresLayoutVars as Rt, outlineDesc as S, BlipFillConfigOptions as Sa, convertEmuToPixels as Si, PathFillMode as Sn, LineEndLength as Sr, AnimOneOptions as St, patternFillDesc as T, GradientStopOptions as Ta, convertInchesToTwip as Ti, PresetGeometryOptions as Tn, LineEndWidth as Tr, ChPrefOptions as Tt, ColorMethod as U, BlipEffectsOptions as Ua, XmlifyedFile as Ui, createScene3D as Un, replaceMediaPlaceholders as Ur, createGraphicFrameLocking as Ut, createDiagramRelIds as V, SourceRectangleOptions as Va, Packer as Vi, SphereCoords as Vn, replaceHyperlinkPlaceholders as Vr, PictureLockingOptions as Vt, DiagramStyleLblOptions as W, createBlipEffects as Wa, ZIP_DEFLATE_LEVEL as Wi, createSoftEdgeEffect as Wn, replaceNumberingPlaceholders as Wr, createGroupLocking as Wt, createEffectClrLst as X, createSystemColor as Xa, strFromU8$1 as Xi, EffectListOptions as Xn, xsdEffectContainer as Xr, TableCellStyleOptions as Xt, createDiagramStyle as Y, SystemColorOptions as Ya, createZipStream as Yi, EffectExtent as Yn, xsdCompoundLine as Yr, TableCellBorderOptions as Yt, createFillClrLst as Z, SchemeColor as Za, toUint8Array as Zi, calculateEffectExtent as Zn, xsdLineCap as Zr, TablePartStyleOptions as Zt, graphicFrameLockingDesc as _, createGroupFill as _a, hashPasswordAgile as _i, createBlip as _n, OutlineFillProperties as _r, createStyleDefHdrLst as _t, blipDesc as a, CoreProperties as aa, xsdStrikeStyle as ai, MediaDataTransformation as an, PresetColorOptions as ao, RectAlignment as ar, DiagramCategoryOptions as at, shapeLockingDesc as b, createPatternFill as ba, PixelPosition as bi, GeomRect as bn, PresetDash as br, AnimLevelValue as bt, stretchDesc as c, parseCorePropsElement as ca, xsdTextCaps as ci, GroupTransform2DOptions as cn, createHslColor as co, createInnerShadowEffect as cr, LayoutDefHdrLstOptions as ct, scene3DDesc as d, createDefault as da, UniqueNumericIdCreator as di, createTransform2D as dn, BlendMode as dr, StyleDefHdrOptions as dt, zipSyncAndConvert as ea, xsdPathFillMode as ei, TableStyleRegion as en, ScRgbColorOptions as eo, createReflectionEffect as er, createTxEffectClrLst as et, shape3DDesc as f, createOverride as fa, hashedId as fi, stringifyStretch as fn, FillOverlayEffectOptions as fr, createColorsDefHdr as ft, presetGeometryDesc as g, APP_PROPS_XML as ga, derivePasswordHash as gi, BlipOptions as gn, LineJoin as gr, createStyleDefHdr as gt, customGeometryDesc as h, TargetModeType as ha, uniqueUuid as hi, createBlipFill as hn, LineCap as hr, createLayoutDefHdrLst as ht, presLayoutVarsDesc as i, convertOutput as ia, xsdRectAlignment as ii, createTableStyleList as in, PresetColor as io, OuterShadowEffectOptions as ir, ColorsDefHdrOptions as it, schemeColorDesc as j, LinearShadeOptions as ja, convertToTwip as ji, createShape3D as jn, addSmartArtRelationships as jr, createAdjLst as jt, rgbColorDesc as k, GradientShadeOptions as ka, convertPositionToEmu as ki, PresetMaterialType as kn, IdFormat as kr, PresLayoutVarsOptions as kt, tileDesc as l, DefaultAttributes as la, xsdUnderlineStyle as li, Transform2DOptions as ln, ColorTransformOptions as lo, GlowEffectOptions as lr, LayoutDefHdrOptions as lt, transform2DDesc as m, Relationships as ma, uniqueNumericIdCreator as mi, BlipFillOptions as mn, CompoundLine as mr, createLayoutDefHdr as mt, diagramRelIdsDesc as n, OutputByType as na, xsdPenAlignment as ni, ThemeableLineStyleOptions as nn, RgbColorOptions as no, PresetShadowVal as nr, createTxLinClrLst as nt, blipFillDesc as o, buildCorePropertiesXml as oa, xsdTextAlign as oi, MediaTransformation as on, createPresetColor as oo, createOuterShadowEffect as or, DiagramDescriptionOptions as ot, groupTransform2DDesc as p, RelationshipType as pa, uniqueId as pi, createExtentionList as pn, createFillOverlayEffect as pr, createColorsDefHdrLst as pt, HueDirection as q, createSolidFill as qa, Zippable$1 as qi, createEffectDag as qn, invertMap as qr, OnOffStyleType as qt, diagramStyleDesc as r, OutputType as ra, xsdPresetShadow as ri, createTableStyle as rn, createRgbColor as ro, createPresetShadowEffect as rr, ColorsDefHdrLstOptions as rt, sourceRectangleDesc as s, buildCorePropertiesXmlString as sa, xsdTextAnchor as si, createTransformation as sn, HslColorOptions as so, InnerShadowEffectOptions as sr, DiagramNameOptions as st, diagramExtLstDesc as t, OoxmlMimeType as ta, xsdPattern as ti, TableTextStyleOptions as tn, createScRgbColor as to, PresetShadowEffectOptions as tr, createTxFillClrLst as tt, bevelDesc as u, OverrideAttributes as ua, xsdVerticalMergeRev as ui, createGroupTransform2D as un, createColorTransforms as uo, createGlowEffect as ur, StyleDefHdrLstOptions as ut, groupLockingDesc as v, PatternFillOptions as va, randomBytes as vi, ConnectionSite as vn, OutlineOptions as vr, AdjLstOptions as vt, gradientFillDesc as w, FillOptions as wa, convertInchesToEmu as wi, createCustomGeometry as wn, LineEndType as wr, ChMaxOptions as wt, effectListDesc as x, createNoFill as xa, convertEmuToInches as xi, PathCommand as xn, createOutline as xr, AnimLvlOptions as xt, pictureLockingDesc as y, PresetPattern as ya, EmuPosition as yi, CustomGeometryOptions as yn, PenAlignment as yr, AdjOptions as yt, createDiagramTxPr as z, TileOptions as za, CompressionOptions as zi, Point3D as zn, replaceAllPlaceholders as zr, GraphicFrameLockingOptions as zt };
4331
+ export { createLinClrLst as $, SchemeColor as $a, toUint8Array as $i, calculateEffectExtent as $n, xsdLineCap as $r, TableStyleListOptions as $t, rgbColorDesc as A, GradientFillOptions as Aa, convertPointsToEmu as Ai, stringifyAdjustmentValues as An, createCustomDash as Ar, PresLayoutVarsOptions as At, createDiagramTxPr as B, TileAlignment as Ba, CompileFn as Bi, LightRigOptions as Bn, hasPlaceholders as Br, GraphicFrameLockingOptions as Bt, fillDesc as C, createNoFill as Ca, convertEmuToInches as Ci, PathCommand as Cn, createOutline as Cr, AnimOneOptions as Ct, hslColorDesc as D, GradientStopOptions as Da, convertInchesToTwip as Di, PresetGeometryOptions as Dn, LineEndWidth as Dr, HierBranchOptions as Dt, getColorDescriptor as E, FillOptions as Ea, convertInchesToEmu as Ei, createCustomGeometry as En, LineEndType as Er, ChPrefOptions as Et, DiagramExtLstOptions as F, PathShadeType as Fa, convertUniversalMeasureToTwip as Fi, BevelPresetType as Fn, findAndReplaceImagePlaceholders as Fr, createChMax as Ft, DiagramStyleLblOptions as G, BlipEffectsOptions as Ga, XmlifyedFile as Gi, createScene3D as Gn, replaceMediaPlaceholders as Gr, createGroupLocking as Gt, createDiagramRelIds as H, createTileInfo as Ha, DataType as Hi, Scene3DOptions as Hn, replaceChartPlaceholders as Hr, PictureLockingOptions as Ht, DiagramExtensionOptions as I, RelativeRect as Ia, parseUniversalMeasure as Ii, createBevel as In, formatId as Ir, createChPref as It, HueDirection as J, createColorElement as Ja, ZipOptions as Ji, EffectDagOptions as Jn, replaceVideoPlaceholders as Jr, OnOffStyleType as Jt, DiagramStyleOptions as K, createBlipEffects as Ka, ZIP_DEFLATE_LEVEL as Ki, createSoftEdgeEffect as Kn, replaceNumberingPlaceholders as Kr, createPictureLocking as Kt, DiagramTextPropsOptions as L, TileFlipMode as La, compileMapping as Li, createBottomBevel as Ln, getMediaRefs as Lr, createHierBranch as Lt, schemeColorDesc as M, GradientStop as Ma, convertToEmu as Mi, Shape3DOptions as Mn, SmartArtRelOptions as Mr, createAdjLst as Mt, solidFillDesc as N, LinearShadeOptions as Na, convertToTwip as Ni, createShape3D as Nn, addSmartArtRelationships as Nr, createAnimLvl as Nt, parseColorChoice as O, buildFill as Oa, convertMillimetersToTwip as Oi, stringifyPresetGeometry as On, createLineEnd as Or, HierBranchStyle as Ot, systemColorDesc as P, PathShadeOptions as Pa, convertUniversalMeasureToEmu as Pi, BevelOptions as Pn, collectPlaceholderKeys as Pr, createAnimOne as Pt, createFillClrLst as Q, createSystemColor as Qa, strFromU8$1 as Qi, EffectListOptions as Qn, xsdEffectContainer as Qr, TablePartStyleOptions as Qt, createDiagramExtLst as R, createGradientFill as Ra, ParsedArchive as Ri, BackdropOptions as Rn, getReferencedMedia as Rr, createOrgChart as Rt, outlineDesc as S, createPatternFill as Sa, PixelPosition as Si, GeomRect as Sn, PresetDash as Sr, AnimLvlOptions as St, patternFillDesc as T, BlipFillMediaData as Ta, convertEmuToPoints as Ti, PathOptions as Tn, LineEndOptions as Tr, ChMaxOptions as Tt, ColorListOptions as U, SourceRectangleOptions as Ua, Packer as Ui, SphereCoords as Un, replaceHyperlinkPlaceholders as Ur, ShapeLockingOptions as Ut, DiagramRelIdsOptions as V, TileOptions as Va, CompressionOptions as Vi, Point3D as Vn, replaceAllPlaceholders as Vr, GroupLockingOptions as Vt, ColorMethod as W, createSourceRectangle as Wa, PackerOptions as Wi, Vector3D as Wn, replaceImagePlaceholders as Wr, createGraphicFrameLocking as Wt, createDiagramStyle as X, SystemColor as Xa, createPacker as Xi, BlurEffectOptions as Xn, xsdBlendMode as Xr, TableCellBorderOptions as Xt, StyleMatrixIndex as Y, createSolidFill as Ya, Zippable$1 as Yi, createEffectDag as Yn, invertMap as Yr, StyleMatrixReferenceOptions as Yt, createEffectClrLst as Z, SystemColorOptions as Za, createZipStream as Zi, EffectExtent as Zn, xsdCompoundLine as Zr, TableCellStyleOptions as Zt, graphicFrameLockingDesc as _, TargetModeType as _a, uniqueUuid as _i, createBlipFill as _n, LineCap as _r, createStyleDefHdr as _t, blipDesc as a, OutputType as aa, xsdPresetShadow as ai, createTableStyleList as an, createRgbColor as ao, createPresetShadowEffect as ar, ColorsDefHdrOptions as at, shapeLockingDesc as b, PatternFillOptions as ba, randomBytes as bi, ConnectionSite as bn, OutlineOptions as br, AdjOptions as bt, stretchDesc as c, buildCorePropertiesXml as ca, xsdTextAlign as ci, MediaTransformation as cn, createPresetColor as co, createOuterShadowEffect as cr, DiagramNameOptions as ct, scene3DDesc as d, DefaultAttributes as da, xsdUnderlineStyle as di, Transform2DOptions as dn, ColorTransformOptions as do, GlowEffectOptions as dr, StyleDefHdrLstOptions as dt, unzipSync$1 as ea, xsdLineEndSize as ei, TableStyleOptions as en, SchemeColorOptions as eo, createEffectList as er, createStyleLbl as et, shape3DDesc as f, OverrideAttributes as fa, xsdVerticalMergeRev as fi, createGroupTransform2D as fn, createColorTransforms as fo, createGlowEffect as fr, StyleDefHdrOptions as ft, presetGeometryDesc as g, Relationships as ga, uniqueNumericIdCreator as gi, BlipFillOptions as gn, CompoundLine as gr, createLayoutDefHdrLst as gt, customGeometryDesc as h, RelationshipType as ha, uniqueId as hi, createExtentionList as hn, createFillOverlayEffect as hr, createLayoutDefHdr as ht, presLayoutVarsDesc as i, OutputByType as ia, xsdPenAlignment as ii, createTableStyle as in, RgbColorOptions as io, PresetShadowVal as ir, ColorsDefHdrLstOptions as it, scRgbColorDesc as j, GradientShadeOptions as ja, convertPositionToEmu as ji, PresetMaterialType as jn, IdFormat as jr, createAdj as jt, presetColorDesc as k, extractBlipFillMedia as ka, convertPixelsToEmu as ki, GeometryGuide as kn, DashStop as kr, OrgChartOptions as kt, tileDesc as l, buildCorePropertiesXmlString as la, xsdTextAnchor as li, createTransformation as ln, HslColorOptions as lo, InnerShadowEffectOptions as lr, LayoutDefHdrLstOptions as lt, transform2DDesc as m, createOverride as ma, hashedId as mi, stringifyStretch as mn, FillOverlayEffectOptions as mr, createColorsDefHdrLst as mt, diagramRelIdsDesc as n, zipSyncAndConvert as na, xsdPathFillMode as ni, TableTextStyleOptions as nn, ScRgbColorOptions as no, createReflectionEffect as nr, createTxFillClrLst as nt, blipFillDesc as o, convertOutput as oa, xsdRectAlignment as oi, parseTableStyleList as on, PresetColor as oo, OuterShadowEffectOptions as or, DiagramCategoryOptions as ot, groupTransform2DDesc as p, createDefault as pa, UniqueNumericIdCreator as pi, createTransform2D as pn, BlendMode as pr, createColorsDefHdr as pt, FontCollectionIndex as q, SolidFillOptions as qa, ZIP_STORED_LEVEL as qi, EffectContainerType as qn, replaceSmartArtPlaceholders as qr, createShapeLocking as qt, diagramStyleDesc as r, OoxmlMimeType as ra, xsdPattern as ri, ThemeableLineStyleOptions as rn, createScRgbColor as ro, PresetShadowEffectOptions as rr, createTxLinClrLst as rt, sourceRectangleDesc as s, CoreProperties as sa, xsdStrikeStyle as si, MediaDataTransformation as sn, PresetColorOptions as so, RectAlignment as sr, DiagramDescriptionOptions as st, diagramExtLstDesc as t, zipAndConvert as ta, xsdMaterialType as ti, TableStyleRegion as tn, createSchemeColor as to, ReflectionEffectOptions as tr, createTxEffectClrLst as tt, bevelDesc as u, parseCorePropsElement as ua, xsdTextCaps as ui, GroupTransform2DOptions as un, createHslColor as uo, createInnerShadowEffect as ur, LayoutDefHdrOptions as ut, groupLockingDesc as v, APP_PROPS_XML as va, derivePasswordHash as vi, BlipOptions as vn, LineJoin as vr, createStyleDefHdrLst as vt, gradientFillDesc as w, BlipFillConfigOptions as wa, convertEmuToPixels as wi, PathFillMode as wn, LineEndLength as wr, AnimOneValue as wt, effectListDesc as x, PresetPattern as xa, EmuPosition as xi, CustomGeometryOptions as xn, PenAlignment as xr, AnimLevelValue as xt, pictureLockingDesc as y, createGroupFill as ya, hashPasswordAgile as yi, createBlip as yn, OutlineFillProperties as yr, AdjLstOptions as yt, createDiagramSp3d as z, createGradientStop as za, parseArchive as zi, CameraOptions as zn, getVideoRefs as zr, createPresLayoutVars as zt };
package/dist/index.d.mts CHANGED
@@ -1,8 +1,8 @@
1
- import { _ as ChartCollection, a as ChartSpaceOptions, c as DataLabelsOptions, d as ErrorBarType, f as ErrorValueType, g as View3DOptions, h as TrendlineType, i as ChartSeriesData, l as ErrorBarDirection, m as TrendlineOptions, n as AxisChartType, o as ChartType, p as TimeUnit, r as BubbleSeriesData, s as DataLabelPosition, t as chartSpaceDesc, u as ErrorBarOptions, v as ChartData } from "./index-xXbaecaB.mjs";
2
- import { _ as TextSpec, a as enumEncode, b as ReadContext, c as DescriptorBuilder, d as ChildSpec, f as ChildrenSpec, g as ElementDescriptor, h as Descriptor, i as enumDecode, l as element, m as CustomDescriptor, n as boolDecode, o as parse, p as ContentSpec, r as boolEncode, s as stringify, t as DescriptorRegistry, u as AttrSpec, v as UnionSpec, x as WriteContext, y as UnionVariant } from "./index-D81RV9Vc.mjs";
3
- import { $ as createStyleLbl, $a as createSchemeColor, $i as zipAndConvert, $n as ReflectionEffectOptions, $r as xsdMaterialType, $t as TableStyleOptions, A as scRgbColorDesc, Aa as GradientStop, Ai as convertToEmu, An as Shape3DOptions, Ar as SmartArtRelOptions, At as createAdj, B as DiagramRelIdsOptions, Ba as createTileInfo, Bi as DataType, Bn as Scene3DOptions, Br as replaceChartPlaceholders, Bt as GroupLockingOptions, C as fillDesc, Ca as BlipFillMediaData, Ci as convertEmuToPoints, Cn as PathOptions, Cr as LineEndOptions, Ct as AnimOneValue, D as hslColorDesc, Da as extractBlipFillMedia, Di as convertPixelsToEmu, Dn as GeometryGuide, Dr as DashStop, Dt as HierBranchStyle, E as getColorDescriptor, Ea as buildFill, Ei as convertMillimetersToTwip, En as stringifyPresetGeometry, Er as createLineEnd, Et as HierBranchOptions, F as DiagramExtensionOptions, Fa as TileFlipMode, Fi as compileMapping, Fn as createBottomBevel, Fr as getMediaRefs, Ft as createChPref, G as DiagramStyleOptions, Ga as SolidFillOptions, Gi as ZIP_STORED_LEVEL, Gn as EffectContainerType, Gr as replaceSmartArtPlaceholders, Gt as createPictureLocking, H as ColorListOptions, Ha as createSourceRectangle, Hi as PackerOptions, Hn as Vector3D, Hr as replaceImagePlaceholders, Ht as ShapeLockingOptions, I as DiagramTextPropsOptions, Ia as createGradientFill, Ii as ParsedArchive, In as BackdropOptions, Ir as getReferencedMedia, It as createHierBranch, J as StyleMatrixIndex, Ja as SystemColor, Ji as createPacker, Jn as BlurEffectOptions, Jr as xsdBlendMode, Jt as StyleMatrixReferenceOptions, K as FontCollectionIndex, Ka as createColorElement, Ki as ZipOptions, Kn as EffectDagOptions, Kr as replaceVideoPlaceholders, Kt as createShapeLocking, L as createDiagramExtLst, La as createGradientStop, Li as parseArchive, Ln as CameraOptions, Lr as getVideoRefs, Lt as createOrgChart, M as solidFillDesc, Ma as PathShadeOptions, Mi as convertUniversalMeasureToEmu, Mn as BevelOptions, Mr as collectPlaceholderKeys, Mt as createAnimLvl, N as systemColorDesc, Na as PathShadeType, Ni as convertUniversalMeasureToTwip, Nn as BevelPresetType, Nr as findAndReplaceImagePlaceholders, Nt as createAnimOne, O as presetColorDesc, Oa as GradientFillOptions, Oi as convertPointsToEmu, On as stringifyAdjustmentValues, Or as createCustomDash, Ot as OrgChartOptions, P as DiagramExtLstOptions, Pa as RelativeRect, Pi as parseUniversalMeasure, Pn as createBevel, Pr as formatId, Pt as createChMax, Q as createLinClrLst, Qa as SchemeColorOptions, Qi as unzipSync, Qn as createEffectList, Qr as xsdLineEndSize, Qt as TableStyleListOptions, R as createDiagramSp3d, Ra as TileAlignment, Ri as CompileFn, Rn as LightRigOptions, Rr as hasPlaceholders, Rt as createPresLayoutVars, S as outlineDesc, Sa as BlipFillConfigOptions, Si as convertEmuToPixels, Sn as PathFillMode, Sr as LineEndLength, St as AnimOneOptions, T as patternFillDesc, Ta as GradientStopOptions, Ti as convertInchesToTwip, Tn as PresetGeometryOptions, Tr as LineEndWidth, Tt as ChPrefOptions, U as ColorMethod, Ua as BlipEffectsOptions, Ui as XmlifyedFile, Un as createScene3D, Ur as replaceMediaPlaceholders, Ut as createGraphicFrameLocking, V as createDiagramRelIds, Va as SourceRectangleOptions, Vi as Packer, Vn as SphereCoords, Vr as replaceHyperlinkPlaceholders, Vt as PictureLockingOptions, W as DiagramStyleLblOptions, Wa as createBlipEffects, Wi as ZIP_DEFLATE_LEVEL, Wn as createSoftEdgeEffect, Wr as replaceNumberingPlaceholders, Wt as createGroupLocking, X as createEffectClrLst, Xa as createSystemColor, Xi as strFromU8, Xn as EffectListOptions, Xr as xsdEffectContainer, Xt as TableCellStyleOptions, Y as createDiagramStyle, Ya as SystemColorOptions, Yi as createZipStream, Yn as EffectExtent, Yr as xsdCompoundLine, Yt as TableCellBorderOptions, Z as createFillClrLst, Za as SchemeColor, Zi as toUint8Array, Zn as calculateEffectExtent, Zr as xsdLineCap, Zt as TablePartStyleOptions, _ as graphicFrameLockingDesc, _a as createGroupFill, _i as hashPasswordAgile, _n as createBlip, _r as OutlineFillProperties, _t as createStyleDefHdrLst, a as blipDesc, aa as CoreProperties, ai as xsdStrikeStyle, an as MediaDataTransformation, ao as PresetColorOptions, ar as RectAlignment, at as DiagramCategoryOptions, b as shapeLockingDesc, ba as createPatternFill, bi as PixelPosition, bn as GeomRect, br as PresetDash, bt as AnimLevelValue, c as stretchDesc, ca as parseCorePropsElement, ci as xsdTextCaps, cn as GroupTransform2DOptions, co as createHslColor, cr as createInnerShadowEffect, ct as LayoutDefHdrLstOptions, d as scene3DDesc, da as createDefault, di as UniqueNumericIdCreator, dn as createTransform2D, dr as BlendMode, dt as StyleDefHdrOptions, ea as zipSyncAndConvert, ei as xsdPathFillMode, en as TableStyleRegion, eo as ScRgbColorOptions, er as createReflectionEffect, et as createTxEffectClrLst, f as shape3DDesc, fa as createOverride, fi as hashedId, fn as stringifyStretch, fr as FillOverlayEffectOptions, ft as createColorsDefHdr, g as presetGeometryDesc, ga as APP_PROPS_XML, gi as derivePasswordHash, gn as BlipOptions, gr as LineJoin, gt as createStyleDefHdr, h as customGeometryDesc, ha as TargetModeType, hi as uniqueUuid, hn as createBlipFill, hr as LineCap, ht as createLayoutDefHdrLst, i as presLayoutVarsDesc, ia as convertOutput, ii as xsdRectAlignment, in as createTableStyleList, io as PresetColor, ir as OuterShadowEffectOptions, it as ColorsDefHdrOptions, j as schemeColorDesc, ja as LinearShadeOptions, ji as convertToTwip, jn as createShape3D, jr as addSmartArtRelationships, jt as createAdjLst, k as rgbColorDesc, ka as GradientShadeOptions, ki as convertPositionToEmu, kn as PresetMaterialType, kr as IdFormat, kt as PresLayoutVarsOptions, l as tileDesc, la as DefaultAttributes, li as xsdUnderlineStyle, ln as Transform2DOptions, lo as ColorTransformOptions, lr as GlowEffectOptions, lt as LayoutDefHdrOptions, m as transform2DDesc, ma as Relationships, mi as uniqueNumericIdCreator, mn as BlipFillOptions, mr as CompoundLine, mt as createLayoutDefHdr, n as diagramRelIdsDesc, na as OutputByType, ni as xsdPenAlignment, nn as ThemeableLineStyleOptions, no as RgbColorOptions, nr as PresetShadowVal, nt as createTxLinClrLst, o as blipFillDesc, oa as buildCorePropertiesXml, oi as xsdTextAlign, on as MediaTransformation, oo as createPresetColor, or as createOuterShadowEffect, ot as DiagramDescriptionOptions, p as groupTransform2DDesc, pa as RelationshipType, pi as uniqueId, pn as createExtentionList, pr as createFillOverlayEffect, pt as createColorsDefHdrLst, q as HueDirection, qa as createSolidFill, qi as Zippable, qn as createEffectDag, qr as invertMap, qt as OnOffStyleType, r as diagramStyleDesc, ra as OutputType, ri as xsdPresetShadow, rn as createTableStyle, ro as createRgbColor, rr as createPresetShadowEffect, rt as ColorsDefHdrLstOptions, s as sourceRectangleDesc, sa as buildCorePropertiesXmlString, si as xsdTextAnchor, sn as createTransformation, so as HslColorOptions, sr as InnerShadowEffectOptions, st as DiagramNameOptions, t as diagramExtLstDesc, ta as OoxmlMimeType, ti as xsdPattern, tn as TableTextStyleOptions, to as createScRgbColor, tr as PresetShadowEffectOptions, tt as createTxFillClrLst, u as bevelDesc, ua as OverrideAttributes, ui as xsdVerticalMergeRev, un as createGroupTransform2D, uo as createColorTransforms, ur as createGlowEffect, ut as StyleDefHdrLstOptions, v as groupLockingDesc, va as PatternFillOptions, vi as randomBytes, vn as ConnectionSite, vr as OutlineOptions, vt as AdjLstOptions, w as gradientFillDesc, wa as FillOptions, wi as convertInchesToEmu, wn as createCustomGeometry, wr as LineEndType, wt as ChMaxOptions, x as effectListDesc, xa as createNoFill, xi as convertEmuToInches, xn as PathCommand, xr as createOutline, xt as AnimLvlOptions, y as pictureLockingDesc, ya as PresetPattern, yi as EmuPosition, yn as CustomGeometryOptions, yr as PenAlignment, yt as AdjOptions, z as createDiagramTxPr, za as TileOptions, zi as CompressionOptions, zn as Point3D, zr as replaceAllPlaceholders, zt as GraphicFrameLockingOptions } from "./index-BqJRDf5H.mjs";
1
+ import { _ as ChartCollection, a as ChartSpaceOptions, c as DataLabelsOptions, d as ErrorBarType, f as ErrorValueType, g as View3DOptions, h as TrendlineType, i as ChartSeriesData, l as ErrorBarDirection, m as TrendlineOptions, n as AxisChartType, o as ChartType, p as TimeUnit, r as BubbleSeriesData, s as DataLabelPosition, t as chartSpaceDesc, u as ErrorBarOptions, v as ChartData } from "./index-DMw7eid7.mjs";
2
+ import { a as enumEncode, c as CustomDescriptor, d as WriteContext, i as enumDecode, l as Descriptor, n as boolDecode, o as parse, r as boolEncode, s as stringify, t as DescriptorRegistry, u as ReadContext } from "./index-C4r2WLEy.mjs";
3
+ import { $ as createLinClrLst, $a as SchemeColor, $i as toUint8Array, $n as calculateEffectExtent, $r as xsdLineCap, $t as TableStyleListOptions, A as rgbColorDesc, Aa as GradientFillOptions, Ai as convertPointsToEmu, An as stringifyAdjustmentValues, Ar as createCustomDash, At as PresLayoutVarsOptions, B as createDiagramTxPr, Ba as TileAlignment, Bi as CompileFn, Bn as LightRigOptions, Br as hasPlaceholders, Bt as GraphicFrameLockingOptions, C as fillDesc, Ca as createNoFill, Ci as convertEmuToInches, Cn as PathCommand, Cr as createOutline, Ct as AnimOneOptions, D as hslColorDesc, Da as GradientStopOptions, Di as convertInchesToTwip, Dn as PresetGeometryOptions, Dr as LineEndWidth, Dt as HierBranchOptions, E as getColorDescriptor, Ea as FillOptions, Ei as convertInchesToEmu, En as createCustomGeometry, Er as LineEndType, Et as ChPrefOptions, F as DiagramExtLstOptions, Fa as PathShadeType, Fi as convertUniversalMeasureToTwip, Fn as BevelPresetType, Fr as findAndReplaceImagePlaceholders, Ft as createChMax, G as DiagramStyleLblOptions, Ga as BlipEffectsOptions, Gi as XmlifyedFile, Gn as createScene3D, Gr as replaceMediaPlaceholders, Gt as createGroupLocking, H as createDiagramRelIds, Ha as createTileInfo, Hi as DataType, Hn as Scene3DOptions, Hr as replaceChartPlaceholders, Ht as PictureLockingOptions, I as DiagramExtensionOptions, Ia as RelativeRect, Ii as parseUniversalMeasure, In as createBevel, Ir as formatId, It as createChPref, J as HueDirection, Ja as createColorElement, Ji as ZipOptions, Jn as EffectDagOptions, Jr as replaceVideoPlaceholders, Jt as OnOffStyleType, K as DiagramStyleOptions, Ka as createBlipEffects, Ki as ZIP_DEFLATE_LEVEL, Kn as createSoftEdgeEffect, Kr as replaceNumberingPlaceholders, Kt as createPictureLocking, L as DiagramTextPropsOptions, La as TileFlipMode, Li as compileMapping, Ln as createBottomBevel, Lr as getMediaRefs, Lt as createHierBranch, M as schemeColorDesc, Ma as GradientStop, Mi as convertToEmu, Mn as Shape3DOptions, Mr as SmartArtRelOptions, Mt as createAdjLst, N as solidFillDesc, Na as LinearShadeOptions, Ni as convertToTwip, Nn as createShape3D, Nr as addSmartArtRelationships, Nt as createAnimLvl, O as parseColorChoice, Oa as buildFill, Oi as convertMillimetersToTwip, On as stringifyPresetGeometry, Or as createLineEnd, Ot as HierBranchStyle, P as systemColorDesc, Pa as PathShadeOptions, Pi as convertUniversalMeasureToEmu, Pn as BevelOptions, Pr as collectPlaceholderKeys, Pt as createAnimOne, Q as createFillClrLst, Qa as createSystemColor, Qi as strFromU8, Qn as EffectListOptions, Qr as xsdEffectContainer, Qt as TablePartStyleOptions, R as createDiagramExtLst, Ra as createGradientFill, Ri as ParsedArchive, Rn as BackdropOptions, Rr as getReferencedMedia, Rt as createOrgChart, S as outlineDesc, Sa as createPatternFill, Si as PixelPosition, Sn as GeomRect, Sr as PresetDash, St as AnimLvlOptions, T as patternFillDesc, Ta as BlipFillMediaData, Ti as convertEmuToPoints, Tn as PathOptions, Tr as LineEndOptions, Tt as ChMaxOptions, U as ColorListOptions, Ua as SourceRectangleOptions, Ui as Packer, Un as SphereCoords, Ur as replaceHyperlinkPlaceholders, Ut as ShapeLockingOptions, V as DiagramRelIdsOptions, Va as TileOptions, Vi as CompressionOptions, Vn as Point3D, Vr as replaceAllPlaceholders, Vt as GroupLockingOptions, W as ColorMethod, Wa as createSourceRectangle, Wi as PackerOptions, Wn as Vector3D, Wr as replaceImagePlaceholders, Wt as createGraphicFrameLocking, X as createDiagramStyle, Xa as SystemColor, Xi as createPacker, Xn as BlurEffectOptions, Xr as xsdBlendMode, Xt as TableCellBorderOptions, Y as StyleMatrixIndex, Ya as createSolidFill, Yi as Zippable, Yn as createEffectDag, Yr as invertMap, Yt as StyleMatrixReferenceOptions, Z as createEffectClrLst, Za as SystemColorOptions, Zi as createZipStream, Zn as EffectExtent, Zr as xsdCompoundLine, Zt as TableCellStyleOptions, _ as graphicFrameLockingDesc, _a as TargetModeType, _i as uniqueUuid, _n as createBlipFill, _r as LineCap, _t as createStyleDefHdr, a as blipDesc, aa as OutputType, ai as xsdPresetShadow, an as createTableStyleList, ao as createRgbColor, ar as createPresetShadowEffect, at as ColorsDefHdrOptions, b as shapeLockingDesc, ba as PatternFillOptions, bi as randomBytes, bn as ConnectionSite, br as OutlineOptions, bt as AdjOptions, c as stretchDesc, ca as buildCorePropertiesXml, ci as xsdTextAlign, cn as MediaTransformation, co as createPresetColor, cr as createOuterShadowEffect, ct as DiagramNameOptions, d as scene3DDesc, da as DefaultAttributes, di as xsdUnderlineStyle, dn as Transform2DOptions, do as ColorTransformOptions, dr as GlowEffectOptions, dt as StyleDefHdrLstOptions, ea as unzipSync, ei as xsdLineEndSize, en as TableStyleOptions, eo as SchemeColorOptions, er as createEffectList, et as createStyleLbl, f as shape3DDesc, fa as OverrideAttributes, fi as xsdVerticalMergeRev, fn as createGroupTransform2D, fo as createColorTransforms, fr as createGlowEffect, ft as StyleDefHdrOptions, g as presetGeometryDesc, ga as Relationships, gi as uniqueNumericIdCreator, gn as BlipFillOptions, gr as CompoundLine, gt as createLayoutDefHdrLst, h as customGeometryDesc, ha as RelationshipType, hi as uniqueId, hn as createExtentionList, hr as createFillOverlayEffect, ht as createLayoutDefHdr, i as presLayoutVarsDesc, ia as OutputByType, ii as xsdPenAlignment, in as createTableStyle, io as RgbColorOptions, ir as PresetShadowVal, it as ColorsDefHdrLstOptions, j as scRgbColorDesc, ja as GradientShadeOptions, ji as convertPositionToEmu, jn as PresetMaterialType, jr as IdFormat, jt as createAdj, k as presetColorDesc, ka as extractBlipFillMedia, ki as convertPixelsToEmu, kn as GeometryGuide, kr as DashStop, kt as OrgChartOptions, l as tileDesc, la as buildCorePropertiesXmlString, li as xsdTextAnchor, ln as createTransformation, lo as HslColorOptions, lr as InnerShadowEffectOptions, lt as LayoutDefHdrLstOptions, m as transform2DDesc, ma as createOverride, mi as hashedId, mn as stringifyStretch, mr as FillOverlayEffectOptions, mt as createColorsDefHdrLst, n as diagramRelIdsDesc, na as zipSyncAndConvert, ni as xsdPathFillMode, nn as TableTextStyleOptions, no as ScRgbColorOptions, nr as createReflectionEffect, nt as createTxFillClrLst, o as blipFillDesc, oa as convertOutput, oi as xsdRectAlignment, on as parseTableStyleList, oo as PresetColor, or as OuterShadowEffectOptions, ot as DiagramCategoryOptions, p as groupTransform2DDesc, pa as createDefault, pi as UniqueNumericIdCreator, pn as createTransform2D, pr as BlendMode, pt as createColorsDefHdr, q as FontCollectionIndex, qa as SolidFillOptions, qi as ZIP_STORED_LEVEL, qn as EffectContainerType, qr as replaceSmartArtPlaceholders, qt as createShapeLocking, r as diagramStyleDesc, ra as OoxmlMimeType, ri as xsdPattern, rn as ThemeableLineStyleOptions, ro as createScRgbColor, rr as PresetShadowEffectOptions, rt as createTxLinClrLst, s as sourceRectangleDesc, sa as CoreProperties, si as xsdStrikeStyle, sn as MediaDataTransformation, so as PresetColorOptions, sr as RectAlignment, st as DiagramDescriptionOptions, t as diagramExtLstDesc, ta as zipAndConvert, ti as xsdMaterialType, tn as TableStyleRegion, to as createSchemeColor, tr as ReflectionEffectOptions, tt as createTxEffectClrLst, u as bevelDesc, ua as parseCorePropsElement, ui as xsdTextCaps, un as GroupTransform2DOptions, uo as createHslColor, ur as createInnerShadowEffect, ut as LayoutDefHdrOptions, v as groupLockingDesc, va as APP_PROPS_XML, vi as derivePasswordHash, vn as BlipOptions, vr as LineJoin, vt as createStyleDefHdrLst, w as gradientFillDesc, wa as BlipFillConfigOptions, wi as convertEmuToPixels, wn as PathFillMode, wr as LineEndLength, wt as AnimOneValue, x as effectListDesc, xa as PresetPattern, xi as EmuPosition, xn as CustomGeometryOptions, xr as PenAlignment, xt as AnimLevelValue, y as pictureLockingDesc, ya as createGroupFill, yi as hashPasswordAgile, yn as createBlip, yr as OutlineFillProperties, yt as AdjLstOptions, z as createDiagramSp3d, za as createGradientStop, zi as parseArchive, zn as CameraOptions, zr as getVideoRefs, zt as createPresLayoutVars } from "./index-FByLiyYM.mjs";
4
4
  import { a as PointPropertySetOptions, c as stringifyDataModel, d as getColorXml, f as getLayoutXml, g as STYLE_CATEGORIES, h as LAYOUT_CATEGORIES, i as SmartArtData, l as stringifyConnection, m as COLOR_CATEGORIES, n as createDataModel, o as stringifyPoint, p as getStyleXml, r as SmartArtCollection, s as stringifyTransPoint, t as TreeNode, u as DEFAULT_DRAWING_XML } from "./index-eu1aFQCm.mjs";
5
5
  import { _ as PPTX_NS, a as getFirstLevelElements, c as TokenNotFoundError, d as createTraverser, f as RenderedParagraphNode, g as DOCX_NS, h as createReplacer, i as createTextElementContents, l as createSplitInject, m as ReplacerConfig, n as getNextRelationshipIndex, o as patchSpaceAttribute, p as createRunRenderer, r as appendContentType, s as toJson, t as appendRelationship, u as createTokenReplacer, v as XmlNamespaceConfig } from "./index-DmPBJwSk.mjs";
6
- import { a as ColorSchemeOptions, i as createThemeXml, n as DEFAULT_COLORS, o as FontSchemeOptions, r as buildThemeXml, s as ThemeOptions, t as themeDesc } from "./index-BKotL3AP.mjs";
6
+ import { a as ColorSchemeOptions, i as createThemeXml, n as DEFAULT_COLORS, o as FontSchemeOptions, r as buildThemeXml, s as ThemeOptions, t as themeDesc } from "./index-4hjRdzMU.mjs";
7
7
  import { C as uCharHexNumber, S as twipsMeasureValue, T as unsignedDecimalNumber, _ as pointMeasureValue, a as ThemeColor, b as signedHpsMeasureValue, c as dateTimeValue, d as hexBinary, f as hexColorValue, g as percentageValue, h as measurementOrPercentValue, i as RelativeMeasure, l as decimalNumber, m as longHexNumber, n as PositivePercentage, o as ThemeFont, p as hpsMeasureValue, r as PositiveUniversalMeasure, s as UniversalMeasure, t as Percentage, u as eighthPointMeasureValue, v as positiveUniversalMeasureValue, w as universalMeasureValue, x as signedTwipsMeasureValue, y as shortHexNumber } from "./values-Dqj8cbcy.mjs";
8
- export { APP_PROPS_XML, type AdjLstOptions, type AdjOptions, AnimLevelValue, type AnimLvlOptions, type AnimOneOptions, AnimOneValue, type AttrSpec, AxisChartType, type BackdropOptions, type BevelOptions, BevelPresetType, BlendMode, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, BubbleSeriesData, COLOR_CATEGORIES, type CameraOptions, type ChMaxOptions, type ChPrefOptions, ChartCollection, ChartData, ChartSeriesData, ChartSpaceOptions, ChartType, type ChildSpec, type ChildrenSpec, type ColorListOptions, ColorMethod, type ColorSchemeOptions, type ColorTransformOptions, type ColorsDefHdrLstOptions, type ColorsDefHdrOptions, type CompileFn, CompoundLine, type CompressionOptions, type ConnectionSite, type ContentSpec, type CoreProperties, type CustomDescriptor, type CustomGeometryOptions, DEFAULT_COLORS, DEFAULT_DRAWING_XML, DOCX_NS, type DashStop, DataLabelPosition, DataLabelsOptions, type DataType, type DefaultAttributes, type Descriptor, DescriptorBuilder, DescriptorRegistry, type DiagramCategoryOptions, type DiagramDescriptionOptions, type DiagramExtLstOptions, type DiagramExtensionOptions, type DiagramNameOptions, type DiagramRelIdsOptions, type DiagramStyleLblOptions, type DiagramStyleOptions, type DiagramTextPropsOptions, type EffectContainerType, type EffectDagOptions, type EffectExtent, type EffectListOptions, type ElementDescriptor, EmuPosition, ErrorBarDirection, ErrorBarOptions, ErrorBarType, ErrorValueType, type FillOptions, type FillOverlayEffectOptions, FontCollectionIndex, type FontSchemeOptions, type GeomRect, type GeometryGuide, type GlowEffectOptions, type GradientFillOptions, type GradientShadeOptions, type GradientStop, type GradientStopOptions, type GraphicFrameLockingOptions, type GroupLockingOptions, type GroupTransform2DOptions, type HierBranchOptions, HierBranchStyle, type HslColorOptions, HueDirection, IdFormat, type InnerShadowEffectOptions, LAYOUT_CATEGORIES, type LayoutDefHdrLstOptions, type LayoutDefHdrOptions, type LightRigOptions, LineCap, LineEndLength, type LineEndOptions, LineEndType, LineEndWidth, LineJoin, type LinearShadeOptions, type MediaDataTransformation, type MediaTransformation, type OnOffStyleType, OoxmlMimeType, type OrgChartOptions, type OuterShadowEffectOptions, type OutlineFillProperties, type OutlineOptions, type OutputByType, type OutputType, type OverrideAttributes, PPTX_NS, type Packer, type PackerOptions, ParsedArchive, type PathCommand, type PathFillMode, type PathOptions, type PathShadeOptions, PathShadeType, type PatternFillOptions, PenAlignment, Percentage, type PictureLockingOptions, PixelPosition, type Point3D, PointPropertySetOptions, PositivePercentage, PositiveUniversalMeasure, type PresLayoutVarsOptions, PresetColor, type PresetColorOptions, PresetDash, type PresetGeometryOptions, PresetMaterialType, PresetPattern, type PresetShadowEffectOptions, PresetShadowVal, type ReadContext, RectAlignment, type ReflectionEffectOptions, type RelationshipType, Relationships, RelativeMeasure, type RelativeRect, type RenderedParagraphNode, type ReplacerConfig, type RgbColorOptions, STYLE_CATEGORIES, type ScRgbColorOptions, type Scene3DOptions, SchemeColor, type SchemeColorOptions, type Shape3DOptions, type ShapeLockingOptions, SmartArtCollection, SmartArtData, SmartArtRelOptions, type SolidFillOptions, type SourceRectangleOptions, type SphereCoords, type StyleDefHdrLstOptions, type StyleDefHdrOptions, StyleMatrixIndex, type StyleMatrixReferenceOptions, SystemColor, type SystemColorOptions, type TableCellBorderOptions, type TableCellStyleOptions, type TablePartStyleOptions, type TableStyleListOptions, type TableStyleOptions, type TableStyleRegion, type TableTextStyleOptions, TargetModeType, type TextSpec, ThemeColor, ThemeFont, type ThemeOptions, type ThemeableLineStyleOptions, TileAlignment, TileFlipMode, type TileOptions, TimeUnit, TokenNotFoundError, type Transform2DOptions, TreeNode, TrendlineOptions, TrendlineType, type UnionSpec, type UnionVariant, UniqueNumericIdCreator, UniversalMeasure, type Vector3D, View3DOptions, type WriteContext, type XmlNamespaceConfig, type XmlifyedFile, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, type ZipOptions, type Zippable, addSmartArtRelationships, appendContentType, appendRelationship, bevelDesc, blipDesc, blipFillDesc, boolDecode, boolEncode, buildCorePropertiesXml, buildCorePropertiesXmlString, buildFill, buildThemeXml, calculateEffectExtent, chartSpaceDesc, collectPlaceholderKeys, compileMapping, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertPixelsToEmu, convertPointsToEmu, convertPositionToEmu, convertToEmu, convertToTwip, convertUniversalMeasureToEmu, convertUniversalMeasureToTwip, createAdj, createAdjLst, createAnimLvl, createAnimOne, createBevel, createBlip, createBlipEffects, createBlipFill, createBottomBevel, createChMax, createChPref, createColorElement, createColorTransforms, createColorsDefHdr, createColorsDefHdrLst, createCustomDash, createCustomGeometry, createDataModel, createDefault, createDiagramExtLst, createDiagramRelIds, createDiagramSp3d, createDiagramStyle, createDiagramTxPr, createEffectClrLst, createEffectDag, createEffectList, createExtentionList, createFillClrLst, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefHdr, createLayoutDefHdrLst, createLinClrLst, createLineEnd, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createOverride, createPacker, createPatternFill, createPictureLocking, createPresLayoutVars, createPresetColor, createPresetShadowEffect, createReflectionEffect, createReplacer, createRgbColor, createRunRenderer, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createSplitInject, createStyleDefHdr, createStyleDefHdrLst, createStyleLbl, createSystemColor, createTableStyle, createTableStyleList, createTextElementContents, createThemeXml, createTileInfo, createTokenReplacer, createTransform2D, createTransformation, createTraverser, createTxEffectClrLst, createTxFillClrLst, createTxLinClrLst, createZipStream, customGeometryDesc, dateTimeValue, decimalNumber, derivePasswordHash, diagramExtLstDesc, diagramRelIdsDesc, diagramStyleDesc, effectListDesc, eighthPointMeasureValue, element, enumDecode, enumEncode, extractBlipFillMedia, fillDesc, findAndReplaceImagePlaceholders, formatId, getColorDescriptor, getColorXml, getFirstLevelElements, getLayoutXml, getMediaRefs, getNextRelationshipIndex, getReferencedMedia, getStyleXml, getVideoRefs, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupTransform2DDesc, hasPlaceholders, hashPasswordAgile, hashedId, hexBinary, hexColorValue, hpsMeasureValue, hslColorDesc, invertMap, longHexNumber, measurementOrPercentValue, outlineDesc, parse, parseArchive, parseCorePropsElement, parseUniversalMeasure, patchSpaceAttribute, patternFillDesc, percentageValue, pictureLockingDesc, pointMeasureValue, positiveUniversalMeasureValue, presLayoutVarsDesc, presetColorDesc, presetGeometryDesc, randomBytes, replaceAllPlaceholders, replaceChartPlaceholders, replaceHyperlinkPlaceholders, replaceImagePlaceholders, replaceMediaPlaceholders, replaceNumberingPlaceholders, replaceSmartArtPlaceholders, replaceVideoPlaceholders, rgbColorDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, solidFillDesc, sourceRectangleDesc, strFromU8, stretchDesc, stringify, stringifyAdjustmentValues, stringifyConnection, stringifyDataModel, stringifyPoint, stringifyPresetGeometry, stringifyStretch, stringifyTransPoint, systemColorDesc, themeDesc, tileDesc, toJson, toUint8Array, transform2DDesc, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber, unzipSync, xsdBlendMode, xsdCompoundLine, xsdEffectContainer, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdPathFillMode, xsdPattern, xsdPenAlignment, xsdPresetShadow, xsdRectAlignment, xsdStrikeStyle, xsdTextAlign, xsdTextAnchor, xsdTextCaps, xsdUnderlineStyle, xsdVerticalMergeRev, zipAndConvert, zipSyncAndConvert };
8
+ export { APP_PROPS_XML, type AdjLstOptions, type AdjOptions, AnimLevelValue, type AnimLvlOptions, type AnimOneOptions, AnimOneValue, AxisChartType, type BackdropOptions, type BevelOptions, BevelPresetType, BlendMode, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, BubbleSeriesData, COLOR_CATEGORIES, type CameraOptions, type ChMaxOptions, type ChPrefOptions, ChartCollection, ChartData, ChartSeriesData, ChartSpaceOptions, ChartType, type ColorListOptions, ColorMethod, type ColorSchemeOptions, type ColorTransformOptions, type ColorsDefHdrLstOptions, type ColorsDefHdrOptions, type CompileFn, CompoundLine, type CompressionOptions, type ConnectionSite, type CoreProperties, type CustomDescriptor, type CustomGeometryOptions, DEFAULT_COLORS, DEFAULT_DRAWING_XML, DOCX_NS, type DashStop, DataLabelPosition, DataLabelsOptions, type DataType, type DefaultAttributes, type Descriptor, DescriptorRegistry, type DiagramCategoryOptions, type DiagramDescriptionOptions, type DiagramExtLstOptions, type DiagramExtensionOptions, type DiagramNameOptions, type DiagramRelIdsOptions, type DiagramStyleLblOptions, type DiagramStyleOptions, type DiagramTextPropsOptions, type EffectContainerType, type EffectDagOptions, type EffectExtent, type EffectListOptions, EmuPosition, ErrorBarDirection, ErrorBarOptions, ErrorBarType, ErrorValueType, type FillOptions, type FillOverlayEffectOptions, FontCollectionIndex, type FontSchemeOptions, type GeomRect, type GeometryGuide, type GlowEffectOptions, type GradientFillOptions, type GradientShadeOptions, type GradientStop, type GradientStopOptions, type GraphicFrameLockingOptions, type GroupLockingOptions, type GroupTransform2DOptions, type HierBranchOptions, HierBranchStyle, type HslColorOptions, HueDirection, IdFormat, type InnerShadowEffectOptions, LAYOUT_CATEGORIES, type LayoutDefHdrLstOptions, type LayoutDefHdrOptions, type LightRigOptions, LineCap, LineEndLength, type LineEndOptions, LineEndType, LineEndWidth, LineJoin, type LinearShadeOptions, type MediaDataTransformation, type MediaTransformation, type OnOffStyleType, OoxmlMimeType, type OrgChartOptions, type OuterShadowEffectOptions, type OutlineFillProperties, type OutlineOptions, type OutputByType, type OutputType, type OverrideAttributes, PPTX_NS, type Packer, type PackerOptions, ParsedArchive, type PathCommand, type PathFillMode, type PathOptions, type PathShadeOptions, PathShadeType, type PatternFillOptions, PenAlignment, Percentage, type PictureLockingOptions, PixelPosition, type Point3D, PointPropertySetOptions, PositivePercentage, PositiveUniversalMeasure, type PresLayoutVarsOptions, PresetColor, type PresetColorOptions, PresetDash, type PresetGeometryOptions, PresetMaterialType, PresetPattern, type PresetShadowEffectOptions, PresetShadowVal, type ReadContext, RectAlignment, type ReflectionEffectOptions, type RelationshipType, Relationships, RelativeMeasure, type RelativeRect, type RenderedParagraphNode, type ReplacerConfig, type RgbColorOptions, STYLE_CATEGORIES, type ScRgbColorOptions, type Scene3DOptions, SchemeColor, type SchemeColorOptions, type Shape3DOptions, type ShapeLockingOptions, SmartArtCollection, SmartArtData, SmartArtRelOptions, type SolidFillOptions, type SourceRectangleOptions, type SphereCoords, type StyleDefHdrLstOptions, type StyleDefHdrOptions, StyleMatrixIndex, type StyleMatrixReferenceOptions, SystemColor, type SystemColorOptions, type TableCellBorderOptions, type TableCellStyleOptions, type TablePartStyleOptions, type TableStyleListOptions, type TableStyleOptions, type TableStyleRegion, type TableTextStyleOptions, TargetModeType, ThemeColor, ThemeFont, type ThemeOptions, type ThemeableLineStyleOptions, TileAlignment, TileFlipMode, type TileOptions, TimeUnit, TokenNotFoundError, type Transform2DOptions, TreeNode, TrendlineOptions, TrendlineType, UniqueNumericIdCreator, UniversalMeasure, type Vector3D, View3DOptions, type WriteContext, type XmlNamespaceConfig, type XmlifyedFile, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, type ZipOptions, type Zippable, addSmartArtRelationships, appendContentType, appendRelationship, bevelDesc, blipDesc, blipFillDesc, boolDecode, boolEncode, buildCorePropertiesXml, buildCorePropertiesXmlString, buildFill, buildThemeXml, calculateEffectExtent, chartSpaceDesc, collectPlaceholderKeys, compileMapping, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertPixelsToEmu, convertPointsToEmu, convertPositionToEmu, convertToEmu, convertToTwip, convertUniversalMeasureToEmu, convertUniversalMeasureToTwip, createAdj, createAdjLst, createAnimLvl, createAnimOne, createBevel, createBlip, createBlipEffects, createBlipFill, createBottomBevel, createChMax, createChPref, createColorElement, createColorTransforms, createColorsDefHdr, createColorsDefHdrLst, createCustomDash, createCustomGeometry, createDataModel, createDefault, createDiagramExtLst, createDiagramRelIds, createDiagramSp3d, createDiagramStyle, createDiagramTxPr, createEffectClrLst, createEffectDag, createEffectList, createExtentionList, createFillClrLst, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefHdr, createLayoutDefHdrLst, createLinClrLst, createLineEnd, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createOverride, createPacker, createPatternFill, createPictureLocking, createPresLayoutVars, createPresetColor, createPresetShadowEffect, createReflectionEffect, createReplacer, createRgbColor, createRunRenderer, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createSplitInject, createStyleDefHdr, createStyleDefHdrLst, createStyleLbl, createSystemColor, createTableStyle, createTableStyleList, createTextElementContents, createThemeXml, createTileInfo, createTokenReplacer, createTransform2D, createTransformation, createTraverser, createTxEffectClrLst, createTxFillClrLst, createTxLinClrLst, createZipStream, customGeometryDesc, dateTimeValue, decimalNumber, derivePasswordHash, diagramExtLstDesc, diagramRelIdsDesc, diagramStyleDesc, effectListDesc, eighthPointMeasureValue, enumDecode, enumEncode, extractBlipFillMedia, fillDesc, findAndReplaceImagePlaceholders, formatId, getColorDescriptor, getColorXml, getFirstLevelElements, getLayoutXml, getMediaRefs, getNextRelationshipIndex, getReferencedMedia, getStyleXml, getVideoRefs, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupTransform2DDesc, hasPlaceholders, hashPasswordAgile, hashedId, hexBinary, hexColorValue, hpsMeasureValue, hslColorDesc, invertMap, longHexNumber, measurementOrPercentValue, outlineDesc, parse, parseArchive, parseColorChoice, parseCorePropsElement, parseTableStyleList, parseUniversalMeasure, patchSpaceAttribute, patternFillDesc, percentageValue, pictureLockingDesc, pointMeasureValue, positiveUniversalMeasureValue, presLayoutVarsDesc, presetColorDesc, presetGeometryDesc, randomBytes, replaceAllPlaceholders, replaceChartPlaceholders, replaceHyperlinkPlaceholders, replaceImagePlaceholders, replaceMediaPlaceholders, replaceNumberingPlaceholders, replaceSmartArtPlaceholders, replaceVideoPlaceholders, rgbColorDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, solidFillDesc, sourceRectangleDesc, strFromU8, stretchDesc, stringify, stringifyAdjustmentValues, stringifyConnection, stringifyDataModel, stringifyPoint, stringifyPresetGeometry, stringifyStretch, stringifyTransPoint, systemColorDesc, themeDesc, tileDesc, toJson, toUint8Array, transform2DDesc, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber, unzipSync, xsdBlendMode, xsdCompoundLine, xsdEffectContainer, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdPathFillMode, xsdPattern, xsdPenAlignment, xsdPresetShadow, xsdRectAlignment, xsdStrikeStyle, xsdTextAlign, xsdTextAnchor, xsdTextCaps, xsdUnderlineStyle, xsdVerticalMergeRev, zipAndConvert, zipSyncAndConvert };
package/dist/index.mjs CHANGED
@@ -1,8 +1,8 @@
1
- import { $ as systemColorDesc, $n as xsdBlendMode, $r as TargetModeType, $t as convertUniversalMeasureToTwip, A as bevelDesc, An as LineCap, Ar as PresetColor, At as createChPref, B as shapeLockingDesc, Bn as createGroupFill, Br as strFromU8, Bt as createTransformation, C as diagramStyleDesc, Cn as RectAlignment, Cr as createSolidFill, Ct as AnimOneValue, D as sourceRectangleDesc, Dn as BlendMode, Dr as createSchemeColor, Dt as createAnimLvl, E as blipFillDesc, En as createGlowEffect, Er as SchemeColor, Et as createAdjLst, F as customGeometryDesc, Fn as LineEndLength, Fr as parseArchive, Ft as createGroupLocking, G as patternFillDesc, Gn as createPatternFill, Gr as OoxmlMimeType, Gt as convertInchesToTwip, H as outlineDesc, Hn as buildFill, Hr as unzipSync, Ht as convertEmuToPixels, I as presetGeometryDesc, In as LineEndType, Ir as ZIP_DEFLATE_LEVEL, It as createPictureLocking, J as presetColorDesc, Jn as createGradientFill, Jr as buildCorePropertiesXmlString, Jt as convertPointsToEmu, K as getColorDescriptor, Kn as PathShadeType, Kr as convertOutput, Kt as convertMillimetersToTwip, L as graphicFrameLockingDesc, Ln as LineEndWidth, Lr as ZIP_STORED_LEVEL, Lt as createShapeLocking, M as shape3DDesc, Mn as PenAlignment, Mr as createHslColor, Mt as createOrgChart, N as groupTransform2DDesc, Nn as PresetDash, Nr as createColorTransforms, Nt as createPresLayoutVars, O as stretchDesc, On as createFillOverlayEffect, Or as createScRgbColor, Ot as createAnimOne, P as transform2DDesc, Pn as createOutline, Pr as ParsedArchive, Pt as createGraphicFrameLocking, Q as solidFillDesc, Qn as invertMap, Qr as Relationships, Qt as convertUniversalMeasureToEmu, R as groupLockingDesc, Rn as createLineEnd, Rr as createPacker, Rt as createTableStyle, S as diagramRelIdsDesc, Sn as createPresetShadowEffect, Sr as createColorElement, St as AnimLevelValue, T as blipDesc, Tn as createInnerShadowEffect, Tr as createSystemColor, Tt as createAdj, U as fillDesc, Un as extractBlipFillMedia, Ur as zipAndConvert, Ut as convertEmuToPoints, V as effectListDesc, Vn as createNoFill, Vr as toUint8Array, Vt as convertEmuToInches, W as gradientFillDesc, Wn as PresetPattern, Wr as zipSyncAndConvert, Wt as convertInchesToEmu, X as scRgbColorDesc, Xn as TileAlignment, Xr as createDefault, Xt as convertToEmu, Y as rgbColorDesc, Yn as createGradientStop, Yr as parseCorePropsElement, Yt as convertPositionToEmu, Z as schemeColorDesc, Zn as createTileInfo, Zr as createOverride, Zt as convertToTwip, _ as derivePasswordHash, _n as calculateEffectExtent, _r as createBlipEffects, _t as createColorsDefHdrLst, a as getMediaRefs, an as createBlip, ar as xsdPathFillMode, at as FontCollectionIndex, b as compileMapping, bn as createReflectionEffect, br as uniqueNumericIdCreator, bt as createStyleDefHdr, c as hasPlaceholders, cn as stringifyPresetGeometry, cr as xsdPresetShadow, ct as createDiagramStyle, d as replaceHyperlinkPlaceholders, dn as createShape3D, dr as xsdTextAlign, dt as createLinClrLst, ei as APP_PROPS_XML, en as parseUniversalMeasure, er as xsdCompoundLine, et as createDiagramExtLst, f as replaceImagePlaceholders, fn as BevelPresetType, fr as xsdTextAnchor, ft as createStyleLbl, g as replaceVideoPlaceholders, gn as createEffectDag, gr as createSourceRectangle, gt as createColorsDefHdr, h as replaceSmartArtPlaceholders, hn as createScene3D, hr as xsdVerticalMergeRev, ht as createTxLinClrLst, i as formatId, in as createBlipFill, ir as xsdMaterialType, it as ColorMethod, j as scene3DDesc, jn as LineJoin, jr as createPresetColor, jt as createHierBranch, k as tileDesc, kn as CompoundLine, kr as createRgbColor, kt as createChMax, l as replaceAllPlaceholders, ln as stringifyAdjustmentValues, lr as xsdRectAlignment, lt as createEffectClrLst, m as replaceNumberingPlaceholders, mn as createBottomBevel, mr as xsdUnderlineStyle, mt as createTxFillClrLst, n as collectPlaceholderKeys, nn as createTransform2D, nr as xsdLineCap, nt as createDiagramTxPr, o as getReferencedMedia, on as createExtentionList, or as xsdPattern, ot as HueDirection, p as replaceMediaPlaceholders, pn as createBevel, pr as xsdTextCaps, pt as createTxEffectClrLst, q as hslColorDesc, qn as TileFlipMode, qr as buildCorePropertiesXml, qt as convertPixelsToEmu, r as findAndReplaceImagePlaceholders, rn as stringifyStretch, rr as xsdLineEndSize, rt as createDiagramRelIds, s as getVideoRefs, sn as createCustomGeometry, sr as xsdPenAlignment, st as StyleMatrixIndex, t as addSmartArtRelationships, tn as createGroupTransform2D, tr as xsdEffectContainer, tt as createDiagramSp3d, u as replaceChartPlaceholders, un as PresetMaterialType, ur as xsdStrikeStyle, ut as createFillClrLst, v as hashPasswordAgile, vn as createEffectList, vr as hashedId, vt as createLayoutDefHdr, w as presLayoutVarsDesc, wn as createOuterShadowEffect, wr as SystemColor, wt as HierBranchStyle, x as diagramExtLstDesc, xn as PresetShadowVal, xr as uniqueUuid, xt as createStyleDefHdrLst, y as randomBytes, yn as createSoftEdgeEffect, yr as uniqueId, yt as createLayoutDefHdrLst, z as pictureLockingDesc, zn as createCustomDash, zr as createZipStream, zt as createTableStyleList } from "./src-DPuDEZYF.mjs";
1
+ import { $ as solidFillDesc, $n as createTileInfo, $r as createOverride, $t as convertToTwip, A as bevelDesc, An as createFillOverlayEffect, Ar as createScRgbColor, At as createChMax, B as shapeLockingDesc, Bn as createLineEnd, Br as createPacker, Bt as createTableStyleList, C as diagramStyleDesc, Cn as PresetShadowVal, Cr as uniqueUuid, Ct as AnimLevelValue, D as sourceRectangleDesc, Dn as createInnerShadowEffect, Dr as createSystemColor, Dt as createAdjLst, E as blipFillDesc, En as createOuterShadowEffect, Er as SystemColor, Et as createAdj, F as customGeometryDesc, Fn as PresetDash, Fr as createColorTransforms, Ft as createGraphicFrameLocking, G as patternFillDesc, Gn as extractBlipFillMedia, Gr as zipAndConvert, Gt as convertEmuToPoints, H as outlineDesc, Hn as createGroupFill, Hr as strFromU8, Ht as createTransformation, I as presetGeometryDesc, In as createOutline, Ir as ParsedArchive, It as createGroupLocking, J as parseColorChoice, Jn as PathShadeType, Jr as convertOutput, Jt as convertMillimetersToTwip, K as getColorDescriptor, Kn as PresetPattern, Kr as zipSyncAndConvert, Kt as convertInchesToEmu, L as graphicFrameLockingDesc, Ln as LineEndLength, Lr as parseArchive, Lt as createPictureLocking, M as shape3DDesc, Mn as LineCap, Mr as PresetColor, Mt as createHierBranch, N as groupTransform2DDesc, Nn as LineJoin, Nr as createPresetColor, Nt as createOrgChart, O as stretchDesc, On as createGlowEffect, Or as SchemeColor, Ot as createAnimLvl, P as transform2DDesc, Pn as PenAlignment, Pr as createHslColor, Pt as createPresLayoutVars, Q as schemeColorDesc, Qn as TileAlignment, Qr as createDefault, Qt as convertToEmu, R as groupLockingDesc, Rn as LineEndType, Rr as ZIP_DEFLATE_LEVEL, Rt as createShapeLocking, S as diagramRelIdsDesc, Sn as createReflectionEffect, Sr as uniqueNumericIdCreator, St as createStyleDefHdrLst, T as blipDesc, Tn as RectAlignment, Tr as createSolidFill, Tt as HierBranchStyle, U as fillDesc, Un as createNoFill, Ur as toUint8Array, Ut as convertEmuToInches, V as effectListDesc, Vn as createCustomDash, Vr as createZipStream, Vt as parseTableStyleList, W as gradientFillDesc, Wn as buildFill, Wr as unzipSync, Wt as convertEmuToPixels, X as rgbColorDesc, Xn as createGradientFill, Xr as buildCorePropertiesXmlString, Xt as convertPointsToEmu, Y as presetColorDesc, Yn as TileFlipMode, Yr as buildCorePropertiesXml, Yt as convertPixelsToEmu, Z as scRgbColorDesc, Zn as createGradientStop, Zr as parseCorePropsElement, Zt as convertPositionToEmu, _ as derivePasswordHash, _n as createScene3D, _r as xsdVerticalMergeRev, _t as createColorsDefHdr, a as getMediaRefs, an as stringifyStretch, ar as xsdLineEndSize, at as ColorMethod, b as compileMapping, bn as createEffectList, br as hashedId, bt as createLayoutDefHdrLst, c as hasPlaceholders, cn as createExtentionList, cr as xsdPattern, ct as StyleMatrixIndex, d as replaceHyperlinkPlaceholders, dn as stringifyAdjustmentValues, dr as xsdRectAlignment, dt as createFillClrLst, ei as Relationships, en as convertUniversalMeasureToEmu, er as invertMap, et as systemColorDesc, f as replaceImagePlaceholders, fn as PresetMaterialType, fr as xsdStrikeStyle, ft as createLinClrLst, g as replaceVideoPlaceholders, gn as createBottomBevel, gr as xsdUnderlineStyle, gt as createTxLinClrLst, h as replaceSmartArtPlaceholders, hn as createBevel, hr as xsdTextCaps, ht as createTxFillClrLst, i as formatId, in as createTransform2D, ir as xsdLineCap, it as createDiagramRelIds, j as scene3DDesc, jn as CompoundLine, jr as createRgbColor, jt as createChPref, k as tileDesc, kn as BlendMode, kr as createSchemeColor, kt as createAnimOne, l as replaceAllPlaceholders, ln as createCustomGeometry, lr as xsdPenAlignment, lt as createDiagramStyle, m as replaceNumberingPlaceholders, mn as BevelPresetType, mr as xsdTextAnchor, mt as createTxEffectClrLst, n as collectPlaceholderKeys, ni as APP_PROPS_XML, nn as parseUniversalMeasure, nr as xsdCompoundLine, nt as createDiagramSp3d, o as getReferencedMedia, on as createBlipFill, or as xsdMaterialType, ot as FontCollectionIndex, p as replaceMediaPlaceholders, pn as createShape3D, pr as xsdTextAlign, pt as createStyleLbl, q as hslColorDesc, qn as createPatternFill, qr as OoxmlMimeType, qt as convertInchesToTwip, r as findAndReplaceImagePlaceholders, rn as createGroupTransform2D, rr as xsdEffectContainer, rt as createDiagramTxPr, s as getVideoRefs, sn as createBlip, sr as xsdPathFillMode, st as HueDirection, t as addSmartArtRelationships, ti as TargetModeType, tn as convertUniversalMeasureToTwip, tr as xsdBlendMode, tt as createDiagramExtLst, u as replaceChartPlaceholders, un as stringifyPresetGeometry, ur as xsdPresetShadow, ut as createEffectClrLst, v as hashPasswordAgile, vn as createEffectDag, vr as createSourceRectangle, vt as createColorsDefHdrLst, w as presLayoutVarsDesc, wn as createPresetShadowEffect, wr as createColorElement, wt as AnimOneValue, x as diagramExtLstDesc, xn as createSoftEdgeEffect, xr as uniqueId, xt as createStyleDefHdr, y as randomBytes, yn as calculateEffectExtent, yr as createBlipEffects, yt as createLayoutDefHdr, z as pictureLockingDesc, zn as LineEndWidth, zr as ZIP_STORED_LEVEL, zt as createTableStyle } from "./src-Bd5Aw7iO.mjs";
2
2
  import { a as stringifyDataModel, c as getColorXml, d as COLOR_CATEGORIES, f as LAYOUT_CATEGORIES, i as stringifyTransPoint, l as getLayoutXml, n as SmartArtCollection, o as stringifyConnection, p as STYLE_CATEGORIES, r as stringifyPoint, s as DEFAULT_DRAWING_XML, t as createDataModel, u as getStyleXml } from "./smartart-DCY-Vdv7.mjs";
3
- import { a as TimeUnit, c as ChartCollection, i as ErrorValueType, n as ErrorBarDirection, o as TrendlineType, r as ErrorBarType, s as chartSpaceDesc, t as DataLabelPosition } from "./chart-DNpai28f.mjs";
4
- import { a as enumEncode, c as DescriptorBuilder, i as enumDecode, l as element, n as boolDecode, o as parse, r as boolEncode, s as stringify, t as DescriptorRegistry } from "./descriptor-57JUzfpG.mjs";
3
+ import { a as TimeUnit, c as ChartCollection, i as ErrorValueType, n as ErrorBarDirection, o as TrendlineType, r as ErrorBarType, s as chartSpaceDesc, t as DataLabelPosition } from "./chart-DwE8FCFk.mjs";
4
+ import { a as enumEncode, i as enumDecode, n as boolDecode, o as parse, r as boolEncode, s as stringify, t as DescriptorRegistry } from "./descriptor-DcQm32dg.mjs";
5
5
  import { a as createTraverser, c as TokenNotFoundError, d as getFirstLevelElements, f as patchSpaceAttribute, h as PPTX_NS, i as createReplacer, l as createSplitInject, m as DOCX_NS, n as getNextRelationshipIndex, o as createRunRenderer, p as toJson, r as appendContentType, s as createTokenReplacer, t as appendRelationship, u as createTextElementContents } from "./patch-ilNZTQmG.mjs";
6
6
  import { i as DEFAULT_COLORS, n as createThemeXml, r as buildThemeXml, t as themeDesc } from "./theme-CiNzdl-9.mjs";
7
7
  import { _ as twipsMeasureValue, a as eighthPointMeasureValue, b as unsignedDecimalNumber, c as hpsMeasureValue, d as percentageValue, f as pointMeasureValue, g as signedTwipsMeasureValue, h as signedHpsMeasureValue, i as decimalNumber, l as longHexNumber, m as shortHexNumber, n as ThemeFont, o as hexBinary, p as positiveUniversalMeasureValue, r as dateTimeValue, s as hexColorValue, t as ThemeColor, u as measurementOrPercentValue, v as uCharHexNumber, y as universalMeasureValue } from "./values-CVIZcTRw.mjs";
8
- export { APP_PROPS_XML, AnimLevelValue, AnimOneValue, BevelPresetType, BlendMode, COLOR_CATEGORIES, ChartCollection, ColorMethod, CompoundLine, DEFAULT_COLORS, DEFAULT_DRAWING_XML, DOCX_NS, DataLabelPosition, DescriptorBuilder, DescriptorRegistry, ErrorBarDirection, ErrorBarType, ErrorValueType, FontCollectionIndex, HierBranchStyle, HueDirection, LAYOUT_CATEGORIES, LineCap, LineEndLength, LineEndType, LineEndWidth, LineJoin, OoxmlMimeType, PPTX_NS, ParsedArchive, PathShadeType, PenAlignment, PresetColor, PresetDash, PresetMaterialType, PresetPattern, PresetShadowVal, RectAlignment, Relationships, STYLE_CATEGORIES, SchemeColor, SmartArtCollection, StyleMatrixIndex, SystemColor, TargetModeType, ThemeColor, ThemeFont, TileAlignment, TileFlipMode, TimeUnit, TokenNotFoundError, TrendlineType, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, addSmartArtRelationships, appendContentType, appendRelationship, bevelDesc, blipDesc, blipFillDesc, boolDecode, boolEncode, buildCorePropertiesXml, buildCorePropertiesXmlString, buildFill, buildThemeXml, calculateEffectExtent, chartSpaceDesc, collectPlaceholderKeys, compileMapping, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertPixelsToEmu, convertPointsToEmu, convertPositionToEmu, convertToEmu, convertToTwip, convertUniversalMeasureToEmu, convertUniversalMeasureToTwip, createAdj, createAdjLst, createAnimLvl, createAnimOne, createBevel, createBlip, createBlipEffects, createBlipFill, createBottomBevel, createChMax, createChPref, createColorElement, createColorTransforms, createColorsDefHdr, createColorsDefHdrLst, createCustomDash, createCustomGeometry, createDataModel, createDefault, createDiagramExtLst, createDiagramRelIds, createDiagramSp3d, createDiagramStyle, createDiagramTxPr, createEffectClrLst, createEffectDag, createEffectList, createExtentionList, createFillClrLst, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefHdr, createLayoutDefHdrLst, createLinClrLst, createLineEnd, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createOverride, createPacker, createPatternFill, createPictureLocking, createPresLayoutVars, createPresetColor, createPresetShadowEffect, createReflectionEffect, createReplacer, createRgbColor, createRunRenderer, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createSplitInject, createStyleDefHdr, createStyleDefHdrLst, createStyleLbl, createSystemColor, createTableStyle, createTableStyleList, createTextElementContents, createThemeXml, createTileInfo, createTokenReplacer, createTransform2D, createTransformation, createTraverser, createTxEffectClrLst, createTxFillClrLst, createTxLinClrLst, createZipStream, customGeometryDesc, dateTimeValue, decimalNumber, derivePasswordHash, diagramExtLstDesc, diagramRelIdsDesc, diagramStyleDesc, effectListDesc, eighthPointMeasureValue, element, enumDecode, enumEncode, extractBlipFillMedia, fillDesc, findAndReplaceImagePlaceholders, formatId, getColorDescriptor, getColorXml, getFirstLevelElements, getLayoutXml, getMediaRefs, getNextRelationshipIndex, getReferencedMedia, getStyleXml, getVideoRefs, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupTransform2DDesc, hasPlaceholders, hashPasswordAgile, hashedId, hexBinary, hexColorValue, hpsMeasureValue, hslColorDesc, invertMap, longHexNumber, measurementOrPercentValue, outlineDesc, parse, parseArchive, parseCorePropsElement, parseUniversalMeasure, patchSpaceAttribute, patternFillDesc, percentageValue, pictureLockingDesc, pointMeasureValue, positiveUniversalMeasureValue, presLayoutVarsDesc, presetColorDesc, presetGeometryDesc, randomBytes, replaceAllPlaceholders, replaceChartPlaceholders, replaceHyperlinkPlaceholders, replaceImagePlaceholders, replaceMediaPlaceholders, replaceNumberingPlaceholders, replaceSmartArtPlaceholders, replaceVideoPlaceholders, rgbColorDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, solidFillDesc, sourceRectangleDesc, strFromU8, stretchDesc, stringify, stringifyAdjustmentValues, stringifyConnection, stringifyDataModel, stringifyPoint, stringifyPresetGeometry, stringifyStretch, stringifyTransPoint, systemColorDesc, themeDesc, tileDesc, toJson, toUint8Array, transform2DDesc, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber, unzipSync, xsdBlendMode, xsdCompoundLine, xsdEffectContainer, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdPathFillMode, xsdPattern, xsdPenAlignment, xsdPresetShadow, xsdRectAlignment, xsdStrikeStyle, xsdTextAlign, xsdTextAnchor, xsdTextCaps, xsdUnderlineStyle, xsdVerticalMergeRev, zipAndConvert, zipSyncAndConvert };
8
+ export { APP_PROPS_XML, AnimLevelValue, AnimOneValue, BevelPresetType, BlendMode, COLOR_CATEGORIES, ChartCollection, ColorMethod, CompoundLine, DEFAULT_COLORS, DEFAULT_DRAWING_XML, DOCX_NS, DataLabelPosition, DescriptorRegistry, ErrorBarDirection, ErrorBarType, ErrorValueType, FontCollectionIndex, HierBranchStyle, HueDirection, LAYOUT_CATEGORIES, LineCap, LineEndLength, LineEndType, LineEndWidth, LineJoin, OoxmlMimeType, PPTX_NS, ParsedArchive, PathShadeType, PenAlignment, PresetColor, PresetDash, PresetMaterialType, PresetPattern, PresetShadowVal, RectAlignment, Relationships, STYLE_CATEGORIES, SchemeColor, SmartArtCollection, StyleMatrixIndex, SystemColor, TargetModeType, ThemeColor, ThemeFont, TileAlignment, TileFlipMode, TimeUnit, TokenNotFoundError, TrendlineType, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, addSmartArtRelationships, appendContentType, appendRelationship, bevelDesc, blipDesc, blipFillDesc, boolDecode, boolEncode, buildCorePropertiesXml, buildCorePropertiesXmlString, buildFill, buildThemeXml, calculateEffectExtent, chartSpaceDesc, collectPlaceholderKeys, compileMapping, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertPixelsToEmu, convertPointsToEmu, convertPositionToEmu, convertToEmu, convertToTwip, convertUniversalMeasureToEmu, convertUniversalMeasureToTwip, createAdj, createAdjLst, createAnimLvl, createAnimOne, createBevel, createBlip, createBlipEffects, createBlipFill, createBottomBevel, createChMax, createChPref, createColorElement, createColorTransforms, createColorsDefHdr, createColorsDefHdrLst, createCustomDash, createCustomGeometry, createDataModel, createDefault, createDiagramExtLst, createDiagramRelIds, createDiagramSp3d, createDiagramStyle, createDiagramTxPr, createEffectClrLst, createEffectDag, createEffectList, createExtentionList, createFillClrLst, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefHdr, createLayoutDefHdrLst, createLinClrLst, createLineEnd, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createOverride, createPacker, createPatternFill, createPictureLocking, createPresLayoutVars, createPresetColor, createPresetShadowEffect, createReflectionEffect, createReplacer, createRgbColor, createRunRenderer, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createSplitInject, createStyleDefHdr, createStyleDefHdrLst, createStyleLbl, createSystemColor, createTableStyle, createTableStyleList, createTextElementContents, createThemeXml, createTileInfo, createTokenReplacer, createTransform2D, createTransformation, createTraverser, createTxEffectClrLst, createTxFillClrLst, createTxLinClrLst, createZipStream, customGeometryDesc, dateTimeValue, decimalNumber, derivePasswordHash, diagramExtLstDesc, diagramRelIdsDesc, diagramStyleDesc, effectListDesc, eighthPointMeasureValue, enumDecode, enumEncode, extractBlipFillMedia, fillDesc, findAndReplaceImagePlaceholders, formatId, getColorDescriptor, getColorXml, getFirstLevelElements, getLayoutXml, getMediaRefs, getNextRelationshipIndex, getReferencedMedia, getStyleXml, getVideoRefs, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupTransform2DDesc, hasPlaceholders, hashPasswordAgile, hashedId, hexBinary, hexColorValue, hpsMeasureValue, hslColorDesc, invertMap, longHexNumber, measurementOrPercentValue, outlineDesc, parse, parseArchive, parseColorChoice, parseCorePropsElement, parseTableStyleList, parseUniversalMeasure, patchSpaceAttribute, patternFillDesc, percentageValue, pictureLockingDesc, pointMeasureValue, positiveUniversalMeasureValue, presLayoutVarsDesc, presetColorDesc, presetGeometryDesc, randomBytes, replaceAllPlaceholders, replaceChartPlaceholders, replaceHyperlinkPlaceholders, replaceImagePlaceholders, replaceMediaPlaceholders, replaceNumberingPlaceholders, replaceSmartArtPlaceholders, replaceVideoPlaceholders, rgbColorDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, solidFillDesc, sourceRectangleDesc, strFromU8, stretchDesc, stringify, stringifyAdjustmentValues, stringifyConnection, stringifyDataModel, stringifyPoint, stringifyPresetGeometry, stringifyStretch, stringifyTransPoint, systemColorDesc, themeDesc, tileDesc, toJson, toUint8Array, transform2DDesc, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber, unzipSync, xsdBlendMode, xsdCompoundLine, xsdEffectContainer, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdPathFillMode, xsdPattern, xsdPenAlignment, xsdPresetShadow, xsdRectAlignment, xsdStrikeStyle, xsdTextAlign, xsdTextAnchor, xsdTextCaps, xsdUnderlineStyle, xsdVerticalMergeRev, zipAndConvert, zipSyncAndConvert };