@cj-tech-master/excelts 4.0.2-canary.20260104092100.3972145 → 4.0.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/dist/browser/modules/excel/table.d.ts +0 -1
- package/dist/browser/modules/excel/table.js +7 -12
- package/dist/browser/modules/excel/types.d.ts +0 -7
- package/dist/cjs/modules/excel/table.js +7 -12
- package/dist/esm/modules/excel/table.js +7 -12
- package/dist/iife/excelts.iife.js +5 -8
- package/dist/iife/excelts.iife.js.map +1 -1
- package/dist/iife/excelts.iife.min.js +2 -2
- package/dist/types/modules/excel/table.d.ts +0 -1
- package/dist/types/modules/excel/types.d.ts +0 -7
- package/package.json +1 -1
|
@@ -476,13 +476,6 @@ 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;
|
|
486
479
|
style?: TableStyleProperties;
|
|
487
480
|
columns: TableColumnProperties[];
|
|
488
481
|
rows: any[][];
|
package/package.json
CHANGED