@fileverse-dev/fortune-core 1.1.20 → 1.1.22
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/es/events/keyboard.js +2 -4
- package/lib/events/keyboard.js +2 -4
- package/package.json +2 -2
package/es/events/keyboard.js
CHANGED
|
@@ -420,7 +420,7 @@ export function handleGlobalKeyDown(ctx, cellInput, fxInput, e, cache, handleUnd
|
|
|
420
420
|
handleGlobalEnter(ctx, cellInput, e, canvas);
|
|
421
421
|
} else if (kstr === "Tab") {
|
|
422
422
|
if (ctx.luckysheetCellUpdate.length > 0) {
|
|
423
|
-
|
|
423
|
+
updateCell(ctx, ctx.luckysheetCellUpdate[0], ctx.luckysheetCellUpdate[1], cellInput, undefined, canvas);
|
|
424
424
|
}
|
|
425
425
|
if (e.shiftKey) {
|
|
426
426
|
moveHighlightCell(ctx, "right", -1, "rangeOfSelect");
|
|
@@ -463,9 +463,7 @@ export function handleGlobalKeyDown(ctx, cellInput, fxInput, e, cache, handleUnd
|
|
|
463
463
|
}
|
|
464
464
|
jfrefreshgrid(ctx, null, undefined);
|
|
465
465
|
e.preventDefault();
|
|
466
|
-
} else if (kstr === "ArrowUp" || kstr === "ArrowDown" || kstr === "ArrowLeft" || kstr === "ArrowRight") {
|
|
467
|
-
handleArrowKey(ctx, e);
|
|
468
|
-
} else if (!(kcode >= 112 && kcode <= 123 || kcode <= 46 || kcode === 144 || kcode === 108 || e.ctrlKey || e.altKey || e.shiftKey && (kcode === 37 || kcode === 38 || kcode === 39 || kcode === 40)) || kcode === 8 || kcode === 32 || kcode === 46 || kcode === 0 || e.ctrlKey && kcode === 86) {
|
|
466
|
+
} else if (kstr === "ArrowUp" || kstr === "ArrowDown" || kstr === "ArrowLeft" || kstr === "ArrowRight" || kstr === "Tab") {} else if (!(kcode >= 112 && kcode <= 123 || kcode <= 46 || kcode === 144 || kcode === 108 || e.ctrlKey || e.altKey || e.shiftKey && (kcode === 37 || kcode === 38 || kcode === 39 || kcode === 40)) || kcode === 8 || kcode === 32 || kcode === 46 || kcode === 0 || e.ctrlKey && kcode === 86) {
|
|
469
467
|
if (!allowEdit) return [2];
|
|
470
468
|
if (String.fromCharCode(kcode) != null && !_.isEmpty(ctx.luckysheet_select_save) && kstr !== "CapsLock" && kstr !== "Win" && kcode !== 18) {
|
|
471
469
|
last = ctx.luckysheet_select_save[ctx.luckysheet_select_save.length - 1];
|
package/lib/events/keyboard.js
CHANGED
|
@@ -430,7 +430,7 @@ function handleGlobalKeyDown(ctx, cellInput, fxInput, e, cache, handleUndo, hand
|
|
|
430
430
|
handleGlobalEnter(ctx, cellInput, e, canvas);
|
|
431
431
|
} else if (kstr === "Tab") {
|
|
432
432
|
if (ctx.luckysheetCellUpdate.length > 0) {
|
|
433
|
-
|
|
433
|
+
(0, _cell.updateCell)(ctx, ctx.luckysheetCellUpdate[0], ctx.luckysheetCellUpdate[1], cellInput, undefined, canvas);
|
|
434
434
|
}
|
|
435
435
|
if (e.shiftKey) {
|
|
436
436
|
(0, _selection.moveHighlightCell)(ctx, "right", -1, "rangeOfSelect");
|
|
@@ -473,9 +473,7 @@ function handleGlobalKeyDown(ctx, cellInput, fxInput, e, cache, handleUndo, hand
|
|
|
473
473
|
}
|
|
474
474
|
(0, _refresh.jfrefreshgrid)(ctx, null, undefined);
|
|
475
475
|
e.preventDefault();
|
|
476
|
-
} else if (kstr === "ArrowUp" || kstr === "ArrowDown" || kstr === "ArrowLeft" || kstr === "ArrowRight") {
|
|
477
|
-
handleArrowKey(ctx, e);
|
|
478
|
-
} else if (!(kcode >= 112 && kcode <= 123 || kcode <= 46 || kcode === 144 || kcode === 108 || e.ctrlKey || e.altKey || e.shiftKey && (kcode === 37 || kcode === 38 || kcode === 39 || kcode === 40)) || kcode === 8 || kcode === 32 || kcode === 46 || kcode === 0 || e.ctrlKey && kcode === 86) {
|
|
476
|
+
} else if (kstr === "ArrowUp" || kstr === "ArrowDown" || kstr === "ArrowLeft" || kstr === "ArrowRight" || kstr === "Tab") {} else if (!(kcode >= 112 && kcode <= 123 || kcode <= 46 || kcode === 144 || kcode === 108 || e.ctrlKey || e.altKey || e.shiftKey && (kcode === 37 || kcode === 38 || kcode === 39 || kcode === 40)) || kcode === 8 || kcode === 32 || kcode === 46 || kcode === 0 || e.ctrlKey && kcode === 86) {
|
|
479
477
|
if (!allowEdit) return [2];
|
|
480
478
|
if (String.fromCharCode(kcode) != null && !_lodash.default.isEmpty(ctx.luckysheet_select_save) && kstr !== "CapsLock" && kstr !== "Win" && kcode !== 18) {
|
|
481
479
|
last = ctx.luckysheet_select_save[ctx.luckysheet_select_save.length - 1];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fileverse-dev/fortune-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.22",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"dev": "father-build --watch"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@fileverse-dev/formula-parser": "0.2.
|
|
18
|
+
"@fileverse-dev/formula-parser": "0.2.67",
|
|
19
19
|
"dayjs": "^1.11.0",
|
|
20
20
|
"immer": "^9.0.12",
|
|
21
21
|
"lodash": "^4.17.21",
|