@fileverse-dev/fortune-core 1.0.2-mod-11 → 1.0.2-mod-12
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/api/sheet.d.ts +2 -2
- package/dist/context.d.ts +1 -0
- package/dist/index.esm.js +781 -332
- package/dist/index.js +782 -330
- package/dist/locale/en.d.ts +29 -0
- package/dist/locale/es.d.ts +29 -0
- package/dist/locale/hi.d.ts +29 -0
- package/dist/locale/index.d.ts +29 -0
- package/dist/locale/zh.d.ts +29 -0
- package/dist/locale/zh_tw.d.ts +29 -0
- package/dist/modules/cell.d.ts +2 -2
- package/dist/modules/formula.d.ts +8 -3
- package/dist/modules/formulaHelper.d.ts +5 -0
- package/dist/modules/validation.d.ts +1 -1
- package/dist/types.d.ts +33 -0
- package/package.json +2 -2
package/dist/api/sheet.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { getSheet } from "./common";
|
|
2
2
|
import { Context } from "../context";
|
|
3
|
-
import { CellMatrix, Sheet } from "../types";
|
|
3
|
+
import { CellMatrix, Sheet, SingleRange } from "../types";
|
|
4
4
|
export declare function getAllSheets(ctx: Context): Sheet[];
|
|
5
5
|
export { getSheet };
|
|
6
6
|
export declare function initSheetData(draftCtx: Context, index: number, newData: Sheet): CellMatrix | null;
|
|
7
7
|
export declare function hideSheet(ctx: Context, sheetId: string): void;
|
|
8
8
|
export declare function showSheet(ctx: Context, sheetId: string): void;
|
|
9
9
|
export declare function copySheet(ctx: Context, sheetId: string): void;
|
|
10
|
-
export declare function
|
|
10
|
+
export declare function calculateFormula(ctx: Context, id?: string, range?: SingleRange): void;
|
package/dist/context.d.ts
CHANGED