@fileverse-dev/dsheet 1.1.58-update-error-state-1 → 1.1.59-ux-fixes-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/index.es.js +26091 -26190
- package/dist/package/hooks/use-editor-sync.d.ts +1 -1
- package/dist/package/utils/formula-ui-sync.d.ts +0 -2
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -7,7 +7,7 @@ import * as Y from 'yjs';
|
|
|
7
7
|
export declare const useEditorSync: (dsheetId: string, enableIndexeddbSync?: boolean, isReadOnly?: boolean) => {
|
|
8
8
|
ydocRef: import('react').MutableRefObject<Y.Doc | null>;
|
|
9
9
|
persistenceRef: import('react').MutableRefObject<IndexeddbPersistence | null>;
|
|
10
|
-
syncStatus: "
|
|
10
|
+
syncStatus: "initializing" | "syncing" | "synced" | "error";
|
|
11
11
|
isSyncedRef: import('react').MutableRefObject<boolean>;
|
|
12
12
|
refreshIndexedDB: () => Promise<void>;
|
|
13
13
|
};
|
|
@@ -45,7 +45,6 @@ export declare const getCellClone: (r: number, c: number, sheetEditorRef: React.
|
|
|
45
45
|
c: number;
|
|
46
46
|
id: string;
|
|
47
47
|
};
|
|
48
|
-
error?: import('@fileverse-dev/fortune-core').CellError;
|
|
49
48
|
bl?: number;
|
|
50
49
|
it?: number;
|
|
51
50
|
ff?: number | string;
|
|
@@ -110,7 +109,6 @@ export declare const cloneCellStyles: (cell: Cell) => {
|
|
|
110
109
|
c: number;
|
|
111
110
|
id: string;
|
|
112
111
|
};
|
|
113
|
-
error?: import('@fileverse-dev/fortune-core').CellError;
|
|
114
112
|
bl?: number;
|
|
115
113
|
it?: number;
|
|
116
114
|
ff?: number | string;
|