@monotykamary/dsh-client-ui-settings-plugins 0.1.0-rc.5
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 +40 -0
- package/README.zh.md +40 -0
- package/lib/client.js +1241 -0
- package/lib/index.js +13 -0
- package/lib/invariant.js +24 -0
- package/lib/types/client/AgentLoopCard.d.ts +12 -0
- package/lib/types/client/BashCard.d.ts +12 -0
- package/lib/types/client/ConfigurablePluginsTab.d.ts +12 -0
- package/lib/types/client/PluginCard.d.ts +42 -0
- package/lib/types/client/PluginsSettingsSection.d.ts +27 -0
- package/lib/types/client/WebSearchCard.d.ts +16 -0
- package/lib/types/client/agent-loop-card-controller.d.ts +42 -0
- package/lib/types/client/bash-card-controller.d.ts +44 -0
- package/lib/types/client/card-form.d.ts +171 -0
- package/lib/types/client/fields.d.ts +61 -0
- package/lib/types/client/index.d.ts +28 -0
- package/lib/types/client/locales.d.ts +8 -0
- package/lib/types/client/slot-contract.d.ts +28 -0
- package/lib/types/client/web-search-card-controller.d.ts +91 -0
- package/lib/types/index.d.ts +11 -0
- package/lib/types/invariant.d.ts +16 -0
- package/package.json +86 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Plugins settings surface, node half. The empty apply exists so the plugin
|
|
3
|
+
* appears in the host cordis.yml / Loader; the browser half owns the section
|
|
4
|
+
* and its configurable tab through exports["./client"], discovered from the
|
|
5
|
+
* package.json dsh.client declaration. Every section this page edits is owned
|
|
6
|
+
* by the Host plugin that registered it, so this package registers no
|
|
7
|
+
* namespace of its own.
|
|
8
|
+
*/
|
|
9
|
+
/** Host plugin body — no host-side behavior for this surface plugin. */
|
|
10
|
+
export declare function apply(): void;
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Package-owned invariant companion for `@monotykamary/dsh-client-ui-settings-plugins`.
|
|
3
|
+
* @module @monotykamary/dsh-client-ui-settings-plugins/invariant
|
|
4
|
+
*/
|
|
5
|
+
import type { Context } from '@monotykamary/cordis';
|
|
6
|
+
/** Cordis companion plugin name. */
|
|
7
|
+
export declare const name = "client-ui-settings-plugins-invariant";
|
|
8
|
+
/** Service required before the companion can reserve package ownership. */
|
|
9
|
+
export declare const inject: string[];
|
|
10
|
+
/**
|
|
11
|
+
* Register this package's invariant companion.
|
|
12
|
+
* @param ctx - Cordis context carrying the invariant service.
|
|
13
|
+
* @returns the installed registration's disposer after setup succeeds.
|
|
14
|
+
*/
|
|
15
|
+
export declare const apply: (ctx: Context) => Promise<() => void>;
|
|
16
|
+
//# sourceMappingURL=invariant.d.ts.map
|
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@monotykamary/dsh-client-ui-settings-plugins",
|
|
3
|
+
"description": "Plugins settings section with feature-owned tabs and configurable host-plane plugin cards",
|
|
4
|
+
"version": "0.1.0-rc.5",
|
|
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-settings-plugins"
|
|
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
|
+
"./invariant": {
|
|
22
|
+
"types": "./lib/types/invariant.d.ts",
|
|
23
|
+
"default": "./lib/invariant.js"
|
|
24
|
+
},
|
|
25
|
+
"./client": {
|
|
26
|
+
"types": "./lib/types/client/index.d.ts",
|
|
27
|
+
"default": "./lib/client.js"
|
|
28
|
+
},
|
|
29
|
+
"./src/*": "./src/*",
|
|
30
|
+
"./package.json": "./package.json"
|
|
31
|
+
},
|
|
32
|
+
"dsh": {
|
|
33
|
+
"client": {
|
|
34
|
+
"inject": [
|
|
35
|
+
"@monotykamary/dsh-client-connection",
|
|
36
|
+
"@monotykamary/dsh-client-locale",
|
|
37
|
+
"@monotykamary/dsh-client-runtime",
|
|
38
|
+
"@monotykamary/dsh-client-ui-settings",
|
|
39
|
+
"@monotykamary/dsh-api-remotes"
|
|
40
|
+
],
|
|
41
|
+
"platform": "web"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"react": "^18.2.0",
|
|
47
|
+
"@monotykamary/cordis": "^4.0.1",
|
|
48
|
+
"@monotykamary/dsh-api-remotes": "^0.1.0-rc.5",
|
|
49
|
+
"@monotykamary/dsh-client-connection": "^0.1.0-rc.5",
|
|
50
|
+
"@monotykamary/dsh-client-locale": "^0.1.0-rc.5",
|
|
51
|
+
"@monotykamary/dsh-client-ui-primitives": "^0.1.0-rc.5",
|
|
52
|
+
"@monotykamary/dsh-client-ui-slots": "^0.1.0-rc.5",
|
|
53
|
+
"@monotykamary/dsh-client-web-react": "^0.1.0-rc.5",
|
|
54
|
+
"@monotykamary/dsh-invariants": "^0.1.0-rc.5",
|
|
55
|
+
"@monotykamary/dsh-client-ui-settings": "^0.1.0-rc.5",
|
|
56
|
+
"@monotykamary/dsh-client-runtime": "^0.1.0-rc.5"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/react": "~18.3.1",
|
|
60
|
+
"react": "^18.2.0",
|
|
61
|
+
"@monotykamary/cordis": "^4.0.1",
|
|
62
|
+
"@monotykamary/dsh-api-remotes": "^0.1.0-rc.5",
|
|
63
|
+
"@monotykamary/dsh-client-runtime": "^0.1.0-rc.5",
|
|
64
|
+
"@monotykamary/dsh-client-ui-slots": "^0.1.0-rc.5",
|
|
65
|
+
"@monotykamary/dsh-client-connection": "^0.1.0-rc.5",
|
|
66
|
+
"@monotykamary/dsh-client-test-runtime": "^0.1.0-rc.5",
|
|
67
|
+
"@monotykamary/dsh-client-ui-primitives": "^0.1.0-rc.5",
|
|
68
|
+
"@monotykamary/dsh-invariants": "^0.1.0-rc.5",
|
|
69
|
+
"@monotykamary/dsh-client-ui-settings": "^0.1.0-rc.5",
|
|
70
|
+
"@monotykamary/dsh-client-locale": "^0.1.0-rc.5",
|
|
71
|
+
"@monotykamary/dsh-client-web-react": "^0.1.0-rc.5"
|
|
72
|
+
},
|
|
73
|
+
"files": [
|
|
74
|
+
"lib/index.js",
|
|
75
|
+
"lib/invariant.js",
|
|
76
|
+
"lib/client.js",
|
|
77
|
+
"lib/types/**/*.d.ts"
|
|
78
|
+
],
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"clsx": "^2.0.0"
|
|
81
|
+
},
|
|
82
|
+
"scripts": {
|
|
83
|
+
"bundle": "tsdown",
|
|
84
|
+
"watch": "tsdown --watch"
|
|
85
|
+
}
|
|
86
|
+
}
|