@univerjs-pro/sheets-exchange-client 0.1.12 → 0.1.15
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 +2 -2
- package/lib/es/index.js +2 -2
- package/lib/index.css +1 -1
- package/lib/locale/en-US.json +24 -0
- package/lib/locale/ru-RU.json +24 -0
- package/lib/locale/zh-CN.json +24 -0
- package/lib/types/controllers/menu.d.ts +2 -1
- package/lib/types/index.d.ts +9 -3
- package/lib/types/services/operate.service.d.ts +8 -2
- package/lib/types/services/request.service.d.ts +1 -1
- package/lib/umd/index.js +2 -2
- package/package.json +32 -13
- package/lib/types/locale/index.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs-pro/sheets-exchange-client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"require": "./lib/cjs/*",
|
|
29
29
|
"types": "./lib/types/index.d.ts"
|
|
30
30
|
},
|
|
31
|
-
"./lib/*": "./lib/*"
|
|
31
|
+
"./lib/*": "./lib/*",
|
|
32
|
+
"./locale/*": "./lib/locale/*.json"
|
|
32
33
|
},
|
|
33
34
|
"main": "./lib/cjs/index.js",
|
|
34
35
|
"module": "./lib/es/index.js",
|
|
@@ -43,29 +44,47 @@
|
|
|
43
44
|
"lib"
|
|
44
45
|
],
|
|
45
46
|
"peerDependencies": {
|
|
46
|
-
"@wendellhu/redi": "0.15.
|
|
47
|
+
"@wendellhu/redi": "0.15.4",
|
|
47
48
|
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
|
|
48
49
|
"rxjs": ">=7.0.0",
|
|
49
|
-
"@univerjs/core": "0.1.
|
|
50
|
-
"@univerjs/design": "0.1.
|
|
51
|
-
"@univerjs/network": "0.1.
|
|
52
|
-
"@univerjs/
|
|
50
|
+
"@univerjs/core": "0.1.15",
|
|
51
|
+
"@univerjs/design": "0.1.15",
|
|
52
|
+
"@univerjs/network": "0.1.15",
|
|
53
|
+
"@univerjs/sheets": "0.1.15",
|
|
54
|
+
"@univerjs/sheets-ui": "0.1.15",
|
|
55
|
+
"@univerjs/ui": "0.1.15"
|
|
53
56
|
},
|
|
54
57
|
"dependencies": {
|
|
55
|
-
"@univerjs/icons": "^0.1.
|
|
56
|
-
"@univerjs/protocol": "0.1.
|
|
58
|
+
"@univerjs/icons": "^0.1.56",
|
|
59
|
+
"@univerjs/protocol": "0.1.38-alpha.3",
|
|
60
|
+
"@univerjs/sheets": "0.1.15",
|
|
61
|
+
"@univerjs/sheets-ui": "0.1.15"
|
|
57
62
|
},
|
|
58
63
|
"devDependencies": {
|
|
59
64
|
"@types/pako": "^2.0.3",
|
|
60
|
-
"@wendellhu/redi": "0.15.
|
|
65
|
+
"@wendellhu/redi": "0.15.4",
|
|
61
66
|
"less": "^4.2.0",
|
|
62
67
|
"pako": "^2.1.0",
|
|
63
68
|
"rxjs": "^7.8.1",
|
|
64
69
|
"typescript": "^5.4.5",
|
|
65
|
-
"vite": "^5.2.
|
|
70
|
+
"vite": "^5.2.12",
|
|
66
71
|
"vitest": "^1.6.0",
|
|
67
|
-
"@univerjs/core": "0.1.
|
|
68
|
-
"@univerjs/shared": "0.1.
|
|
72
|
+
"@univerjs/core": "0.1.15",
|
|
73
|
+
"@univerjs/shared": "0.1.15"
|
|
74
|
+
},
|
|
75
|
+
"univerSpace": {
|
|
76
|
+
".": {
|
|
77
|
+
"import": "./lib/es/index.js",
|
|
78
|
+
"require": "./lib/cjs/index.js",
|
|
79
|
+
"types": "./lib/types/index.d.ts"
|
|
80
|
+
},
|
|
81
|
+
"./*": {
|
|
82
|
+
"import": "./lib/es/*",
|
|
83
|
+
"require": "./lib/cjs/*",
|
|
84
|
+
"types": "./lib/types/index.d.ts"
|
|
85
|
+
},
|
|
86
|
+
"./lib/*": "./lib/*",
|
|
87
|
+
"./locale/*": "./lib/locale/*.json"
|
|
69
88
|
},
|
|
70
89
|
"scripts": {
|
|
71
90
|
"test": "vitest run",
|