@fileverse-dev/dsheet 2.0.7 → 2.0.8
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/formula-ui-sync.d.ts +5 -0
- package/dist/index.es.js +15499 -15082
- package/dist/sheet-engine/core/index.d.ts +1 -1
- package/dist/sheet-engine/core/modules/format.d.ts +60 -1
- package/dist/sheet-engine/core/modules/index.d.ts +4 -4
- package/dist/sheet-engine/core/modules/merge.d.ts +2 -0
- package/dist/sheet-engine/core/modules/selection.d.ts +7 -2
- package/dist/sheet-engine/core/modules/toolbar.d.ts +3 -2
- package/dist/sheet-engine/core/types.d.ts +4 -0
- package/package.json +2 -2
|
@@ -26,6 +26,7 @@ export declare const getCellClone: (r: number, c: number, sheetEditorRef: React.
|
|
|
26
26
|
t?: string;
|
|
27
27
|
tb?: string;
|
|
28
28
|
s?: any;
|
|
29
|
+
dp?: number;
|
|
29
30
|
};
|
|
30
31
|
qp?: number;
|
|
31
32
|
spl?: any;
|
|
@@ -69,15 +70,18 @@ export declare const buildCellFormat: (value: any, existingCt: Cell["ct"], heade
|
|
|
69
70
|
fa: string;
|
|
70
71
|
ht: number;
|
|
71
72
|
tb?: string;
|
|
73
|
+
dp?: number;
|
|
72
74
|
} | {
|
|
73
75
|
t: string;
|
|
74
76
|
fa: string;
|
|
75
77
|
s: any;
|
|
76
78
|
tb?: string;
|
|
79
|
+
dp?: number;
|
|
77
80
|
} | {
|
|
78
81
|
t: string;
|
|
79
82
|
fa: string;
|
|
80
83
|
tb?: string;
|
|
84
|
+
dp?: number;
|
|
81
85
|
};
|
|
82
86
|
export declare const preserveTextColorFromInlineStyle: (existing: any, nextIsNum: boolean) => {
|
|
83
87
|
fc?: undefined;
|
|
@@ -99,6 +103,7 @@ export declare const cloneCellStyles: (cell: Cell) => {
|
|
|
99
103
|
t?: string;
|
|
100
104
|
tb?: string;
|
|
101
105
|
s?: any;
|
|
106
|
+
dp?: number;
|
|
102
107
|
};
|
|
103
108
|
qp?: number;
|
|
104
109
|
spl?: any;
|