@trebco/treb 25.0.0-rc3 → 25.0.1
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/build/treb.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! API v25.0.
|
|
1
|
+
/*! API v25.0. Copyright 2018-2023 trebco, llc. All rights reserved. LGPL: https://treb.app/license */
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* add our tag to the map
|
|
@@ -192,17 +192,9 @@ export interface EmbeddedSpreadsheetOptions {
|
|
|
192
192
|
* enable handling complex numbers in function calculation. turning this
|
|
193
193
|
* off doesn't actually disable complex numbers. it means that functions
|
|
194
194
|
* will not return complex numbers unless one of the arguments is complex.
|
|
195
|
+
* @see https://docs.treb.app/en/complex-numbers
|
|
195
196
|
*
|
|
196
|
-
*
|
|
197
|
-
* if complex numbers are on, `=SQRT(-1)` will return `i`.
|
|
198
|
-
*
|
|
199
|
-
* even if complex numbers are off, however, `=SQRT(-1 + 0i)` will return
|
|
200
|
-
* `i` because the argument is complex.
|
|
201
|
-
*
|
|
202
|
-
* currently this behavior applies to `SQRT`, `POWER` and the exponentiation
|
|
203
|
-
* operator `^`.
|
|
204
|
-
*
|
|
205
|
-
* in version 22, this defaults to `off`.
|
|
197
|
+
* in version 25, complex defaults to `off`.
|
|
206
198
|
*/
|
|
207
199
|
complex?: 'on' | 'off';
|
|
208
200
|
|
package/package.json
CHANGED
|
@@ -201,17 +201,9 @@ export interface EmbeddedSpreadsheetOptions {
|
|
|
201
201
|
* enable handling complex numbers in function calculation. turning this
|
|
202
202
|
* off doesn't actually disable complex numbers. it means that functions
|
|
203
203
|
* will not return complex numbers unless one of the arguments is complex.
|
|
204
|
+
* @see https://docs.treb.app/en/complex-numbers
|
|
204
205
|
*
|
|
205
|
-
*
|
|
206
|
-
* if complex numbers are on, `=SQRT(-1)` will return `i`.
|
|
207
|
-
*
|
|
208
|
-
* even if complex numbers are off, however, `=SQRT(-1 + 0i)` will return
|
|
209
|
-
* `i` because the argument is complex.
|
|
210
|
-
*
|
|
211
|
-
* currently this behavior applies to `SQRT`, `POWER` and the exponentiation
|
|
212
|
-
* operator `^`.
|
|
213
|
-
*
|
|
214
|
-
* in version 22, this defaults to `off`.
|
|
206
|
+
* in version 25, complex defaults to `off`.
|
|
215
207
|
*/
|
|
216
208
|
complex?: 'on'|'off';
|
|
217
209
|
|