@fileverse-dev/dsheet 4.0.3-import-compaction.1 → 4.0.3-import-compaction.2
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/hooks/use-celldata-compaction.d.ts +2 -3
- package/dist/editor/utils/compact-committed-celldata.d.ts +11 -10
- package/dist/{index-CtF9qA4V.js → index-DdJcYIoi.js} +4016 -3905
- package/dist/index.es.js +1 -1
- package/dist/sheet-engine/core/paste/paste-border-utils.d.ts +2 -0
- package/dist/sheet-engine/core/types.d.ts +2 -0
- package/dist/use-xlsx-import-impl-DVD4F0Xa.js +1892 -0
- package/dist/{xlsx-export-impl-DZRu--sN.js → xlsx-export-impl-Dtm9yKqt.js} +10 -11
- package/dist/xlsx-hyperlink-inline-D8ZL-y78.js +195 -0
- package/package.json +1 -1
- package/dist/use-xlsx-import-impl-DC5xEiJb.js +0 -1895
- package/dist/xlsx-hyperlink-inline-DzewAypN.js +0 -71
- package/dist/xlsx-image-utils-Cvg0qxRA.js +0 -126
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
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-
|
|
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-DdJcYIoi.js";
|
|
2
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";
|
|
@@ -21,3 +21,5 @@ export declare function filterMeaningfulBorderSides(sides: {
|
|
|
21
21
|
color?: string;
|
|
22
22
|
};
|
|
23
23
|
}): typeof sides;
|
|
24
|
+
/** Drop junk borderInfo entries. Returns undefined when unchanged. */
|
|
25
|
+
export declare function compactBorderInfo(borderInfo: any[] | undefined): any[] | undefined;
|
|
@@ -143,6 +143,8 @@ export type SheetConfig = {
|
|
|
143
143
|
borderInfo?: any[];
|
|
144
144
|
/** Range-level cell formatting for empty cells (toolbar bulk format). */
|
|
145
145
|
cellFormatRanges?: CellFormatRange[];
|
|
146
|
+
/** Background compaction revision (celldata + borderInfo); synced via Yjs. */
|
|
147
|
+
sheetCompactionRev?: number;
|
|
146
148
|
authority?: any;
|
|
147
149
|
rowReadOnly?: Record<number, number>;
|
|
148
150
|
colReadOnly?: Record<number, number>;
|