@fileverse-dev/dsheet 4.0.2 → 4.0.3-import-compaction.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/utils/import-compaction.d.ts +25 -0
- package/dist/editor/utils/xlsx-import-pipeline.d.ts +25 -0
- package/dist/{executeStringFunction-BQvE7aeV.js → executeStringFunction-C1C2F-4h.js} +15 -13
- package/dist/formula.js +1 -1
- package/dist/{index-Bw9u774w.js → index-CtF9qA4V.js} +3472 -3382
- package/dist/index.es.js +6 -6
- package/dist/sheet-engine/core/api/common.d.ts +1 -0
- package/dist/sheet-engine/core/types.d.ts +2 -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/use-xlsx-import-impl-DC5xEiJb.js +1895 -0
- package/dist/worker/dsheet-worker-client.d.ts +14 -0
- package/dist/worker/dsheet-worker.d.ts +14 -0
- package/dist/{xlsx-export-impl-BXPAAWnu.js → xlsx-export-impl-DZRu--sN.js} +300 -298
- package/package.json +2 -1
- package/dist/use-xlsx-import-impl-KgnUKKnW.js +0 -1572
package/dist/index.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as s,
|
|
2
|
-
import { cr as k, cs as V, ct as y, cy as z, bo as P, e as U, f as X, l as _, a as B, d7 as
|
|
1
|
+
import { C as s, b as t, d as o, S as r, f as l, g as d, h as n, T as i, j as S, k as c, l as h, n as m, o as p, p as C, q as u, s as E, t as F, u as g, v as x, w as R, x as f, z as w, A, B as I, D as L, E as T, F as v, G as b, H as D } from "./index-CtF9qA4V.js";
|
|
2
|
+
import { cr as k, cs as V, ct as y, cy as z, bo as P, e as U, f as X, l as _, a as B, d7 as G, d8 as H, b7 as O, d9 as j, da as q, de as J, df as K, dh as N, I as W, dw as Y, dW as Z, b0 as Q } from "./executeStringFunction-C1C2F-4h.js";
|
|
3
3
|
import { FLVURL as ee } from "@fileverse-dev/formulajs";
|
|
4
4
|
import { E as se, S as te } from "./constants-Cdz6oSCq.js";
|
|
5
5
|
export {
|
|
@@ -34,10 +34,10 @@ export {
|
|
|
34
34
|
F as handleExportToCSV,
|
|
35
35
|
g as handleExportToJSON,
|
|
36
36
|
x as handleExportToXLSX,
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
G as handleFreeze,
|
|
38
|
+
H as handleHorizontalAlign,
|
|
39
|
+
O as handleLink,
|
|
40
|
+
j as handleMerge,
|
|
41
41
|
R as handlePasteByClick,
|
|
42
42
|
q as handleSort,
|
|
43
43
|
J as handleTextSize,
|
|
@@ -56,6 +56,7 @@ export declare function getSheetWithLatestCelldata(ctx: Context, options?: Commo
|
|
|
56
56
|
luckysheet_conditionformat_save?: any[];
|
|
57
57
|
luckysheet_alternateformat_save?: any[];
|
|
58
58
|
dataVerification?: any;
|
|
59
|
+
dataVerificationDefs?: any[];
|
|
59
60
|
conditionRules?: import('../types').ConditionRulesProps;
|
|
60
61
|
hyperlink?: Record<string, import('..').HyperlinkEntry | import('..').HyperlinkEntry[]>;
|
|
61
62
|
dynamicArray_compute?: any;
|
|
@@ -246,6 +246,8 @@ export type Sheet = {
|
|
|
246
246
|
luckysheet_conditionformat_save?: any[];
|
|
247
247
|
luckysheet_alternateformat_save?: any[];
|
|
248
248
|
dataVerification?: any;
|
|
249
|
+
/** Interned dataVerification entries; per-cell map may hold numeric refs into this list. */
|
|
250
|
+
dataVerificationDefs?: any[];
|
|
249
251
|
conditionRules?: ConditionRulesProps;
|
|
250
252
|
hyperlink?: Record<string, HyperlinkEntry | HyperlinkEntry[]>;
|
|
251
253
|
dynamicArray_compute?: any;
|
|
@@ -119,6 +119,7 @@ export declare function generateAPIs(context: Context, setContext: (recipe: (ctx
|
|
|
119
119
|
luckysheet_conditionformat_save?: any[];
|
|
120
120
|
luckysheet_alternateformat_save?: any[];
|
|
121
121
|
dataVerification?: any;
|
|
122
|
+
dataVerificationDefs?: any[];
|
|
122
123
|
conditionRules?: import('../../../core/types').ConditionRulesProps;
|
|
123
124
|
hyperlink?: Record<string, import('../../../core').HyperlinkEntry | import('../../../core').HyperlinkEntry[]>;
|
|
124
125
|
dynamicArray_compute?: any;
|
|
@@ -120,6 +120,7 @@ declare const Workbook: React.ForwardRefExoticComponent<Settings & AdditionalPro
|
|
|
120
120
|
luckysheet_conditionformat_save?: any[];
|
|
121
121
|
luckysheet_alternateformat_save?: any[];
|
|
122
122
|
dataVerification?: any;
|
|
123
|
+
dataVerificationDefs?: any[];
|
|
123
124
|
conditionRules?: import('../../../core/types').ConditionRulesProps;
|
|
124
125
|
hyperlink?: Record<string, import('../../../core').HyperlinkEntry | import('../../../core').HyperlinkEntry[]>;
|
|
125
126
|
dynamicArray_compute?: any;
|