@leankylin-sheet/core 5.1.14 → 5.1.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.
- package/dist/events/keyboard.d.ts +2 -2
- package/dist/index.esm.js +463 -406
- package/dist/index.js +463 -405
- package/dist/modules/sheet.d.ts +1 -0
- package/package.json +2 -2
package/dist/modules/sheet.d.ts
CHANGED
|
@@ -8,3 +8,4 @@ export declare function deleteSheet(ctx: Context, id: string): void;
|
|
|
8
8
|
export declare function updateSheet(ctx: Context, newData: Sheet[]): void;
|
|
9
9
|
export declare function editSheetName(ctx: Context, editable: HTMLSpanElement): void;
|
|
10
10
|
export declare function expandRowsAndColumns(data: CellMatrix, rowsToAdd: number, columnsToAdd: number): CellMatrix;
|
|
11
|
+
export declare function setNextSheet(draftCtx: Context, nextSheetId: any, refs: any): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leankylin-sheet/core",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.16",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"build": "father-build"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@leankylin-sheet/formula-parser": "5.1.
|
|
16
|
+
"@leankylin-sheet/formula-parser": "5.1.16",
|
|
17
17
|
"dayjs": "^1.11.0",
|
|
18
18
|
"immer": "^9.0.12",
|
|
19
19
|
"lodash": "^4.17.21",
|