@fileverse-dev/dsheet 2.1.1-test-1 → 2.1.2-dropIn-1
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/editor/components/comments/comment-actions-dropdown.d.ts +19 -0
- package/dist/editor/components/comments/comment-cell-popup.d.ts +4 -0
- package/dist/editor/components/comments/comment-input.d.ts +4 -0
- package/dist/editor/components/comments/comment-item.d.ts +4 -0
- package/dist/editor/components/comments/comment-sidebar-empty.d.ts +4 -0
- package/dist/editor/components/comments/comment-sidebar.d.ts +4 -0
- package/dist/editor/components/comments/ens/ens-cache.d.ts +10 -0
- package/dist/editor/components/comments/ens/use-ens-status.d.ts +10 -0
- package/dist/editor/components/comments/use-comment-cell-popup.d.ts +12 -0
- package/dist/editor/components/comments/use-comment-permissions.d.ts +15 -0
- package/dist/editor/components/editor-workbook.d.ts +4 -9
- package/dist/editor/components/sidebar/editor-right-sidebar.d.ts +20 -0
- package/dist/editor/components/sidebar/right-sidebar.d.ts +14 -0
- package/dist/editor/components/sidebar/sidebar-context.d.ts +17 -0
- package/dist/editor/components/sidebar/use-right-panels.d.ts +12 -0
- package/dist/editor/components/sidebars/conditional-format.d.ts +2 -0
- package/dist/editor/components/sidebars/data-verification.d.ts +2 -0
- package/dist/editor/components/sidebars/function/function-categories-logic.d.ts +11 -0
- package/dist/editor/components/sidebars/function/function-categories.d.ts +6 -0
- package/dist/editor/components/sidebars/function/function-metadata.d.ts +7 -0
- package/dist/editor/components/sidebars/function/functionList.d.ts +8 -0
- package/dist/editor/components/sidebars/function/types.d.ts +24 -0
- package/dist/editor/components/sidebars/function/use-functions.d.ts +20 -0
- package/dist/editor/components/sidebars/function-content.d.ts +8 -0
- package/dist/editor/components/sidebars/template-ui.d.ts +22 -0
- package/dist/editor/components/sidebars/templates.d.ts +9 -0
- package/dist/editor/contexts/editor-context.d.ts +2 -2
- package/dist/editor/dsheet-editor.d.ts +1 -1
- package/dist/editor/types/comments.d.ts +128 -0
- package/dist/editor/types.d.ts +19 -5
- package/dist/editor/utils/api-keys-local-storage.d.ts +17 -0
- package/dist/editor/utils/cell-comment-marker.d.ts +29 -0
- package/dist/editor/utils/comment-key-utils.d.ts +7 -0
- package/dist/editor/utils/sheet-editor-safe.d.ts +26 -0
- package/dist/{executeStringFunction-tdvZ0KTi.js → executeStringFunction-CGbxAbbw.js} +436 -423
- package/dist/formula.js +1 -1
- package/dist/{index-C6jhrs-0.js → index-5D_WjAlq.js} +21979 -19435
- package/dist/index.d.ts +8 -1
- package/dist/index.es.js +55 -48
- package/dist/sheet-engine/core/index.d.ts +2 -1
- package/dist/sheet-engine/core/locale/en.d.ts +13 -0
- package/dist/sheet-engine/core/modules/index.d.ts +2 -0
- package/dist/sheet-engine/core/modules/removeDuplicates.d.ts +29 -0
- package/dist/sheet-engine/react/components/RemoveDuplicates/index.d.ts +12 -0
- package/dist/style.css +1 -1
- package/dist/{use-xlsx-import-impl-Dz78ftRU.js → use-xlsx-import-impl-Dr0Yvje-.js} +2 -2
- package/dist/{xlsx-export-impl-CxR7izBI.js → xlsx-export-impl-D5W76OCB.js} +2 -2
- package/package.json +3 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { g as Ue } from "./executeStringFunction-
|
|
1
|
+
import { g as Ue } from "./executeStringFunction-CGbxAbbw.js";
|
|
2
2
|
import * as qe from "yjs";
|
|
3
|
-
import { m as Xe, y as Ze } from "./index-
|
|
3
|
+
import { m as Xe, y as Ze } from "./index-5D_WjAlq.js";
|
|
4
4
|
import { n as Je } from "./xlsx-hyperlink-inline-DzewAypN.js";
|
|
5
5
|
import { toast as Be } from "@fileverse/ui";
|
|
6
6
|
var We = { exports: {} };
|
|
@@ -2,8 +2,8 @@ import { utils as dt, write as Nt } from "xlsx-js-style";
|
|
|
2
2
|
import { Workbook as Pt } from "exceljs";
|
|
3
3
|
import { toast as Ut } from "@fileverse/ui";
|
|
4
4
|
import { addFortuneImagesToWorksheet as Lt } from "./xlsx-image-utils-Cvg0qxRA.js";
|
|
5
|
-
import { g as jt, c as xt } from "./executeStringFunction-
|
|
6
|
-
import { c as Ct } from "./index-
|
|
5
|
+
import { g as jt, c as xt } from "./executeStringFunction-CGbxAbbw.js";
|
|
6
|
+
import { c as Ct } from "./index-5D_WjAlq.js";
|
|
7
7
|
import { c as zt, g as Wt } from "./xlsx-hyperlink-inline-DzewAypN.js";
|
|
8
8
|
const Mt = {
|
|
9
9
|
1: "thin",
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@fileverse-dev/dsheet",
|
|
3
3
|
"private": false,
|
|
4
4
|
"description": "DSheet",
|
|
5
|
-
"version": "2.1.
|
|
5
|
+
"version": "2.1.2-dropIn-1",
|
|
6
6
|
"main": "dist/index.es.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
8
8
|
"exports": {
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"@fileverse-dev/dsheets-templates": "^0.0.29",
|
|
53
53
|
"@fileverse-dev/formulajs": "^4.4.53",
|
|
54
54
|
"@fileverse/crypto": "^0.0.22",
|
|
55
|
+
"@fileverse/ens": "^0.0.4",
|
|
55
56
|
"@fileverse/ui": "^5.0.0",
|
|
56
57
|
"@noble/ciphers": "^2.2.0",
|
|
57
58
|
"@noble/curves": "^2.2.0",
|
|
@@ -110,4 +111,4 @@
|
|
|
110
111
|
"typescript": "^5.2.2",
|
|
111
112
|
"vite": "^5.0.0"
|
|
112
113
|
}
|
|
113
|
-
}
|
|
114
|
+
}
|