@fileverse-dev/fortune-core 1.0.2-mod-84 → 1.0.2-mod-85
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 +3 -1
- package/dist/index.js +3 -1
- package/dist/settings.d.ts +2 -0
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -76704,7 +76704,9 @@ var defaultSettings = {
|
|
|
76704
76704
|
hooks: {},
|
|
76705
76705
|
customToolbarItems: [],
|
|
76706
76706
|
currency: "$",
|
|
76707
|
-
getCommentCellUI: null
|
|
76707
|
+
getCommentCellUI: null,
|
|
76708
|
+
onDuneChartEmbed: function onDuneChartEmbed() {},
|
|
76709
|
+
onSheetCountChange: function onSheetCountChange() {}
|
|
76708
76710
|
};
|
|
76709
76711
|
|
|
76710
76712
|
function handleCopy(ctx) {
|
package/dist/index.js
CHANGED
|
@@ -76714,7 +76714,9 @@ var defaultSettings = {
|
|
|
76714
76714
|
hooks: {},
|
|
76715
76715
|
customToolbarItems: [],
|
|
76716
76716
|
currency: "$",
|
|
76717
|
-
getCommentCellUI: null
|
|
76717
|
+
getCommentCellUI: null,
|
|
76718
|
+
onDuneChartEmbed: function onDuneChartEmbed() {},
|
|
76719
|
+
onSheetCountChange: function onSheetCountChange() {}
|
|
76718
76720
|
};
|
|
76719
76721
|
|
|
76720
76722
|
function handleCopy(ctx) {
|
package/dist/settings.d.ts
CHANGED
|
@@ -92,5 +92,7 @@ export type Settings = {
|
|
|
92
92
|
onClick?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
93
93
|
}[];
|
|
94
94
|
currency?: string;
|
|
95
|
+
onDuneChartEmbed?: () => void;
|
|
96
|
+
onSheetCountChange?: (count: number) => void;
|
|
95
97
|
};
|
|
96
98
|
export declare const defaultSettings: Required<Settings>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fileverse-dev/fortune-core",
|
|
3
|
-
"version": "1.0.2-mod-
|
|
3
|
+
"version": "1.0.2-mod-85",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"repository": "https://github.com/ruilisi/fortune-sheet",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@fileverse-dev/formula-parser": "0.2.13-mod-
|
|
13
|
+
"@fileverse-dev/formula-parser": "0.2.13-mod-22",
|
|
14
14
|
"dayjs": "^1.11.0",
|
|
15
15
|
"immer": "^9.0.12",
|
|
16
16
|
"lodash": "^4.17.21",
|