@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.
@@ -1,4 +1,4 @@
1
- import { c as CustomDescriptor } from "./index-C4r2WLEy.mjs";
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
- readonly name: string;
31
- readonly xValues: readonly number[];
32
- readonly yValues: readonly number[];
33
- readonly bubbleSize: readonly number[];
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
- readonly type?: TrendlineType;
46
- readonly name?: string;
47
- readonly order?: number;
48
- readonly period?: number;
49
- readonly forward?: number;
50
- readonly backward?: number;
51
- readonly intercept?: number;
52
- readonly dispRSqr?: boolean;
53
- readonly dispEq?: boolean;
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
- readonly direction?: ErrorBarDirection;
77
- readonly barType?: ErrorBarType;
78
- readonly valueType?: ErrorValueType;
79
- readonly value?: number;
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
- readonly position?: DataLabelPosition;
95
- readonly showVal?: boolean;
96
- readonly showCatName?: boolean;
97
- readonly showSerName?: boolean;
98
- readonly showPercent?: boolean;
99
- readonly showBubbleSize?: boolean;
100
- readonly showLeaderLines?: boolean;
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
- readonly name: string;
104
- readonly values: readonly number[];
105
- readonly trendlines?: readonly TrendlineOptions[];
106
- readonly errorBars?: ErrorBarOptions;
107
- readonly dataLabels?: DataLabelsOptions;
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
- readonly title?: string;
113
- readonly type: ChartType;
114
- readonly categories?: readonly string[];
115
- readonly series: readonly ChartSeriesData[] | readonly BubbleSeriesData[];
116
- readonly showLegend?: boolean;
117
- readonly style?: number;
118
- readonly threeD?: boolean;
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
- readonly rotX?: number;
128
- readonly rotY?: number;
129
- readonly depthPercent?: number;
130
- readonly rAngAx?: boolean;
131
- readonly perspective?: number;
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