@deepseek-ai/dsh-client-ui-sidebar-right 0.1.5-alpha.1
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/LICENSE +21 -0
- package/README.i18n.yaml +6 -0
- package/README.md +133 -0
- package/README.zh.md +133 -0
- package/lib/client.js +3614 -0
- package/lib/index.js +6 -0
- package/lib/types/client/contract/params.d.ts +47 -0
- package/lib/types/client/contract/seed.d.ts +35 -0
- package/lib/types/client/contract/slots.d.ts +152 -0
- package/lib/types/client/index.d.ts +56 -0
- package/lib/types/client/labels.d.ts +19 -0
- package/lib/types/client/locales.d.ts +48 -0
- package/lib/types/client/service.d.ts +300 -0
- package/lib/types/client/shell/ExpandButton.d.ts +24 -0
- package/lib/types/client/shell/SidebarRight.d.ts +99 -0
- package/lib/types/client/stores.d.ts +100 -0
- package/lib/types/client/tab-domain.d.ts +95 -0
- package/lib/types/client/tab-info.d.ts +29 -0
- package/lib/types/client/tab-registry.d.ts +205 -0
- package/lib/types/client/tabs/guide/GuideBody.d.ts +30 -0
- package/lib/types/client/tabs/guide/definition.d.ts +18 -0
- package/lib/types/index.d.ts +4 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deepseek-ai/dsh-client-ui-sidebar-right",
|
|
3
|
+
"description": "Right Sidebar: the docking surface's session-bound state, its panel and header expand control, and the navigation service over it",
|
|
4
|
+
"version": "0.1.5-alpha.1",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
|
|
11
|
+
"directory": "packages/client/ui-sidebar-right"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "lib/index.js",
|
|
15
|
+
"types": "lib/types/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./lib/types/index.d.ts",
|
|
19
|
+
"default": "./lib/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./client": {
|
|
22
|
+
"types": "./lib/types/client/index.d.ts",
|
|
23
|
+
"default": "./lib/client.js"
|
|
24
|
+
},
|
|
25
|
+
"./src/*": "./src/*",
|
|
26
|
+
"./package.json": "./package.json"
|
|
27
|
+
},
|
|
28
|
+
"dsh": {
|
|
29
|
+
"client": {
|
|
30
|
+
"inject": [
|
|
31
|
+
"@deepseek-ai/dsh-api-session-controller",
|
|
32
|
+
"@deepseek-ai/dsh-client-resources",
|
|
33
|
+
"@deepseek-ai/dsh-client-ui-conversation",
|
|
34
|
+
"@deepseek-ai/dsh-client-ui-layout",
|
|
35
|
+
"@deepseek-ai/dsh-client-ui-session"
|
|
36
|
+
],
|
|
37
|
+
"platform": "web"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"clsx": "^2.0.0",
|
|
43
|
+
"picomatch": "^4.0.4",
|
|
44
|
+
"react": "^18.2.0",
|
|
45
|
+
"react-dom": "^18.2.0"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"@deepseek-ai/cordis": "^4.0.2"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@testing-library/react": "^16.1.0",
|
|
52
|
+
"@types/picomatch": "^4.0.2",
|
|
53
|
+
"@types/react": "~18.3.1",
|
|
54
|
+
"@types/react-dom": "~18.3.0",
|
|
55
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
56
|
+
"@deepseek-ai/dsh-client-resources": "^0.1.5-alpha.1",
|
|
57
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.5-alpha.1",
|
|
58
|
+
"@deepseek-ai/dsh-client-store": "^0.1.5-alpha.1",
|
|
59
|
+
"@deepseek-ai/dsh-client-test-runtime": "^0.1.5-alpha.1",
|
|
60
|
+
"@deepseek-ai/dsh-api-session-controller": "^0.1.5-alpha.1",
|
|
61
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.5-alpha.1",
|
|
62
|
+
"@deepseek-ai/dsh-client-ui-dockkit": "^0.1.5-alpha.1",
|
|
63
|
+
"@deepseek-ai/dsh-client-ui-layout": "^0.1.5-alpha.1",
|
|
64
|
+
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.5-alpha.1",
|
|
65
|
+
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.5-alpha.1",
|
|
66
|
+
"@deepseek-ai/dsh-client-ui-session": "^0.1.5-alpha.1",
|
|
67
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.5-alpha.1",
|
|
68
|
+
"@deepseek-ai/dsh-session": "^0.1.5-alpha.1"
|
|
69
|
+
},
|
|
70
|
+
"files": [
|
|
71
|
+
"lib/index.js",
|
|
72
|
+
"lib/client.js",
|
|
73
|
+
"lib/types/**/*.d.ts"
|
|
74
|
+
],
|
|
75
|
+
"scripts": {
|
|
76
|
+
"bundle": "tsdown",
|
|
77
|
+
"watch": "tsdown --watch"
|
|
78
|
+
}
|
|
79
|
+
}
|