@cj-tech-master/excelts 4.0.1 → 4.0.2-canary.20260104092100.3972145

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.
@@ -8,6 +8,7 @@ interface TableModel {
8
8
  rows: CellValue[][];
9
9
  headerRow?: boolean;
10
10
  totalsRow?: boolean;
11
+ qualifyImplicitStructuredReferences?: boolean;
11
12
  style?: TableStyleProperties;
12
13
  tl?: Address;
13
14
  autoFilterRef?: string;
@@ -476,6 +476,13 @@ export interface TableProperties {
476
476
  ref: string;
477
477
  headerRow?: boolean;
478
478
  totalsRow?: boolean;
479
+ /**
480
+ * When true, expands implicit structured references like [@A] to
481
+ * TableName[[#This Row],[A]] when storing table row formulas.
482
+ *
483
+ * Default: false (keeps formulas as provided, e.g. [@A]).
484
+ */
485
+ qualifyImplicitStructuredReferences?: boolean;
479
486
  style?: TableStyleProperties;
480
487
  columns: TableColumnProperties[];
481
488
  rows: any[][];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cj-tech-master/excelts",
3
- "version": "4.0.1",
3
+ "version": "4.0.2-canary.20260104092100.3972145",
4
4
  "description": "TypeScript Excel Workbook Manager - Read and Write xlsx and csv Files.",
5
5
  "type": "module",
6
6
  "publishConfig": {