@univerjs/core 0.2.11 → 0.2.13
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 +5 -5
- package/lib/es/index.js +458 -30
- package/lib/types/common/interceptor.d.ts +1 -0
- package/lib/types/docs/data-model/document-data-model.d.ts +4 -4
- package/lib/types/docs/data-model/index.d.ts +1 -0
- package/lib/types/docs/data-model/text-x/apply-utils/common.d.ts +1 -1
- package/lib/types/docs/data-model/text-x/build-utils/__test__/custom-range.spec.d.ts +16 -0
- package/lib/types/docs/data-model/text-x/build-utils/custom-range.d.ts +14 -0
- package/lib/types/docs/data-model/text-x/build-utils/index.d.ts +28 -0
- package/lib/types/docs/data-model/text-x/build-utils/selection.d.ts +29 -0
- package/lib/types/docs/data-model/text-x/build-utils/text-x-utils.d.ts +38 -0
- package/lib/types/docs/data-model/text-x/utils.d.ts +2 -1
- package/lib/types/services/__tests__/index.d.ts +6 -6
- package/lib/types/services/authz-io/type.d.ts +1 -1
- package/lib/types/services/command/command.service.d.ts +3 -3
- package/lib/types/services/config/config.service.d.ts +20 -7
- package/lib/types/services/context/context.service.d.ts +1 -1
- package/lib/types/services/instance/instance.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/resource-loader/type.d.ts +1 -1
- package/lib/types/services/resource-manager/type.d.ts +1 -1
- package/lib/types/services/undoredo/undoredo.service.d.ts +1 -1
- package/lib/types/shared/common.d.ts +3 -2
- package/lib/types/shared/tools.d.ts +1 -2
- package/lib/types/sheets/row-manager.d.ts +2 -2
- package/lib/types/sheets/typedef.d.ts +25 -5
- package/lib/types/sheets/view-model.d.ts +1 -1
- package/lib/types/sheets/worksheet.d.ts +13 -7
- package/lib/types/slides/slide-model.d.ts +3 -3
- package/lib/types/types/const/const.d.ts +0 -4
- package/lib/types/types/enum/delete-direction.d.ts +19 -0
- package/lib/types/types/enum/index.d.ts +1 -0
- package/lib/types/types/interfaces/i-data-validation.d.ts +17 -2
- package/lib/types/types/interfaces/i-document-data.d.ts +24 -7
- package/lib/types/types/interfaces/i-need-check-disposable.d.ts +4 -0
- package/lib/types/types/interfaces/index.d.ts +1 -0
- package/lib/umd/index.js +5 -5
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Core library for Univer.",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
|
|
50
50
|
"rxjs": ">=7.0.0",
|
|
51
|
-
"@univerjs/core": "0.2.
|
|
51
|
+
"@univerjs/core": "0.2.13"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@types/lodash.mergewith": "^4.6.9",
|
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@types/numeral": "^2.0.5",
|
|
65
65
|
"rxjs": "^7.8.1",
|
|
66
|
-
"typescript": "^5.
|
|
67
|
-
"vite": "^5.4.
|
|
66
|
+
"typescript": "^5.6.2",
|
|
67
|
+
"vite": "^5.4.4",
|
|
68
68
|
"vitest": "^2.0.5",
|
|
69
|
-
"@univerjs/shared": "0.2.
|
|
69
|
+
"@univerjs-infra/shared": "0.2.13"
|
|
70
70
|
},
|
|
71
71
|
"univerSpace": {
|
|
72
72
|
".": {
|