@fileverse-dev/fortune-core 1.0.13 → 1.0.16

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.
@@ -36,6 +36,11 @@ export declare function getSheetWithLatestCelldata(ctx: Context, options?: Commo
36
36
  column: number[];
37
37
  }[] | undefined;
38
38
  calcChain?: any[] | undefined;
39
+ dataBlockCalcFunction?: {
40
+ [key: string]: {
41
+ [key: string]: any;
42
+ };
43
+ } | undefined;
39
44
  defaultRowHeight?: number | undefined;
40
45
  defaultColWidth?: number | undefined;
41
46
  showGridLines?: number | boolean | undefined;
package/es/types.d.ts CHANGED
@@ -169,6 +169,11 @@ export type Sheet = {
169
169
  column: number[];
170
170
  }[];
171
171
  calcChain?: any[];
172
+ dataBlockCalcFunction?: {
173
+ [key: string]: {
174
+ [key: string]: any;
175
+ };
176
+ };
172
177
  defaultRowHeight?: number;
173
178
  defaultColWidth?: number;
174
179
  showGridLines?: boolean | number;
@@ -36,6 +36,11 @@ export declare function getSheetWithLatestCelldata(ctx: Context, options?: Commo
36
36
  column: number[];
37
37
  }[] | undefined;
38
38
  calcChain?: any[] | undefined;
39
+ dataBlockCalcFunction?: {
40
+ [key: string]: {
41
+ [key: string]: any;
42
+ };
43
+ } | undefined;
39
44
  defaultRowHeight?: number | undefined;
40
45
  defaultColWidth?: number | undefined;
41
46
  showGridLines?: number | boolean | undefined;
package/lib/types.d.ts CHANGED
@@ -169,6 +169,11 @@ export type Sheet = {
169
169
  column: number[];
170
170
  }[];
171
171
  calcChain?: any[];
172
+ dataBlockCalcFunction?: {
173
+ [key: string]: {
174
+ [key: string]: any;
175
+ };
176
+ };
172
177
  defaultRowHeight?: number;
173
178
  defaultColWidth?: number;
174
179
  showGridLines?: boolean | number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/fortune-core",
3
- "version": "1.0.13",
3
+ "version": "1.0.16",
4
4
  "main": "lib/index.js",
5
5
  "module": "es/index.js",
6
6
  "typings": "lib/index.d.ts",