@office-open/core 0.9.7 → 0.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chart/index.d.mts +1 -1
- package/dist/descriptor/index.d.mts +2 -2
- package/dist/descriptor/index.mjs +2 -2
- package/dist/descriptor-TtMXoZgS.mjs +443 -0
- package/dist/drawingml/index.d.mts +2 -2
- package/dist/drawingml/index.mjs +2 -2
- package/dist/{index-DMw7eid7.d.mts → index-BEQ12eyX.d.mts} +42 -42
- package/dist/{index-CDYC3mxJ.d.mts → index-CeVhA1an.d.mts} +871 -262
- package/dist/{index-eu1aFQCm.d.mts → index-CsQP7Cl4.d.mts} +36 -36
- package/dist/{index-DmPBJwSk.d.mts → index-DYy8l709.d.mts} +34 -34
- package/dist/index-L82O3q6V.d.mts +170 -0
- package/dist/{index-4hjRdzMU.d.mts → index-vEeWkbm5.d.mts} +20 -20
- package/dist/index.d.mts +7 -7
- package/dist/index.mjs +3 -3
- package/dist/patch/index.d.mts +1 -1
- package/dist/smartart/index.d.mts +1 -1
- package/dist/{src-DlZssiRY.mjs → src-CSka9ln4.mjs} +985 -145
- package/dist/theme/index.d.mts +1 -1
- package/package.json +2 -2
- package/dist/descriptor-DcQm32dg.mjs +0 -71
- package/dist/index-C4r2WLEy.d.mts +0 -73
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { _ as CustomDescriptor } from "./index-L82O3q6V.mjs";
|
|
2
2
|
|
|
3
3
|
//#region src/chart/chart-collection.d.ts
|
|
4
4
|
/**
|
|
@@ -27,10 +27,10 @@ declare class ChartCollection {
|
|
|
27
27
|
* @module
|
|
28
28
|
*/
|
|
29
29
|
interface BubbleSeriesData {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
30
|
+
name: string;
|
|
31
|
+
xValues: readonly number[];
|
|
32
|
+
yValues: readonly number[];
|
|
33
|
+
bubbleSize: readonly number[];
|
|
34
34
|
}
|
|
35
35
|
declare const TrendlineType: {
|
|
36
36
|
readonly EXP: "exp";
|
|
@@ -42,15 +42,15 @@ declare const TrendlineType: {
|
|
|
42
42
|
};
|
|
43
43
|
type TrendlineType = (typeof TrendlineType)[keyof typeof TrendlineType];
|
|
44
44
|
interface TrendlineOptions {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
45
|
+
type?: TrendlineType;
|
|
46
|
+
name?: string;
|
|
47
|
+
order?: number;
|
|
48
|
+
period?: number;
|
|
49
|
+
forward?: number;
|
|
50
|
+
backward?: number;
|
|
51
|
+
intercept?: number;
|
|
52
|
+
dispRSqr?: boolean;
|
|
53
|
+
dispEq?: boolean;
|
|
54
54
|
}
|
|
55
55
|
declare const ErrorBarDirection: {
|
|
56
56
|
readonly BOTH: "both";
|
|
@@ -73,10 +73,10 @@ declare const ErrorValueType: {
|
|
|
73
73
|
};
|
|
74
74
|
type ErrorValueType = (typeof ErrorValueType)[keyof typeof ErrorValueType];
|
|
75
75
|
interface ErrorBarOptions {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
76
|
+
direction?: ErrorBarDirection;
|
|
77
|
+
barType?: ErrorBarType;
|
|
78
|
+
valueType?: ErrorValueType;
|
|
79
|
+
value?: number;
|
|
80
80
|
}
|
|
81
81
|
declare const DataLabelPosition: {
|
|
82
82
|
readonly BEST_FIT: "bestFit";
|
|
@@ -91,31 +91,31 @@ declare const DataLabelPosition: {
|
|
|
91
91
|
};
|
|
92
92
|
type DataLabelPosition = (typeof DataLabelPosition)[keyof typeof DataLabelPosition];
|
|
93
93
|
interface DataLabelsOptions {
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
94
|
+
position?: DataLabelPosition;
|
|
95
|
+
showVal?: boolean;
|
|
96
|
+
showCatName?: boolean;
|
|
97
|
+
showSerName?: boolean;
|
|
98
|
+
showPercent?: boolean;
|
|
99
|
+
showBubbleSize?: boolean;
|
|
100
|
+
showLeaderLines?: boolean;
|
|
101
101
|
}
|
|
102
102
|
interface ChartSeriesData {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
103
|
+
name: string;
|
|
104
|
+
values: readonly number[];
|
|
105
|
+
trendlines?: readonly TrendlineOptions[];
|
|
106
|
+
errorBars?: ErrorBarOptions;
|
|
107
|
+
dataLabels?: DataLabelsOptions;
|
|
108
108
|
}
|
|
109
109
|
type ChartType = "column" | "bar" | "line" | "pie" | "area" | "scatter" | "bubble" | "doughnut" | "radar" | "stock" | "surface";
|
|
110
110
|
type AxisChartType = Exclude<ChartType, "bubble">;
|
|
111
111
|
interface ChartSpaceOptions {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
112
|
+
title?: string;
|
|
113
|
+
type: ChartType;
|
|
114
|
+
categories?: readonly string[];
|
|
115
|
+
series: readonly ChartSeriesData[] | readonly BubbleSeriesData[];
|
|
116
|
+
showLegend?: boolean;
|
|
117
|
+
style?: number;
|
|
118
|
+
threeD?: boolean;
|
|
119
119
|
}
|
|
120
120
|
declare const TimeUnit: {
|
|
121
121
|
readonly DAYS: "days";
|
|
@@ -124,11 +124,11 @@ declare const TimeUnit: {
|
|
|
124
124
|
};
|
|
125
125
|
type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
126
126
|
interface View3DOptions {
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
127
|
+
rotX?: number;
|
|
128
|
+
rotY?: number;
|
|
129
|
+
depthPercent?: number;
|
|
130
|
+
rAngAx?: boolean;
|
|
131
|
+
perspective?: number;
|
|
132
132
|
}
|
|
133
133
|
//#endregion
|
|
134
134
|
//#region src/chart/chart-descriptors.d.ts
|