@trebco/treb 29.1.5 → 29.1.6
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
|
@@ -594,16 +594,11 @@ export class TileRenderer {
|
|
|
594
594
|
|
|
595
595
|
const scale = this.layout.dpr;
|
|
596
596
|
|
|
597
|
-
// const render_list: Array<{row: number, column: number, cell: Cell}> = [];
|
|
598
|
-
|
|
599
|
-
// this.last_font = undefined;
|
|
600
597
|
context.setTransform(scale, 0, 0, scale, 0, 0);
|
|
601
598
|
|
|
602
599
|
let left = 0;
|
|
603
600
|
let top = 0;
|
|
604
601
|
|
|
605
|
-
// console.info('r', tile.first_cell);
|
|
606
|
-
|
|
607
602
|
for (let column = tile.first_cell.column; column <= tile.last_cell.column; column++) {
|
|
608
603
|
const width = this.layout.ColumnWidth(column);
|
|
609
604
|
if (!width) continue;
|
|
@@ -1126,7 +1121,6 @@ export class TileRenderer {
|
|
|
1126
1121
|
// (moved to sheet, using numpad naming)
|
|
1127
1122
|
|
|
1128
1123
|
const numpad = this.view.active_sheet.SurroundingStyle(address, this.theme.table);
|
|
1129
|
-
|
|
1130
1124
|
|
|
1131
1125
|
// --- start with fills ----------------------------------------------------
|
|
1132
1126
|
|
|
@@ -1253,7 +1247,7 @@ export class TileRenderer {
|
|
|
1253
1247
|
// paint right border?
|
|
1254
1248
|
|
|
1255
1249
|
if (numpad[6].border_left) {
|
|
1256
|
-
context.fillStyle = ThemeColor2(this.theme, numpad[
|
|
1250
|
+
context.fillStyle = ThemeColor2(this.theme, numpad[6].border_left_fill, 1);
|
|
1257
1251
|
context.fillRect(left + width - 1, top - 1, 1, height + 1);
|
|
1258
1252
|
}
|
|
1259
1253
|
|
|
@@ -972,8 +972,7 @@ export class Grid extends GridBase {
|
|
|
972
972
|
this.model.named.Reset();
|
|
973
973
|
// this.model.named_ranges.Reset();
|
|
974
974
|
// this.model.named_expressions.clear();
|
|
975
|
-
|
|
976
|
-
console.info({IDX: import_data.named});
|
|
975
|
+
// console.info({IDX: import_data.named});
|
|
977
976
|
|
|
978
977
|
if (import_data.named) {
|
|
979
978
|
this.model.UnserializeComposite(import_data.named, this.active_sheet);
|