@fileverse-dev/dsheet 1.2.49 → 1.2.50
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.es.js +30 -6
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -184957,9 +184957,21 @@ function yDt(e, t, r, a, n) {
|
|
|
184957
184957
|
for (const l in e) {
|
|
184958
184958
|
const o = e[l], f = {
|
|
184959
184959
|
...o,
|
|
184960
|
-
row: hO(
|
|
184960
|
+
row: hO(
|
|
184961
|
+
o.row,
|
|
184962
|
+
t,
|
|
184963
|
+
r,
|
|
184964
|
+
a,
|
|
184965
|
+
n
|
|
184966
|
+
),
|
|
184961
184967
|
rowRefrenced: o.rowRefrenced.map(
|
|
184962
|
-
(c) => hO(
|
|
184968
|
+
(c) => hO(
|
|
184969
|
+
c,
|
|
184970
|
+
t,
|
|
184971
|
+
r,
|
|
184972
|
+
a,
|
|
184973
|
+
n
|
|
184974
|
+
)
|
|
184963
184975
|
)
|
|
184964
184976
|
}, s = `${f.row}_${f.column}`;
|
|
184965
184977
|
i[s] = f;
|
|
@@ -184967,7 +184979,7 @@ function yDt(e, t, r, a, n) {
|
|
|
184967
184979
|
return i;
|
|
184968
184980
|
}
|
|
184969
184981
|
function hO(e, t, r, a, n) {
|
|
184970
|
-
if (t.includes(e)) {
|
|
184982
|
+
if (Array.isArray(t) && t.includes(e)) {
|
|
184971
184983
|
const i = t.indexOf(e);
|
|
184972
184984
|
return r[i];
|
|
184973
184985
|
} else {
|
|
@@ -184983,9 +184995,21 @@ function wDt(e, t, r, a, n) {
|
|
|
184983
184995
|
for (const l in e) {
|
|
184984
184996
|
const o = e[l], f = {
|
|
184985
184997
|
...o,
|
|
184986
|
-
column: dO(
|
|
184998
|
+
column: dO(
|
|
184999
|
+
o.column,
|
|
185000
|
+
t,
|
|
185001
|
+
r,
|
|
185002
|
+
a,
|
|
185003
|
+
n
|
|
185004
|
+
),
|
|
184987
185005
|
columnRefrenced: o.columnRefrenced.map(
|
|
184988
|
-
(c) => dO(
|
|
185006
|
+
(c) => dO(
|
|
185007
|
+
c,
|
|
185008
|
+
t,
|
|
185009
|
+
r,
|
|
185010
|
+
a,
|
|
185011
|
+
n
|
|
185012
|
+
)
|
|
184989
185013
|
)
|
|
184990
185014
|
}, s = `${f.row}_${f.column}`;
|
|
184991
185015
|
i[s] = f;
|
|
@@ -184993,7 +185017,7 @@ function wDt(e, t, r, a, n) {
|
|
|
184993
185017
|
return i;
|
|
184994
185018
|
}
|
|
184995
185019
|
function dO(e, t, r, a, n) {
|
|
184996
|
-
if (t.includes(e)) {
|
|
185020
|
+
if (Array.isArray(t) && t.includes(e)) {
|
|
184997
185021
|
const i = t.indexOf(e);
|
|
184998
185022
|
return r[i];
|
|
184999
185023
|
} else {
|