@univerjs/core 0.1.0-beta.0 → 0.1.0-beta.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/lib/cjs/index.js +6 -6
- package/lib/es/index.js +795 -797
- package/lib/types/types/const/index.d.ts +0 -1
- package/lib/types/types/interfaces/i-workbook-data.d.ts +12 -3
- package/lib/umd/index.js +5 -5
- package/package.json +7 -7
- package/lib/types/types/const/action-names.d.ts +0 -65
- package/lib/types/types/const/doc-action-names.d.ts +0 -21
|
@@ -22,12 +22,21 @@ import type { IWorksheetData } from './i-worksheet-data';
|
|
|
22
22
|
* Properties of a workbook's configuration
|
|
23
23
|
*/
|
|
24
24
|
export interface IWorkbookData extends IExtraModelData {
|
|
25
|
-
/**
|
|
25
|
+
/**
|
|
26
|
+
* unit id
|
|
27
|
+
*/
|
|
26
28
|
id: string;
|
|
27
|
-
/**
|
|
29
|
+
/**
|
|
30
|
+
* Revision of this spreadsheet. Would be used in collaborated editing. Starts from one.
|
|
31
|
+
*/
|
|
28
32
|
rev?: number;
|
|
33
|
+
/**
|
|
34
|
+
* Name of the spreadsheet.
|
|
35
|
+
*/
|
|
29
36
|
name: string;
|
|
30
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* Version of Univer model definition.
|
|
39
|
+
*/
|
|
31
40
|
appVersion: string;
|
|
32
41
|
locale: LocaleType;
|
|
33
42
|
/** Style reference. */
|