@fileverse-dev/dsheet 4.1.10-fixCrash-1 → 4.1.11
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/{executeStringFunction-BaZeRysE.js → executeStringFunction-DMMvpc-I.js} +2 -6
- package/dist/formula.js +1 -1
- package/dist/{index-DmLfMK38.js → index-Ex9wf8Hz.js} +7561 -7535
- package/dist/index.es.js +2 -2
- package/dist/sheet-engine/core/events/keyboard-shortcut-utils.d.ts +21 -0
- package/dist/{use-xlsx-import-impl-Bd43Dl87.js → use-xlsx-import-impl-lbh8Qnkz.js} +734 -740
- package/dist/{xlsx-defined-names-CV9i33Ao.js → xlsx-defined-names-s7Y2sgfW.js} +2 -2
- package/dist/{xlsx-export-impl-CXgCBTDA.js → xlsx-export-impl-NMxGj4-i.js} +4 -4
- package/dist/{xlsx-hyperlink-inline-C1F8NIlu.js → xlsx-hyperlink-inline-CKjiWoz2.js} +2 -2
- package/package.json +2 -2
|
@@ -18940,7 +18940,7 @@ const lo = "", ln = (e) => (e || "").replace(/\u00a0/g, " ").replace(/\u200b/
|
|
|
18940
18940
|
function ws(e, t) {
|
|
18941
18941
|
return e.slice(0, t).trimEnd().slice(-1);
|
|
18942
18942
|
}
|
|
18943
|
-
const bm = "[
|
|
18943
|
+
const bm = "[A-Za-z0-9_À-ʯ]+", wm = "'(?:(?!').|'')*'", vm = `(${bm}|${wm})!`, _m = "[$]?[A-Za-z]+[$]?[0-9]+", Tm = "[$]?[A-Za-z]+", Cm = "[$]?[0-9]+", $m = `(?:${_m}|${Tm}|${Cm})`, vs = `(?:${vm})?(${$m})`, Nm = new RegExp(
|
|
18944
18944
|
`^${vs}(?:[:]${vs})?$`
|
|
18945
18945
|
);
|
|
18946
18946
|
function Sm(e) {
|
|
@@ -22823,11 +22823,7 @@ function tc(e, t, n, r) {
|
|
|
22823
22823
|
function Ah(e, t) {
|
|
22824
22824
|
const n = [];
|
|
22825
22825
|
if (Rt(t)) {
|
|
22826
|
-
const r = kn(e, t);
|
|
22827
|
-
if (!r) return n;
|
|
22828
|
-
const a = Se(e, r.sheetId);
|
|
22829
|
-
if (a == null || !e.luckysheetfile[a]) return n;
|
|
22830
|
-
const l = e.luckysheetfile[a].data;
|
|
22826
|
+
const r = kn(e, t), a = Se(e, r.sheetId), l = e.luckysheetfile[a].data;
|
|
22831
22827
|
if (!l) return [];
|
|
22832
22828
|
for (let o = r.row[0]; o <= r.row[1]; o += 1)
|
|
22833
22829
|
for (let i = r.column[0]; i <= r.column[1]; i += 1) {
|
package/dist/formula.js
CHANGED