Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@office-open/core

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@office-open/core - npm Package Compare versions

Comparing version
0.9.3
to
0.9.4
+371
dist/chart-DwE8FCFk.mjs
import { attr, children, escapeXml, findChild } from "@office-open/xml";
//#region src/chart/chart-collection.ts
var ChartCollection = class {
map;
constructor() {
this.map = /* @__PURE__ */ new Map();
}
addChart(key, chartData) {
this.map.set(key, chartData);
}
get array() {
return [...this.map.values()];
}
};
//#endregion
//#region src/chart/chart-descriptors.ts
/**
* Chart descriptors — CustomDescriptor for c:chartSpace serialization.
*
* @module
*/
const CHART_TYPE_TAGS = {
column: "c:barChart",
bar: "c:barChart",
line: "c:lineChart",
pie: "c:pieChart",
area: "c:areaChart",
scatter: "c:scatterChart",
bubble: "c:bubbleChart",
doughnut: "c:doughnutChart",
radar: "c:radarChart",
stock: "c:stockChart",
surface: "c:surfaceChart"
};
const CHART_TYPE_TAGS_3D = {
column: "c:bar3DChart",
bar: "c:bar3DChart",
line: "c:line3DChart",
pie: "c:pie3DChart",
area: "c:area3DChart"
};
const NO_AXES_TYPES = new Set(["pie", "doughnut"]);
const TAG_TO_CHART_TYPE = {
"c:barChart": { type: "column" },
"c:bar3DChart": {
type: "column",
threeD: true
},
"c:lineChart": { type: "line" },
"c:line3DChart": {
type: "line",
threeD: true
},
"c:pieChart": { type: "pie" },
"c:pie3DChart": {
type: "pie",
threeD: true
},
"c:areaChart": { type: "area" },
"c:area3DChart": {
type: "area",
threeD: true
},
"c:scatterChart": { type: "scatter" },
"c:bubbleChart": { type: "bubble" },
"c:doughnutChart": { type: "doughnut" },
"c:radarChart": { type: "radar" },
"c:stockChart": { type: "stock" },
"c:surfaceChart": { type: "surface" },
"c:surface3DChart": {
type: "surface",
threeD: true
}
};
function attrVal(name, value) {
return `${name}="${escapeXml(String(value))}"`;
}
function emptyEl(tag) {
return `<${tag}/>`;
}
function valEl(tag, value) {
return `<${tag} ${attrVal("val", value)}/>`;
}
function stringifyStrRef(values) {
const pts = values.map((v, i) => `<c:pt idx="${i}"><c:v>${escapeXml(v)}</c:v></c:pt>`).join("");
return `<c:strRef><c:f/><c:strCache><c:ptCount ${attrVal("val", values.length)}/>${pts}</c:strCache></c:strRef>`;
}
function stringifyNumRef(values) {
const pts = values.map((v, i) => `<c:pt idx="${i}"><c:v>${v}</c:v></c:pt>`).join("");
return `<c:numRef><c:f/><c:numCache><c:formatCode>General</c:formatCode><c:ptCount ${attrVal("val", values.length)}/>${pts}</c:numCache></c:numRef>`;
}
function chartTypeHeader(opts) {
const tag = opts.threeD ? CHART_TYPE_TAGS_3D[opts.type] : CHART_TYPE_TAGS[opts.type];
if (!tag) throw new Error(`Unsupported chart type: ${opts.type}`);
const headerParts = [];
switch (opts.type) {
case "column":
case "bar":
headerParts.push(valEl("c:barDir", opts.type === "column" ? "col" : "bar"));
headerParts.push(valEl("c:grouping", "clustered"));
break;
case "line":
case "area":
headerParts.push(valEl("c:grouping", "standard"));
break;
case "scatter":
headerParts.push(valEl("c:scatterStyle", "line"));
break;
case "radar":
headerParts.push(valEl("c:radarStyle", "standard"));
break;
case "pie":
case "doughnut":
case "bubble":
headerParts.push(valEl("c:varyColors", 1));
break;
}
return `<${tag}>${headerParts.join("")}`;
}
function chartTypeFooter(opts) {
const tag = opts.threeD ? CHART_TYPE_TAGS_3D[opts.type] : CHART_TYPE_TAGS[opts.type];
if (NO_AXES_TYPES.has(opts.type)) return `</${tag}>`;
const axIds = [valEl("c:axId", 10), valEl("c:axId", 20)];
if (opts.threeD || opts.type === "surface") axIds.push(valEl("c:axId", 30));
return `${axIds.join("")}</${tag}>`;
}
function stringifySeries(index, series, categories, chartType) {
const parts = [];
parts.push(valEl("c:idx", index));
parts.push(valEl("c:order", index));
parts.push(`<c:tx>${stringifyStrRef([series.name])}</c:tx>`);
parts.push(emptyEl("c:spPr"));
if (chartType === "bubble") {
const bs = series;
parts.push(`<c:xVal>${stringifyNumRef(bs.xValues)}</c:xVal>`);
parts.push(`<c:yVal>${stringifyNumRef(bs.yValues)}</c:yVal>`);
parts.push(`<c:bubbleSize>${stringifyNumRef(bs.bubbleSize)}</c:bubbleSize>`);
} else if (chartType === "scatter") {
const s = series;
parts.push(`<c:xVal>${stringifyStrRef(categories)}</c:xVal>`);
parts.push(`<c:yVal>${stringifyNumRef(s.values)}</c:yVal>`);
} else {
const s = series;
parts.push(`<c:cat>${stringifyStrRef(categories)}</c:cat>`);
parts.push(`<c:val>${stringifyNumRef(s.values)}</c:val>`);
}
return `<c:ser>${parts.join("")}</c:ser>`;
}
function stringifyTitle(title) {
return `<c:title><c:tx><c:rich><a:bodyPr/><a:lstStyle/><a:p><a:r><a:t>${escapeXml(title)}</a:t></a:r></a:p></c:rich></c:tx><c:overlay val="0"/></c:title>`;
}
function stringifyLegend() {
return `<c:legend><c:legendPos val="b"/><c:layout/><c:overlay val="0"/><c:spPr><a:noFill/><a:ln><a:noFill/></a:ln><a:effectLst/></c:spPr><c:txPr><a:bodyPr rot="0" spcFirstLastPara="1" vertOverflow="ellipsis" vert="horz" wrap="square" anchor="ctr" anchorCtr="1"/><a:lstStyle/><a:p><a:pPr><a:defRPr/></a:pPr><a:endParaRPr lang="en-US"/></a:p></c:txPr></c:legend>`;
}
function noFillSpPr() {
return `<c:spPr><a:noFill/><a:ln><a:noFill/></a:ln><a:effectLst/></c:spPr>`;
}
function chartTxPr() {
return `<c:txPr><a:bodyPr/><a:lstStyle/><a:p><a:pPr><a:defRPr/></a:pPr><a:endParaRPr lang="en-US"/></a:p></c:txPr>`;
}
function stringifyAxes(chartType, threeD) {
if (NO_AXES_TYPES.has(chartType)) return "";
const parts = [];
if (chartType === "scatter" || chartType === "bubble") {
parts.push(valAxXml(10, 20));
parts.push(valAxXml(20, 10));
} else if (chartType === "stock" || chartType === "surface") {
parts.push(catAxXml(10, 20));
parts.push(valAxXml(20, 10));
if (chartType === "surface") parts.push(serAxXml(30, 10));
} else {
parts.push(catAxXml(10, 20));
parts.push(valAxXml(20, 10));
if (threeD) parts.push(catAxXml(30, 10));
}
return parts.join("");
}
function catAxXml(axId, crossAx) {
return `<c:catAx><c:axId ${attrVal("val", axId)}/><c:scaling><c:orientation val="minMax"/></c:scaling><c:delete val="0"/><c:axPos val="b"/><c:crossAx ${attrVal("val", crossAx)}/><c:crosses val="autoZero"/><c:auto val="1"/><c:lblOffset val="100"/><c:noMultiLvlLbl val="0"/></c:catAx>`;
}
function valAxXml(axId, crossAx) {
return `<c:valAx><c:axId ${attrVal("val", axId)}/><c:scaling><c:orientation val="minMax"/></c:scaling><c:delete val="0"/><c:axPos val="l"/><c:numFmt formatCode="General" sourceLinked="1"/><c:spPr/><c:crossAx ${attrVal("val", crossAx)}/><c:crosses val="autoZero"/></c:valAx>`;
}
function serAxXml(axId, crossAx) {
return `<c:serAx><c:axId ${attrVal("val", axId)}/><c:scaling><c:orientation val="minMax"/></c:scaling><c:delete val="0"/><c:axPos val="b"/><c:numFmt formatCode="General" sourceLinked="1"/><c:spPr/><c:crossAx ${attrVal("val", crossAx)}/><c:crosses val="autoZero"/><c:tickLblSkip val="1"/></c:serAx>`;
}
function readStrCache(el) {
const strRef = findChild(el, "c:strRef");
if (!strRef) return [];
const strCache = findChild(strRef, "c:strCache");
if (!strCache?.elements) return [];
const result = [];
for (const pt of strCache.elements) if (pt.name === "c:pt" && pt.elements) {
const v = pt.elements.find((c) => c.name === "c:v");
if (v?.text !== void 0) result.push(String(v.text));
}
return result;
}
function readNumCache(el) {
const numRef = findChild(el, "c:numRef");
if (!numRef) return [];
const numCache = findChild(numRef, "c:numCache");
if (!numCache?.elements) return [];
const result = [];
for (const pt of numCache.elements) if (pt.name === "c:pt" && pt.elements) {
const v = pt.elements.find((c) => c.name === "c:v");
if (v?.text !== void 0) result.push(Number(v.text));
}
return result;
}
function readSeriesName(serEl) {
const tx = findChild(serEl, "c:tx");
if (!tx) return "";
return readStrCache(tx)[0] ?? "";
}
function readTitleText(titleEl) {
const tx = findChild(titleEl, "c:tx");
if (!tx?.elements) return void 0;
for (const child of tx.elements) if (child.name === "c:rich" && child.elements) {
for (const sub of child.elements) if (sub.name === "a:p" && sub.elements) {
for (const r of sub.elements) if (r.name === "a:r" && r.elements) {
for (const t of r.elements) if (t.name === "a:t" && t.text !== void 0) return String(t.text);
}
}
}
}
const chartSpaceDesc = {
kind: "custom",
stringify(opts, _ctx) {
const parts = [];
parts.push(`<c:chartSpace xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">`);
parts.push(valEl("c:date1904", 0));
parts.push(valEl("c:lang", "en-US"));
parts.push(valEl("c:roundedCorners", 0));
if (opts.style !== void 0) parts.push(valEl("c:style", opts.style));
parts.push("<c:chart>");
if (opts.title) parts.push(stringifyTitle(opts.title));
parts.push(valEl("c:autoTitleDeleted", 0));
parts.push("<c:plotArea><c:layout/>");
parts.push(chartTypeHeader(opts));
const categories = opts.categories ?? [];
for (let i = 0; i < opts.series.length; i++) parts.push(stringifySeries(i, opts.series[i], categories, opts.type));
parts.push(chartTypeFooter(opts));
parts.push(stringifyAxes(opts.type, opts.threeD));
parts.push("</c:plotArea>");
if (opts.showLegend !== false) parts.push(stringifyLegend());
parts.push("</c:chart>");
parts.push(noFillSpPr());
parts.push(chartTxPr());
parts.push("</c:chartSpace>");
return parts.join("");
},
parse(el, _ctx) {
const result = {};
const styleEl = findChild(el, "c:style");
if (styleEl?.attributes?.["val"] !== void 0) result.style = Number(styleEl.attributes["val"]);
const chart = findChild(el, "c:chart");
if (!chart) return result;
const titleEl = findChild(chart, "c:title");
if (titleEl) {
const title = readTitleText(titleEl);
if (title !== void 0) result.title = title;
}
const plotArea = findChild(chart, "c:plotArea");
if (plotArea?.elements) {
let detectedType;
let threeD = false;
for (const child of plotArea.elements) {
if (!child.name) continue;
const mapping = TAG_TO_CHART_TYPE[child.name];
if (mapping) {
detectedType = mapping.type;
threeD = mapping.threeD ?? false;
if (child.name === "c:barChart" || child.name === "c:bar3DChart") {
const barDir = findChild(child, "c:barDir");
const barDirVal = barDir ? attr(barDir, "val") : void 0;
if (barDirVal === "bar") detectedType = "bar";
else if (barDirVal === "col") detectedType = "column";
}
break;
}
}
if (detectedType) {
result.type = detectedType;
if (threeD) result.threeD = true;
}
const seriesEls = children(plotArea, "c:ser");
if (seriesEls.length > 0) if (detectedType === "bubble") {
const bubbleSeries = [];
for (const serEl of seriesEls) {
const name = readSeriesName(serEl);
const xVal = findChild(serEl, "c:xVal");
const yVal = findChild(serEl, "c:yVal");
const bubbleSize = findChild(serEl, "c:bubbleSize");
bubbleSeries.push({
name,
xValues: xVal ? readNumCache(xVal) : [],
yValues: yVal ? readNumCache(yVal) : [],
bubbleSize: bubbleSize ? readNumCache(bubbleSize) : []
});
}
result.series = bubbleSeries;
} else {
const chartSeries = [];
let categories;
for (const serEl of seriesEls) {
const name = readSeriesName(serEl);
if (!categories) {
const catEl = findChild(serEl, "c:cat") ?? findChild(serEl, "c:xVal");
if (catEl) categories = readStrCache(catEl);
}
const valEl = findChild(serEl, "c:val") ?? findChild(serEl, "c:yVal");
const values = valEl ? readNumCache(valEl) : [];
chartSeries.push({
name,
values
});
}
result.series = chartSeries;
if (categories?.length) result.categories = categories;
}
}
if (!findChild(chart, "c:legend")) result.showLegend = false;
return result;
}
};
//#endregion
//#region src/chart/types.ts
const TrendlineType = {
EXP: "exp",
LINEAR: "linear",
LOG: "log",
MOVING_AVG: "movingAvg",
POLY: "poly",
POWER: "power"
};
const ErrorBarDirection = {
BOTH: "both",
X: "x",
Y: "y"
};
const ErrorBarType = {
BOTH: "both",
MINUS: "minus",
PLUS: "plus"
};
const ErrorValueType = {
CUST: "cust",
FIXED: "fixedVal",
PERCENTAGE: "percentage",
STD_DEV: "stdDev",
STD_ERR: "stdErr"
};
const DataLabelPosition = {
BEST_FIT: "bestFit",
B: "b",
CTRL: "ctr",
IN_BASE: "inBase",
IN_END: "inEnd",
L: "l",
OUT_END: "outEnd",
R: "r",
T: "t"
};
const TimeUnit = {
DAYS: "days",
MONTHS: "months",
YEARS: "years"
};
//#endregion
export { TimeUnit as a, ChartCollection as c, ErrorValueType as i, ErrorBarDirection as n, TrendlineType as o, ErrorBarType as r, chartSpaceDesc as s, DataLabelPosition as t };
//#region src/descriptor/runtime.ts
/**
* Serialize an Options object to an XML string using its descriptor.
* Returns `undefined` when an optional element should be omitted.
*/
function stringify(desc, value, ctx) {
return desc.stringify(value, ctx);
}
/** Parse an XML Element into an Options object using its descriptor. */
function parse(desc, el, ctx) {
return desc.parse(el, ctx);
}
//#endregion
//#region src/descriptor/helpers.ts
/**
* OOXML-specific encode/decode helpers for descriptors.
*
* XML traversal helpers (findChild, etc.) are in @office-open/xml utils.
* This file only contains OOXML value encoding/decoding.
*
* @module
*/
/** Encode boolean for CT_OnOff: true → omit val, false → "0". */
const boolEncode = (v) => {
if (v === void 0) return void 0;
return v ? void 0 : "0";
};
/** Decode CT_OnOff: absent or "true"/"1" → true, "0"/"false" → false. */
const boolDecode = (raw) => raw !== "0" && raw !== "false";
/** Create an enum encoder from a JS↔XML mapping. */
const enumEncode = (map) => (v) => {
if (v === void 0) return void 0;
return map[v] ?? v;
};
/** Create an enum decoder from a JS↔XML mapping (inverted). */
const enumDecode = (map) => {
const inv = invertRecord(map);
return (raw) => inv[raw] ?? raw;
};
function invertRecord(map) {
const result = {};
for (const key of Object.keys(map)) result[map[key]] = key;
return result;
}
//#endregion
//#region src/descriptor/registry.ts
var DescriptorRegistry = class DescriptorRegistry {
static _map = /* @__PURE__ */ new Map();
/** Register a descriptor with its XML tag. */
static register(tag, desc) {
DescriptorRegistry._map.set(tag, desc);
}
/** Look up a descriptor by XML tag. */
static get(tag) {
return DescriptorRegistry._map.get(tag);
}
/** Get all registered tags. */
static tags() {
return new Set(DescriptorRegistry._map.keys());
}
/** Check if a tag is registered. */
static has(tag) {
return DescriptorRegistry._map.has(tag);
}
/** Get the number of registered descriptors. */
static get size() {
return DescriptorRegistry._map.size;
}
};
//#endregion
export { enumEncode as a, enumDecode as i, boolDecode as n, parse as o, boolEncode as r, stringify as s, DescriptorRegistry as t };
import { c as CustomDescriptor } from "./index-C4r2WLEy.mjs";
//#region src/theme/theme-options.d.ts
/**
* Theme options for OOXML documents.
*
* @module
*/
/** Color scheme — 12 theme colors (hex without #). */
interface ColorSchemeOptions {
readonly dark1?: string;
readonly light1?: string;
readonly dark2?: string;
readonly light2?: string;
readonly accent1?: string;
readonly accent2?: string;
readonly accent3?: string;
readonly accent4?: string;
readonly accent5?: string;
readonly accent6?: string;
readonly hyperlink?: string;
readonly followedHyperlink?: string;
}
/** Font scheme — 4 font slots (latin + east-asian for major/minor). */
interface FontSchemeOptions {
readonly majorFont?: string;
readonly minorFont?: string;
readonly majorFontAsian?: string;
readonly minorFontAsian?: string;
}
/** Theme customization options. */
interface ThemeOptions {
readonly name?: string;
readonly colors?: ColorSchemeOptions;
readonly fonts?: FontSchemeOptions;
}
//#endregion
//#region src/theme/default-theme.d.ts
/**
* Generate theme XML string from options.
* Returns cached default when no options provided.
*/
declare function createThemeXml(options?: ThemeOptions): string;
//#endregion
//#region src/theme/build-theme-xml.d.ts
declare function buildThemeXml(options?: ThemeOptions): string;
//#endregion
//#region src/theme/default-colors.d.ts
/** Office 2016+ default theme colors (hex without #). */
declare const DEFAULT_COLORS: Required<ColorSchemeOptions>;
//#endregion
//#region src/theme/theme-descriptors.d.ts
declare const themeDesc: CustomDescriptor<ThemeOptions>;
//#endregion
export { ColorSchemeOptions as a, createThemeXml as i, DEFAULT_COLORS as n, FontSchemeOptions as o, buildThemeXml as r, ThemeOptions as s, themeDesc as t };
import { Element } from "@office-open/xml";
//#region src/descriptor/context.d.ts
/** Context passed during stringify (write path). */
interface WriteContext {
/** Register a relationship and return its rId. */
addRelationship(type: string, target: string, mode?: string): string;
/** Add a media file and return its reference. */
addMedia(data: Uint8Array, type: string): string;
}
/** Context passed during parse (parse path). */
interface ReadContext {
/** Resolve a relationship rId to its target path. */
resolveRelationship(rId: string): string | undefined;
/** Get a parsed XML part by path. */
getPart(path: string): Element | undefined;
/** Get raw binary data (images, media, etc.) by path. */
getRaw(path: string): Uint8Array | undefined;
}
//#endregion
//#region src/descriptor/types.d.ts
/** Custom descriptor — hand-written stringify/parse for an OOXML part. */
interface CustomDescriptor<T, Ctx = WriteContext> {
readonly kind: "custom";
stringify(value: T, ctx: Ctx): string | undefined;
parse(el: Element, ctx: ReadContext): T;
}
/** Alias for "any descriptor" — retained for call-site readability. */
type Descriptor<T> = CustomDescriptor<T>;
//#endregion
//#region src/descriptor/runtime.d.ts
/**
* Serialize an Options object to an XML string using its descriptor.
* Returns `undefined` when an optional element should be omitted.
*/
declare function stringify$1<T>(desc: CustomDescriptor<T>, value: T, ctx: WriteContext): string | undefined;
/** Parse an XML Element into an Options object using its descriptor. */
declare function parse<T>(desc: CustomDescriptor<T>, el: Element, ctx: ReadContext): T;
//#endregion
//#region src/descriptor/helpers.d.ts
/**
* OOXML-specific encode/decode helpers for descriptors.
*
* XML traversal helpers (findChild, etc.) are in @office-open/xml utils.
* This file only contains OOXML value encoding/decoding.
*
* @module
*/
/** Encode boolean for CT_OnOff: true → omit val, false → "0". */
declare const boolEncode: (v: boolean | undefined) => string | undefined;
/** Decode CT_OnOff: absent or "true"/"1" → true, "0"/"false" → false. */
declare const boolDecode: (raw: string) => boolean;
/** Create an enum encoder from a JS↔XML mapping. */
declare const enumEncode: (map: Record<string, string>) => (v: string | undefined) => string | undefined;
/** Create an enum decoder from a JS↔XML mapping (inverted). */
declare const enumDecode: (map: Record<string, string>) => (raw: string) => string;
//#endregion
//#region src/descriptor/registry.d.ts
declare class DescriptorRegistry {
private static readonly _map;
/** Register a descriptor with its XML tag. */
static register(tag: string, desc: Descriptor<any>): void;
/** Look up a descriptor by XML tag. */
static get(tag: string): Descriptor<any> | undefined;
/** Get all registered tags. */
static tags(): ReadonlySet<string>;
/** Check if a tag is registered. */
static has(tag: string): boolean;
/** Get the number of registered descriptors. */
static get size(): number;
}
//#endregion
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 };
import { c as CustomDescriptor } from "./index-C4r2WLEy.mjs";
//#region src/chart/chart-collection.d.ts
/**
* Chart data and collection for document generation.
*
* @module
*/
interface ChartData {
key: string;
chartSpaceXml: string;
}
declare class ChartCollection {
private map;
constructor();
addChart(key: string, chartData: ChartData): void;
get array(): ChartData[];
}
//#endregion
//#region src/chart/types.d.ts
/**
* Chart type definitions — interfaces and constants.
*
* Class implementations have been removed; all chart XML generation
* goes through chart-descriptors.ts (stringify/parse path).
*
* @module
*/
interface BubbleSeriesData {
readonly name: string;
readonly xValues: readonly number[];
readonly yValues: readonly number[];
readonly bubbleSize: readonly number[];
}
declare const TrendlineType: {
readonly EXP: "exp";
readonly LINEAR: "linear";
readonly LOG: "log";
readonly MOVING_AVG: "movingAvg";
readonly POLY: "poly";
readonly POWER: "power";
};
type TrendlineType = (typeof TrendlineType)[keyof typeof TrendlineType];
interface TrendlineOptions {
readonly type?: TrendlineType;
readonly name?: string;
readonly order?: number;
readonly period?: number;
readonly forward?: number;
readonly backward?: number;
readonly intercept?: number;
readonly dispRSqr?: boolean;
readonly dispEq?: boolean;
}
declare const ErrorBarDirection: {
readonly BOTH: "both";
readonly X: "x";
readonly Y: "y";
};
type ErrorBarDirection = (typeof ErrorBarDirection)[keyof typeof ErrorBarDirection];
declare const ErrorBarType: {
readonly BOTH: "both";
readonly MINUS: "minus";
readonly PLUS: "plus";
};
type ErrorBarType = (typeof ErrorBarType)[keyof typeof ErrorBarType];
declare const ErrorValueType: {
readonly CUST: "cust";
readonly FIXED: "fixedVal";
readonly PERCENTAGE: "percentage";
readonly STD_DEV: "stdDev";
readonly STD_ERR: "stdErr";
};
type ErrorValueType = (typeof ErrorValueType)[keyof typeof ErrorValueType];
interface ErrorBarOptions {
readonly direction?: ErrorBarDirection;
readonly barType?: ErrorBarType;
readonly valueType?: ErrorValueType;
readonly value?: number;
}
declare const DataLabelPosition: {
readonly BEST_FIT: "bestFit";
readonly B: "b";
readonly CTRL: "ctr";
readonly IN_BASE: "inBase";
readonly IN_END: "inEnd";
readonly L: "l";
readonly OUT_END: "outEnd";
readonly R: "r";
readonly T: "t";
};
type DataLabelPosition = (typeof DataLabelPosition)[keyof typeof DataLabelPosition];
interface DataLabelsOptions {
readonly position?: DataLabelPosition;
readonly showVal?: boolean;
readonly showCatName?: boolean;
readonly showSerName?: boolean;
readonly showPercent?: boolean;
readonly showBubbleSize?: boolean;
readonly showLeaderLines?: boolean;
}
interface ChartSeriesData {
readonly name: string;
readonly values: readonly number[];
readonly trendlines?: readonly TrendlineOptions[];
readonly errorBars?: ErrorBarOptions;
readonly dataLabels?: DataLabelsOptions;
}
type ChartType = "column" | "bar" | "line" | "pie" | "area" | "scatter" | "bubble" | "doughnut" | "radar" | "stock" | "surface";
type AxisChartType = Exclude<ChartType, "bubble">;
interface ChartSpaceOptions {
readonly title?: string;
readonly type: ChartType;
readonly categories?: readonly string[];
readonly series: readonly ChartSeriesData[] | readonly BubbleSeriesData[];
readonly showLegend?: boolean;
readonly style?: number;
readonly threeD?: boolean;
}
declare const TimeUnit: {
readonly DAYS: "days";
readonly MONTHS: "months";
readonly YEARS: "years";
};
type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
interface View3DOptions {
readonly rotX?: number;
readonly rotY?: number;
readonly depthPercent?: number;
readonly rAngAx?: boolean;
readonly perspective?: number;
}
//#endregion
//#region src/chart/chart-descriptors.d.ts
declare const chartSpaceDesc: CustomDescriptor<ChartSpaceOptions>;
//#endregion
export { ChartCollection as _, ChartSpaceOptions as a, DataLabelsOptions as c, ErrorBarType as d, ErrorValueType as f, View3DOptions as g, TrendlineType as h, ChartSeriesData as i, ErrorBarDirection as l, TrendlineOptions as m, AxisChartType as n, ChartType as o, TimeUnit as p, BubbleSeriesData as r, DataLabelPosition as s, chartSpaceDesc as t, ErrorBarOptions as u, ChartData as v };

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

+1
-1

@@ -1,2 +0,2 @@

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";
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";
export { AxisChartType, BubbleSeriesData, ChartCollection, ChartData, ChartSeriesData, ChartSpaceOptions, ChartType, DataLabelPosition, DataLabelsOptions, ErrorBarDirection, ErrorBarOptions, ErrorBarType, ErrorValueType, TimeUnit, TrendlineOptions, TrendlineType, View3DOptions, chartSpaceDesc };

@@ -1,2 +0,2 @@

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";
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";
export { ChartCollection, DataLabelPosition, ErrorBarDirection, ErrorBarType, ErrorValueType, TimeUnit, TrendlineType, chartSpaceDesc };

@@ -1,2 +0,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";
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 };
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";
export { type CustomDescriptor, type Descriptor, DescriptorRegistry, type ReadContext, type WriteContext, boolDecode, boolEncode, enumDecode, enumEncode, parse, stringify };

@@ -1,2 +0,2 @@

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";
export { DescriptorBuilder, DescriptorRegistry, boolDecode, boolEncode, element, enumDecode, enumEncode, parse, stringify };
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";
export { DescriptorRegistry, boolDecode, boolEncode, enumDecode, enumEncode, parse, stringify };

@@ -1,2 +0,2 @@

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";
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 };
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";
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 +0,2 @@

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";
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 };
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";
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,8 +0,8 @@

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";
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";
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";
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";
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";
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";
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";
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";
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";
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";
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";
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 };
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 };

@@ -1,8 +0,8 @@

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";
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";
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";
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";
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";
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";
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";
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";
import { i as DEFAULT_COLORS, n as createThemeXml, r as buildThemeXml, t as themeDesc } from "./theme-CiNzdl-9.mjs";
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";
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 };
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 };

@@ -1,2 +0,2 @@

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";
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";
export { type ColorSchemeOptions, DEFAULT_COLORS, type FontSchemeOptions, type ThemeOptions, buildThemeXml, createThemeXml, themeDesc };
{
"name": "@office-open/core",
"version": "0.9.3",
"version": "0.9.4",
"description": "Shared OOXML infrastructure — XML components, validators, converters, charts, and SmartArt",

@@ -69,3 +69,3 @@ "keywords": [

"fflate": "0.8.3",
"@office-open/xml": "0.9.3"
"@office-open/xml": "0.9.4"
},

@@ -72,0 +72,0 @@ "scripts": {

@@ -11,3 +11,3 @@ # @office-open/core

- **Descriptor Runtime** — `CustomDescriptor<T>` and `ElementDescriptor<T>` for bidirectional XML stringify/parse
- **Descriptor Runtime** — `CustomDescriptor<T>` for bidirectional XML stringify/parse
- **DrawingML** — Fills, outlines, effects, geometry, text body, scene 3D, and more

@@ -14,0 +14,0 @@ - **Chart Components** — Shared chart types (bar, line, pie, area, scatter) and chart collection

import { children, escapeXml, findChild } from "@office-open/xml";
//#region src/chart/chart-collection.ts
var ChartCollection = class {
map;
constructor() {
this.map = /* @__PURE__ */ new Map();
}
addChart(key, chartData) {
this.map.set(key, chartData);
}
get array() {
return [...this.map.values()];
}
};
//#endregion
//#region src/chart/chart-descriptors.ts
/**
* Chart descriptors — CustomDescriptor for c:chartSpace serialization.
*
* @module
*/
const CHART_TYPE_TAGS = {
column: "c:barChart",
bar: "c:barChart",
line: "c:lineChart",
pie: "c:pieChart",
area: "c:areaChart",
scatter: "c:scatterChart",
bubble: "c:bubbleChart",
doughnut: "c:doughnutChart",
radar: "c:radarChart",
stock: "c:stockChart",
surface: "c:surfaceChart"
};
const CHART_TYPE_TAGS_3D = {
column: "c:bar3DChart",
bar: "c:bar3DChart",
line: "c:line3DChart",
pie: "c:pie3DChart",
area: "c:area3DChart"
};
const NO_AXES_TYPES = new Set(["pie", "doughnut"]);
const TAG_TO_CHART_TYPE = {
"c:barChart": { type: "column" },
"c:bar3DChart": {
type: "column",
threeD: true
},
"c:lineChart": { type: "line" },
"c:line3DChart": {
type: "line",
threeD: true
},
"c:pieChart": { type: "pie" },
"c:pie3DChart": {
type: "pie",
threeD: true
},
"c:areaChart": { type: "area" },
"c:area3DChart": {
type: "area",
threeD: true
},
"c:scatterChart": { type: "scatter" },
"c:bubbleChart": { type: "bubble" },
"c:doughnutChart": { type: "doughnut" },
"c:radarChart": { type: "radar" },
"c:stockChart": { type: "stock" },
"c:surfaceChart": { type: "surface" },
"c:surface3DChart": {
type: "surface",
threeD: true
}
};
function attrVal(name, value) {
return `${name}="${escapeXml(String(value))}"`;
}
function emptyEl(tag) {
return `<${tag}/>`;
}
function valEl(tag, value) {
return `<${tag} ${attrVal("val", value)}/>`;
}
function stringifyStrRef(values) {
const pts = values.map((v, i) => `<c:pt idx="${i}"><c:v>${escapeXml(v)}</c:v></c:pt>`).join("");
return `<c:strRef><c:f/><c:strCache><c:ptCount ${attrVal("val", values.length)}/>${pts}</c:strCache></c:strRef>`;
}
function stringifyNumRef(values) {
const pts = values.map((v, i) => `<c:pt idx="${i}"><c:v>${v}</c:v></c:pt>`).join("");
return `<c:numRef><c:f/><c:numCache><c:formatCode>General</c:formatCode><c:ptCount ${attrVal("val", values.length)}/>${pts}</c:numCache></c:numRef>`;
}
function chartTypeHeader(opts) {
const tag = opts.threeD ? CHART_TYPE_TAGS_3D[opts.type] : CHART_TYPE_TAGS[opts.type];
if (!tag) throw new Error(`Unsupported chart type: ${opts.type}`);
const headerParts = [];
switch (opts.type) {
case "column":
case "bar":
headerParts.push(valEl("c:barDir", opts.type === "column" ? "col" : "bar"));
headerParts.push(valEl("c:grouping", "clustered"));
break;
case "line":
case "area":
headerParts.push(valEl("c:grouping", "standard"));
break;
case "scatter":
headerParts.push(valEl("c:scatterStyle", "line"));
break;
case "radar":
headerParts.push(valEl("c:radarStyle", "standard"));
break;
case "pie":
case "doughnut":
case "bubble":
headerParts.push(valEl("c:varyColors", 1));
break;
}
return `<${tag}>${headerParts.join("")}`;
}
function chartTypeFooter(opts) {
const tag = opts.threeD ? CHART_TYPE_TAGS_3D[opts.type] : CHART_TYPE_TAGS[opts.type];
if (NO_AXES_TYPES.has(opts.type)) return `</${tag}>`;
const axIds = [valEl("c:axId", 10), valEl("c:axId", 20)];
if (opts.threeD || opts.type === "surface") axIds.push(valEl("c:axId", 30));
return `${axIds.join("")}</${tag}>`;
}
function stringifySeries(index, series, categories, chartType) {
const parts = [];
parts.push(valEl("c:idx", index));
parts.push(valEl("c:order", index));
parts.push(`<c:tx>${stringifyStrRef([series.name])}</c:tx>`);
parts.push(emptyEl("c:spPr"));
if (chartType === "bubble") {
const bs = series;
parts.push(`<c:xVal>${stringifyNumRef(bs.xValues)}</c:xVal>`);
parts.push(`<c:yVal>${stringifyNumRef(bs.yValues)}</c:yVal>`);
parts.push(`<c:bubbleSize>${stringifyNumRef(bs.bubbleSize)}</c:bubbleSize>`);
} else if (chartType === "scatter") {
const s = series;
parts.push(`<c:xVal>${stringifyStrRef(categories)}</c:xVal>`);
parts.push(`<c:yVal>${stringifyNumRef(s.values)}</c:yVal>`);
} else {
const s = series;
parts.push(`<c:cat>${stringifyStrRef(categories)}</c:cat>`);
parts.push(`<c:val>${stringifyNumRef(s.values)}</c:val>`);
}
return `<c:ser>${parts.join("")}</c:ser>`;
}
function stringifyTitle(title) {
return `<c:title><c:tx><c:rich><a:bodyPr/><a:lstStyle/><a:p><a:r><a:t>${escapeXml(title)}</a:t></a:r></a:p></c:rich></c:tx><c:overlay val="0"/></c:title>`;
}
function stringifyLegend() {
return `<c:legend><c:legendPos val="b"/><c:layout/><c:overlay val="0"/><c:spPr><a:noFill/><a:ln><a:noFill/></a:ln><a:effectLst/></c:spPr><c:txPr><a:bodyPr rot="0" spcFirstLastPara="1" vertOverflow="ellipsis" vert="horz" wrap="square" anchor="ctr" anchorCtr="1"/><a:lstStyle/><a:p><a:pPr><a:defRPr/></a:pPr><a:endParaRPr lang="en-US"/></a:p></c:txPr></c:legend>`;
}
function noFillSpPr() {
return `<c:spPr><a:noFill/><a:ln><a:noFill/></a:ln><a:effectLst/></c:spPr>`;
}
function chartTxPr() {
return `<c:txPr><a:bodyPr/><a:lstStyle/><a:p><a:pPr><a:defRPr/></a:pPr><a:endParaRPr lang="en-US"/></a:p></c:txPr>`;
}
function stringifyAxes(chartType, threeD) {
if (NO_AXES_TYPES.has(chartType)) return "";
const parts = [];
if (chartType === "scatter" || chartType === "bubble") {
parts.push(valAxXml(10, 20));
parts.push(valAxXml(20, 10));
} else if (chartType === "stock" || chartType === "surface") {
parts.push(catAxXml(10, 20));
parts.push(valAxXml(20, 10));
if (chartType === "surface") parts.push(serAxXml(30, 10));
} else {
parts.push(catAxXml(10, 20));
parts.push(valAxXml(20, 10));
if (threeD) parts.push(catAxXml(30, 10));
}
return parts.join("");
}
function catAxXml(axId, crossAx) {
return `<c:catAx><c:axId ${attrVal("val", axId)}/><c:scaling><c:orientation val="minMax"/></c:scaling><c:delete val="0"/><c:axPos val="b"/><c:crossAx ${attrVal("val", crossAx)}/><c:crosses val="autoZero"/><c:auto val="1"/><c:lblOffset val="100"/><c:noMultiLvlLbl val="0"/></c:catAx>`;
}
function valAxXml(axId, crossAx) {
return `<c:valAx><c:axId ${attrVal("val", axId)}/><c:scaling><c:orientation val="minMax"/></c:scaling><c:delete val="0"/><c:axPos val="l"/><c:numFmt formatCode="General" sourceLinked="1"/><c:spPr/><c:crossAx ${attrVal("val", crossAx)}/><c:crosses val="autoZero"/></c:valAx>`;
}
function serAxXml(axId, crossAx) {
return `<c:serAx><c:axId ${attrVal("val", axId)}/><c:scaling><c:orientation val="minMax"/></c:scaling><c:delete val="0"/><c:axPos val="b"/><c:numFmt formatCode="General" sourceLinked="1"/><c:spPr/><c:crossAx ${attrVal("val", crossAx)}/><c:crosses val="autoZero"/><c:tickLblSkip val="1"/></c:serAx>`;
}
function readStrCache(el) {
const strRef = findChild(el, "c:strRef");
if (!strRef) return [];
const strCache = findChild(strRef, "c:strCache");
if (!strCache?.elements) return [];
const result = [];
for (const pt of strCache.elements) if (pt.name === "c:pt" && pt.elements) {
const v = pt.elements.find((c) => c.name === "c:v");
if (v?.text !== void 0) result.push(String(v.text));
}
return result;
}
function readNumCache(el) {
const numRef = findChild(el, "c:numRef");
if (!numRef) return [];
const numCache = findChild(numRef, "c:numCache");
if (!numCache?.elements) return [];
const result = [];
for (const pt of numCache.elements) if (pt.name === "c:pt" && pt.elements) {
const v = pt.elements.find((c) => c.name === "c:v");
if (v?.text !== void 0) result.push(Number(v.text));
}
return result;
}
function readSeriesName(serEl) {
const tx = findChild(serEl, "c:tx");
if (!tx) return "";
return readStrCache(tx)[0] ?? "";
}
function readTitleText(titleEl) {
const tx = findChild(titleEl, "c:tx");
if (!tx?.elements) return void 0;
for (const child of tx.elements) if (child.name === "c:rich" && child.elements) {
for (const sub of child.elements) if (sub.name === "a:p" && sub.elements) {
for (const r of sub.elements) if (r.name === "a:r" && r.elements) {
for (const t of r.elements) if (t.name === "a:t" && t.text !== void 0) return String(t.text);
}
}
}
}
const chartSpaceDesc = {
kind: "custom",
stringify(opts, _ctx) {
const parts = [];
parts.push(`<c:chartSpace xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">`);
parts.push(valEl("c:date1904", 0));
parts.push(valEl("c:lang", "en-US"));
parts.push(valEl("c:roundedCorners", 0));
if (opts.style !== void 0) parts.push(valEl("c:style", opts.style));
parts.push("<c:chart>");
if (opts.title) parts.push(stringifyTitle(opts.title));
parts.push(valEl("c:autoTitleDeleted", 0));
parts.push("<c:plotArea><c:layout/>");
parts.push(chartTypeHeader(opts));
const categories = opts.categories ?? [];
for (let i = 0; i < opts.series.length; i++) parts.push(stringifySeries(i, opts.series[i], categories, opts.type));
parts.push(chartTypeFooter(opts));
parts.push(stringifyAxes(opts.type, opts.threeD));
parts.push("</c:plotArea>");
if (opts.showLegend !== false) parts.push(stringifyLegend());
parts.push("</c:chart>");
parts.push(noFillSpPr());
parts.push(chartTxPr());
parts.push("</c:chartSpace>");
return parts.join("");
},
parse(el, _ctx) {
const result = {};
const styleEl = findChild(el, "c:style");
if (styleEl?.attributes?.["val"] !== void 0) result.style = Number(styleEl.attributes["val"]);
const chart = findChild(el, "c:chart");
if (!chart) return result;
const titleEl = findChild(chart, "c:title");
if (titleEl) {
const title = readTitleText(titleEl);
if (title !== void 0) result.title = title;
}
const plotArea = findChild(chart, "c:plotArea");
if (plotArea?.elements) {
let detectedType;
let threeD = false;
for (const child of plotArea.elements) {
if (!child.name) continue;
const mapping = TAG_TO_CHART_TYPE[child.name];
if (mapping) {
detectedType = mapping.type;
threeD = mapping.threeD ?? false;
break;
}
}
if (detectedType) {
result.type = detectedType;
if (threeD) result.threeD = true;
}
const seriesEls = children(plotArea, "c:ser");
if (seriesEls.length > 0) if (detectedType === "bubble") {
const bubbleSeries = [];
for (const serEl of seriesEls) {
const name = readSeriesName(serEl);
const xVal = findChild(serEl, "c:xVal");
const yVal = findChild(serEl, "c:yVal");
const bubbleSize = findChild(serEl, "c:bubbleSize");
bubbleSeries.push({
name,
xValues: xVal ? readNumCache(xVal) : [],
yValues: yVal ? readNumCache(yVal) : [],
bubbleSize: bubbleSize ? readNumCache(bubbleSize) : []
});
}
result.series = bubbleSeries;
} else {
const chartSeries = [];
let categories;
for (const serEl of seriesEls) {
const name = readSeriesName(serEl);
if (!categories) {
const catEl = findChild(serEl, "c:cat") ?? findChild(serEl, "c:xVal");
if (catEl) categories = readStrCache(catEl);
}
const valEl = findChild(serEl, "c:val") ?? findChild(serEl, "c:yVal");
const values = valEl ? readNumCache(valEl) : [];
chartSeries.push({
name,
values
});
}
result.series = chartSeries;
if (categories?.length) result.categories = categories;
}
}
if (!findChild(chart, "c:legend")) result.showLegend = false;
return result;
}
};
//#endregion
//#region src/chart/types.ts
const TrendlineType = {
EXP: "exp",
LINEAR: "linear",
LOG: "log",
MOVING_AVG: "movingAvg",
POLY: "poly",
POWER: "power"
};
const ErrorBarDirection = {
BOTH: "both",
X: "x",
Y: "y"
};
const ErrorBarType = {
BOTH: "both",
MINUS: "minus",
PLUS: "plus"
};
const ErrorValueType = {
CUST: "cust",
FIXED: "fixedVal",
PERCENTAGE: "percentage",
STD_DEV: "stdDev",
STD_ERR: "stdErr"
};
const DataLabelPosition = {
BEST_FIT: "bestFit",
B: "b",
CTRL: "ctr",
IN_BASE: "inBase",
IN_END: "inEnd",
L: "l",
OUT_END: "outEnd",
R: "r",
T: "t"
};
const TimeUnit = {
DAYS: "days",
MONTHS: "months",
YEARS: "years"
};
//#endregion
export { TimeUnit as a, ChartCollection as c, ErrorValueType as i, ErrorBarDirection as n, TrendlineType as o, ErrorBarType as r, chartSpaceDesc as s, DataLabelPosition as t };
import { children, escapeXml, findChild, textOf } from "@office-open/xml";
//#region src/descriptor/builder.ts
function element$1(tag) {
return new DescriptorBuilder(tag);
}
var DescriptorBuilder = class {
_tag;
_attrs = [];
_content = [];
constructor(tag) {
this._tag = tag;
}
/** Add an attribute mapping. */
attr(key, xmlName, opts) {
this._attrs.push({
kind: "child",
key,
xmlName,
...opts
});
return this;
}
/** Add a single child element mapping. */
child(key, tag, desc) {
this._content.push({
kind: "child",
key,
tag,
desc
});
return this;
}
/** Add a repeating child element mapping. */
children(key, tag, desc) {
this._content.push({
kind: "children",
key,
tag,
desc
});
return this;
}
/** Add a union (one-of-several) child mapping. */
union(key, variants) {
this._content.push({
kind: "union",
key,
variants
});
return this;
}
/** Add a text content mapping. */
text(key) {
this._content.push({
kind: "text",
key
});
return this;
}
/** Add a custom content handler. */
custom(spec) {
this._content.push(spec);
return this;
}
/** Build the immutable ElementDescriptor. */
build() {
const result = {
kind: "element",
tag: this._tag
};
if (this._attrs.length) result.attrs = Object.freeze(this._attrs);
if (this._content.length) result.content = Object.freeze(this._content);
return Object.freeze(result);
}
};
//#endregion
//#region src/descriptor/runtime.ts
/**
* Descriptor runtime: stringify (write) and parse (parse path) functions.
*
* Write path: Options → stringify(desc, opts, ctx) → string
* Parse path: Element → parse(desc, el, ctx) → Partial<Options>
*
* No intermediate representation — each path is a single step.
*
* @module
*/
/**
* Serialize an Options object to an XML string using its descriptor.
* Returns `undefined` when an optional element should be omitted.
*/
function stringify(desc, value, ctx) {
if (desc.kind === "custom") return desc.stringify(value, ctx);
return stringifyElement(desc, value, ctx);
}
function stringifyElement(desc, value, ctx) {
const tag = desc.tag;
const attrStr = stringifyAttrs(desc.attrs, value);
let hasContent = false;
const parts = [];
if (desc.content) for (let i = 0; i < desc.content.length; i++) {
const spec = desc.content[i];
const s = stringifyContentSpec(spec, value, ctx);
if (s !== void 0) {
hasContent = true;
parts.push(s);
}
}
if (!hasContent) {
if (!attrStr) return void 0;
return `<${tag}${attrStr}/>`;
}
parts.unshift(`<${tag}${attrStr}>`);
parts.push(`</${tag}>`);
return parts.join("");
}
function stringifyAttrs(attrs, value) {
if (!attrs) return "";
const parts = [];
for (let i = 0; i < attrs.length; i++) {
const spec = attrs[i];
const raw = value[spec.key];
if (raw === void 0) continue;
if (spec.default !== void 0 && raw === spec.default) continue;
const encoded = spec.encode ? spec.encode(raw) : typeof raw === "string" || typeof raw === "number" || typeof raw === "boolean" ? String(raw) : String(raw);
if (encoded === void 0) continue;
parts.push(`${spec.xmlName}="${escapeXml(encoded)}"`);
}
return parts.length ? " " + parts.join(" ") : "";
}
function stringifyContentSpec(spec, value, ctx) {
switch (spec.kind) {
case "child": return stringifyChild(spec, value, ctx);
case "children": return stringifyChildren(spec, value, ctx);
case "union": return stringifyUnion(spec, value, ctx);
case "text": return stringifyText(spec, value);
case "custom": return stringifyCustom(spec, value, ctx);
}
}
function stringifyChild(spec, value, ctx) {
const childValue = value[spec.key];
if (childValue === void 0 || childValue === null) return void 0;
return stringify(spec.desc, childValue, ctx);
}
function stringifyChildren(spec, value, ctx) {
const items = value[spec.key];
if (!items || items.length === 0) return void 0;
const parts = [];
for (let i = 0; i < items.length; i++) {
const s = stringify(spec.desc, items[i], ctx);
if (s !== void 0) parts.push(s);
}
return parts.length ? parts.join("") : void 0;
}
function stringifyUnion(spec, value, ctx) {
const childValue = value[spec.key];
if (childValue === void 0 || childValue === null) return void 0;
const variants = spec.variants;
for (let i = 0; i < variants.length; i++) {
const v = variants[i];
if (v.match(childValue)) return stringify(v.desc, childValue, ctx);
}
}
function stringifyText(spec, value) {
const text = value[spec.key];
if (text === void 0 || text === null) return void 0;
return escapeXml(typeof text === "string" ? text : String(text));
}
function stringifyCustom(spec, value, ctx) {
return spec.stringify(value, ctx);
}
/**
* Parse an XML Element into an Options object using its descriptor.
*/
function parse(desc, el, ctx) {
if (desc.kind === "custom") return desc.parse(el, ctx);
return parseElement(desc, el, ctx);
}
function parseElement(desc, el, ctx) {
const result = {};
if (desc.attrs && el.attributes) for (let i = 0; i < desc.attrs.length; i++) {
const spec = desc.attrs[i];
const raw = el.attributes[spec.xmlName];
if (raw !== void 0) result[spec.key] = spec.decode ? spec.decode(String(raw)) : raw;
}
if (desc.content) for (let i = 0; i < desc.content.length; i++) {
const spec = desc.content[i];
parseContentSpec(spec, el, ctx, result);
}
return result;
}
function parseContentSpec(spec, el, ctx, result) {
switch (spec.kind) {
case "child": {
const child = findChild(el, spec.tag);
if (child) result[spec.key] = parse(spec.desc, child, ctx);
break;
}
case "children": {
const items = children(el, spec.tag);
if (items.length) result[spec.key] = items.map((c) => parse(spec.desc, c, ctx));
break;
}
case "union":
for (let i = 0; i < spec.variants.length; i++) {
const v = spec.variants[i];
const child = findChild(el, v.tag);
if (child) {
result[spec.key] = parse(v.desc, child, ctx);
break;
}
}
break;
case "text": {
const text = textOf(el);
if (text) result[spec.key] = text;
break;
}
case "custom":
Object.assign(result, spec.parse(el, ctx));
break;
}
}
//#endregion
//#region src/descriptor/helpers.ts
/**
* OOXML-specific encode/decode helpers for descriptors.
*
* XML traversal helpers (findChild, etc.) are in @office-open/xml utils.
* This file only contains OOXML value encoding/decoding.
*
* @module
*/
/** Encode boolean for CT_OnOff: true → omit val, false → "0". */
const boolEncode = (v) => {
if (v === void 0) return void 0;
return v ? void 0 : "0";
};
/** Decode CT_OnOff: absent or "true"/"1" → true, "0"/"false" → false. */
const boolDecode = (raw) => raw !== "0" && raw !== "false";
/** Create an enum encoder from a JS↔XML mapping. */
const enumEncode = (map) => (v) => {
if (v === void 0) return void 0;
return map[v] ?? v;
};
/** Create an enum decoder from a JS↔XML mapping (inverted). */
const enumDecode = (map) => {
const inv = invertRecord(map);
return (raw) => inv[raw] ?? raw;
};
function invertRecord(map) {
const result = {};
for (const key of Object.keys(map)) result[map[key]] = key;
return result;
}
//#endregion
//#region src/descriptor/registry.ts
var DescriptorRegistry = class DescriptorRegistry {
static _map = /* @__PURE__ */ new Map();
/** Register a descriptor with its XML tag. */
static register(tag, desc) {
DescriptorRegistry._map.set(tag, desc);
}
/** Look up a descriptor by XML tag. */
static get(tag) {
return DescriptorRegistry._map.get(tag);
}
/** Get all registered tags. */
static tags() {
return new Set(DescriptorRegistry._map.keys());
}
/** Check if a tag is registered. */
static has(tag) {
return DescriptorRegistry._map.has(tag);
}
/** Get the number of registered descriptors. */
static get size() {
return DescriptorRegistry._map.size;
}
};
//#endregion
export { enumEncode as a, DescriptorBuilder as c, enumDecode as i, element$1 as l, boolDecode as n, parse as o, boolEncode as r, stringify as s, DescriptorRegistry as t };
import { m as CustomDescriptor } from "./index-D81RV9Vc.mjs";
//#region src/theme/theme-options.d.ts
/**
* Theme options for OOXML documents.
*
* @module
*/
/** Color scheme — 12 theme colors (hex without #). */
interface ColorSchemeOptions {
readonly dark1?: string;
readonly light1?: string;
readonly dark2?: string;
readonly light2?: string;
readonly accent1?: string;
readonly accent2?: string;
readonly accent3?: string;
readonly accent4?: string;
readonly accent5?: string;
readonly accent6?: string;
readonly hyperlink?: string;
readonly followedHyperlink?: string;
}
/** Font scheme — 4 font slots (latin + east-asian for major/minor). */
interface FontSchemeOptions {
readonly majorFont?: string;
readonly minorFont?: string;
readonly majorFontAsian?: string;
readonly minorFontAsian?: string;
}
/** Theme customization options. */
interface ThemeOptions {
readonly name?: string;
readonly colors?: ColorSchemeOptions;
readonly fonts?: FontSchemeOptions;
}
//#endregion
//#region src/theme/default-theme.d.ts
/**
* Generate theme XML string from options.
* Returns cached default when no options provided.
*/
declare function createThemeXml(options?: ThemeOptions): string;
//#endregion
//#region src/theme/build-theme-xml.d.ts
declare function buildThemeXml(options?: ThemeOptions): string;
//#endregion
//#region src/theme/default-colors.d.ts
/** Office 2016+ default theme colors (hex without #). */
declare const DEFAULT_COLORS: Required<ColorSchemeOptions>;
//#endregion
//#region src/theme/theme-descriptors.d.ts
declare const themeDesc: CustomDescriptor<ThemeOptions>;
//#endregion
export { ColorSchemeOptions as a, createThemeXml as i, DEFAULT_COLORS as n, FontSchemeOptions as o, buildThemeXml as r, ThemeOptions as s, themeDesc as t };

Sorry, the diff of this file is too big to display

import { Element } from "@office-open/xml";
//#region src/descriptor/context.d.ts
/** Context passed during stringify (write path). */
interface WriteContext {
/** Register a relationship and return its rId. */
addRelationship(type: string, target: string, mode?: string): string;
/** Add a media file and return its reference. */
addMedia(data: Uint8Array, type: string): string;
}
/** Context passed during parse (parse path). */
interface ReadContext {
/** Resolve a relationship rId to its target path. */
resolveRelationship(rId: string): string | undefined;
/** Get a parsed XML part by path. */
getPart(path: string): Element | undefined;
/** Get raw binary data (images, media, etc.) by path. */
getRaw(path: string): Uint8Array | undefined;
}
//#endregion
//#region src/descriptor/types.d.ts
/** Element descriptor — declarative XML mapping. */
interface ElementDescriptor<T> {
readonly kind: "element";
readonly tag: string;
readonly attrs?: readonly AttrSpec<T>[];
readonly content?: readonly ContentSpec<T>[];
}
/** Custom descriptor — for complex logic that doesn't fit the declarative model. */
interface CustomDescriptor<T, Ctx = WriteContext> {
readonly kind: "custom";
stringify(value: T, ctx: Ctx): string | undefined;
parse(el: Element, ctx: ReadContext): T;
}
/** Union type for all descriptors. */
type Descriptor<T> = ElementDescriptor<T> | CustomDescriptor<T>;
interface AttrSpec<T> {
/** Property key in the Options object. */
readonly key: keyof T & string;
/** XML attribute name (e.g. "w:val"). */
readonly xmlName: string;
/** Default value — omitted during stringify when equal. */
readonly default?: unknown;
/** Encode a JS value to an XML attribute string. Return undefined to skip. */
readonly encode?: (v: any) => string | undefined;
/** Decode an XML attribute string to a JS value. */
readonly decode?: (raw: string) => any;
}
/** Single child element mapped to a property. */
interface ChildSpec<T> {
readonly kind: "child";
readonly key: keyof T & string;
readonly tag: string;
readonly desc: Descriptor<any>;
}
/** Multiple child elements of the same tag mapped to an array property. */
interface ChildrenSpec<T> {
readonly kind: "children";
readonly key: keyof T & string;
readonly tag: string;
readonly desc: Descriptor<any>;
}
/** Union child — one of several possible child elements. */
interface UnionSpec<T> {
readonly kind: "union";
readonly key: keyof T & string;
readonly variants: readonly UnionVariant[];
}
/** Text content mapped to a property. */
interface TextSpec<T> {
readonly kind: "text";
readonly key: keyof T & string;
}
interface UnionVariant {
readonly tag: string;
readonly match: (opts: any) => boolean;
readonly desc: Descriptor<any>;
}
/** Discriminated union of all content spec types. */
type ContentSpec<T> = ChildSpec<T> | ChildrenSpec<T> | UnionSpec<T> | TextSpec<T> | CustomDescriptor<T>;
//#endregion
//#region src/descriptor/builder.d.ts
declare function element$1<T extends object>(tag: string): DescriptorBuilder<T>;
declare class DescriptorBuilder<T extends object> {
private readonly _tag;
private readonly _attrs;
private readonly _content;
constructor(tag: string);
/** Add an attribute mapping. */
attr(key: keyof T & string, xmlName: string, opts?: {
readonly default?: unknown;
readonly encode?: (v: any) => string | undefined;
readonly decode?: (raw: string) => any;
}): this;
/** Add a single child element mapping. */
child(key: keyof T & string, tag: string, desc: ChildSpec<T>["desc"]): this;
/** Add a repeating child element mapping. */
children(key: keyof T & string, tag: string, desc: ChildrenSpec<T>["desc"]): this;
/** Add a union (one-of-several) child mapping. */
union(key: keyof T & string, variants: readonly UnionVariant[]): this;
/** Add a text content mapping. */
text(key: keyof T & string): this;
/** Add a custom content handler. */
custom(spec: CustomDescriptor<T>): this;
/** Build the immutable ElementDescriptor. */
build(): ElementDescriptor<T>;
}
//#endregion
//#region src/descriptor/runtime.d.ts
/**
* Serialize an Options object to an XML string using its descriptor.
* Returns `undefined` when an optional element should be omitted.
*/
declare function stringify<T>(desc: Descriptor<T>, value: T, ctx: WriteContext): string | undefined;
/**
* Parse an XML Element into an Options object using its descriptor.
*/
declare function parse<T>(desc: Descriptor<T>, el: Element, ctx: ReadContext): T;
//#endregion
//#region src/descriptor/helpers.d.ts
/**
* OOXML-specific encode/decode helpers for descriptors.
*
* XML traversal helpers (findChild, etc.) are in @office-open/xml utils.
* This file only contains OOXML value encoding/decoding.
*
* @module
*/
/** Encode boolean for CT_OnOff: true → omit val, false → "0". */
declare const boolEncode: (v: boolean | undefined) => string | undefined;
/** Decode CT_OnOff: absent or "true"/"1" → true, "0"/"false" → false. */
declare const boolDecode: (raw: string) => boolean;
/** Create an enum encoder from a JS↔XML mapping. */
declare const enumEncode: (map: Record<string, string>) => (v: string | undefined) => string | undefined;
/** Create an enum decoder from a JS↔XML mapping (inverted). */
declare const enumDecode: (map: Record<string, string>) => (raw: string) => string;
//#endregion
//#region src/descriptor/registry.d.ts
declare class DescriptorRegistry {
private static readonly _map;
/** Register a descriptor with its XML tag. */
static register(tag: string, desc: Descriptor<any>): void;
/** Look up a descriptor by XML tag. */
static get(tag: string): Descriptor<any> | undefined;
/** Get all registered tags. */
static tags(): ReadonlySet<string>;
/** Check if a tag is registered. */
static has(tag: string): boolean;
/** Get the number of registered descriptors. */
static get size(): number;
}
//#endregion
export { TextSpec as _, enumEncode as a, ReadContext as b, DescriptorBuilder as c, ChildSpec as d, ChildrenSpec as f, ElementDescriptor as g, Descriptor as h, enumDecode as i, element$1 as l, CustomDescriptor as m, boolDecode as n, parse as o, ContentSpec as p, boolEncode as r, stringify as s, DescriptorRegistry as t, AttrSpec as u, UnionSpec as v, WriteContext as x, UnionVariant as y };
import { m as CustomDescriptor } from "./index-D81RV9Vc.mjs";
//#region src/chart/chart-collection.d.ts
/**
* Chart data and collection for document generation.
*
* @module
*/
interface ChartData {
key: string;
chartSpaceXml: string;
}
declare class ChartCollection {
private map;
constructor();
addChart(key: string, chartData: ChartData): void;
get array(): ChartData[];
}
//#endregion
//#region src/chart/types.d.ts
/**
* Chart type definitions — interfaces and constants.
*
* Class implementations have been removed; all chart XML generation
* goes through chart-descriptors.ts (stringify/parse path).
*
* @module
*/
interface BubbleSeriesData {
readonly name: string;
readonly xValues: readonly number[];
readonly yValues: readonly number[];
readonly bubbleSize: readonly number[];
}
declare const TrendlineType: {
readonly EXP: "exp";
readonly LINEAR: "linear";
readonly LOG: "log";
readonly MOVING_AVG: "movingAvg";
readonly POLY: "poly";
readonly POWER: "power";
};
type TrendlineType = (typeof TrendlineType)[keyof typeof TrendlineType];
interface TrendlineOptions {
readonly type?: TrendlineType;
readonly name?: string;
readonly order?: number;
readonly period?: number;
readonly forward?: number;
readonly backward?: number;
readonly intercept?: number;
readonly dispRSqr?: boolean;
readonly dispEq?: boolean;
}
declare const ErrorBarDirection: {
readonly BOTH: "both";
readonly X: "x";
readonly Y: "y";
};
type ErrorBarDirection = (typeof ErrorBarDirection)[keyof typeof ErrorBarDirection];
declare const ErrorBarType: {
readonly BOTH: "both";
readonly MINUS: "minus";
readonly PLUS: "plus";
};
type ErrorBarType = (typeof ErrorBarType)[keyof typeof ErrorBarType];
declare const ErrorValueType: {
readonly CUST: "cust";
readonly FIXED: "fixedVal";
readonly PERCENTAGE: "percentage";
readonly STD_DEV: "stdDev";
readonly STD_ERR: "stdErr";
};
type ErrorValueType = (typeof ErrorValueType)[keyof typeof ErrorValueType];
interface ErrorBarOptions {
readonly direction?: ErrorBarDirection;
readonly barType?: ErrorBarType;
readonly valueType?: ErrorValueType;
readonly value?: number;
}
declare const DataLabelPosition: {
readonly BEST_FIT: "bestFit";
readonly B: "b";
readonly CTRL: "ctr";
readonly IN_BASE: "inBase";
readonly IN_END: "inEnd";
readonly L: "l";
readonly OUT_END: "outEnd";
readonly R: "r";
readonly T: "t";
};
type DataLabelPosition = (typeof DataLabelPosition)[keyof typeof DataLabelPosition];
interface DataLabelsOptions {
readonly position?: DataLabelPosition;
readonly showVal?: boolean;
readonly showCatName?: boolean;
readonly showSerName?: boolean;
readonly showPercent?: boolean;
readonly showBubbleSize?: boolean;
readonly showLeaderLines?: boolean;
}
interface ChartSeriesData {
readonly name: string;
readonly values: readonly number[];
readonly trendlines?: readonly TrendlineOptions[];
readonly errorBars?: ErrorBarOptions;
readonly dataLabels?: DataLabelsOptions;
}
type ChartType = "column" | "bar" | "line" | "pie" | "area" | "scatter" | "bubble" | "doughnut" | "radar" | "stock" | "surface";
type AxisChartType = Exclude<ChartType, "bubble">;
interface ChartSpaceOptions {
readonly title?: string;
readonly type: ChartType;
readonly categories?: readonly string[];
readonly series: readonly ChartSeriesData[] | readonly BubbleSeriesData[];
readonly showLegend?: boolean;
readonly style?: number;
readonly threeD?: boolean;
}
declare const TimeUnit: {
readonly DAYS: "days";
readonly MONTHS: "months";
readonly YEARS: "years";
};
type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
interface View3DOptions {
readonly rotX?: number;
readonly rotY?: number;
readonly depthPercent?: number;
readonly rAngAx?: boolean;
readonly perspective?: number;
}
//#endregion
//#region src/chart/chart-descriptors.d.ts
declare const chartSpaceDesc: CustomDescriptor<ChartSpaceOptions>;
//#endregion
export { ChartCollection as _, ChartSpaceOptions as a, DataLabelsOptions as c, ErrorBarType as d, ErrorValueType as f, View3DOptions as g, TrendlineType as h, ChartSeriesData as i, ErrorBarDirection as l, TrendlineOptions as m, AxisChartType as n, ChartType as o, TimeUnit as p, BubbleSeriesData as r, DataLabelPosition as s, chartSpaceDesc as t, ErrorBarOptions as u, ChartData as v };

Sorry, the diff of this file is too big to display