@fileverse-dev/dsheet 4.1.10 → 4.1.11-minorfixes-1
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/{index-St21sGrj.js → index-B46VmFnx.js} +10185 -10146
- package/dist/index.es.js +1 -1
- package/dist/sheet-engine/core/events/keyboard-shortcut-utils.d.ts +21 -0
- package/dist/style.css +1 -1
- package/dist/{use-xlsx-import-impl-C792juWe.js → use-xlsx-import-impl-B8lOWtPn.js} +3 -3
- package/dist/{xlsx-defined-names-ZTTkqk7o.js → xlsx-defined-names-B5CIkOOq.js} +1 -1
- package/dist/{xlsx-export-impl-LzWoiimx.js → xlsx-export-impl-BW_ib6gt.js} +3 -3
- package/dist/{xlsx-hyperlink-inline-ClX3ufS1.js → xlsx-hyperlink-inline-Cy2cJwLX.js} +1 -1
- package/package.json +2 -2
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as s, d as o, f as t, S as r, g as l, h as n, j as d, T as S, k as c, l as i, n as m, o as h, p, q as C, t as u, u as E, v as F, w as g, x, z as R, A as f, B as A, D as I, E as L, F as T, G as w, H as y, I as v, J as D, K as M, L as b, M as k, N as z, O, P } from "./index-
|
|
1
|
+
import { C as s, d as o, f as t, S as r, g as l, h as n, j as d, T as S, k as c, l as i, n as m, o as h, p, q as C, t as u, u as E, v as F, w as g, x, z as R, A as f, B as A, D as I, E as L, F as T, G as w, H as y, I as v, J as D, K as M, L as b, M as k, N as z, O, P } from "./index-B46VmFnx.js";
|
|
2
2
|
import { cy as G, cz as K, cA as U, cG as X, bs as _, e as j, f as B, l as H, a as q, di as J, dj as N, bb as Y, dk as Z, dl as Q, dq as W, dr as $, dt as ee, I as ae, dI as se, ef as oe, b4 as te } from "./executeStringFunction-DMMvpc-I.js";
|
|
3
3
|
import { FLVURL as le } from "@fileverse-dev/formulajs";
|
|
4
4
|
import { E as de, S as Se } from "./constants-8Ij49Lxv.js";
|
|
@@ -59,5 +59,26 @@ export declare function isBrowserZoomShortcut(e: KeyboardEvent): boolean;
|
|
|
59
59
|
* Win: Ctrl+/. Mac/AZERTY: Option+/ or Option+: (WY). US fallback: Cmd+/.
|
|
60
60
|
*/
|
|
61
61
|
export declare function isOpenShortcutsModalShortcut(e: KeyboardEvent): boolean;
|
|
62
|
+
/**
|
|
63
|
+
* The Latin letter a chord resolves to, layout-aware.
|
|
64
|
+
*
|
|
65
|
+
* `code` is the *US physical slot*, so it is wrong on non-QWERTY layouts:
|
|
66
|
+
* on AZERTY the key labelled Z is `KeyW` (and `KeyZ` types "w"); on QWERTZ
|
|
67
|
+
* `KeyZ` types "y" and `KeyY` types "z". `key` carries the character the
|
|
68
|
+
* user actually typed, so prefer it, and fall back to the physical slot only
|
|
69
|
+
* for layouts whose `key` is not a Latin letter (Cyrillic, Greek, …).
|
|
70
|
+
*/
|
|
71
|
+
export declare function letterForShortcut(e: KeyboardEvent): string | null;
|
|
72
|
+
/**
|
|
73
|
+
* Undo / redo — Cmd/Ctrl+Z, Cmd/Ctrl+Shift+Z (redo), Ctrl/Cmd+Y (redo).
|
|
74
|
+
* Returns which action the chord means, or null. AZERTY/QWERTZ safe.
|
|
75
|
+
*/
|
|
76
|
+
export declare function matchUndoRedoShortcut(e: KeyboardEvent): 'undo' | 'redo' | null;
|
|
77
|
+
/** Cmd/Ctrl+Z — undo (AZERTY/QWERTZ safe). */
|
|
78
|
+
export declare function isUndoShortcut(e: KeyboardEvent): boolean;
|
|
79
|
+
/** Cmd/Ctrl+Shift+Z or Ctrl/Cmd+Y — redo (AZERTY/QWERTZ safe). */
|
|
80
|
+
export declare function isRedoShortcut(e: KeyboardEvent): boolean;
|
|
81
|
+
/** True for any undo/redo chord, regardless of direction. */
|
|
82
|
+
export declare function isUndoRedoShortcut(e: KeyboardEvent): boolean;
|
|
62
83
|
/** Label which engine shortcut would match (best-effort; for host debug tooling). */
|
|
63
84
|
export declare function describeMatchedShortcut(e: KeyboardEvent): string | null;
|