@odoo/o-spreadsheet 19.5.0-alpha.6 → 19.5.0-alpha.7

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.
Files changed (68) hide show
  1. package/dist/o_spreadsheet.cjs +2116 -1475
  2. package/dist/o_spreadsheet.css +21 -18
  3. package/dist/o_spreadsheet.esm.js +2116 -1475
  4. package/dist/o_spreadsheet.iife.js +2118 -1477
  5. package/dist/o_spreadsheet.min.iife.js +386 -386
  6. package/dist/o_spreadsheet.xml +95 -51
  7. package/dist/types/actions/action.d.ts +1 -7
  8. package/dist/types/actions/data_actions.d.ts +1 -0
  9. package/dist/types/actions/menu_items_actions.d.ts +2 -0
  10. package/dist/types/components/helpers/dom_helpers.d.ts +2 -0
  11. package/dist/types/components/side_panel/carousel_panel/carousel_panel.d.ts +14 -1
  12. package/dist/types/components/side_panel/chart/chart_type_picker/chart_type_picker.d.ts +4 -17
  13. package/dist/types/components/side_panel/chart/chart_type_picker_popover/chart_type_picker_popover.d.ts +64 -0
  14. package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup.d.ts +28 -0
  15. package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup_store.d.ts +13 -0
  16. package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_layout_configurator.d.ts +0 -2
  17. package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_panel.d.ts +4 -11
  18. package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_store.d.ts +33 -0
  19. package/dist/types/formulas/code_builder.d.ts +2 -1
  20. package/dist/types/formulas/compiler.d.ts +6 -0
  21. package/dist/types/functions/create_compute_function.d.ts +4 -3
  22. package/dist/types/functions/function_registry.d.ts +1 -5
  23. package/dist/types/functions/helper_matrices.d.ts +1 -0
  24. package/dist/types/functions/helper_statistical.d.ts +6 -0
  25. package/dist/types/functions/module_array.d.ts +41 -23
  26. package/dist/types/functions/module_database.d.ts +18 -6
  27. package/dist/types/functions/module_date.d.ts +70 -22
  28. package/dist/types/functions/module_engineering.d.ts +3 -1
  29. package/dist/types/functions/module_filter.d.ts +2 -2
  30. package/dist/types/functions/module_financial.d.ts +105 -35
  31. package/dist/types/functions/module_info.d.ts +33 -11
  32. package/dist/types/functions/module_logical.d.ts +16 -8
  33. package/dist/types/functions/module_lookup.d.ts +23 -15
  34. package/dist/types/functions/module_math.d.ts +125 -43
  35. package/dist/types/functions/module_operators.d.ts +7 -3
  36. package/dist/types/functions/module_statistical.d.ts +78 -22
  37. package/dist/types/functions/module_text.d.ts +70 -24
  38. package/dist/types/functions/module_web.d.ts +3 -1
  39. package/dist/types/helpers/carousel_helpers.d.ts +0 -2
  40. package/dist/types/helpers/figures/chart.d.ts +2 -0
  41. package/dist/types/helpers/ui/split_to_columns_interactive.d.ts +1 -1
  42. package/dist/types/index.d.ts +3 -0
  43. package/dist/types/model.d.ts +1 -0
  44. package/dist/types/plugins/core/cell.d.ts +1 -0
  45. package/dist/types/plugins/core/chart.d.ts +2 -0
  46. package/dist/types/plugins/core/conditional_format.d.ts +2 -0
  47. package/dist/types/plugins/core/data_validation.d.ts +2 -0
  48. package/dist/types/plugins/core/formulas_provider.d.ts +8 -0
  49. package/dist/types/plugins/core/pivot.d.ts +1 -0
  50. package/dist/types/plugins/core_plugin.d.ts +7 -3
  51. package/dist/types/plugins/ui_core_views/cell_evaluation/evaluation_plugin.d.ts +10 -3
  52. package/dist/types/plugins/ui_feature/ui_options.d.ts +1 -7
  53. package/dist/types/plugins/ui_stateful/filter_evaluation.d.ts +2 -3
  54. package/dist/types/registries/chart_registry.d.ts +3 -0
  55. package/dist/types/registries/data_source_registry.d.ts +15 -0
  56. package/dist/types/stores/table_resize_store.d.ts +6 -0
  57. package/dist/types/types/commands.d.ts +20 -12
  58. package/dist/types/types/core_getters.d.ts +3 -1
  59. package/dist/types/types/functions.d.ts +14 -4
  60. package/dist/types/types/getters.d.ts +5 -6
  61. package/dist/types/types/misc.d.ts +5 -1
  62. package/package.json +1 -1
  63. package/dist/types/plugins/ui_feature/split_to_columns.d.ts +0 -21
  64. package/dist/types/plugins/ui_feature/table_resize_ui.d.ts +0 -6
  65. /package/dist/types/plugins/{ui_feature → ui_stateful}/cell_computed_style.d.ts +0 -0
  66. /package/dist/types/plugins/{ui_feature → ui_stateful}/figure.d.ts +0 -0
  67. /package/dist/types/plugins/{ui_feature → ui_stateful}/header_visibility_ui.d.ts +0 -0
  68. /package/dist/types/plugins/{ui_feature → ui_stateful}/table_computed_style.d.ts +0 -0
@@ -3,61 +3,81 @@ import { Arg, FunctionResultNumber, FunctionResultObject, Matrix, Maybe } from "
3
3
  export declare const ABS: {
4
4
  description: string;
5
5
  args: import("..").ArgDefinition[];
6
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
6
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
7
+ value: number;
8
+ };
7
9
  isExported: true;
8
10
  };
9
11
  export declare const ACOS: {
10
12
  description: string;
11
13
  args: import("..").ArgDefinition[];
12
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number | EvaluationError;
14
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => EvaluationError | {
15
+ value: number;
16
+ };
13
17
  isExported: true;
14
18
  };
15
19
  export declare const ACOSH: {
16
20
  description: string;
17
21
  args: import("..").ArgDefinition[];
18
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number | EvaluationError;
22
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => EvaluationError | {
23
+ value: number;
24
+ };
19
25
  isExported: true;
20
26
  };
21
27
  export declare const ACOT: {
22
28
  description: string;
23
29
  args: import("..").ArgDefinition[];
24
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
30
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
31
+ value: number;
32
+ };
25
33
  isExported: true;
26
34
  };
27
35
  export declare const ACOTH: {
28
36
  description: string;
29
37
  args: import("..").ArgDefinition[];
30
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number | EvaluationError;
38
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => EvaluationError | {
39
+ value: number;
40
+ };
31
41
  isExported: true;
32
42
  };
33
43
  export declare const ASIN: {
34
44
  description: string;
35
45
  args: import("..").ArgDefinition[];
36
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number | EvaluationError;
46
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => EvaluationError | {
47
+ value: number;
48
+ };
37
49
  isExported: true;
38
50
  };
39
51
  export declare const ASINH: {
40
52
  description: string;
41
53
  args: import("..").ArgDefinition[];
42
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
54
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
55
+ value: number;
56
+ };
43
57
  isExported: true;
44
58
  };
45
59
  export declare const ATAN: {
46
60
  description: string;
47
61
  args: import("..").ArgDefinition[];
48
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
62
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
63
+ value: number;
64
+ };
49
65
  isExported: true;
50
66
  };
51
67
  export declare const ATAN2: {
52
68
  description: string;
53
69
  args: import("..").ArgDefinition[];
54
- compute: (this: import("..").EvalContext, x: Maybe<FunctionResultObject>, y: Maybe<FunctionResultObject>) => number | DivisionByZeroError;
70
+ compute: (this: import("..").EvalContext, x: Maybe<FunctionResultObject>, y: Maybe<FunctionResultObject>) => DivisionByZeroError | {
71
+ value: number;
72
+ };
55
73
  isExported: true;
56
74
  };
57
75
  export declare const ATANH: {
58
76
  description: string;
59
77
  args: import("..").ArgDefinition[];
60
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number | EvaluationError;
78
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => EvaluationError | {
79
+ value: number;
80
+ };
61
81
  isExported: true;
62
82
  };
63
83
  export declare const CEILING: {
@@ -84,83 +104,111 @@ export declare const CEILING_PRECISE: {
84
104
  export declare const COS: {
85
105
  description: string;
86
106
  args: import("..").ArgDefinition[];
87
- compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => number;
107
+ compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => {
108
+ value: number;
109
+ };
88
110
  isExported: true;
89
111
  };
90
112
  export declare const COSH: {
91
113
  description: string;
92
114
  args: import("..").ArgDefinition[];
93
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
115
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
116
+ value: number;
117
+ };
94
118
  isExported: true;
95
119
  };
96
120
  export declare const COT: {
97
121
  description: string;
98
122
  args: import("..").ArgDefinition[];
99
- compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => number | DivisionByZeroError;
123
+ compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => DivisionByZeroError | {
124
+ value: number;
125
+ };
100
126
  isExported: true;
101
127
  };
102
128
  export declare const COTH: {
103
129
  description: string;
104
130
  args: import("..").ArgDefinition[];
105
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number | DivisionByZeroError;
131
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => DivisionByZeroError | {
132
+ value: number;
133
+ };
106
134
  isExported: true;
107
135
  };
108
136
  export declare const COUNTBLANK: {
109
137
  description: string;
110
138
  args: import("..").ArgDefinition[];
111
- compute: (...args: Arg[]) => number;
139
+ compute: (...args: Arg[]) => {
140
+ value: number;
141
+ };
112
142
  isExported: true;
113
143
  };
114
144
  export declare const COUNTIF: {
115
145
  description: string;
116
146
  args: import("..").ArgDefinition[];
117
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
147
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
148
+ value: number;
149
+ };
118
150
  isExported: true;
119
151
  };
120
152
  export declare const COUNTIFS: {
121
153
  description: string;
122
154
  args: import("..").ArgDefinition[];
123
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
155
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
156
+ value: number;
157
+ };
124
158
  isExported: true;
125
159
  };
126
160
  export declare const COUNTUNIQUE: {
127
161
  description: string;
128
162
  args: import("..").ArgDefinition[];
129
- compute: (...args: Arg[]) => number;
163
+ compute: (...args: Arg[]) => {
164
+ value: number;
165
+ };
130
166
  };
131
167
  export declare const COUNTUNIQUEIFS: {
132
168
  description: string;
133
169
  args: import("..").ArgDefinition[];
134
- compute: (this: import("..").EvalContext, range: Matrix<FunctionResultObject>, ...args: Arg[]) => number;
170
+ compute: (this: import("..").EvalContext, range: Matrix<FunctionResultObject>, ...args: Arg[]) => {
171
+ value: number;
172
+ };
135
173
  };
136
174
  export declare const CSC: {
137
175
  description: string;
138
176
  args: import("..").ArgDefinition[];
139
- compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => number | DivisionByZeroError;
177
+ compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => DivisionByZeroError | {
178
+ value: number;
179
+ };
140
180
  isExported: true;
141
181
  };
142
182
  export declare const CSCH: {
143
183
  description: string;
144
184
  args: import("..").ArgDefinition[];
145
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number | DivisionByZeroError;
185
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => DivisionByZeroError | {
186
+ value: number;
187
+ };
146
188
  isExported: true;
147
189
  };
148
190
  export declare const DECIMAL: {
149
191
  description: string;
150
192
  args: import("..").ArgDefinition[];
151
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>, base: Maybe<FunctionResultObject>) => number | EvaluationError;
193
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>, base: Maybe<FunctionResultObject>) => EvaluationError | {
194
+ value: number;
195
+ };
152
196
  isExported: true;
153
197
  };
154
198
  export declare const DEGREES: {
155
199
  description: string;
156
200
  args: import("..").ArgDefinition[];
157
- compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => number;
201
+ compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => {
202
+ value: number;
203
+ };
158
204
  isExported: true;
159
205
  };
160
206
  export declare const EXP: {
161
207
  description: string;
162
208
  args: import("..").ArgDefinition[];
163
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
209
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
210
+ value: number;
211
+ };
164
212
  isExported: true;
165
213
  };
166
214
  export declare const FLOOR: {
@@ -187,7 +235,9 @@ export declare const FLOOR_PRECISE: {
187
235
  export declare const ISEVEN: {
188
236
  description: string;
189
237
  args: import("..").ArgDefinition[];
190
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => boolean;
238
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
239
+ value: boolean;
240
+ };
191
241
  isExported: true;
192
242
  };
193
243
  export declare const ISO_CEILING: {
@@ -199,19 +249,25 @@ export declare const ISO_CEILING: {
199
249
  export declare const ISODD: {
200
250
  description: string;
201
251
  args: import("..").ArgDefinition[];
202
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => boolean;
252
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
253
+ value: boolean;
254
+ };
203
255
  isExported: true;
204
256
  };
205
257
  export declare const LN: {
206
258
  description: string;
207
259
  args: import("..").ArgDefinition[];
208
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number | EvaluationError;
260
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => EvaluationError | {
261
+ value: number;
262
+ };
209
263
  isExported: true;
210
264
  };
211
265
  export declare const LOG: {
212
266
  description: string;
213
267
  args: import("..").ArgDefinition[];
214
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>, base?: Maybe<FunctionResultObject>) => number | EvaluationError;
268
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>, base?: Maybe<FunctionResultObject>) => EvaluationError | {
269
+ value: number;
270
+ };
215
271
  isExported: true;
216
272
  };
217
273
  export declare const MOD: {
@@ -223,7 +279,9 @@ export declare const MOD: {
223
279
  export declare const MUNIT: {
224
280
  description: string;
225
281
  args: import("..").ArgDefinition[];
226
- compute: (this: import("..").EvalContext, n: Maybe<FunctionResultObject>) => EvaluationError | Matrix<number>;
282
+ computeArray: (this: import("..").EvalContext, n: Maybe<FunctionResultObject>) => EvaluationError | Matrix<{
283
+ value: number;
284
+ }>;
227
285
  isExported: true;
228
286
  };
229
287
  export declare const ODD: {
@@ -235,7 +293,9 @@ export declare const ODD: {
235
293
  export declare const PI: {
236
294
  description: string;
237
295
  args: never[];
238
- compute: () => number;
296
+ compute: () => {
297
+ value: number;
298
+ };
239
299
  isExported: true;
240
300
  };
241
301
  export declare const POWER: {
@@ -256,13 +316,17 @@ export declare const PRODUCT: {
256
316
  export declare const RAND: {
257
317
  description: string;
258
318
  args: never[];
259
- compute: () => number;
319
+ compute: () => {
320
+ value: number;
321
+ };
260
322
  isExported: true;
261
323
  };
262
324
  export declare const RANDARRAY: {
263
325
  description: string;
264
326
  args: import("..").ArgDefinition[];
265
- compute: (this: import("..").EvalContext, rows?: Maybe<FunctionResultObject>, columns?: Maybe<FunctionResultObject>, min?: Maybe<FunctionResultObject>, max?: Maybe<FunctionResultObject>, wholeNumber?: Maybe<FunctionResultObject>) => number[][] | EvaluationError;
327
+ computeArray: (this: import("..").EvalContext, rows?: Maybe<FunctionResultObject>, columns?: Maybe<FunctionResultObject>, min?: Maybe<FunctionResultObject>, max?: Maybe<FunctionResultObject>, wholeNumber?: Maybe<FunctionResultObject>) => EvaluationError | Matrix<{
328
+ value: number;
329
+ }>;
266
330
  isExported: true;
267
331
  };
268
332
  export declare const RANDBETWEEN: {
@@ -295,19 +359,23 @@ export declare const ROUNDUP: {
295
359
  export declare const SEC: {
296
360
  description: string;
297
361
  args: import("..").ArgDefinition[];
298
- compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => number;
362
+ compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => {
363
+ value: number;
364
+ };
299
365
  isExported: true;
300
366
  };
301
367
  export declare const SECH: {
302
368
  description: string;
303
369
  args: import("..").ArgDefinition[];
304
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
370
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
371
+ value: number;
372
+ };
305
373
  isExported: true;
306
374
  };
307
375
  export declare const SEQUENCE: {
308
376
  description: string;
309
377
  args: import("..").ArgDefinition[];
310
- compute: (this: import("..").EvalContext, rows: Maybe<FunctionResultObject>, columns?: FunctionResultObject, start?: FunctionResultObject, step?: FunctionResultObject) => EvaluationError | Matrix<{
378
+ computeArray: (this: import("..").EvalContext, rows: Maybe<FunctionResultObject>, columns?: FunctionResultObject, start?: FunctionResultObject, step?: FunctionResultObject) => EvaluationError | Matrix<{
311
379
  value: number;
312
380
  }>;
313
381
  isExported: true;
@@ -315,13 +383,17 @@ export declare const SEQUENCE: {
315
383
  export declare const SIN: {
316
384
  description: string;
317
385
  args: import("..").ArgDefinition[];
318
- compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => number;
386
+ compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => {
387
+ value: number;
388
+ };
319
389
  isExported: true;
320
390
  };
321
391
  export declare const SINH: {
322
392
  description: string;
323
393
  args: import("..").ArgDefinition[];
324
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
394
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
395
+ value: number;
396
+ };
325
397
  isExported: true;
326
398
  };
327
399
  export declare const SQRT: {
@@ -336,7 +408,7 @@ export declare const SQRT: {
336
408
  export declare const SUBTOTAL: {
337
409
  description: string;
338
410
  args: import("..").ArgDefinition[];
339
- compute: (this: import("..").EvalContext, functionCode: Maybe<FunctionResultObject>, ...refs: Arg[]) => any;
411
+ compute: (this: import("..").EvalContext, functionCode: Maybe<FunctionResultObject>, ...refs: Arg[]) => FunctionResultObject | EvaluationError;
340
412
  isExported: true;
341
413
  };
342
414
  export declare const SUM: {
@@ -348,25 +420,33 @@ export declare const SUM: {
348
420
  export declare const SUMIF: {
349
421
  description: string;
350
422
  args: import("..").ArgDefinition[];
351
- compute: (this: import("..").EvalContext, criteriaRange: Matrix<FunctionResultObject>, criterion: Maybe<FunctionResultObject>, sumRange: Matrix<FunctionResultObject>) => number;
423
+ compute: (this: import("..").EvalContext, criteriaRange: Matrix<FunctionResultObject>, criterion: Maybe<FunctionResultObject>, sumRange: Matrix<FunctionResultObject>) => {
424
+ value: number;
425
+ };
352
426
  isExported: true;
353
427
  };
354
428
  export declare const SUMIFS: {
355
429
  description: string;
356
430
  args: import("..").ArgDefinition[];
357
- compute: (this: import("..").EvalContext, sumRange: Matrix<FunctionResultObject>, ...criters: Arg[]) => number;
431
+ compute: (this: import("..").EvalContext, sumRange: Matrix<FunctionResultObject>, ...criters: Arg[]) => {
432
+ value: number;
433
+ };
358
434
  isExported: true;
359
435
  };
360
436
  export declare const TAN: {
361
437
  description: string;
362
438
  args: import("..").ArgDefinition[];
363
- compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => number;
439
+ compute: (this: import("..").EvalContext, angle: Maybe<FunctionResultObject>) => {
440
+ value: number;
441
+ };
364
442
  isExported: true;
365
443
  };
366
444
  export declare const TANH: {
367
445
  description: string;
368
446
  args: import("..").ArgDefinition[];
369
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
447
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
448
+ value: number;
449
+ };
370
450
  isExported: true;
371
451
  };
372
452
  export declare const TRUNC: {
@@ -378,6 +458,8 @@ export declare const TRUNC: {
378
458
  export declare const INT: {
379
459
  description: string;
380
460
  args: import("..").ArgDefinition[];
381
- compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => number;
461
+ compute: (this: import("..").EvalContext, value: Maybe<FunctionResultObject>) => {
462
+ value: number;
463
+ };
382
464
  isExported: true;
383
465
  };
@@ -8,7 +8,9 @@ export declare const ADD: {
8
8
  export declare const CONCAT: {
9
9
  description: string;
10
10
  args: import("..").ArgDefinition[];
11
- compute: (value1: Maybe<FunctionResultObject>, value2: Maybe<FunctionResultObject>) => string;
11
+ compute: (value1: Maybe<FunctionResultObject>, value2: Maybe<FunctionResultObject>) => {
12
+ value: string;
13
+ };
12
14
  isExported: true;
13
15
  };
14
16
  export declare const DIVIDE: {
@@ -76,7 +78,7 @@ export declare const POW: {
76
78
  export declare const SPILLED_RANGE: {
77
79
  description: string;
78
80
  args: import("..").ArgDefinition[];
79
- compute: (this: import("..").EvalContext, ref: Arg | undefined) => FunctionResultObject | EvaluationError | import("..").Matrix<FunctionResultObject>;
81
+ computeArray: (this: import("..").EvalContext, ref: Arg | undefined) => FunctionResultObject | EvaluationError | import("..").Matrix<FunctionResultObject>;
80
82
  hidden: true;
81
83
  };
82
84
  export declare const UMINUS: {
@@ -87,7 +89,9 @@ export declare const UMINUS: {
87
89
  export declare const UNARY_PERCENT: {
88
90
  description: string;
89
91
  args: import("..").ArgDefinition[];
90
- compute: (this: import("..").EvalContext, percentage: Maybe<FunctionResultObject>) => number;
92
+ compute: (this: import("..").EvalContext, percentage: Maybe<FunctionResultObject>) => {
93
+ value: number;
94
+ };
91
95
  };
92
96
  export declare const UPLUS: {
93
97
  description: string;
@@ -4,7 +4,9 @@ import { Arg, FunctionResultNumber, FunctionResultObject, Matrix, Maybe } from "
4
4
  export declare const AVEDEV: {
5
5
  description: string;
6
6
  args: import("..").ArgDefinition[];
7
- compute: (this: import("..").EvalContext, ...values: Arg[]) => number | DivisionByZeroError;
7
+ compute: (this: import("..").EvalContext, ...values: Arg[]) => DivisionByZeroError | {
8
+ value: number;
9
+ };
8
10
  isExported: true;
9
11
  };
10
12
  export declare const AVERAGE: {
@@ -33,48 +35,70 @@ export declare const AVERAGEA: {
33
35
  export declare const AVERAGEIF: {
34
36
  description: string;
35
37
  args: import("..").ArgDefinition[];
36
- compute: (this: import("..").EvalContext, criteriaRange: Arg, criterion: Maybe<FunctionResultObject>, averageRange: Arg) => number | DivisionByZeroError;
38
+ compute: (this: import("..").EvalContext, criteriaRange: Arg, criterion: Maybe<FunctionResultObject>, averageRange: Arg) => DivisionByZeroError | {
39
+ value: number;
40
+ };
37
41
  isExported: true;
38
42
  };
39
43
  export declare const AVERAGEIFS: {
40
44
  description: string;
41
45
  args: import("..").ArgDefinition[];
42
- compute: (this: import("..").EvalContext, averageRange: Matrix<FunctionResultObject>, ...args: Arg[]) => number | DivisionByZeroError;
46
+ compute: (this: import("..").EvalContext, averageRange: Matrix<FunctionResultObject>, ...args: Arg[]) => DivisionByZeroError | {
47
+ value: number;
48
+ };
43
49
  isExported: true;
44
50
  };
45
51
  export declare const COUNT: {
46
52
  description: string;
47
53
  args: import("..").ArgDefinition[];
48
- compute: (this: import("..").EvalContext, ...values: Arg[]) => number;
54
+ compute: (this: import("..").EvalContext, ...values: Arg[]) => {
55
+ value: number;
56
+ };
49
57
  isExported: true;
50
58
  };
51
59
  export declare const COUNTA: {
52
60
  description: string;
53
61
  args: import("..").ArgDefinition[];
54
- compute: (...values: Arg[]) => number;
62
+ compute: (...values: Arg[]) => {
63
+ value: number;
64
+ };
55
65
  isExported: true;
56
66
  };
57
67
  export declare const COVAR: {
58
68
  description: string;
59
69
  args: import("..").ArgDefinition[];
60
- compute: (dataY: Arg, dataX: Arg) => number;
70
+ compute: (dataY: Arg, dataX: Arg) => {
71
+ value: number;
72
+ };
61
73
  isExported: true;
62
74
  };
63
75
  export declare const COVARIANCE_P: {
64
76
  description: string;
65
77
  args: import("..").ArgDefinition[];
66
- compute: (dataY: Arg, dataX: Arg) => number;
78
+ compute: (dataY: Arg, dataX: Arg) => {
79
+ value: number;
80
+ };
67
81
  isExported: true;
68
82
  };
69
83
  export declare const COVARIANCE_S: {
70
84
  description: string;
71
85
  args: import("..").ArgDefinition[];
72
- compute: (dataY: Arg, dataX: Arg) => number;
86
+ compute: (dataY: Arg, dataX: Arg) => {
87
+ value: number;
88
+ };
73
89
  isExported: true;
74
90
  };
91
+ export declare const CHISQ_DIST_RT: AddFunctionDescription;
92
+ export declare const CHISQ_TEST: AddFunctionDescription;
93
+ export declare const CONFIDENCE_NORM: AddFunctionDescription;
94
+ export declare const CONFIDENCE_T: AddFunctionDescription;
95
+ export declare const F_TEST: AddFunctionDescription;
75
96
  export declare const FORECAST: AddFunctionDescription;
97
+ export declare const GEOMEAN: AddFunctionDescription;
76
98
  export declare const GROWTH: AddFunctionDescription;
99
+ export declare const HARMEAN: AddFunctionDescription;
77
100
  export declare const INTERCEPT: AddFunctionDescription;
101
+ export declare const KURT: AddFunctionDescription;
78
102
  export declare const LARGE: {
79
103
  description: string;
80
104
  args: import("..").ArgDefinition[];
@@ -99,7 +123,9 @@ export declare const MAXA: {
99
123
  export declare const MAXIFS: {
100
124
  description: string;
101
125
  args: import("..").ArgDefinition[];
102
- compute: (this: import("..").EvalContext, range: Matrix<FunctionResultObject>, ...args: Arg[]) => number;
126
+ compute: (this: import("..").EvalContext, range: Matrix<FunctionResultObject>, ...args: Arg[]) => {
127
+ value: number;
128
+ };
103
129
  isExported: true;
104
130
  };
105
131
  export declare const MEDIAN: {
@@ -123,7 +149,9 @@ export declare const MINA: {
123
149
  export declare const MINIFS: {
124
150
  description: string;
125
151
  args: import("..").ArgDefinition[];
126
- compute: (this: import("..").EvalContext, range: Matrix<FunctionResultObject>, ...args: Arg[]) => number;
152
+ compute: (this: import("..").EvalContext, range: Matrix<FunctionResultObject>, ...args: Arg[]) => {
153
+ value: number;
154
+ };
127
155
  isExported: true;
128
156
  };
129
157
  export declare const PEARSON: AddFunctionDescription;
@@ -169,6 +197,8 @@ export declare const QUARTILE_INC: {
169
197
  export declare const RANK: AddFunctionDescription;
170
198
  export declare const RSQ: AddFunctionDescription;
171
199
  export declare const SLOPE: AddFunctionDescription;
200
+ export declare const SKEW: AddFunctionDescription;
201
+ export declare const SKEW_P: AddFunctionDescription;
172
202
  export declare const SMALL: {
173
203
  description: string;
174
204
  args: import("..").ArgDefinition[];
@@ -179,74 +209,100 @@ export declare const SPEARMAN: AddFunctionDescription;
179
209
  export declare const STDEV: {
180
210
  description: string;
181
211
  args: import("..").ArgDefinition[];
182
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
212
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
213
+ value: number;
214
+ };
183
215
  isExported: true;
184
216
  };
185
217
  export declare const STDEV_P: {
186
218
  description: string;
187
219
  args: import("..").ArgDefinition[];
188
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
220
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
221
+ value: number;
222
+ };
189
223
  isExported: true;
190
224
  };
191
225
  export declare const STDEV_S: {
192
226
  description: string;
193
227
  args: import("..").ArgDefinition[];
194
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
228
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
229
+ value: number;
230
+ };
195
231
  isExported: true;
196
232
  };
197
233
  export declare const STDEVA: {
198
234
  description: string;
199
235
  args: import("..").ArgDefinition[];
200
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
236
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
237
+ value: number;
238
+ };
201
239
  isExported: true;
202
240
  };
203
241
  export declare const STDEVP: {
204
242
  description: string;
205
243
  args: import("..").ArgDefinition[];
206
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
244
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
245
+ value: number;
246
+ };
207
247
  isExported: true;
208
248
  };
209
249
  export declare const STDEVPA: {
210
250
  description: string;
211
251
  args: import("..").ArgDefinition[];
212
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
252
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
253
+ value: number;
254
+ };
213
255
  isExported: true;
214
256
  };
257
+ export declare const T_TEST: AddFunctionDescription;
215
258
  export declare const STEYX: AddFunctionDescription;
216
259
  export declare const TREND: AddFunctionDescription;
260
+ export declare const TRIMMEAN: AddFunctionDescription;
217
261
  export declare const VAR: {
218
262
  description: string;
219
263
  args: import("..").ArgDefinition[];
220
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
264
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
265
+ value: number;
266
+ };
221
267
  isExported: true;
222
268
  };
223
269
  export declare const VAR_P: {
224
270
  description: string;
225
271
  args: import("..").ArgDefinition[];
226
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
272
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
273
+ value: number;
274
+ };
227
275
  isExported: true;
228
276
  };
229
277
  export declare const VAR_S: {
230
278
  description: string;
231
279
  args: import("..").ArgDefinition[];
232
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
280
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
281
+ value: number;
282
+ };
233
283
  isExported: true;
234
284
  };
235
285
  export declare const VARA: {
236
286
  description: string;
237
287
  args: import("..").ArgDefinition[];
238
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
288
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
289
+ value: number;
290
+ };
239
291
  isExported: true;
240
292
  };
241
293
  export declare const VARP: {
242
294
  description: string;
243
295
  args: import("..").ArgDefinition[];
244
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
296
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
297
+ value: number;
298
+ };
245
299
  isExported: true;
246
300
  };
247
301
  export declare const VARPA: {
248
302
  description: string;
249
303
  args: import("..").ArgDefinition[];
250
- compute: (this: import("..").EvalContext, ...args: Arg[]) => number;
304
+ compute: (this: import("..").EvalContext, ...args: Arg[]) => {
305
+ value: number;
306
+ };
251
307
  isExported: true;
252
308
  };