@fileverse-dev/fortune-core 1.0.2-mod-114 → 1.0.2-mod-115
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 +4 -2
- package/dist/index.js +4 -2
- package/dist/settings.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -57001,7 +57001,7 @@ function rangeHightlightselected(ctx, $editor) {
|
|
|
57001
57001
|
functionlist = _locale3.functionlist;
|
|
57002
57002
|
ctx.defaultCandidates = functionlist.filter(function (d) {
|
|
57003
57003
|
return d.t === 20;
|
|
57004
|
-
}).slice(0,
|
|
57004
|
+
}).slice(0, 11);
|
|
57005
57005
|
var funcName = helpFunctionExe($editor, currSelection, ctx);
|
|
57006
57006
|
ctx.functionHint = funcName === null || funcName === void 0 ? void 0 : funcName.toUpperCase();
|
|
57007
57007
|
return;
|
|
@@ -76705,7 +76705,9 @@ var defaultSettings = {
|
|
|
76705
76705
|
currency: "$",
|
|
76706
76706
|
getCommentCellUI: null,
|
|
76707
76707
|
onDuneChartEmbed: function onDuneChartEmbed() {},
|
|
76708
|
-
onSheetCountChange: function onSheetCountChange() {}
|
|
76708
|
+
onSheetCountChange: function onSheetCountChange() {},
|
|
76709
|
+
isAuthorized: false,
|
|
76710
|
+
isFlvReadOnly: false
|
|
76709
76711
|
};
|
|
76710
76712
|
|
|
76711
76713
|
function handleCopy(ctx) {
|
package/dist/index.js
CHANGED
|
@@ -57011,7 +57011,7 @@ function rangeHightlightselected(ctx, $editor) {
|
|
|
57011
57011
|
functionlist = _locale3.functionlist;
|
|
57012
57012
|
ctx.defaultCandidates = functionlist.filter(function (d) {
|
|
57013
57013
|
return d.t === 20;
|
|
57014
|
-
}).slice(0,
|
|
57014
|
+
}).slice(0, 11);
|
|
57015
57015
|
var funcName = helpFunctionExe($editor, currSelection, ctx);
|
|
57016
57016
|
ctx.functionHint = funcName === null || funcName === void 0 ? void 0 : funcName.toUpperCase();
|
|
57017
57017
|
return;
|
|
@@ -76715,7 +76715,9 @@ var defaultSettings = {
|
|
|
76715
76715
|
currency: "$",
|
|
76716
76716
|
getCommentCellUI: null,
|
|
76717
76717
|
onDuneChartEmbed: function onDuneChartEmbed() {},
|
|
76718
|
-
onSheetCountChange: function onSheetCountChange() {}
|
|
76718
|
+
onSheetCountChange: function onSheetCountChange() {},
|
|
76719
|
+
isAuthorized: false,
|
|
76720
|
+
isFlvReadOnly: false
|
|
76719
76721
|
};
|
|
76720
76722
|
|
|
76721
76723
|
function handleCopy(ctx) {
|
package/dist/settings.d.ts
CHANGED