@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.0-rc3. Copyright 2018-2023 trebco, llc. All rights reserved. LGPL: https://treb.app/license */
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
- * for example, if complex numbers are off, `=SQRT(-1)` will return `#VALUE`.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trebco/treb",
3
- "version": "25.0.0-rc3",
3
+ "version": "25.0.1",
4
4
  "license": "LGPL-3.0-or-later",
5
5
  "homepage": "https://treb.app",
6
6
  "repository": {
@@ -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
- * for example, if complex numbers are off, `=SQRT(-1)` will return `#VALUE`.
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
 
@@ -183,10 +183,12 @@
183
183
 
184
184
  .treb-spreadsheet-body {
185
185
  z-index: 4;
186
+ position: relative;
186
187
  }
187
188
 
188
189
  .treb-spreadsheet-footer {
189
- z-index: 3;
190
+ z-index: 5;
191
+ position: relative;
190
192
  }
191
193
 
192
194
  .treb-layout-resize-handle {