@univerjs/sheets-thread-comment-ui 0.4.0-nightly.202410290723
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 +98 -0
- package/lib/cjs/index.js +1 -0
- package/lib/es/index.js +818 -0
- package/lib/locale/en-US.json +8 -0
- package/lib/locale/fa-IR.json +8 -0
- package/lib/locale/ru-RU.json +8 -0
- package/lib/locale/vi-VN.json +8 -0
- package/lib/locale/zh-CN.json +8 -0
- package/lib/locale/zh-TW.json +8 -0
- package/lib/types/commands/operations/comment.operation.d.ts +2 -0
- package/lib/types/controllers/config.schema.d.ts +9 -0
- package/lib/types/controllers/menu.d.ts +12 -0
- package/lib/types/controllers/menu.schema.d.ts +2 -0
- package/lib/types/controllers/render-controllers/render.controller.d.ts +13 -0
- package/lib/types/controllers/sheets-thread-comment-copy-paste.controller.d.ts +12 -0
- package/lib/types/controllers/sheets-thread-comment-hover.controller.d.ts +12 -0
- package/lib/types/controllers/sheets-thread-comment-popup.controller.d.ts +28 -0
- package/lib/types/controllers/sheets-thread-comment-remove.controller.d.ts +11 -0
- package/lib/types/controllers/sheets-thread-comment.controller.d.ts +11 -0
- package/lib/types/index.d.ts +24 -0
- package/lib/types/locale/en-US.d.ts +24 -0
- package/lib/types/locale/fa-IR.d.ts +24 -0
- package/lib/types/locale/ru-RU.d.ts +24 -0
- package/lib/types/locale/vi-VN.d.ts +24 -0
- package/lib/types/locale/zh-CN.d.ts +24 -0
- package/lib/types/locale/zh-TW.d.ts +24 -0
- package/lib/types/plugin.d.ts +14 -0
- package/lib/types/services/sheets-thread-comment-popup.service.d.ts +23 -0
- package/lib/types/types/const.d.ts +18 -0
- package/lib/types/types/interfaces/i-sheet-thread-comment.d.ts +5 -0
- package/lib/types/views/sheets-thread-comment-cell/index.d.ts +2 -0
- package/lib/types/views/sheets-thread-comment-panel/index.d.ts +2 -0
- package/lib/umd/index.js +1 -0
- package/package.json +95 -0
package/package.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@univerjs/sheets-thread-comment-ui",
|
|
3
|
+
"version": "0.4.0-nightly.202410290723",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Univer thread comment plugin",
|
|
6
|
+
"author": "DreamNum <developer@univer.ai>",
|
|
7
|
+
"license": "Apache-2.0",
|
|
8
|
+
"funding": {
|
|
9
|
+
"type": "opencollective",
|
|
10
|
+
"url": "https://opencollective.com/univer"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://univer.ai",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/dream-num/univer"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/dream-num/univer/issues"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [],
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"import": "./lib/es/index.js",
|
|
24
|
+
"require": "./lib/cjs/index.js",
|
|
25
|
+
"types": "./lib/types/index.d.ts"
|
|
26
|
+
},
|
|
27
|
+
"./*": {
|
|
28
|
+
"import": "./lib/es/*",
|
|
29
|
+
"require": "./lib/cjs/*",
|
|
30
|
+
"types": "./lib/types/index.d.ts"
|
|
31
|
+
},
|
|
32
|
+
"./lib/*": "./lib/*",
|
|
33
|
+
"./locale/*": "./lib/locale/*.json"
|
|
34
|
+
},
|
|
35
|
+
"main": "./lib/cjs/index.js",
|
|
36
|
+
"module": "./lib/es/index.js",
|
|
37
|
+
"types": "./lib/types/index.d.ts",
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
},
|
|
41
|
+
"directories": {
|
|
42
|
+
"lib": "lib"
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"lib"
|
|
46
|
+
],
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
|
|
49
|
+
"rxjs": ">=7.0.0"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@univerjs/icons": "^0.1.79",
|
|
53
|
+
"clsx": "^2.1.1",
|
|
54
|
+
"@univerjs/core": "0.4.0-nightly.202410290723",
|
|
55
|
+
"@univerjs/design": "0.4.0-nightly.202410290723",
|
|
56
|
+
"@univerjs/docs-ui": "0.4.0-nightly.202410290723",
|
|
57
|
+
"@univerjs/engine-render": "0.4.0-nightly.202410290723",
|
|
58
|
+
"@univerjs/sheets": "0.4.0-nightly.202410290723",
|
|
59
|
+
"@univerjs/engine-formula": "0.4.0-nightly.202410290723",
|
|
60
|
+
"@univerjs/sheets-thread-comment": "0.4.0-nightly.202410290723",
|
|
61
|
+
"@univerjs/sheets-ui": "0.4.0-nightly.202410290723",
|
|
62
|
+
"@univerjs/thread-comment": "0.4.0-nightly.202410290723",
|
|
63
|
+
"@univerjs/thread-comment-ui": "0.4.0-nightly.202410290723",
|
|
64
|
+
"@univerjs/ui": "0.4.0-nightly.202410290723"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"react": "18.3.1",
|
|
68
|
+
"rxjs": "^7.8.1",
|
|
69
|
+
"typescript": "^5.6.3",
|
|
70
|
+
"vite": "^5.4.8",
|
|
71
|
+
"vitest": "^2.1.2",
|
|
72
|
+
"@univerjs-infra/shared": "0.4.1"
|
|
73
|
+
},
|
|
74
|
+
"univerSpace": {
|
|
75
|
+
".": {
|
|
76
|
+
"import": "./lib/es/index.js",
|
|
77
|
+
"require": "./lib/cjs/index.js",
|
|
78
|
+
"types": "./lib/types/index.d.ts"
|
|
79
|
+
},
|
|
80
|
+
"./*": {
|
|
81
|
+
"import": "./lib/es/*",
|
|
82
|
+
"require": "./lib/cjs/*",
|
|
83
|
+
"types": "./lib/types/index.d.ts"
|
|
84
|
+
},
|
|
85
|
+
"./lib/*": "./lib/*",
|
|
86
|
+
"./locale/*": "./lib/locale/*.json"
|
|
87
|
+
},
|
|
88
|
+
"scripts": {
|
|
89
|
+
"test": "vitest run",
|
|
90
|
+
"test:watch": "vitest",
|
|
91
|
+
"coverage": "vitest run --coverage",
|
|
92
|
+
"lint:types": "tsc --noEmit",
|
|
93
|
+
"build": "tsc && vite build"
|
|
94
|
+
}
|
|
95
|
+
}
|