@univerjs-pro/dev-changesets-replay 0.5.0-nightly.202411161605
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 +13 -0
- package/lib/cjs/index.js +1 -0
- package/lib/es/index.js +1 -0
- package/lib/index.css +1 -0
- package/lib/types/commands/commands/changesets-replay.command.d.ts +10 -0
- package/lib/types/commands/operations/changesets-replay.operation.d.ts +5 -0
- package/lib/types/constants.d.ts +1 -0
- package/lib/types/controllers/changesets-replay-ui.controller.d.ts +11 -0
- package/lib/types/controllers/changesets-replay.controller.d.ts +12 -0
- package/lib/types/controllers/config.schema.d.ts +8 -0
- package/lib/types/controllers/menu.d.ts +4 -0
- package/lib/types/controllers/menu.schema.d.ts +2 -0
- package/lib/types/index.d.ts +2 -0
- package/lib/types/plugin.d.ts +13 -0
- package/lib/types/services/changesets-replay.service.d.ts +20 -0
- package/lib/types/views/panel/ReplayOptions.d.ts +2 -0
- package/lib/types/views/panel/ReplayPanel.d.ts +2 -0
- package/lib/types/views/panel/component-name.d.ts +16 -0
- package/lib/umd/index.js +1 -0
- package/package.json +107 -0
package/package.json
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@univerjs-pro/dev-changesets-replay",
|
|
3
|
+
"version": "0.5.0-nightly.202411161605",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "",
|
|
6
|
+
"author": "DreamNum <developer@univer.ai>",
|
|
7
|
+
"funding": {
|
|
8
|
+
"type": "opencollective",
|
|
9
|
+
"url": "https://opencollective.com/univer"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://univer.ai",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/dream-num/univer"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/dream-num/univer/issues"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [],
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"import": "./lib/es/index.js",
|
|
23
|
+
"require": "./lib/cjs/index.js",
|
|
24
|
+
"types": "./lib/types/index.d.ts"
|
|
25
|
+
},
|
|
26
|
+
"./*": {
|
|
27
|
+
"import": "./lib/es/*",
|
|
28
|
+
"require": "./lib/cjs/*",
|
|
29
|
+
"types": "./lib/types/index.d.ts"
|
|
30
|
+
},
|
|
31
|
+
"./locale/*": {
|
|
32
|
+
"import": "./lib/es/locale/*.js",
|
|
33
|
+
"require": "./lib/cjs/locale/*.js",
|
|
34
|
+
"types": "./lib/types/locale/*.d.ts"
|
|
35
|
+
},
|
|
36
|
+
"./lib/*": "./lib/*"
|
|
37
|
+
},
|
|
38
|
+
"main": "./lib/es/index.js",
|
|
39
|
+
"types": "./lib/types/index.d.ts",
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
42
|
+
},
|
|
43
|
+
"directories": {
|
|
44
|
+
"lib": "lib"
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"lib"
|
|
48
|
+
],
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
|
|
51
|
+
"rxjs": ">=7.0.0"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@univerjs/icons": "^0.2.5",
|
|
55
|
+
"react-json-view": "^1.21.3",
|
|
56
|
+
"uuid": "^11.0.2",
|
|
57
|
+
"@univerjs-pro/collaboration-client": "0.5.0-nightly.202411161605",
|
|
58
|
+
"@univerjs/design": "0.5.0-nightly.202411161605",
|
|
59
|
+
"@univerjs/core": "0.5.0-nightly.202411161605",
|
|
60
|
+
"@univerjs-pro/collaboration": "0.5.0-nightly.202411161605",
|
|
61
|
+
"@univerjs/engine-render": "0.5.0-nightly.202411161605",
|
|
62
|
+
"@univerjs/network": "0.5.0-nightly.202411161605",
|
|
63
|
+
"@univerjs/engine-formula": "0.5.0-nightly.202411161605",
|
|
64
|
+
"@univerjs/protocol": "0.1.39-alpha.45",
|
|
65
|
+
"@univerjs/sheets-hyper-link": "0.5.0-nightly.202411161605",
|
|
66
|
+
"@univerjs/sheets-hyper-link-ui": "0.5.0-nightly.202411161605",
|
|
67
|
+
"@univerjs/sheets": "0.5.0-nightly.202411161605",
|
|
68
|
+
"@univerjs/sheets-ui": "0.5.0-nightly.202411161605",
|
|
69
|
+
"@univerjs/telemetry": "0.5.0-nightly.202411161605",
|
|
70
|
+
"@univerjs/ui": "0.5.0-nightly.202411161605"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"less": "^4.2.0",
|
|
74
|
+
"react": "^18.3.1",
|
|
75
|
+
"rxjs": "^7.8.1",
|
|
76
|
+
"typescript": "5.6.3",
|
|
77
|
+
"vite": "^5.4.10",
|
|
78
|
+
"vitest": "^2.1.4",
|
|
79
|
+
"@univerjs-infra/shared": "0.5.0-beta.1"
|
|
80
|
+
},
|
|
81
|
+
"space": {
|
|
82
|
+
".": {
|
|
83
|
+
"import": "./lib/es/index.js",
|
|
84
|
+
"require": "./lib/cjs/index.js",
|
|
85
|
+
"types": "./lib/types/index.d.ts"
|
|
86
|
+
},
|
|
87
|
+
"./*": {
|
|
88
|
+
"import": "./lib/es/*",
|
|
89
|
+
"require": "./lib/cjs/*",
|
|
90
|
+
"types": "./lib/types/index.d.ts"
|
|
91
|
+
},
|
|
92
|
+
"./locale/*": {
|
|
93
|
+
"import": "./lib/es/locale/*.js",
|
|
94
|
+
"require": "./lib/cjs/locale/*.js",
|
|
95
|
+
"types": "./lib/types/locale/*.d.ts"
|
|
96
|
+
},
|
|
97
|
+
"./lib/*": "./lib/*"
|
|
98
|
+
},
|
|
99
|
+
"scripts": {
|
|
100
|
+
"test": "vitest run",
|
|
101
|
+
"test:watch": "vitest",
|
|
102
|
+
"coverage": "vitest run --coverage",
|
|
103
|
+
"lint:types": "tsc --noEmit",
|
|
104
|
+
"build": "univer-cli build"
|
|
105
|
+
},
|
|
106
|
+
"module": "./lib/es/index.js"
|
|
107
|
+
}
|