@univerjs/core 0.2.5 → 0.2.7
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 +10 -10
- package/lib/es/index.js +8406 -7042
- package/lib/types/common/const.d.ts +1 -1
- package/lib/types/common/error.d.ts +18 -0
- package/lib/types/common/unit.d.ts +3 -0
- package/lib/types/docs/data-model/document-data-model.d.ts +4 -0
- package/lib/types/docs/data-model/json-x/json-x.d.ts +2 -1
- package/lib/types/docs/data-model/preset-list-type.d.ts +54 -4
- package/lib/types/docs/data-model/text-x/__tests__/transform-position.spec.d.ts +16 -0
- package/lib/types/docs/data-model/text-x/__tests__/transform.spec.d.ts +16 -0
- package/lib/types/docs/data-model/text-x/apply-utils/common.d.ts +2 -2
- package/lib/types/docs/data-model/text-x/text-x.d.ts +31 -1
- package/lib/types/docs/data-model/text-x/transform-utils.d.ts +3 -0
- package/lib/types/docs/data-model/types.d.ts +12 -10
- package/lib/types/index.d.ts +2 -1
- package/lib/types/services/context/context.d.ts +3 -1
- package/lib/types/services/instance/instance.service.d.ts +18 -6
- package/lib/types/services/plugin/plugin.d.ts +1 -1
- package/lib/types/services/plugin/plugin.service.d.ts +1 -0
- package/lib/types/services/resource-manager/resource-manager.service.d.ts +4 -6
- package/lib/types/services/resource-manager/type.d.ts +8 -4
- package/lib/types/services/snapshot/snapshot-transform.d.ts +3 -0
- package/lib/types/services/snapshot/snapshot-utils.d.ts +2 -2
- package/lib/types/shared/shape.d.ts +6 -0
- package/lib/types/shared/tools.d.ts +11 -0
- package/lib/types/sheets/workbook.d.ts +1 -0
- package/lib/types/slides/slide-model.d.ts +24 -2
- package/lib/types/types/enum/text-style.d.ts +3 -1
- package/lib/types/types/interfaces/i-document-data-interceptor.d.ts +5 -1
- package/lib/types/types/interfaces/i-document-data.d.ts +166 -57
- package/lib/types/types/interfaces/i-workbook-data.d.ts +6 -5
- package/lib/umd/index.js +10 -10
- package/package.json +10 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Core library for Univer.",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -47,11 +47,14 @@
|
|
|
47
47
|
],
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
|
|
50
|
-
"rxjs": ">=7.0.0"
|
|
50
|
+
"rxjs": ">=7.0.0",
|
|
51
|
+
"@univerjs/core": "0.2.7"
|
|
51
52
|
},
|
|
52
53
|
"dependencies": {
|
|
53
|
-
"@
|
|
54
|
+
"@types/lodash.mergewith": "^4.6.9",
|
|
55
|
+
"@univerjs/protocol": "0.1.38",
|
|
54
56
|
"@wendellhu/redi": "0.16.0",
|
|
57
|
+
"lodash.mergewith": "^4.6.2",
|
|
55
58
|
"nanoid": "5.0.7",
|
|
56
59
|
"numeral": "^2.0.6",
|
|
57
60
|
"ot-json1": "^1.0.2"
|
|
@@ -59,10 +62,10 @@
|
|
|
59
62
|
"devDependencies": {
|
|
60
63
|
"@types/numeral": "^2.0.5",
|
|
61
64
|
"rxjs": "^7.8.1",
|
|
62
|
-
"typescript": "^5.5.
|
|
63
|
-
"vite": "^5.3.
|
|
64
|
-
"vitest": "^2.0.
|
|
65
|
-
"@univerjs/shared": "0.2.
|
|
65
|
+
"typescript": "^5.5.4",
|
|
66
|
+
"vite": "^5.3.5",
|
|
67
|
+
"vitest": "^2.0.5",
|
|
68
|
+
"@univerjs/shared": "0.2.7"
|
|
66
69
|
},
|
|
67
70
|
"univerSpace": {
|
|
68
71
|
".": {
|