@trebco/treb 30.1.0 → 30.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trebco/treb",
3
- "version": "30.1.0",
3
+ "version": "30.1.2",
4
4
  "license": "LGPL-3.0-or-later",
5
5
  "homepage": "https://treb.app",
6
6
  "repository": {
@@ -821,7 +821,7 @@ export class EmbeddedSpreadsheet<USER_DATA_TYPE = unknown> {
821
821
 
822
822
  // create calculator instance
823
823
 
824
- this.calculator = this.CreateCalculator(this.model, options);
824
+ this.calculator = this.CreateCalculator(this.model, this.options);
825
825
 
826
826
  }
827
827
 
@@ -1454,10 +1454,10 @@ export abstract class BaseLayout {
1454
1454
  this.header_size.width, this.header_size.height);
1455
1455
 
1456
1456
  this.spill_border.style.display = 'block';
1457
- this.spill_border.style.top = (target_rect.top - 5).toString();
1458
- this.spill_border.style.left = (target_rect.left - 5).toString();
1459
- this.spill_border.style.width = (target_rect.width + 10).toString();
1460
- this.spill_border.style.height = (target_rect.height + 10).toString();
1457
+ this.spill_border.style.top = (target_rect.top - 5).toString() + 'px';
1458
+ this.spill_border.style.left = (target_rect.left - 5).toString() + 'px';
1459
+ this.spill_border.style.width = (target_rect.width + 10).toString() + 'px';
1460
+ this.spill_border.style.height = (target_rect.height + 10).toString() + 'px';
1461
1461
 
1462
1462
  const rect = this.DOM.SVG('rect', undefined, this.spill_border);
1463
1463
  rect.setAttribute('x', '4.5');