@leankylin-sheet/core 4.0.30 → 4.0.31
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.esm.js +24 -10
- package/dist/index.js +24 -10
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -10403,11 +10403,11 @@ var en = {
|
|
|
10403
10403
|
columnOverLimit: "1000 column limit exceeded"
|
|
10404
10404
|
},
|
|
10405
10405
|
comment: {
|
|
10406
|
-
insert: "Insert",
|
|
10407
|
-
edit: "Edit",
|
|
10408
|
-
delete: "Delete",
|
|
10409
|
-
showOne: "Show/Hide",
|
|
10410
|
-
showAll: "Show/Hide All"
|
|
10406
|
+
insert: "Insert Comment",
|
|
10407
|
+
edit: "Edit Comment",
|
|
10408
|
+
delete: "Delete Comment",
|
|
10409
|
+
showOne: "Show/Hide Comment",
|
|
10410
|
+
showAll: "Show/Hide All Comment"
|
|
10411
10411
|
},
|
|
10412
10412
|
screenshot: {
|
|
10413
10413
|
screenshotTipNoSelection: "Please select the scope of the screenshot",
|
|
@@ -20967,11 +20967,11 @@ var zh = {
|
|
|
20967
20967
|
columnOverLimit: "超出1000列限制"
|
|
20968
20968
|
},
|
|
20969
20969
|
comment: {
|
|
20970
|
-
insert: "
|
|
20971
|
-
edit: "
|
|
20972
|
-
delete: "
|
|
20973
|
-
showOne: "
|
|
20974
|
-
showAll: "
|
|
20970
|
+
insert: "新建说明",
|
|
20971
|
+
edit: "编辑说明",
|
|
20972
|
+
delete: "删除说明",
|
|
20973
|
+
showOne: "显示/隐藏说明",
|
|
20974
|
+
showAll: "显示/隐藏所有说明"
|
|
20975
20975
|
},
|
|
20976
20976
|
screenshot: {
|
|
20977
20977
|
screenshotTipNoSelection: "请框选需要截图的范围",
|
|
@@ -37620,6 +37620,20 @@ function functionCopy(ctx, txt, mode, step) {
|
|
|
37620
37620
|
};
|
|
37621
37621
|
while (i < funcstack.length) {
|
|
37622
37622
|
var s = funcstack[i];
|
|
37623
|
+
var nextS = funcstack[i + 1];
|
|
37624
|
+
if (s === "{" && nextS === "{") {
|
|
37625
|
+
var nextI = funcstack === null || funcstack === void 0 ? void 0 : funcstack.findIndex(function (__, index) {
|
|
37626
|
+
if (i < index && funcstack[index] === "}" && funcstack[index + 1] === "}") {
|
|
37627
|
+
return true;
|
|
37628
|
+
}
|
|
37629
|
+
return false;
|
|
37630
|
+
});
|
|
37631
|
+
if (nextI !== -1) {
|
|
37632
|
+
function_str += txt.substring(i, nextI + 2);
|
|
37633
|
+
i = nextI + 2;
|
|
37634
|
+
continue;
|
|
37635
|
+
}
|
|
37636
|
+
}
|
|
37623
37637
|
if (s === "(" && matchConfig.dquote === 0) {
|
|
37624
37638
|
matchConfig.bracket += 1;
|
|
37625
37639
|
if (str.length > 0) {
|
package/dist/index.js
CHANGED
|
@@ -10413,11 +10413,11 @@ var en = {
|
|
|
10413
10413
|
columnOverLimit: "1000 column limit exceeded"
|
|
10414
10414
|
},
|
|
10415
10415
|
comment: {
|
|
10416
|
-
insert: "Insert",
|
|
10417
|
-
edit: "Edit",
|
|
10418
|
-
delete: "Delete",
|
|
10419
|
-
showOne: "Show/Hide",
|
|
10420
|
-
showAll: "Show/Hide All"
|
|
10416
|
+
insert: "Insert Comment",
|
|
10417
|
+
edit: "Edit Comment",
|
|
10418
|
+
delete: "Delete Comment",
|
|
10419
|
+
showOne: "Show/Hide Comment",
|
|
10420
|
+
showAll: "Show/Hide All Comment"
|
|
10421
10421
|
},
|
|
10422
10422
|
screenshot: {
|
|
10423
10423
|
screenshotTipNoSelection: "Please select the scope of the screenshot",
|
|
@@ -20977,11 +20977,11 @@ var zh = {
|
|
|
20977
20977
|
columnOverLimit: "超出1000列限制"
|
|
20978
20978
|
},
|
|
20979
20979
|
comment: {
|
|
20980
|
-
insert: "
|
|
20981
|
-
edit: "
|
|
20982
|
-
delete: "
|
|
20983
|
-
showOne: "
|
|
20984
|
-
showAll: "
|
|
20980
|
+
insert: "新建说明",
|
|
20981
|
+
edit: "编辑说明",
|
|
20982
|
+
delete: "删除说明",
|
|
20983
|
+
showOne: "显示/隐藏说明",
|
|
20984
|
+
showAll: "显示/隐藏所有说明"
|
|
20985
20985
|
},
|
|
20986
20986
|
screenshot: {
|
|
20987
20987
|
screenshotTipNoSelection: "请框选需要截图的范围",
|
|
@@ -37630,6 +37630,20 @@ function functionCopy(ctx, txt, mode, step) {
|
|
|
37630
37630
|
};
|
|
37631
37631
|
while (i < funcstack.length) {
|
|
37632
37632
|
var s = funcstack[i];
|
|
37633
|
+
var nextS = funcstack[i + 1];
|
|
37634
|
+
if (s === "{" && nextS === "{") {
|
|
37635
|
+
var nextI = funcstack === null || funcstack === void 0 ? void 0 : funcstack.findIndex(function (__, index) {
|
|
37636
|
+
if (i < index && funcstack[index] === "}" && funcstack[index + 1] === "}") {
|
|
37637
|
+
return true;
|
|
37638
|
+
}
|
|
37639
|
+
return false;
|
|
37640
|
+
});
|
|
37641
|
+
if (nextI !== -1) {
|
|
37642
|
+
function_str += txt.substring(i, nextI + 2);
|
|
37643
|
+
i = nextI + 2;
|
|
37644
|
+
continue;
|
|
37645
|
+
}
|
|
37646
|
+
}
|
|
37633
37647
|
if (s === "(" && matchConfig.dquote === 0) {
|
|
37634
37648
|
matchConfig.bracket += 1;
|
|
37635
37649
|
if (str.length > 0) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leankylin-sheet/core",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.31",
|
|
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": "4.0.
|
|
16
|
+
"@leankylin-sheet/formula-parser": "4.0.31",
|
|
17
17
|
"dayjs": "^1.11.0",
|
|
18
18
|
"immer": "^9.0.12",
|
|
19
19
|
"lodash": "^4.17.21",
|