@odoo/o-spreadsheet 18.5.0-alpha.8 → 18.5.0-alpha.9
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/o-spreadsheet.cjs.js +2890 -2605
- package/dist/o-spreadsheet.d.ts +310 -256
- package/dist/o-spreadsheet.esm.js +2890 -2605
- package/dist/o-spreadsheet.iife.js +3098 -2813
- package/dist/o-spreadsheet.iife.min.js +452 -449
- package/dist/o_spreadsheet.xml +130 -55
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as chart_js from 'chart.js';
|
|
2
|
-
import { ChartConfiguration,
|
|
2
|
+
import { ChartConfiguration, CoreChartOptions, Scriptable, Color as Color$1, ScriptableContext, FontSpec, ChartDataset, Point, ChartType as ChartType$1, ChartMeta } from 'chart.js';
|
|
3
3
|
import * as ChartGeo from 'chartjs-chart-geo';
|
|
4
4
|
import * as GeoJSON$1 from 'geojson';
|
|
5
5
|
import * as _odoo_owl from '@odoo/owl';
|
|
@@ -41,9 +41,11 @@ type CarouselItem = {
|
|
|
41
41
|
type: "chart";
|
|
42
42
|
chartId: UID;
|
|
43
43
|
title?: string;
|
|
44
|
+
carouselTitle?: TitleDesign;
|
|
44
45
|
} | {
|
|
45
46
|
type: "carouselDataView";
|
|
46
47
|
title?: string;
|
|
48
|
+
carouselTitle?: TitleDesign;
|
|
47
49
|
};
|
|
48
50
|
|
|
49
51
|
type ImageSVG = {
|
|
@@ -95,36 +97,156 @@ interface CommonChartDefinition {
|
|
|
95
97
|
readonly aggregated?: boolean;
|
|
96
98
|
readonly axesDesign?: AxesDesign;
|
|
97
99
|
readonly showValues?: boolean;
|
|
100
|
+
readonly humanize?: boolean;
|
|
98
101
|
}
|
|
99
102
|
|
|
100
|
-
interface
|
|
101
|
-
readonly
|
|
103
|
+
interface TreeMapChartDefinition {
|
|
104
|
+
readonly type: "treemap";
|
|
105
|
+
readonly dataSets: CustomizedDataSet[];
|
|
106
|
+
readonly dataSetsHaveTitle: boolean;
|
|
107
|
+
readonly labelRange?: string;
|
|
108
|
+
readonly title: TitleDesign;
|
|
109
|
+
readonly background?: Color;
|
|
110
|
+
readonly legendPosition: LegendPosition;
|
|
111
|
+
readonly showHeaders?: boolean;
|
|
112
|
+
readonly headerDesign?: TitleDesign;
|
|
113
|
+
readonly showValues?: boolean;
|
|
114
|
+
readonly showLabels?: boolean;
|
|
115
|
+
readonly valuesDesign?: TitleDesign;
|
|
116
|
+
readonly coloringOptions?: TreeMapColoringOptions;
|
|
117
|
+
readonly humanize?: boolean;
|
|
102
118
|
}
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
119
|
+
type TreeMapCategoryColorOptions = {
|
|
120
|
+
type: "categoryColor";
|
|
121
|
+
colors: (Color | undefined | null)[];
|
|
122
|
+
useValueBasedGradient: boolean;
|
|
123
|
+
};
|
|
124
|
+
type TreeMapColorScaleOptions = {
|
|
125
|
+
type: "colorScale";
|
|
126
|
+
minColor: Color;
|
|
127
|
+
midColor?: Color;
|
|
128
|
+
maxColor: Color;
|
|
129
|
+
};
|
|
130
|
+
interface TreeMapGroupColor {
|
|
131
|
+
label: string;
|
|
132
|
+
color: Color;
|
|
108
133
|
}
|
|
109
|
-
type
|
|
134
|
+
type TreeMapColoringOptions = TreeMapCategoryColorOptions | TreeMapColorScaleOptions;
|
|
135
|
+
type TreeMapChartRuntime = {
|
|
110
136
|
chartJsConfig: ChartConfiguration;
|
|
111
|
-
masterChartConfig?: ChartConfiguration;
|
|
112
137
|
background: Color;
|
|
113
138
|
};
|
|
114
139
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
140
|
+
/*!
|
|
141
|
+
* chartjs-chart-treemap v3.1.0
|
|
142
|
+
* https://chartjs-chart-treemap.pages.dev/
|
|
143
|
+
* (c) 2024 Jukka Kurkela
|
|
144
|
+
* Released under the MIT license
|
|
145
|
+
*/
|
|
146
|
+
|
|
147
|
+
type AnyObject = Record<string, unknown>;
|
|
148
|
+
type TreemapScriptableContext = ScriptableContext<"treemap"> & {
|
|
149
|
+
raw: TreemapDataPoint;
|
|
122
150
|
};
|
|
123
|
-
type
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
151
|
+
type TreemapControllerDatasetCaptionsOptions = {
|
|
152
|
+
align?: Scriptable<LabelAlign, TreemapScriptableContext>;
|
|
153
|
+
color?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
154
|
+
display?: boolean;
|
|
155
|
+
formatter?: Scriptable<string, TreemapScriptableContext>;
|
|
156
|
+
font?: FontSpec;
|
|
157
|
+
hoverColor?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
158
|
+
hoverFont?: FontSpec;
|
|
159
|
+
padding?: number;
|
|
160
|
+
};
|
|
161
|
+
type TreemapControllerDatasetLabelsOptions = {
|
|
162
|
+
align?: Scriptable<LabelAlign, TreemapScriptableContext>;
|
|
163
|
+
color?: Scriptable<Color$1 | Color$1[], TreemapScriptableContext>;
|
|
164
|
+
display?: boolean;
|
|
165
|
+
formatter?: Scriptable<string | Array<string>, TreemapScriptableContext>;
|
|
166
|
+
font?: Scriptable<FontSpec | FontSpec[], TreemapScriptableContext>;
|
|
167
|
+
hoverColor?: Scriptable<Color$1 | Color$1[], TreemapScriptableContext>;
|
|
168
|
+
hoverFont?: Scriptable<FontSpec | FontSpec[], TreemapScriptableContext>;
|
|
169
|
+
overflow?: Scriptable<LabelOverflow, TreemapScriptableContext>;
|
|
170
|
+
padding?: number;
|
|
171
|
+
position?: Scriptable<LabelPosition, TreemapScriptableContext>;
|
|
127
172
|
};
|
|
173
|
+
type LabelPosition = "top" | "middle" | "bottom";
|
|
174
|
+
type LabelAlign = "left" | "center" | "right";
|
|
175
|
+
type LabelOverflow = "cut" | "hidden" | "fit";
|
|
176
|
+
type TreemapControllerDatasetDividersOptions = {
|
|
177
|
+
display?: boolean;
|
|
178
|
+
lineCapStyle?: string;
|
|
179
|
+
lineColor?: string;
|
|
180
|
+
lineDash?: number[];
|
|
181
|
+
lineDashOffset?: number;
|
|
182
|
+
lineWidth?: number;
|
|
183
|
+
};
|
|
184
|
+
interface TreemapControllerDatasetOptions<DType> {
|
|
185
|
+
spacing?: number;
|
|
186
|
+
rtl?: boolean;
|
|
187
|
+
backgroundColor?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
188
|
+
borderColor?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
189
|
+
borderWidth?: number;
|
|
190
|
+
hoverBackgroundColor?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
191
|
+
hoverBorderColor?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
192
|
+
hoverBorderWidth?: number;
|
|
193
|
+
captions?: TreemapControllerDatasetCaptionsOptions;
|
|
194
|
+
dividers?: TreemapControllerDatasetDividersOptions;
|
|
195
|
+
labels?: TreemapControllerDatasetLabelsOptions;
|
|
196
|
+
label?: string;
|
|
197
|
+
data: TreemapDataPoint[];
|
|
198
|
+
groups?: Array<keyof DType>;
|
|
199
|
+
sumKeys?: Array<keyof DType>;
|
|
200
|
+
tree: number[] | DType[] | AnyObject;
|
|
201
|
+
treeLeafKey?: keyof DType;
|
|
202
|
+
key?: keyof DType;
|
|
203
|
+
hidden?: boolean;
|
|
204
|
+
displayMode?: "containerBoxes" | "headerBoxes";
|
|
205
|
+
groupColors?: TreeMapGroupColor[];
|
|
206
|
+
}
|
|
207
|
+
interface TreemapDataPoint {
|
|
208
|
+
x: number;
|
|
209
|
+
y: number;
|
|
210
|
+
w: number;
|
|
211
|
+
h: number;
|
|
212
|
+
/**
|
|
213
|
+
* Value
|
|
214
|
+
*/
|
|
215
|
+
v: number;
|
|
216
|
+
/**
|
|
217
|
+
* Sum
|
|
218
|
+
*/
|
|
219
|
+
s: number;
|
|
220
|
+
/**
|
|
221
|
+
* Depth, only available if grouping
|
|
222
|
+
*/
|
|
223
|
+
l?: number;
|
|
224
|
+
/**
|
|
225
|
+
* Group name, only available if grouping
|
|
226
|
+
*/
|
|
227
|
+
g?: string;
|
|
228
|
+
/**
|
|
229
|
+
* Group Sum, only available if grouping
|
|
230
|
+
*/
|
|
231
|
+
gs?: number;
|
|
232
|
+
/**
|
|
233
|
+
* additonal keys sums, only available if grouping
|
|
234
|
+
*/
|
|
235
|
+
vs?: AnyObject;
|
|
236
|
+
isLeaf?: boolean;
|
|
237
|
+
}
|
|
238
|
+
declare module "chart.js" {
|
|
239
|
+
interface ChartTypeRegistry {
|
|
240
|
+
treemap: {
|
|
241
|
+
chartOptions: CoreChartOptions<"treemap">;
|
|
242
|
+
datasetOptions: TreemapControllerDatasetOptions<Record<string, unknown>>;
|
|
243
|
+
defaultDataPoint: TreemapDataPoint;
|
|
244
|
+
metaExtensions: AnyObject;
|
|
245
|
+
parsedDataType: unknown;
|
|
246
|
+
scales: never;
|
|
247
|
+
};
|
|
248
|
+
}
|
|
249
|
+
}
|
|
128
250
|
|
|
129
251
|
interface FunnelChartDefinition {
|
|
130
252
|
readonly type: "funnel";
|
|
@@ -140,6 +262,7 @@ interface FunnelChartDefinition {
|
|
|
140
262
|
readonly showValues?: boolean;
|
|
141
263
|
readonly funnelColors?: FunnelChartColors;
|
|
142
264
|
readonly cumulative?: boolean;
|
|
265
|
+
readonly humanize?: boolean;
|
|
143
266
|
}
|
|
144
267
|
type FunnelChartRuntime = {
|
|
145
268
|
chartJsConfig: ChartConfiguration;
|
|
@@ -153,6 +276,7 @@ interface GaugeChartDefinition {
|
|
|
153
276
|
readonly dataRange?: string;
|
|
154
277
|
readonly sectionRule: SectionRule;
|
|
155
278
|
readonly background?: Color;
|
|
279
|
+
readonly humanize?: boolean;
|
|
156
280
|
}
|
|
157
281
|
interface SectionRule {
|
|
158
282
|
readonly colors: ColorSet;
|
|
@@ -188,40 +312,6 @@ interface GaugeChartRuntime {
|
|
|
188
312
|
colors: Color[];
|
|
189
313
|
}
|
|
190
314
|
|
|
191
|
-
interface GeoChartDefinition {
|
|
192
|
-
readonly type: "geo";
|
|
193
|
-
readonly dataSets: CustomizedDataSet[];
|
|
194
|
-
readonly dataSetsHaveTitle: boolean;
|
|
195
|
-
readonly labelRange?: string;
|
|
196
|
-
readonly title: TitleDesign;
|
|
197
|
-
readonly background?: Color;
|
|
198
|
-
readonly legendPosition: LegendPosition;
|
|
199
|
-
readonly colorScale?: GeoChartColorScale;
|
|
200
|
-
readonly missingValueColor?: Color;
|
|
201
|
-
readonly region?: string;
|
|
202
|
-
}
|
|
203
|
-
type GeoChartRuntime = {
|
|
204
|
-
chartJsConfig: ChartConfiguration;
|
|
205
|
-
background: Color;
|
|
206
|
-
};
|
|
207
|
-
interface GeoChartCustomColorScale {
|
|
208
|
-
minColor: Color;
|
|
209
|
-
midColor?: Color;
|
|
210
|
-
maxColor: Color;
|
|
211
|
-
}
|
|
212
|
-
type GeoChartColorScale = GeoChartCustomColorScale | "blues" | "cividis" | "greens" | "greys" | "oranges" | "purples" | "rainbow" | "reds" | "viridis";
|
|
213
|
-
type GeoChartProjection = "azimuthalEqualArea" | "azimuthalEquidistant" | "gnomonic" | "orthographic" | "stereographic" | "equalEarth" | "albers" | "albersUsa" | "conicConformal" | "conicEqualArea" | "conicEquidistant" | "equirectangular" | "mercator" | "transverseMercator" | "naturalEarth1";
|
|
214
|
-
interface GeoChartRegion {
|
|
215
|
-
id: string;
|
|
216
|
-
label: string;
|
|
217
|
-
defaultProjection: GeoChartProjection;
|
|
218
|
-
}
|
|
219
|
-
interface GeoChartRuntimeGenerationArgs extends ChartRuntimeGenerationArgs {
|
|
220
|
-
availableRegions: GeoChartRegion[];
|
|
221
|
-
getGeoJsonFeatures: (region: string) => GeoJSON.Feature[] | undefined;
|
|
222
|
-
geoFeatureNameToId: (region: string, featureName: string) => string | undefined;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
315
|
interface LineChartDefinition extends CommonChartDefinition {
|
|
226
316
|
readonly type: "line";
|
|
227
317
|
readonly labelsAsText: boolean;
|
|
@@ -258,18 +348,6 @@ type PyramidChartRuntime = {
|
|
|
258
348
|
background: Color;
|
|
259
349
|
};
|
|
260
350
|
|
|
261
|
-
interface RadarChartDefinition extends CommonChartDefinition {
|
|
262
|
-
readonly type: "radar";
|
|
263
|
-
readonly aggregated?: boolean;
|
|
264
|
-
readonly stacked: boolean;
|
|
265
|
-
readonly fillArea?: boolean;
|
|
266
|
-
readonly hideDataMarkers?: boolean;
|
|
267
|
-
}
|
|
268
|
-
type RadarChartRuntime = {
|
|
269
|
-
chartJsConfig: ChartConfiguration;
|
|
270
|
-
background: Color;
|
|
271
|
-
};
|
|
272
|
-
|
|
273
351
|
interface ScatterChartDefinition extends Omit<LineChartDefinition, "type" | "stacked" | "cumulative"> {
|
|
274
352
|
readonly type: "scatter";
|
|
275
353
|
}
|
|
@@ -324,6 +402,7 @@ interface SunburstChartDefinition {
|
|
|
324
402
|
readonly valuesDesign?: ChartStyle;
|
|
325
403
|
readonly groupColors?: (Color | undefined | null)[];
|
|
326
404
|
readonly pieHolePercentage?: number;
|
|
405
|
+
readonly humanize?: boolean;
|
|
327
406
|
}
|
|
328
407
|
type SunburstChartRuntime = {
|
|
329
408
|
chartJsConfig: ChartConfiguration<"doughnut">;
|
|
@@ -336,166 +415,94 @@ interface SunburstChartJSDataset extends ChartDataset<"doughnut"> {
|
|
|
336
415
|
}[];
|
|
337
416
|
}
|
|
338
417
|
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
418
|
+
interface WaterfallChartDefinition extends CommonChartDefinition {
|
|
419
|
+
readonly type: "waterfall";
|
|
420
|
+
readonly verticalAxisPosition: VerticalAxisPosition;
|
|
421
|
+
readonly aggregated?: boolean;
|
|
422
|
+
readonly showSubTotals: boolean;
|
|
423
|
+
readonly showConnectorLines: boolean;
|
|
424
|
+
readonly firstValueAsSubtotal?: boolean;
|
|
425
|
+
readonly positiveValuesColor?: Color;
|
|
426
|
+
readonly negativeValuesColor?: Color;
|
|
427
|
+
readonly subTotalValuesColor?: Color;
|
|
428
|
+
readonly zoomable?: boolean;
|
|
429
|
+
}
|
|
430
|
+
type WaterfallChartRuntime = {
|
|
431
|
+
chartJsConfig: ChartConfiguration;
|
|
432
|
+
background: Color;
|
|
349
433
|
};
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
434
|
+
|
|
435
|
+
interface BarChartDefinition extends CommonChartDefinition {
|
|
436
|
+
readonly type: "bar";
|
|
437
|
+
readonly stacked: boolean;
|
|
438
|
+
readonly horizontal?: boolean;
|
|
439
|
+
readonly zoomable?: boolean;
|
|
440
|
+
}
|
|
441
|
+
type BarChartRuntime = {
|
|
442
|
+
chartJsConfig: ChartConfiguration;
|
|
443
|
+
masterChartConfig?: ChartConfiguration;
|
|
444
|
+
background: Color;
|
|
359
445
|
};
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
padding?: number;
|
|
370
|
-
position?: Scriptable<LabelPosition, TreemapScriptableContext>;
|
|
446
|
+
|
|
447
|
+
interface ComboChartDefinition extends CommonChartDefinition {
|
|
448
|
+
readonly dataSets: ComboChartDataSet[];
|
|
449
|
+
readonly type: "combo";
|
|
450
|
+
readonly hideDataMarkers?: boolean;
|
|
451
|
+
readonly zoomable?: boolean;
|
|
452
|
+
}
|
|
453
|
+
type ComboChartDataSet = CustomizedDataSet & {
|
|
454
|
+
type?: "bar" | "line";
|
|
371
455
|
};
|
|
372
|
-
type
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
display?: boolean;
|
|
377
|
-
lineCapStyle?: string;
|
|
378
|
-
lineColor?: string;
|
|
379
|
-
lineDash?: number[];
|
|
380
|
-
lineDashOffset?: number;
|
|
381
|
-
lineWidth?: number;
|
|
456
|
+
type ComboChartRuntime = {
|
|
457
|
+
chartJsConfig: ChartConfiguration;
|
|
458
|
+
masterChartConfig?: ChartConfiguration;
|
|
459
|
+
background: Color;
|
|
382
460
|
};
|
|
383
|
-
interface TreemapControllerDatasetOptions<DType> {
|
|
384
|
-
spacing?: number;
|
|
385
|
-
rtl?: boolean;
|
|
386
|
-
backgroundColor?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
387
|
-
borderColor?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
388
|
-
borderWidth?: number;
|
|
389
|
-
hoverBackgroundColor?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
390
|
-
hoverBorderColor?: Scriptable<Color$1, TreemapScriptableContext>;
|
|
391
|
-
hoverBorderWidth?: number;
|
|
392
|
-
captions?: TreemapControllerDatasetCaptionsOptions;
|
|
393
|
-
dividers?: TreemapControllerDatasetDividersOptions;
|
|
394
|
-
labels?: TreemapControllerDatasetLabelsOptions;
|
|
395
|
-
label?: string;
|
|
396
|
-
data: TreemapDataPoint[];
|
|
397
|
-
groups?: Array<keyof DType>;
|
|
398
|
-
sumKeys?: Array<keyof DType>;
|
|
399
|
-
tree: number[] | DType[] | AnyObject;
|
|
400
|
-
treeLeafKey?: keyof DType;
|
|
401
|
-
key?: keyof DType;
|
|
402
|
-
hidden?: boolean;
|
|
403
|
-
displayMode?: "containerBoxes" | "headerBoxes";
|
|
404
|
-
groupColors?: TreeMapGroupColor[];
|
|
405
|
-
}
|
|
406
|
-
interface TreemapDataPoint {
|
|
407
|
-
x: number;
|
|
408
|
-
y: number;
|
|
409
|
-
w: number;
|
|
410
|
-
h: number;
|
|
411
|
-
/**
|
|
412
|
-
* Value
|
|
413
|
-
*/
|
|
414
|
-
v: number;
|
|
415
|
-
/**
|
|
416
|
-
* Sum
|
|
417
|
-
*/
|
|
418
|
-
s: number;
|
|
419
|
-
/**
|
|
420
|
-
* Depth, only available if grouping
|
|
421
|
-
*/
|
|
422
|
-
l?: number;
|
|
423
|
-
/**
|
|
424
|
-
* Group name, only available if grouping
|
|
425
|
-
*/
|
|
426
|
-
g?: string;
|
|
427
|
-
/**
|
|
428
|
-
* Group Sum, only available if grouping
|
|
429
|
-
*/
|
|
430
|
-
gs?: number;
|
|
431
|
-
/**
|
|
432
|
-
* additonal keys sums, only available if grouping
|
|
433
|
-
*/
|
|
434
|
-
vs?: AnyObject;
|
|
435
|
-
isLeaf?: boolean;
|
|
436
|
-
}
|
|
437
|
-
declare module "chart.js" {
|
|
438
|
-
interface ChartTypeRegistry {
|
|
439
|
-
treemap: {
|
|
440
|
-
chartOptions: CoreChartOptions<"treemap">;
|
|
441
|
-
datasetOptions: TreemapControllerDatasetOptions<Record<string, unknown>>;
|
|
442
|
-
defaultDataPoint: TreemapDataPoint;
|
|
443
|
-
metaExtensions: AnyObject;
|
|
444
|
-
parsedDataType: unknown;
|
|
445
|
-
scales: never;
|
|
446
|
-
};
|
|
447
|
-
}
|
|
448
|
-
}
|
|
449
461
|
|
|
450
|
-
interface
|
|
451
|
-
readonly type: "
|
|
462
|
+
interface GeoChartDefinition {
|
|
463
|
+
readonly type: "geo";
|
|
452
464
|
readonly dataSets: CustomizedDataSet[];
|
|
453
465
|
readonly dataSetsHaveTitle: boolean;
|
|
454
466
|
readonly labelRange?: string;
|
|
455
467
|
readonly title: TitleDesign;
|
|
456
468
|
readonly background?: Color;
|
|
457
469
|
readonly legendPosition: LegendPosition;
|
|
458
|
-
readonly
|
|
459
|
-
readonly
|
|
460
|
-
readonly
|
|
461
|
-
readonly
|
|
462
|
-
readonly valuesDesign?: TitleDesign;
|
|
463
|
-
readonly coloringOptions?: TreeMapColoringOptions;
|
|
470
|
+
readonly colorScale?: GeoChartColorScale;
|
|
471
|
+
readonly missingValueColor?: Color;
|
|
472
|
+
readonly region?: string;
|
|
473
|
+
readonly humanize?: boolean;
|
|
464
474
|
}
|
|
465
|
-
type
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
useValueBasedGradient: boolean;
|
|
475
|
+
type GeoChartRuntime = {
|
|
476
|
+
chartJsConfig: ChartConfiguration;
|
|
477
|
+
background: Color;
|
|
469
478
|
};
|
|
470
|
-
|
|
471
|
-
type: "colorScale";
|
|
479
|
+
interface GeoChartCustomColorScale {
|
|
472
480
|
minColor: Color;
|
|
473
481
|
midColor?: Color;
|
|
474
482
|
maxColor: Color;
|
|
475
|
-
}
|
|
476
|
-
|
|
483
|
+
}
|
|
484
|
+
type GeoChartColorScale = GeoChartCustomColorScale | "blues" | "cividis" | "greens" | "greys" | "oranges" | "purples" | "rainbow" | "reds" | "viridis";
|
|
485
|
+
type GeoChartProjection = "azimuthalEqualArea" | "azimuthalEquidistant" | "gnomonic" | "orthographic" | "stereographic" | "equalEarth" | "albers" | "albersUsa" | "conicConformal" | "conicEqualArea" | "conicEquidistant" | "equirectangular" | "mercator" | "transverseMercator" | "naturalEarth1";
|
|
486
|
+
interface GeoChartRegion {
|
|
487
|
+
id: string;
|
|
477
488
|
label: string;
|
|
478
|
-
|
|
489
|
+
defaultProjection: GeoChartProjection;
|
|
490
|
+
}
|
|
491
|
+
interface GeoChartRuntimeGenerationArgs extends ChartRuntimeGenerationArgs {
|
|
492
|
+
availableRegions: GeoChartRegion[];
|
|
493
|
+
getGeoJsonFeatures: (region: string) => GeoJSON.Feature[] | undefined;
|
|
494
|
+
geoFeatureNameToId: (region: string, featureName: string) => string | undefined;
|
|
479
495
|
}
|
|
480
|
-
type TreeMapColoringOptions = TreeMapCategoryColorOptions | TreeMapColorScaleOptions;
|
|
481
|
-
type TreeMapChartRuntime = {
|
|
482
|
-
chartJsConfig: ChartConfiguration;
|
|
483
|
-
background: Color;
|
|
484
|
-
};
|
|
485
496
|
|
|
486
|
-
interface
|
|
487
|
-
readonly type: "
|
|
488
|
-
readonly verticalAxisPosition: VerticalAxisPosition;
|
|
497
|
+
interface RadarChartDefinition extends CommonChartDefinition {
|
|
498
|
+
readonly type: "radar";
|
|
489
499
|
readonly aggregated?: boolean;
|
|
490
|
-
readonly
|
|
491
|
-
readonly
|
|
492
|
-
readonly
|
|
493
|
-
readonly
|
|
494
|
-
readonly negativeValuesColor?: Color;
|
|
495
|
-
readonly subTotalValuesColor?: Color;
|
|
496
|
-
readonly zoomable?: boolean;
|
|
500
|
+
readonly stacked: boolean;
|
|
501
|
+
readonly fillArea?: boolean;
|
|
502
|
+
readonly hideDataMarkers?: boolean;
|
|
503
|
+
readonly humanize?: boolean;
|
|
497
504
|
}
|
|
498
|
-
type
|
|
505
|
+
type RadarChartRuntime = {
|
|
499
506
|
chartJsConfig: ChartConfiguration;
|
|
500
507
|
background: Color;
|
|
501
508
|
};
|
|
@@ -506,6 +513,7 @@ type ChartDefinition = LineChartDefinition | PieChartDefinition | BarChartDefini
|
|
|
506
513
|
type ChartWithDataSetDefinition = Extract<ChartDefinition, {
|
|
507
514
|
dataSets: CustomizedDataSet[];
|
|
508
515
|
labelRange?: string;
|
|
516
|
+
humanize?: boolean;
|
|
509
517
|
}>;
|
|
510
518
|
type ChartWithAxisDefinition = Extract<ChartWithDataSetDefinition, {
|
|
511
519
|
axesDesign?: AxesDesign;
|
|
@@ -640,6 +648,7 @@ interface ChartCreationContext {
|
|
|
640
648
|
readonly headerDesign?: TitleDesign;
|
|
641
649
|
readonly treemapColoringOptions?: TreeMapColoringOptions;
|
|
642
650
|
readonly zoomable?: boolean;
|
|
651
|
+
readonly humanize?: boolean;
|
|
643
652
|
}
|
|
644
653
|
type ChartAxisFormats = {
|
|
645
654
|
[axisId: string]: Format | undefined;
|
|
@@ -2749,6 +2758,7 @@ declare const invalidateChartEvaluationCommands: Set<"ACTIVATE_SHEET" | "UPDATE_
|
|
|
2749
2758
|
declare const invalidateDependenciesCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2750
2759
|
declare const invalidateCFEvaluationCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2751
2760
|
declare const invalidateBordersCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2761
|
+
declare const invalidSubtotalFormulasCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2752
2762
|
declare const readonlyAllowedCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
|
|
2753
2763
|
declare const coreTypes: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT">;
|
|
2754
2764
|
declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
|
|
@@ -3183,6 +3193,7 @@ interface ActivateSheetCommand {
|
|
|
3183
3193
|
}
|
|
3184
3194
|
interface EvaluateCellsCommand {
|
|
3185
3195
|
type: "EVALUATE_CELLS";
|
|
3196
|
+
cellIds?: UID[];
|
|
3186
3197
|
}
|
|
3187
3198
|
interface EvaluateChartsCommand {
|
|
3188
3199
|
type: "EVALUATE_CHARTS";
|
|
@@ -3784,7 +3795,7 @@ interface Border$1 {
|
|
|
3784
3795
|
right?: BorderDescr;
|
|
3785
3796
|
}
|
|
3786
3797
|
type ReferenceDenormalizer = (range: Range, isMeta: boolean, functionName: string, paramNumber: number) => FunctionResultObject;
|
|
3787
|
-
type EnsureRange = (range: Range) => Matrix<FunctionResultObject>;
|
|
3798
|
+
type EnsureRange = (range: Range, isMeta: boolean) => Matrix<FunctionResultObject>;
|
|
3788
3799
|
type GetSymbolValue = (symbolName: string) => Arg;
|
|
3789
3800
|
type FormulaToExecute = (deps: Range[], refFn: ReferenceDenormalizer, range: EnsureRange, getSymbolValue: GetSymbolValue, ctx: object) => Matrix<FunctionResultObject> | FunctionResultObject;
|
|
3790
3801
|
interface CompiledFormula {
|
|
@@ -4758,6 +4769,7 @@ declare abstract class AbstractChart {
|
|
|
4758
4769
|
readonly title: TitleDesign;
|
|
4759
4770
|
abstract readonly type: ChartType;
|
|
4760
4771
|
protected readonly getters: CoreGetters;
|
|
4772
|
+
readonly humanize: boolean;
|
|
4761
4773
|
constructor(definition: ChartDefinition, sheetId: UID, getters: CoreGetters);
|
|
4762
4774
|
/**
|
|
4763
4775
|
* Validate the chart definition given as arguments. This function will be
|
|
@@ -6390,6 +6402,11 @@ declare class SplitToColumnsPlugin extends UIPlugin {
|
|
|
6390
6402
|
private checkSeparatorInSelection;
|
|
6391
6403
|
}
|
|
6392
6404
|
|
|
6405
|
+
declare class SubtotalEvaluationPlugin extends UIPlugin {
|
|
6406
|
+
private subtotalCells;
|
|
6407
|
+
handle(cmd: Command): void;
|
|
6408
|
+
}
|
|
6409
|
+
|
|
6393
6410
|
declare class TableComputedStylePlugin extends UIPlugin {
|
|
6394
6411
|
static getters: readonly ["getCellTableStyle", "getCellTableBorder"];
|
|
6395
6412
|
private tableStyles;
|
|
@@ -6413,7 +6430,7 @@ declare class TableComputedStylePlugin extends UIPlugin {
|
|
|
6413
6430
|
declare class CarouselUIPlugin extends UIPlugin {
|
|
6414
6431
|
static getters: readonly ["getSelectedCarouselItem", "getChartFromFigureId", "getChartIdFromFigureId"];
|
|
6415
6432
|
private uuidGenerator;
|
|
6416
|
-
carouselStates: Record<UID,
|
|
6433
|
+
carouselStates: Record<UID, string | undefined>;
|
|
6417
6434
|
handle(cmd: Command): void;
|
|
6418
6435
|
getSelectedCarouselItem(figureId: UID): CarouselItem | undefined;
|
|
6419
6436
|
getChartFromFigureId(figureId: UID): AbstractChart | undefined;
|
|
@@ -6421,6 +6438,7 @@ declare class CarouselUIPlugin extends UIPlugin {
|
|
|
6421
6438
|
private fixWrongCarouselState;
|
|
6422
6439
|
private addNewChartToCarousel;
|
|
6423
6440
|
private addFigureChartToCarousel;
|
|
6441
|
+
private getCarouselItemId;
|
|
6424
6442
|
}
|
|
6425
6443
|
|
|
6426
6444
|
declare class HeaderPositionsUIPlugin extends UIPlugin {
|
|
@@ -6507,9 +6525,9 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
|
|
|
6507
6525
|
type Getters = {
|
|
6508
6526
|
isReadonly: () => boolean;
|
|
6509
6527
|
isDashboard: () => boolean;
|
|
6510
|
-
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin> & PluginGetters<typeof CarouselUIPlugin>;
|
|
6528
|
+
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof SubtotalEvaluationPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin> & PluginGetters<typeof CarouselUIPlugin>;
|
|
6511
6529
|
|
|
6512
|
-
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
|
|
6530
|
+
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META" | "RANGE<META>";
|
|
6513
6531
|
interface ArgDefinition {
|
|
6514
6532
|
acceptMatrix?: boolean;
|
|
6515
6533
|
acceptMatrixOnly?: boolean;
|
|
@@ -7138,7 +7156,7 @@ interface ChartSubtypeProperties {
|
|
|
7138
7156
|
preview: string;
|
|
7139
7157
|
}
|
|
7140
7158
|
|
|
7141
|
-
interface Props$
|
|
7159
|
+
interface Props$1q {
|
|
7142
7160
|
label?: string;
|
|
7143
7161
|
value: boolean;
|
|
7144
7162
|
className?: string;
|
|
@@ -7147,7 +7165,7 @@ interface Props$1p {
|
|
|
7147
7165
|
disabled?: boolean;
|
|
7148
7166
|
onChange: (value: boolean) => void;
|
|
7149
7167
|
}
|
|
7150
|
-
declare class Checkbox extends Component<Props$
|
|
7168
|
+
declare class Checkbox extends Component<Props$1q, SpreadsheetChildEnv> {
|
|
7151
7169
|
static template: string;
|
|
7152
7170
|
static props: {
|
|
7153
7171
|
label: {
|
|
@@ -7182,10 +7200,10 @@ declare class Checkbox extends Component<Props$1p, SpreadsheetChildEnv> {
|
|
|
7182
7200
|
onChange(ev: InputEvent): void;
|
|
7183
7201
|
}
|
|
7184
7202
|
|
|
7185
|
-
interface Props$
|
|
7203
|
+
interface Props$1p {
|
|
7186
7204
|
class?: string;
|
|
7187
7205
|
}
|
|
7188
|
-
declare class Section extends Component<Props$
|
|
7206
|
+
declare class Section extends Component<Props$1p, SpreadsheetChildEnv> {
|
|
7189
7207
|
static template: string;
|
|
7190
7208
|
static props: {
|
|
7191
7209
|
class: {
|
|
@@ -7350,7 +7368,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
7350
7368
|
getIndex(rangeId: number | null): number | null;
|
|
7351
7369
|
}
|
|
7352
7370
|
|
|
7353
|
-
interface Props$
|
|
7371
|
+
interface Props$1o {
|
|
7354
7372
|
ranges: string[];
|
|
7355
7373
|
hasSingleRange?: boolean;
|
|
7356
7374
|
required?: boolean;
|
|
@@ -7378,7 +7396,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
7378
7396
|
* onSelectionChanged is called every time the input value
|
|
7379
7397
|
* changes.
|
|
7380
7398
|
*/
|
|
7381
|
-
declare class SelectionInput extends Component<Props$
|
|
7399
|
+
declare class SelectionInput extends Component<Props$1o, SpreadsheetChildEnv> {
|
|
7382
7400
|
static template: string;
|
|
7383
7401
|
static props: {
|
|
7384
7402
|
ranges: ArrayConstructor;
|
|
@@ -7455,7 +7473,7 @@ declare class SelectionInput extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
|
7455
7473
|
confirm(): void;
|
|
7456
7474
|
}
|
|
7457
7475
|
|
|
7458
|
-
interface Props$
|
|
7476
|
+
interface Props$1n {
|
|
7459
7477
|
ranges: CustomizedDataSet[];
|
|
7460
7478
|
hasSingleRange?: boolean;
|
|
7461
7479
|
onSelectionChanged: (ranges: string[]) => void;
|
|
@@ -7468,7 +7486,7 @@ interface Props$1m {
|
|
|
7468
7486
|
canChangeDatasetOrientation?: boolean;
|
|
7469
7487
|
onFlipAxis?: (structure: string) => void;
|
|
7470
7488
|
}
|
|
7471
|
-
declare class ChartDataSeries extends Component<Props$
|
|
7489
|
+
declare class ChartDataSeries extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
7472
7490
|
static template: string;
|
|
7473
7491
|
static components: {
|
|
7474
7492
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7517,12 +7535,12 @@ declare class ChartDataSeries extends Component<Props$1m, SpreadsheetChildEnv> {
|
|
|
7517
7535
|
get title(): string;
|
|
7518
7536
|
}
|
|
7519
7537
|
|
|
7520
|
-
interface Props$
|
|
7538
|
+
interface Props$1m {
|
|
7521
7539
|
messages: string[];
|
|
7522
7540
|
msgType: "warning" | "error" | "info";
|
|
7523
7541
|
singleBox?: boolean;
|
|
7524
7542
|
}
|
|
7525
|
-
declare class ValidationMessages extends Component<Props$
|
|
7543
|
+
declare class ValidationMessages extends Component<Props$1m, SpreadsheetChildEnv> {
|
|
7526
7544
|
static template: string;
|
|
7527
7545
|
static props: {
|
|
7528
7546
|
messages: ArrayConstructor;
|
|
@@ -7536,10 +7554,10 @@ declare class ValidationMessages extends Component<Props$1l, SpreadsheetChildEnv
|
|
|
7536
7554
|
get alertBoxes(): string[][];
|
|
7537
7555
|
}
|
|
7538
7556
|
|
|
7539
|
-
interface Props$
|
|
7557
|
+
interface Props$1l {
|
|
7540
7558
|
messages: string[];
|
|
7541
7559
|
}
|
|
7542
|
-
declare class ChartErrorSection extends Component<Props$
|
|
7560
|
+
declare class ChartErrorSection extends Component<Props$1l, SpreadsheetChildEnv> {
|
|
7543
7561
|
static template: string;
|
|
7544
7562
|
static components: {
|
|
7545
7563
|
Section: typeof Section;
|
|
@@ -7553,7 +7571,7 @@ declare class ChartErrorSection extends Component<Props$1k, SpreadsheetChildEnv>
|
|
|
7553
7571
|
};
|
|
7554
7572
|
}
|
|
7555
7573
|
|
|
7556
|
-
interface Props$
|
|
7574
|
+
interface Props$1k {
|
|
7557
7575
|
title?: string;
|
|
7558
7576
|
range: string;
|
|
7559
7577
|
isInvalid: boolean;
|
|
@@ -7566,7 +7584,7 @@ interface Props$1j {
|
|
|
7566
7584
|
onChange: (value: boolean) => void;
|
|
7567
7585
|
}>;
|
|
7568
7586
|
}
|
|
7569
|
-
declare class ChartLabelRange extends Component<Props$
|
|
7587
|
+
declare class ChartLabelRange extends Component<Props$1k, SpreadsheetChildEnv> {
|
|
7570
7588
|
static template: string;
|
|
7571
7589
|
static components: {
|
|
7572
7590
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7587,10 +7605,10 @@ declare class ChartLabelRange extends Component<Props$1j, SpreadsheetChildEnv> {
|
|
|
7587
7605
|
optional: boolean;
|
|
7588
7606
|
};
|
|
7589
7607
|
};
|
|
7590
|
-
static defaultProps: Partial<Props$
|
|
7608
|
+
static defaultProps: Partial<Props$1k>;
|
|
7591
7609
|
}
|
|
7592
7610
|
|
|
7593
|
-
interface Props$
|
|
7611
|
+
interface Props$1j {
|
|
7594
7612
|
chartId: UID;
|
|
7595
7613
|
definition: ChartWithDataSetDefinition;
|
|
7596
7614
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
@@ -7600,7 +7618,7 @@ interface ChartPanelState {
|
|
|
7600
7618
|
datasetDispatchResult?: DispatchResult;
|
|
7601
7619
|
labelsDispatchResult?: DispatchResult;
|
|
7602
7620
|
}
|
|
7603
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
7621
|
+
declare class GenericChartConfigPanel extends Component<Props$1j, SpreadsheetChildEnv> {
|
|
7604
7622
|
static template: string;
|
|
7605
7623
|
static components: {
|
|
7606
7624
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -7669,11 +7687,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
|
7669
7687
|
onUpdateStacked(stacked: boolean): void;
|
|
7670
7688
|
}
|
|
7671
7689
|
|
|
7672
|
-
interface Props$
|
|
7690
|
+
interface Props$1i {
|
|
7673
7691
|
isCollapsed: boolean;
|
|
7674
7692
|
slots: any;
|
|
7675
7693
|
}
|
|
7676
|
-
declare class Collapse extends Component<Props$
|
|
7694
|
+
declare class Collapse extends Component<Props$1i, SpreadsheetChildEnv> {
|
|
7677
7695
|
static template: string;
|
|
7678
7696
|
static props: {
|
|
7679
7697
|
isCollapsed: BooleanConstructor;
|
|
@@ -7712,12 +7730,12 @@ interface Choice$1 {
|
|
|
7712
7730
|
value: string;
|
|
7713
7731
|
label: string;
|
|
7714
7732
|
}
|
|
7715
|
-
interface Props$
|
|
7733
|
+
interface Props$1h {
|
|
7716
7734
|
choices: Choice$1[];
|
|
7717
7735
|
onChange: (value: string) => void;
|
|
7718
7736
|
selectedValue: string;
|
|
7719
7737
|
}
|
|
7720
|
-
declare class BadgeSelection extends Component<Props$
|
|
7738
|
+
declare class BadgeSelection extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
7721
7739
|
static template: string;
|
|
7722
7740
|
static props: {
|
|
7723
7741
|
choices: ArrayConstructor;
|
|
@@ -7726,14 +7744,14 @@ declare class BadgeSelection extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
|
7726
7744
|
};
|
|
7727
7745
|
}
|
|
7728
7746
|
|
|
7729
|
-
interface Props$
|
|
7747
|
+
interface Props$1g {
|
|
7730
7748
|
action: ActionSpec;
|
|
7731
7749
|
hasTriangleDownIcon?: boolean;
|
|
7732
7750
|
selectedColor?: string;
|
|
7733
7751
|
class?: string;
|
|
7734
7752
|
onClick?: (ev: MouseEvent) => void;
|
|
7735
7753
|
}
|
|
7736
|
-
declare class ActionButton extends Component<Props$
|
|
7754
|
+
declare class ActionButton extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
7737
7755
|
static template: string;
|
|
7738
7756
|
static props: {
|
|
7739
7757
|
action: ObjectConstructor;
|
|
@@ -7920,7 +7938,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7920
7938
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7921
7939
|
}
|
|
7922
7940
|
|
|
7923
|
-
interface Props$
|
|
7941
|
+
interface Props$1f {
|
|
7924
7942
|
currentColor: string | undefined;
|
|
7925
7943
|
toggleColorPicker: () => void;
|
|
7926
7944
|
showColorPicker: boolean;
|
|
@@ -7931,7 +7949,7 @@ interface Props$1e {
|
|
|
7931
7949
|
dropdownMaxHeight?: Pixel;
|
|
7932
7950
|
class?: string;
|
|
7933
7951
|
}
|
|
7934
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
7952
|
+
declare class ColorPickerWidget extends Component<Props$1f, SpreadsheetChildEnv> {
|
|
7935
7953
|
static template: string;
|
|
7936
7954
|
static props: {
|
|
7937
7955
|
currentColor: {
|
|
@@ -7992,14 +8010,14 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7992
8010
|
interface State$5 {
|
|
7993
8011
|
isOpen: boolean;
|
|
7994
8012
|
}
|
|
7995
|
-
interface Props$
|
|
8013
|
+
interface Props$1e {
|
|
7996
8014
|
currentFontSize: number;
|
|
7997
8015
|
class: string;
|
|
7998
8016
|
onFontSizeChanged: (fontSize: number) => void;
|
|
7999
8017
|
onToggle?: () => void;
|
|
8000
8018
|
onFocusInput?: () => void;
|
|
8001
8019
|
}
|
|
8002
|
-
declare class FontSizeEditor extends Component<Props$
|
|
8020
|
+
declare class FontSizeEditor extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
8003
8021
|
static template: string;
|
|
8004
8022
|
static props: {
|
|
8005
8023
|
currentFontSize: NumberConstructor;
|
|
@@ -8037,7 +8055,7 @@ declare class FontSizeEditor extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
|
8037
8055
|
onInputKeydown(ev: KeyboardEvent): void;
|
|
8038
8056
|
}
|
|
8039
8057
|
|
|
8040
|
-
interface Props$
|
|
8058
|
+
interface Props$1d {
|
|
8041
8059
|
class?: string;
|
|
8042
8060
|
style: ChartStyle;
|
|
8043
8061
|
updateStyle: (style: ChartStyle) => void;
|
|
@@ -8046,7 +8064,7 @@ interface Props$1c {
|
|
|
8046
8064
|
hasHorizontalAlign?: boolean;
|
|
8047
8065
|
hasBackgroundColor?: boolean;
|
|
8048
8066
|
}
|
|
8049
|
-
declare class TextStyler extends Component<Props$
|
|
8067
|
+
declare class TextStyler extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
8050
8068
|
static template: string;
|
|
8051
8069
|
static components: {
|
|
8052
8070
|
ColorPickerWidget: typeof ColorPickerWidget;
|
|
@@ -8114,7 +8132,7 @@ declare class TextStyler extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
|
8114
8132
|
get verticalAlignActions(): ActionSpec[];
|
|
8115
8133
|
}
|
|
8116
8134
|
|
|
8117
|
-
interface Props$
|
|
8135
|
+
interface Props$1c {
|
|
8118
8136
|
title?: string;
|
|
8119
8137
|
placeholder?: string;
|
|
8120
8138
|
updateTitle: (title: string) => void;
|
|
@@ -8123,7 +8141,7 @@ interface Props$1b {
|
|
|
8123
8141
|
defaultStyle?: Partial<TitleDesign>;
|
|
8124
8142
|
updateStyle: (style: TitleDesign) => void;
|
|
8125
8143
|
}
|
|
8126
|
-
declare class ChartTitle extends Component<Props$
|
|
8144
|
+
declare class ChartTitle extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
8127
8145
|
static template: string;
|
|
8128
8146
|
static components: {
|
|
8129
8147
|
Section: typeof Section;
|
|
@@ -8160,13 +8178,13 @@ interface AxisDefinition {
|
|
|
8160
8178
|
id: string;
|
|
8161
8179
|
name: string;
|
|
8162
8180
|
}
|
|
8163
|
-
interface Props$
|
|
8181
|
+
interface Props$1b {
|
|
8164
8182
|
chartId: UID;
|
|
8165
8183
|
definition: ChartWithAxisDefinition;
|
|
8166
8184
|
updateChart: (chartId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
8167
8185
|
axesList: AxisDefinition[];
|
|
8168
8186
|
}
|
|
8169
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
8187
|
+
declare class AxisDesignEditor extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
8170
8188
|
static template: string;
|
|
8171
8189
|
static components: {
|
|
8172
8190
|
Section: typeof Section;
|
|
@@ -8198,14 +8216,14 @@ interface Choice {
|
|
|
8198
8216
|
value: unknown;
|
|
8199
8217
|
label: string;
|
|
8200
8218
|
}
|
|
8201
|
-
interface Props$
|
|
8219
|
+
interface Props$1a {
|
|
8202
8220
|
choices: Choice[];
|
|
8203
8221
|
onChange: (value: unknown) => void;
|
|
8204
8222
|
selectedValue: string;
|
|
8205
8223
|
name: string;
|
|
8206
8224
|
direction: "horizontal" | "vertical";
|
|
8207
8225
|
}
|
|
8208
|
-
declare class RadioSelection extends Component<Props$
|
|
8226
|
+
declare class RadioSelection extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
8209
8227
|
static template: string;
|
|
8210
8228
|
static props: {
|
|
8211
8229
|
choices: ArrayConstructor;
|
|
@@ -8224,13 +8242,13 @@ declare class RadioSelection extends Component<Props$19, SpreadsheetChildEnv> {
|
|
|
8224
8242
|
};
|
|
8225
8243
|
}
|
|
8226
8244
|
|
|
8227
|
-
interface Props$
|
|
8245
|
+
interface Props$19 {
|
|
8228
8246
|
currentColor?: string;
|
|
8229
8247
|
onColorPicked: (color: string) => void;
|
|
8230
8248
|
title?: string;
|
|
8231
8249
|
disableNoColor?: boolean;
|
|
8232
8250
|
}
|
|
8233
|
-
declare class RoundColorPicker extends Component<Props$
|
|
8251
|
+
declare class RoundColorPicker extends Component<Props$19, SpreadsheetChildEnv> {
|
|
8234
8252
|
static template: string;
|
|
8235
8253
|
static components: {
|
|
8236
8254
|
Section: typeof Section;
|
|
@@ -8263,14 +8281,14 @@ declare class RoundColorPicker extends Component<Props$18, SpreadsheetChildEnv>
|
|
|
8263
8281
|
get buttonStyle(): string;
|
|
8264
8282
|
}
|
|
8265
8283
|
|
|
8266
|
-
interface Props$
|
|
8284
|
+
interface Props$18 {
|
|
8267
8285
|
chartId: UID;
|
|
8268
8286
|
definition: ChartDefinition;
|
|
8269
8287
|
updateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8270
8288
|
canUpdateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8271
8289
|
defaultChartTitleFontSize?: number;
|
|
8272
8290
|
}
|
|
8273
|
-
declare class GeneralDesignEditor extends Component<Props$
|
|
8291
|
+
declare class GeneralDesignEditor extends Component<Props$18, SpreadsheetChildEnv> {
|
|
8274
8292
|
static template: string;
|
|
8275
8293
|
static components: {
|
|
8276
8294
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -8305,6 +8323,25 @@ declare class GeneralDesignEditor extends Component<Props$17, SpreadsheetChildEn
|
|
|
8305
8323
|
updateChartTitleStyle(style: TitleDesign): void;
|
|
8306
8324
|
}
|
|
8307
8325
|
|
|
8326
|
+
interface Props$17 {
|
|
8327
|
+
chartId: UID;
|
|
8328
|
+
definition: ChartWithDataSetDefinition;
|
|
8329
|
+
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8330
|
+
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8331
|
+
}
|
|
8332
|
+
declare class ChartHumanizeNumbers extends Component<Props$17, SpreadsheetChildEnv> {
|
|
8333
|
+
static template: string;
|
|
8334
|
+
static components: {
|
|
8335
|
+
Checkbox: typeof Checkbox;
|
|
8336
|
+
};
|
|
8337
|
+
static props: {
|
|
8338
|
+
chartId: StringConstructor;
|
|
8339
|
+
definition: ObjectConstructor;
|
|
8340
|
+
updateChart: FunctionConstructor;
|
|
8341
|
+
canUpdateChart: FunctionConstructor;
|
|
8342
|
+
};
|
|
8343
|
+
}
|
|
8344
|
+
|
|
8308
8345
|
interface Props$16 {
|
|
8309
8346
|
chartId: UID;
|
|
8310
8347
|
definition: ChartWithDataSetDefinition;
|
|
@@ -8446,6 +8483,7 @@ declare class ChartWithAxisDesignPanel<P extends Props$12 = Props$12> extends Co
|
|
|
8446
8483
|
SeriesWithAxisDesignEditor: typeof SeriesWithAxisDesignEditor;
|
|
8447
8484
|
ChartLegend: typeof ChartLegend;
|
|
8448
8485
|
ChartShowValues: typeof ChartShowValues;
|
|
8486
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
8449
8487
|
};
|
|
8450
8488
|
static props: {
|
|
8451
8489
|
chartId: StringConstructor;
|
|
@@ -9116,6 +9154,7 @@ declare class GaugeChartDesignPanel extends Component<Props$Y, SpreadsheetChildE
|
|
|
9116
9154
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
9117
9155
|
ChartErrorSection: typeof ChartErrorSection;
|
|
9118
9156
|
StandaloneComposer: typeof StandaloneComposer;
|
|
9157
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
9119
9158
|
};
|
|
9120
9159
|
static props: {
|
|
9121
9160
|
chartId: StringConstructor;
|
|
@@ -9207,6 +9246,7 @@ declare class ScorecardChartDesignPanel extends Component<Props$W, SpreadsheetCh
|
|
|
9207
9246
|
Section: typeof Section;
|
|
9208
9247
|
Checkbox: typeof Checkbox;
|
|
9209
9248
|
ChartTitle: typeof ChartTitle;
|
|
9249
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
9210
9250
|
};
|
|
9211
9251
|
static props: {
|
|
9212
9252
|
chartId: StringConstructor;
|
|
@@ -9218,9 +9258,7 @@ declare class ScorecardChartDesignPanel extends Component<Props$W, SpreadsheetCh
|
|
|
9218
9258
|
};
|
|
9219
9259
|
};
|
|
9220
9260
|
get colorsSectionTitle(): string;
|
|
9221
|
-
get humanizeNumbersLabel(): string;
|
|
9222
9261
|
get defaultScorecardTitleFontSize(): number;
|
|
9223
|
-
updateHumanizeNumbers(humanize: boolean): void;
|
|
9224
9262
|
translate(term: any): string;
|
|
9225
9263
|
setColor(color: Color, colorPickerId: ColorPickerId): void;
|
|
9226
9264
|
get keyStyle(): TitleDesign;
|
|
@@ -10728,6 +10766,8 @@ declare class PieChartDesignPanel extends Component<Props$y, SpreadsheetChildEnv
|
|
|
10728
10766
|
ChartLegend: typeof ChartLegend;
|
|
10729
10767
|
ChartShowValues: typeof ChartShowValues;
|
|
10730
10768
|
PieHoleSize: typeof PieHoleSize;
|
|
10769
|
+
Checkbox: typeof Checkbox;
|
|
10770
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
10731
10771
|
};
|
|
10732
10772
|
static props: {
|
|
10733
10773
|
chartId: StringConstructor;
|
|
@@ -10899,6 +10939,7 @@ interface Props$u {
|
|
|
10899
10939
|
id?: string;
|
|
10900
10940
|
placeholder?: string;
|
|
10901
10941
|
autofocus?: boolean;
|
|
10942
|
+
alwaysShowBorder?: boolean;
|
|
10902
10943
|
}
|
|
10903
10944
|
declare class TextInput extends Component<Props$u, SpreadsheetChildEnv> {
|
|
10904
10945
|
static template: string;
|
|
@@ -10921,6 +10962,10 @@ declare class TextInput extends Component<Props$u, SpreadsheetChildEnv> {
|
|
|
10921
10962
|
type: BooleanConstructor;
|
|
10922
10963
|
optional: boolean;
|
|
10923
10964
|
};
|
|
10965
|
+
alwaysShowBorder: {
|
|
10966
|
+
type: BooleanConstructor;
|
|
10967
|
+
optional: boolean;
|
|
10968
|
+
};
|
|
10924
10969
|
};
|
|
10925
10970
|
private inputRef;
|
|
10926
10971
|
setup(): void;
|
|
@@ -10928,6 +10973,7 @@ declare class TextInput extends Component<Props$u, SpreadsheetChildEnv> {
|
|
|
10928
10973
|
save(): void;
|
|
10929
10974
|
onMouseDown(ev: MouseEvent): void;
|
|
10930
10975
|
onMouseUp(ev: MouseEvent): void;
|
|
10976
|
+
get inputClass(): string;
|
|
10931
10977
|
}
|
|
10932
10978
|
|
|
10933
10979
|
interface Props$t {
|
|
@@ -11360,7 +11406,7 @@ declare class ChartDashboardMenuStore extends SpreadsheetStore {
|
|
|
11360
11406
|
private originalChartDefinition;
|
|
11361
11407
|
constructor(get: Get, chartId: UID);
|
|
11362
11408
|
get changeChartTypeMenuItems(): {
|
|
11363
|
-
id: "line" | "bar" | "scatter" | "pie" | "radar" | "
|
|
11409
|
+
id: "line" | "bar" | "scatter" | "pie" | "radar" | "funnel" | "treemap" | "geo" | "combo" | "waterfall" | "pyramid" | "sunburst" | "scorecard" | "gauge";
|
|
11364
11410
|
label: string;
|
|
11365
11411
|
onClick: () => void;
|
|
11366
11412
|
isSelected: boolean;
|
|
@@ -11509,6 +11555,7 @@ declare class GenericZoomableChartDesignPanel<P extends Props$j = Props$j> exten
|
|
|
11509
11555
|
SeriesWithAxisDesignEditor: typeof SeriesWithAxisDesignEditor;
|
|
11510
11556
|
ChartLegend: typeof ChartLegend;
|
|
11511
11557
|
ChartShowValues: typeof ChartShowValues;
|
|
11558
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
11512
11559
|
};
|
|
11513
11560
|
onToggleZoom(zoomable: boolean): void;
|
|
11514
11561
|
}
|
|
@@ -11532,6 +11579,7 @@ declare class ComboChartDesignPanel extends GenericZoomableChartDesignPanel<Prop
|
|
|
11532
11579
|
SeriesWithAxisDesignEditor: typeof SeriesWithAxisDesignEditor;
|
|
11533
11580
|
ChartLegend: typeof ChartLegend;
|
|
11534
11581
|
ChartShowValues: typeof ChartShowValues;
|
|
11582
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
11535
11583
|
};
|
|
11536
11584
|
seriesTypeChoices: {
|
|
11537
11585
|
value: string;
|
|
@@ -11555,6 +11603,7 @@ declare class FunnelChartDesignPanel extends Component<Props$h, SpreadsheetChild
|
|
|
11555
11603
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
11556
11604
|
RoundColorPicker: typeof RoundColorPicker;
|
|
11557
11605
|
Section: typeof Section;
|
|
11606
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
11558
11607
|
};
|
|
11559
11608
|
static props: {
|
|
11560
11609
|
chartId: StringConstructor;
|
|
@@ -11586,6 +11635,7 @@ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$g> {
|
|
|
11586
11635
|
SeriesWithAxisDesignEditor: typeof SeriesWithAxisDesignEditor;
|
|
11587
11636
|
ChartLegend: typeof ChartLegend;
|
|
11588
11637
|
ChartShowValues: typeof ChartShowValues;
|
|
11638
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
11589
11639
|
};
|
|
11590
11640
|
colorScalesChoices: Record<"blues" | "cividis" | "greens" | "greys" | "oranges" | "purples" | "rainbow" | "reds" | "viridis", string>;
|
|
11591
11641
|
updateColorScaleType(ev: Event): void;
|
|
@@ -11637,6 +11687,7 @@ declare class LineChartDesignPanel extends GenericZoomableChartDesignPanel<Props
|
|
|
11637
11687
|
SeriesWithAxisDesignEditor: typeof SeriesWithAxisDesignEditor;
|
|
11638
11688
|
ChartLegend: typeof ChartLegend;
|
|
11639
11689
|
ChartShowValues: typeof ChartShowValues;
|
|
11690
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
11640
11691
|
};
|
|
11641
11692
|
}
|
|
11642
11693
|
|
|
@@ -11655,6 +11706,8 @@ declare class RadarChartDesignPanel extends Component<Props$d, SpreadsheetChildE
|
|
|
11655
11706
|
ChartLegend: typeof ChartLegend;
|
|
11656
11707
|
ChartShowValues: typeof ChartShowValues;
|
|
11657
11708
|
ChartShowDataMarkers: typeof ChartShowDataMarkers;
|
|
11709
|
+
Checkbox: typeof Checkbox;
|
|
11710
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
11658
11711
|
};
|
|
11659
11712
|
static props: {
|
|
11660
11713
|
chartId: StringConstructor;
|
|
@@ -11817,6 +11870,7 @@ declare class WaterfallChartDesignPanel extends Component<Props$8, SpreadsheetCh
|
|
|
11817
11870
|
AxisDesignEditor: typeof AxisDesignEditor;
|
|
11818
11871
|
RadioSelection: typeof RadioSelection;
|
|
11819
11872
|
ChartLegend: typeof ChartLegend;
|
|
11873
|
+
ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
|
|
11820
11874
|
};
|
|
11821
11875
|
static props: {
|
|
11822
11876
|
chartId: StringConstructor;
|
|
@@ -12012,7 +12066,7 @@ declare class ScorecardChart extends AbstractChart {
|
|
|
12012
12066
|
readonly baselineColorUp: Color;
|
|
12013
12067
|
readonly baselineColorDown: Color;
|
|
12014
12068
|
readonly fontColor?: Color;
|
|
12015
|
-
readonly humanize
|
|
12069
|
+
readonly humanize: boolean;
|
|
12016
12070
|
readonly type = "scorecard";
|
|
12017
12071
|
constructor(definition: ScorecardChartDefinition, sheetId: UID, getters: CoreGetters);
|
|
12018
12072
|
static validateChartDefinition(validator: Validator, definition: ScorecardChartDefinition): CommandResult | CommandResult[];
|
|
@@ -13575,8 +13629,8 @@ declare const chartHelpers: {
|
|
|
13575
13629
|
useLeftAxis: boolean;
|
|
13576
13630
|
useRightAxis: boolean;
|
|
13577
13631
|
};
|
|
13578
|
-
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string) => any;
|
|
13579
|
-
formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
|
|
13632
|
+
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale, humanizeNumbers?: boolean): (value: any, axisId: string) => any;
|
|
13633
|
+
formatTickValue(localeFormat: LocaleFormat, humanizeNumbers?: boolean): (value: any) => any;
|
|
13580
13634
|
getPieColors(colors: ColorGenerator, dataSetsValues: DatasetValues[]): Color[];
|
|
13581
13635
|
truncateLabel(label: string | undefined, maxLen?: number): string;
|
|
13582
13636
|
isTrendLineAxis(axisID: string): axisID is "x1" | "xMovingAverage";
|
|
@@ -13626,4 +13680,4 @@ declare const chartHelpers: {
|
|
|
13626
13680
|
WaterfallChart: typeof WaterfallChart;
|
|
13627
13681
|
};
|
|
13628
13682
|
|
|
13629
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
13683
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidSubtotalFormulasCommands, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|