@univerjs/core 0.1.1 → 0.1.3
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/README.md +22 -2
- package/lib/cjs/index.js +8 -6
- package/lib/es/index.js +2262 -1685
- package/lib/types/common/__tests__/array.spec.d.ts +16 -0
- package/lib/types/common/array.d.ts +8 -0
- package/lib/types/common/interceptor.d.ts +1 -1
- package/lib/types/docs/data-model/__tests__/replacement.spec.d.ts +16 -0
- package/lib/types/docs/data-model/replacement.d.ts +17 -0
- package/lib/types/docs/data-model/text-x/text-x.d.ts +3 -3
- package/lib/types/index.d.ts +14 -1
- package/lib/types/services/command/command.service.d.ts +4 -4
- package/lib/types/services/context/context.d.ts +1 -0
- package/lib/types/services/instance/instance.service.d.ts +1 -1
- package/lib/types/services/locale/locale.service.d.ts +4 -2
- package/lib/types/services/log/context.d.ts +18 -0
- package/lib/types/services/snapshot/__tests__/snapshot-mock.d.ts +37 -0
- package/lib/types/services/snapshot/__tests__/snapshot-transform.spec.d.ts +16 -0
- package/lib/types/services/snapshot/snapshot-server.service.d.ts +57 -0
- package/lib/types/services/snapshot/snapshot-transform.d.ts +43 -0
- package/lib/types/services/snapshot/snapshot-utils.d.ts +34 -0
- package/lib/types/services/undoredo/undoredo.service.d.ts +20 -7
- package/lib/types/shared/coder.d.ts +17 -0
- package/lib/types/shared/color/color-kit.d.ts +3 -1
- package/lib/types/shared/compare.d.ts +1 -0
- package/lib/types/shared/debounce.d.ts +18 -0
- package/lib/types/shared/generate.d.ts +1 -1
- package/lib/types/shared/index.d.ts +2 -1
- package/lib/types/shared/locale.d.ts +2 -1
- package/lib/types/shared/object-matrix.d.ts +3 -0
- package/lib/types/shared/rxjs.d.ts +20 -0
- package/lib/types/shared/tools.d.ts +1 -1
- package/lib/types/sheets/__tests__/create-core-test-bed.d.ts +1 -2
- package/lib/types/sheets/__tests__/worksheet.spec.d.ts +16 -0
- package/lib/types/sheets/row-manager.d.ts +0 -2
- package/lib/types/sheets/workbook.d.ts +1 -0
- package/lib/types/sheets/worksheet.d.ts +29 -9
- package/lib/types/types/interfaces/i-cell-data.d.ts +6 -0
- package/lib/types/types/interfaces/i-column-data.d.ts +2 -2
- package/lib/types/types/interfaces/i-document-data.d.ts +3 -2
- package/lib/types/types/interfaces/i-range.d.ts +5 -0
- package/lib/types/types/interfaces/i-row-data.d.ts +2 -2
- package/lib/types/types/interfaces/i-selection-data.d.ts +6 -0
- package/lib/umd/index.js +8 -6
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Core library for Univer.",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -48,8 +48,9 @@
|
|
|
48
48
|
"npm": ">=8.0.0"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@wendellhu/redi": "
|
|
52
|
-
"rxjs": ">=7.0.0"
|
|
51
|
+
"@wendellhu/redi": "0.13.0",
|
|
52
|
+
"rxjs": ">=7.0.0",
|
|
53
|
+
"@univerjs/protocol": "0.1.0"
|
|
53
54
|
},
|
|
54
55
|
"dependencies": {
|
|
55
56
|
"dayjs": "^1.11.10",
|
|
@@ -58,12 +59,13 @@
|
|
|
58
59
|
},
|
|
59
60
|
"devDependencies": {
|
|
60
61
|
"@types/numeral": "^2.0.5",
|
|
62
|
+
"@univerjs/protocol": "^0.1.0",
|
|
61
63
|
"@wendellhu/redi": "^0.13.0",
|
|
62
64
|
"rxjs": "^7.8.1",
|
|
63
|
-
"typescript": "^5.
|
|
64
|
-
"vite": "^5.1.
|
|
65
|
+
"typescript": "^5.4.2",
|
|
66
|
+
"vite": "^5.1.6",
|
|
65
67
|
"vitest": "^1.3.1",
|
|
66
|
-
"@univerjs/shared": "0.1.
|
|
68
|
+
"@univerjs/shared": "0.1.3"
|
|
67
69
|
},
|
|
68
70
|
"scripts": {
|
|
69
71
|
"test": "vitest run",
|