@fileverse-dev/dsheet 4.0.3 → 4.0.5
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/{constants-Cdz6oSCq.js → constants-CRFfbkoQ.js} +1 -1
- package/dist/constants.js +1 -1
- package/dist/{crypto-constants-CqpCRs86.js → crypto-constants-ZTlAYRUf.js} +33 -22
- package/dist/editor/components/sidebar/use-right-panels.d.ts +1 -1
- package/dist/editor/components/sidebars/named-ranges.d.ts +2 -0
- package/dist/editor/hooks/use-celldata-compaction.d.ts +2 -3
- package/dist/editor/utils/compact-committed-celldata.d.ts +11 -10
- package/dist/editor/utils/defined-names-ydoc.d.ts +31 -0
- package/dist/editor/utils/import-compaction.d.ts +25 -0
- package/dist/editor/utils/xlsx-defined-names.d.ts +41 -0
- package/dist/editor/utils/xlsx-import-pipeline.d.ts +28 -0
- package/dist/{executeStringFunction-BQvE7aeV.js → executeStringFunction-B6fhDKyN.js} +7014 -6490
- package/dist/formula.js +1 -1
- package/dist/{index-CeTa91qc.js → index-BqGOKo9u.js} +15445 -14688
- package/dist/index.es.js +22 -22
- package/dist/sheet-engine/core/api/common.d.ts +1 -0
- package/dist/sheet-engine/core/context.d.ts +3 -1
- package/dist/sheet-engine/core/index.d.ts +2 -2
- package/dist/sheet-engine/core/modules/formula-snapshot-eval.d.ts +11 -0
- package/dist/sheet-engine/core/modules/formula.d.ts +27 -0
- package/dist/sheet-engine/core/modules/index.d.ts +3 -2
- package/dist/sheet-engine/core/modules/namedRanges.d.ts +53 -0
- package/dist/sheet-engine/core/paste/paste-border-utils.d.ts +2 -0
- package/dist/sheet-engine/core/settings.d.ts +2 -0
- package/dist/sheet-engine/core/types.d.ts +21 -0
- package/dist/sheet-engine/react/components/NamedRanges/index.d.ts +4 -0
- package/dist/sheet-engine/react/components/Workbook/api.d.ts +1 -0
- package/dist/sheet-engine/react/components/Workbook/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/{template-data-list-oP1s0Uxn.js → template-data-list-RKnVLsuf.js} +51 -50
- package/dist/use-xlsx-import-impl-Bddlxx23.js +1898 -0
- package/dist/worker/dsheet-worker-client.d.ts +14 -0
- package/dist/worker/dsheet-worker.d.ts +14 -0
- package/dist/xlsx-defined-names-DsWdNZw-.js +117 -0
- package/dist/xlsx-export-impl-DJiXCevi.js +831 -0
- package/dist/xlsx-hyperlink-inline-CTg4_gg1.js +2512 -0
- package/package.json +5 -4
- package/dist/use-xlsx-import-impl-BVsfV8ZV.js +0 -1572
- package/dist/xlsx-export-impl-Ber9FhFY.js +0 -3138
- package/dist/xlsx-hyperlink-inline-DzewAypN.js +0 -71
- package/dist/xlsx-image-utils-Cvg0qxRA.js +0 -126
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@fileverse-dev/dsheet",
|
|
3
3
|
"private": false,
|
|
4
4
|
"description": "DSheet",
|
|
5
|
-
"version": "4.0.
|
|
5
|
+
"version": "4.0.5",
|
|
6
6
|
"main": "dist/index.es.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
8
8
|
"exports": {
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@fileverse-dev/dsheets-templates": "^0.0.
|
|
62
|
-
"@fileverse-dev/formulajs": "
|
|
61
|
+
"@fileverse-dev/dsheets-templates": "^0.0.31",
|
|
62
|
+
"@fileverse-dev/formulajs": "4.4.54",
|
|
63
63
|
"@fileverse/crypto": "^0.0.22",
|
|
64
64
|
"@fileverse/ens": "^0.0.4",
|
|
65
65
|
"@fileverse/ui": "^5.1.9",
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
"@tippyjs/react": "^4.2.6",
|
|
70
70
|
"@ucans/ucans": "^0.12.0",
|
|
71
71
|
"classnames": "^2.5.1",
|
|
72
|
+
"comlink": "^4.4.2",
|
|
72
73
|
"dayjs": "^1.11.0",
|
|
73
74
|
"exceljs": "^4.4.0",
|
|
74
75
|
"immer": "^9.0.12",
|
|
@@ -125,4 +126,4 @@
|
|
|
125
126
|
"vitest": "^3.2.4",
|
|
126
127
|
"yjs": "13.6.30"
|
|
127
128
|
}
|
|
128
|
-
}
|
|
129
|
+
}
|