@univerjs/core 0.2.4 → 0.2.6
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 +11 -9
- package/lib/es/index.js +7813 -6138
- package/lib/types/common/const.d.ts +1 -0
- package/lib/types/common/di.d.ts +17 -0
- package/lib/types/common/json.d.ts +18 -0
- package/lib/types/docs/data-model/document-data-model.d.ts +3 -0
- package/lib/types/index.d.ts +4 -2
- package/lib/types/observer/observable.d.ts +2 -1
- package/lib/types/services/__tests__/index.d.ts +7 -7
- package/lib/types/services/authz-io/type.d.ts +1 -1
- package/lib/types/services/command/command.service.d.ts +2 -2
- package/lib/types/services/config/config.service.d.ts +1 -1
- package/lib/types/services/context/context.service.d.ts +1 -1
- package/lib/types/services/instance/instance.service.d.ts +2 -2
- package/lib/types/services/lifecycle/lifecycle.d.ts +1 -1
- package/lib/types/services/lifecycle/lifecycle.service.d.ts +1 -1
- package/lib/types/services/local-storage/local-storage.service.d.ts +1 -1
- package/lib/types/services/log/log.service.d.ts +1 -1
- package/lib/types/services/permission/type.d.ts +1 -1
- package/lib/types/services/plugin/plugin-override.d.ts +1 -1
- package/lib/types/services/plugin/plugin.d.ts +2 -2
- package/lib/types/services/plugin/plugin.service.d.ts +2 -1
- package/lib/types/services/resource-loader/type.d.ts +1 -1
- package/lib/types/services/resource-manager/type.d.ts +2 -2
- package/lib/types/services/snapshot/snapshot-server.service.d.ts +1 -1
- package/lib/types/services/snapshot/snapshot-utils.d.ts +2 -2
- package/lib/types/services/undoredo/undoredo.service.d.ts +2 -2
- package/lib/types/shared/lifecycle.d.ts +1 -1
- package/lib/types/shared/lru/lru-map.d.ts +1 -1
- package/lib/types/shared/rxjs.d.ts +1 -1
- package/lib/types/sheets/view-model.d.ts +1 -1
- package/lib/types/slides/slide-model.d.ts +7 -0
- package/lib/types/types/enum/text-style.d.ts +3 -1
- package/lib/types/types/interfaces/i-document-data.d.ts +74 -12
- package/lib/types/univer.d.ts +1 -1
- package/lib/umd/index.js +11 -9
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Core library for Univer.",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -46,23 +46,23 @@
|
|
|
46
46
|
"lib"
|
|
47
47
|
],
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"
|
|
49
|
+
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
|
|
50
50
|
"rxjs": ">=7.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@univerjs/protocol": "0.1.38-alpha.23",
|
|
54
|
+
"@wendellhu/redi": "0.16.0",
|
|
54
55
|
"nanoid": "5.0.7",
|
|
55
56
|
"numeral": "^2.0.6",
|
|
56
57
|
"ot-json1": "^1.0.2"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
60
|
"@types/numeral": "^2.0.5",
|
|
60
|
-
"@wendellhu/redi": "0.16.0",
|
|
61
61
|
"rxjs": "^7.8.1",
|
|
62
|
-
"typescript": "^5.5.
|
|
63
|
-
"vite": "^5.3.
|
|
64
|
-
"vitest": "^2.0.
|
|
65
|
-
"@univerjs/shared": "0.2.
|
|
62
|
+
"typescript": "^5.5.4",
|
|
63
|
+
"vite": "^5.3.5",
|
|
64
|
+
"vitest": "^2.0.4",
|
|
65
|
+
"@univerjs/shared": "0.2.6"
|
|
66
66
|
},
|
|
67
67
|
"univerSpace": {
|
|
68
68
|
".": {
|