@monotykamary/dsh-client-ui-settings-plugins 0.1.0-rc.9 → 0.1.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/README.i18n.yaml CHANGED
@@ -2,5 +2,5 @@
2
2
  # side as of the last confirmed-consistent state. Both languages carry equal authority;
3
3
  # after editing either side, bring the other along and re-record with:
4
4
  # pnpm run verify-translation-pairing --write packages/client/ui-settings-plugins/README.md
5
- README.md: 92ba426b6bee3ae73e184dfcfd418e889bd47086
6
- README.zh.md: dc319ea9f128016b6df821575cb4d75740f04579
5
+ README.md: 0ee0edbebadad8e8e895002cd9eb60a20f45809d
6
+ README.zh.md: b57fe9522dcc37b67f494199b3bb6ef0cf4a2a54
package/README.md CHANGED
@@ -20,7 +20,7 @@ A card stages what the user types and writes it only when they save. Each contro
20
20
 
21
21
  Saving writes each staged field through the client settings scope, which fences every write with the namespace revision it read, so a form that has drifted from the document is refused rather than overwriting a concurrent change. The Host is the only authority on whether a value was accepted — its validators own the constraints no schema can express — so the card reads the section back afterwards and reports a save that did not land, keeping those drafts for the user to correct.
22
22
 
23
- A key can also be written from another surface — the Models page addresses the same reference — which changes no settings section, so the card re-reads on the forwarded `credentials/updated` event for the reference it watches.
23
+ A key can also be written from another surface — the Models page addresses the same reference — which changes no settings section, so the card re-reads on the forwarded `credentials/reference-updated` event for the reference it watches.
24
24
 
25
25
  A field's presence in the raw user layer — not its value — is what marks it overridden; a reset clears that field so it re-inherits the composition layer. Secret-role fields never ride a response, so a key control starts blank, reports only whether one is configured, and writes through the credentials domain rather than the settings section; a blank draft writes nothing and keeps the stored key.
26
26
 
package/README.zh.md CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  保存时,每个暂存字段都通过客户端 settings scope 写入,该 scope 用读取时的命名空间 revision 为每次写入设栅,因此已与文档脱节的表单会被拒绝,而不是覆盖并发变更。某个值是否被接受只有 Host 说了算——schema 表达不了的约束归它的校验器所有——因此卡片在写入后回读分节,报告没有落盘的保存,并保留这些草稿供用户修改。
22
22
 
23
- 密钥也可能从别的表层写入——模型页寻址的是同一个引用——而那不改变任何 settings 分节,因此卡片会在转发来的 `credentials/updated` 事件报告它所关注的引用时重读。
23
+ 密钥也可能从别的表层写入——模型页寻址的是同一个引用——而那不改变任何 settings 分节,因此卡片会在转发来的 `credentials/reference-updated` 事件报告它所关注的引用时重读。
24
24
 
25
25
  字段是否被覆盖,取决于它是否出现在原始用户层中,而非取决于它的值;重置会清除该字段,使其重新继承组装层。secret 角色的字段绝不搭乘响应,因此密钥控件初始为空、只报告是否已配置,并经由 credentials 领域而非 settings 分节写入;空草稿不写入任何东西,保留已存密钥。
26
26
 
@@ -32,6 +32,8 @@
32
32
 
33
33
  无;该包既不组装也不发送提供方请求。
34
34
 
35
+ <a id="known-limitations-and-deferred-work"></a>
36
+
35
37
  ## 已知限制与暂缓事项
36
38
 
37
39
  - **只有宿主平面的插件会出现**——由 agent preset 挂载的插件把配置内联在该 preset 的 `agent.cordis.yml` 中,且根本无法注册 settings 命名空间(同一 preset 挂载第二个会话时会因重复注册而失败),因此本分区不会列出它。编辑那些值仍是 preset 编辑器的职责。
package/lib/client.js CHANGED
@@ -9,8 +9,8 @@ window.__ModuleLoader__.load({
9
9
  let react = require("react");
10
10
  let _monotykamary_dsh_client_ui_primitives = require("@monotykamary/dsh-client-ui-primitives");
11
11
  let _monotykamary_dsh_client_runtime_client = require("@monotykamary/dsh-client-runtime/client");
12
- //#region \0dsh-css:/Users/monotykamary/VCS/working-remote/open-source/deepseek-harness/packages/client/ui-settings-plugins/src/client/fields.module.css.mjs
13
- const css$2 = ".tp98LG_field{flex-direction:column;gap:6px;padding:12px 0;display:flex}.tp98LG_field+.tp98LG_field{border-top:1px solid var(--dsw-alias-border-l2)}.tp98LG_head{align-items:center;gap:8px;display:flex}.tp98LG_label{min-width:0;color:var(--dsw-alias-label-primary);flex:1;font-size:13px;font-weight:500;line-height:1.5}.tp98LG_badges{align-items:center;gap:8px;display:inline-flex}.tp98LG_badge{white-space:nowrap;background:var(--dsw-alias-bg-module-platform);color:var(--dsw-alias-label-secondary);border-radius:999px;padding:1px 8px;font-size:11px;font-weight:500;line-height:17px}.tp98LG_badgeMuted{white-space:nowrap;color:var(--dsw-alias-label-tertiary);border-radius:999px;padding:1px 8px;font-size:11px;line-height:17px}.tp98LG_reset{font:inherit;color:var(--dsw-alias-label-secondary);cursor:pointer;background:0 0;border:none;padding:0;font-size:12px;line-height:1.5}.tp98LG_reset:hover:not(:disabled){color:var(--dsw-alias-label-primary)}.tp98LG_reset:disabled{cursor:default}.tp98LG_input{border:1px solid var(--dsw-alias-border-l2);background:var(--dsw-alias-bg-layer-3);height:34px;font:inherit;color:var(--dsw-alias-label-primary);border-radius:8px;padding:0 12px;font-size:13px;line-height:1.5}.tp98LG_input:focus-visible{border-color:var(--dsw-alias-brand-primary);outline:none}.tp98LG_input:disabled{color:var(--dsw-alias-label-tertiary);cursor:default}.tp98LG_inputInvalid{border-color:var(--dsw-alias-label-error);}.tp98LG_invalid{color:var(--dsw-alias-label-error);margin:0;font-size:12px;line-height:1.5}.tp98LG_hint{color:var(--dsw-alias-label-tertiary);margin:0;font-size:12px;line-height:1.5}";
12
+ //#region \0dsh-css:/home/runner/work/deepseek-harness/deepseek-harness/packages/client/ui-settings-plugins/src/client/fields.module.css.mjs
13
+ const css$2 = ".At1oFq_field{flex-direction:column;gap:6px;padding:12px 0;display:flex}.At1oFq_field+.At1oFq_field{border-top:1px solid var(--dsw-alias-border-l2)}.At1oFq_head{align-items:center;gap:8px;display:flex}.At1oFq_label{min-width:0;color:var(--dsw-alias-label-primary);flex:1;font-size:13px;font-weight:500;line-height:1.5}.At1oFq_badges{align-items:center;gap:8px;display:inline-flex}.At1oFq_badge{white-space:nowrap;background:var(--dsw-alias-bg-module-platform);color:var(--dsw-alias-label-secondary);border-radius:999px;padding:1px 8px;font-size:11px;font-weight:500;line-height:17px}.At1oFq_badgeMuted{white-space:nowrap;color:var(--dsw-alias-label-tertiary);border-radius:999px;padding:1px 8px;font-size:11px;line-height:17px}.At1oFq_reset{font:inherit;color:var(--dsw-alias-label-secondary);cursor:pointer;background:0 0;border:none;padding:0;font-size:12px;line-height:1.5}.At1oFq_reset:hover:not(:disabled){color:var(--dsw-alias-label-primary)}.At1oFq_reset:disabled{cursor:default}.At1oFq_input{border:1px solid var(--dsw-alias-border-l2);background:var(--dsw-alias-bg-layer-3);height:34px;font:inherit;color:var(--dsw-alias-label-primary);border-radius:8px;padding:0 12px;font-size:13px;line-height:1.5}.At1oFq_input:focus-visible{border-color:var(--dsw-alias-brand-primary);outline:none}.At1oFq_input:disabled{color:var(--dsw-alias-label-tertiary);cursor:default}.At1oFq_inputInvalid{border-color:var(--dsw-alias-label-error);}.At1oFq_invalid{color:var(--dsw-alias-label-error);margin:0;font-size:12px;line-height:1.5}.At1oFq_hint{color:var(--dsw-alias-label-tertiary);margin:0;font-size:12px;line-height:1.5}";
14
14
  const tagId$2 = "@monotykamary/dsh-client-ui-settings-plugins/fields.module.css";
15
15
  if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId$2) + "]") === null) {
16
16
  const tag = document.createElement("style");
@@ -20,17 +20,17 @@ window.__ModuleLoader__.load({
20
20
  document.head.appendChild(tag);
21
21
  }
22
22
  var fields_module_css_default = {
23
- "badge": "tp98LG_badge",
24
- "badgeMuted": "tp98LG_badgeMuted",
25
- "badges": "tp98LG_badges",
26
- "field": "tp98LG_field",
27
- "head": "tp98LG_head",
28
- "hint": "tp98LG_hint",
29
- "input": "tp98LG_input",
30
- "inputInvalid": "tp98LG_inputInvalid",
31
- "invalid": "tp98LG_invalid",
32
- "label": "tp98LG_label",
33
- "reset": "tp98LG_reset"
23
+ "badge": "At1oFq_badge",
24
+ "badgeMuted": "At1oFq_badgeMuted",
25
+ "badges": "At1oFq_badges",
26
+ "field": "At1oFq_field",
27
+ "head": "At1oFq_head",
28
+ "hint": "At1oFq_hint",
29
+ "input": "At1oFq_input",
30
+ "inputInvalid": "At1oFq_inputInvalid",
31
+ "invalid": "At1oFq_invalid",
32
+ "label": "At1oFq_label",
33
+ "reset": "At1oFq_reset"
34
34
  };
35
35
  //#endregion
36
36
  //#region lib/types/client/fields.js
@@ -136,7 +136,7 @@ window.__ModuleLoader__.load({
136
136
  });
137
137
  }
138
138
  //#endregion
139
- //#region ../../../../../../../Library/pnpm/store/v11/links/@/clsx/2.1.1/2b14a624e52246853e8086215d43767b3f05a70db70d9393672d28f32b6c54a6/node_modules/clsx/dist/clsx.mjs
139
+ //#region ../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs
140
140
  function r(e) {
141
141
  var t, f, n = "";
142
142
  if ("string" == typeof e || "number" == typeof e) n += e;
@@ -151,8 +151,8 @@ window.__ModuleLoader__.load({
151
151
  return n;
152
152
  }
153
153
  //#endregion
154
- //#region \0dsh-css:/Users/monotykamary/VCS/working-remote/open-source/deepseek-harness/packages/client/ui-settings-plugins/src/client/PluginCard.module.css.mjs
155
- const css$1 = ".fgHXXa_card{border:1px solid var(--dsw-alias-border-l2);background:var(--dsw-alias-bg-layer-3);border-radius:12px;list-style:none;transition:border-color .16s,background .16s}.fgHXXa_card:hover{border-color:var(--dsw-alias-label-dimmed)}.fgHXXa_cardOpen{background:var(--dsw-alias-bg-layer-2);border-color:var(--dsw-alias-label-dimmed)}.fgHXXa_header{appearance:none;width:100%;font:inherit;color:inherit;text-align:left;cursor:pointer;background:0 0;border:0;border-radius:12px;align-items:center;gap:12px;padding:14px 16px;display:flex}.fgHXXa_header:focus-visible{outline:2px solid var(--dsw-alias-brand-primary);outline-offset:-2px}.fgHXXa_headText{flex-direction:column;flex:1;gap:4px;min-width:0;display:flex}.fgHXXa_name{color:var(--dsw-alias-label-primary);font-size:15px;font-weight:600;line-height:1.4}.fgHXXa_description{color:var(--dsw-alias-label-tertiary);font-size:13px;line-height:1.5}.fgHXXa_chevron{color:var(--dsw-alias-label-tertiary);flex:none;transition:transform .16s}.fgHXXa_chevronOpen{transform:rotate(180deg)}.fgHXXa_body{border-top:1px solid var(--dsw-alias-border-l2);margin:0 16px;padding-bottom:8px}.fgHXXa_readOnly{color:var(--dsw-alias-label-tertiary);margin:12px 0 0;font-size:12px;line-height:1.5}.fgHXXa_pending{white-space:nowrap;background:var(--dsw-alias-bg-module-platform);color:var(--dsw-alias-label-secondary);border-radius:999px;flex:none;padding:1px 8px;font-size:11px;font-weight:500;line-height:17px}.fgHXXa_footer{border-top:1px solid var(--dsw-alias-border-l2);justify-content:flex-end;align-items:center;gap:8px;padding:12px 0 4px;display:flex}.fgHXXa_failed{min-width:0;color:var(--dsw-alias-label-error);flex:1;margin:0;font-size:12px;line-height:1.5}.fgHXXa_discard,.fgHXXa_save{appearance:none;font:inherit;cursor:pointer;border:1px solid #0000;border-radius:8px;padding:5px 14px;font-size:13px;line-height:1.5}.fgHXXa_discard{border-color:var(--dsw-alias-border-l2);color:var(--dsw-alias-label-secondary);background:0 0}.fgHXXa_discard:hover:not(:disabled){color:var(--dsw-alias-label-primary);border-color:var(--dsw-alias-label-dimmed)}.fgHXXa_save{background:var(--dsw-alias-label-primary);color:var(--dsw-alias-bg-layer-3)}.fgHXXa_discard:disabled,.fgHXXa_save:disabled{opacity:.4;cursor:default}.fgHXXa_discard:focus-visible,.fgHXXa_save:focus-visible{outline:2px solid var(--dsw-alias-brand-primary);outline-offset:1px}";
154
+ //#region \0dsh-css:/home/runner/work/deepseek-harness/deepseek-harness/packages/client/ui-settings-plugins/src/client/PluginCard.module.css.mjs
155
+ const css$1 = ".YyYd_a_card{border:1px solid var(--dsw-alias-border-l2);background:var(--dsw-alias-bg-layer-3);border-radius:12px;list-style:none;transition:border-color .16s,background .16s}.YyYd_a_card:hover{border-color:var(--dsw-alias-label-dimmed)}.YyYd_a_cardOpen{background:var(--dsw-alias-bg-layer-2);border-color:var(--dsw-alias-label-dimmed)}.YyYd_a_header{appearance:none;width:100%;font:inherit;color:inherit;text-align:left;cursor:pointer;background:0 0;border:0;border-radius:12px;align-items:center;gap:12px;padding:14px 16px;display:flex}.YyYd_a_header:focus-visible{outline:2px solid var(--dsw-alias-brand-primary);outline-offset:-2px}.YyYd_a_headText{flex-direction:column;flex:1;gap:4px;min-width:0;display:flex}.YyYd_a_name{color:var(--dsw-alias-label-primary);font-size:15px;font-weight:600;line-height:1.4}.YyYd_a_description{color:var(--dsw-alias-label-tertiary);font-size:13px;line-height:1.5}.YyYd_a_chevron{color:var(--dsw-alias-label-tertiary);flex:none;transition:transform .16s}.YyYd_a_chevronOpen{transform:rotate(180deg)}.YyYd_a_body{border-top:1px solid var(--dsw-alias-border-l2);margin:0 16px;padding-bottom:8px}.YyYd_a_readOnly{color:var(--dsw-alias-label-tertiary);margin:12px 0 0;font-size:12px;line-height:1.5}.YyYd_a_pending{white-space:nowrap;background:var(--dsw-alias-bg-module-platform);color:var(--dsw-alias-label-secondary);border-radius:999px;flex:none;padding:1px 8px;font-size:11px;font-weight:500;line-height:17px}.YyYd_a_footer{border-top:1px solid var(--dsw-alias-border-l2);justify-content:flex-end;align-items:center;gap:8px;padding:12px 0 4px;display:flex}.YyYd_a_failed{min-width:0;color:var(--dsw-alias-label-error);flex:1;margin:0;font-size:12px;line-height:1.5}.YyYd_a_discard,.YyYd_a_save{appearance:none;font:inherit;cursor:pointer;border:1px solid #0000;border-radius:8px;padding:5px 14px;font-size:13px;line-height:1.5}.YyYd_a_discard{border-color:var(--dsw-alias-border-l2);color:var(--dsw-alias-label-secondary);background:0 0}.YyYd_a_discard:hover:not(:disabled){color:var(--dsw-alias-label-primary);border-color:var(--dsw-alias-label-dimmed)}.YyYd_a_save{background:var(--dsw-alias-label-primary);color:var(--dsw-alias-bg-layer-3)}.YyYd_a_discard:disabled,.YyYd_a_save:disabled{opacity:.4;cursor:default}.YyYd_a_discard:focus-visible,.YyYd_a_save:focus-visible{outline:2px solid var(--dsw-alias-brand-primary);outline-offset:1px}";
156
156
  const tagId$1 = "@monotykamary/dsh-client-ui-settings-plugins/PluginCard.module.css";
157
157
  if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId$1) + "]") === null) {
158
158
  const tag = document.createElement("style");
@@ -162,21 +162,21 @@ window.__ModuleLoader__.load({
162
162
  document.head.appendChild(tag);
163
163
  }
164
164
  var PluginCard_module_css_default = {
165
- "body": "fgHXXa_body",
166
- "card": "fgHXXa_card",
167
- "cardOpen": "fgHXXa_cardOpen",
168
- "chevron": "fgHXXa_chevron",
169
- "chevronOpen": "fgHXXa_chevronOpen",
170
- "description": "fgHXXa_description",
171
- "discard": "fgHXXa_discard",
172
- "failed": "fgHXXa_failed",
173
- "footer": "fgHXXa_footer",
174
- "headText": "fgHXXa_headText",
175
- "header": "fgHXXa_header",
176
- "name": "fgHXXa_name",
177
- "pending": "fgHXXa_pending",
178
- "readOnly": "fgHXXa_readOnly",
179
- "save": "fgHXXa_save"
165
+ "body": "YyYd_a_body",
166
+ "card": "YyYd_a_card",
167
+ "cardOpen": "YyYd_a_cardOpen",
168
+ "chevron": "YyYd_a_chevron",
169
+ "chevronOpen": "YyYd_a_chevronOpen",
170
+ "description": "YyYd_a_description",
171
+ "discard": "YyYd_a_discard",
172
+ "failed": "YyYd_a_failed",
173
+ "footer": "YyYd_a_footer",
174
+ "headText": "YyYd_a_headText",
175
+ "header": "YyYd_a_header",
176
+ "name": "YyYd_a_name",
177
+ "pending": "YyYd_a_pending",
178
+ "readOnly": "YyYd_a_readOnly",
179
+ "save": "YyYd_a_save"
180
180
  };
181
181
  //#endregion
182
182
  //#region lib/types/client/PluginCard.js
@@ -231,7 +231,10 @@ window.__ModuleLoader__.load({
231
231
  className: PluginCard_module_css_default.pending,
232
232
  children: props.t("unsaved")
233
233
  }) : null,
234
- (0, react_jsx_runtime.jsx)(_monotykamary_dsh_client_ui_primitives.IconChevronDownOutline14, { className: clsx(PluginCard_module_css_default.chevron, open && PluginCard_module_css_default.chevronOpen) })
234
+ (0, react_jsx_runtime.jsx)(_monotykamary_dsh_client_ui_primitives.ChevronDown, {
235
+ size: 14,
236
+ className: clsx(PluginCard_module_css_default.chevron, open && PluginCard_module_css_default.chevronOpen)
237
+ })
235
238
  ]
236
239
  }), open ? (0, react_jsx_runtime.jsxs)("div", {
237
240
  className: PluginCard_module_css_default.body,
@@ -360,8 +363,8 @@ window.__ModuleLoader__.load({
360
363
  });
361
364
  }
362
365
  //#endregion
363
- //#region \0dsh-css:/Users/monotykamary/VCS/working-remote/open-source/deepseek-harness/packages/client/ui-settings-plugins/src/client/PluginsSettingsSection.module.css.mjs
364
- const css = ".NYK7ya_section{max-width:760px;color:var(--dsw-alias-label-primary);flex-direction:column;gap:12px;display:flex}.NYK7ya_heading{margin:0;font-size:18px;font-weight:600}.NYK7ya_intro{color:var(--dsw-alias-label-tertiary);margin:0;font-size:13px}.NYK7ya_tabs{border-bottom:1px solid var(--dsw-alias-border-l2);align-items:flex-end;gap:22px;margin-top:2px;display:flex}.NYK7ya_tab{color:var(--dsw-alias-label-tertiary);font:inherit;cursor:pointer;background:0 0;border:0;padding:7px 1px 9px;font-size:13px;line-height:20px;position:relative}.NYK7ya_tab:hover,.NYK7ya_tab[data-active=true]{color:var(--dsw-alias-label-primary)}.NYK7ya_tab[data-active=true]:after,.NYK7ya_tab:focus-visible:after{background:var(--dsw-alias-label-primary);content:\"\";border-radius:2px 2px 0 0;height:2px;position:absolute;bottom:-1px;left:0;right:0}.NYK7ya_tab:focus-visible{outline:2px solid var(--dsw-alias-state-business-primary);outline-offset:2px;color:var(--dsw-alias-label-primary);border-radius:2px}.NYK7ya_panel{min-width:0;padding-top:2px}.NYK7ya_cards{flex-direction:column;gap:10px;margin:0;padding:0;list-style:none;display:flex}.NYK7ya_empty{color:var(--dsw-alias-label-tertiary);margin:0;font-size:13px}";
366
+ //#region \0dsh-css:/home/runner/work/deepseek-harness/deepseek-harness/packages/client/ui-settings-plugins/src/client/PluginsSettingsSection.module.css.mjs
367
+ const css = ".pbvGtq_section{max-width:760px;color:var(--dsw-alias-label-primary);flex-direction:column;gap:12px;display:flex}.pbvGtq_heading{margin:0;font-size:18px;font-weight:600}.pbvGtq_intro{color:var(--dsw-alias-label-tertiary);margin:0;font-size:13px}.pbvGtq_tabs{border-bottom:1px solid var(--dsw-alias-border-l2);align-items:flex-end;gap:22px;margin-top:2px;display:flex}.pbvGtq_tab{color:var(--dsw-alias-label-tertiary);font:inherit;cursor:pointer;background:0 0;border:0;padding:7px 1px 9px;font-size:13px;line-height:20px;position:relative}.pbvGtq_tab:hover,.pbvGtq_tab[data-active=true]{color:var(--dsw-alias-label-primary)}.pbvGtq_tab[data-active=true]:after,.pbvGtq_tab:focus-visible:after{background:var(--dsw-alias-label-primary);content:\"\";border-radius:2px 2px 0 0;height:2px;position:absolute;bottom:-1px;left:0;right:0}.pbvGtq_tab:focus-visible{outline:2px solid var(--dsw-alias-state-business-primary);outline-offset:2px;color:var(--dsw-alias-label-primary);border-radius:2px}.pbvGtq_panel{min-width:0;padding-top:2px}.pbvGtq_cards{flex-direction:column;gap:10px;margin:0;padding:0;list-style:none;display:flex}.pbvGtq_empty{color:var(--dsw-alias-label-tertiary);margin:0;font-size:13px}";
365
368
  const tagId = "@monotykamary/dsh-client-ui-settings-plugins/PluginsSettingsSection.module.css";
366
369
  if (typeof document !== "undefined" && document.querySelector("style[data-plugin-css=" + JSON.stringify(tagId) + "]") === null) {
367
370
  const tag = document.createElement("style");
@@ -371,14 +374,14 @@ window.__ModuleLoader__.load({
371
374
  document.head.appendChild(tag);
372
375
  }
373
376
  var PluginsSettingsSection_module_css_default = {
374
- "cards": "NYK7ya_cards",
375
- "empty": "NYK7ya_empty",
376
- "heading": "NYK7ya_heading",
377
- "intro": "NYK7ya_intro",
378
- "panel": "NYK7ya_panel",
379
- "section": "NYK7ya_section",
380
- "tab": "NYK7ya_tab",
381
- "tabs": "NYK7ya_tabs"
377
+ "cards": "pbvGtq_cards",
378
+ "empty": "pbvGtq_empty",
379
+ "heading": "pbvGtq_heading",
380
+ "intro": "pbvGtq_intro",
381
+ "panel": "pbvGtq_panel",
382
+ "section": "pbvGtq_section",
383
+ "tab": "pbvGtq_tab",
384
+ "tabs": "pbvGtq_tabs"
382
385
  };
383
386
  //#endregion
384
387
  //#region lib/types/client/ConfigurablePluginsTab.js
@@ -1235,7 +1238,7 @@ window.__ModuleLoader__.load({
1235
1238
  const bash = new BashCardController(ctx.settingsScope.bind({ namespace: SHELL_NS }));
1236
1239
  const agentLoop = new AgentLoopCardController(ctx.settingsScope.bind({ namespace: AGENT_LOOP_NS }));
1237
1240
  const webSearch = new WebSearchCardController(ctx.settingsScope.bind({ namespace: WEB_SEARCH_NS }), api);
1238
- ctx.effect(() => ctx.remote.$on("credentials/updated", (ref) => {
1241
+ ctx.effect(() => ctx.remote.$on("credentials/reference-updated", (ref) => {
1239
1242
  webSearch.refreshCredential(ref);
1240
1243
  }), "ui-settings-plugins: credential invalidations");
1241
1244
  const configurable = new ConfigurablePluginsTabController(ctx.settingsScope.describe(), () => ctx.slots.entries("settings.plugin.item"));
@@ -1256,7 +1259,6 @@ window.__ModuleLoader__.load({
1256
1259
  tabsVersion = version;
1257
1260
  tabsRevision = revision;
1258
1261
  tabs = ctx.slots.entries("settings.plugins.tab").map((entry) => ({
1259
- /* v8 ignore next -- list-slot registration requires id */
1260
1262
  id: entry.options.id ?? "",
1261
1263
  order: entry.options.order ?? 0,
1262
1264
  label: (0, _monotykamary_dsh_client_ui_slots.resolveSlotLabel)(entry.options.label) ?? ""
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@monotykamary/dsh-client-ui-settings-plugins",
3
3
  "description": "Plugins settings section with feature-owned tabs and configurable host-plane plugin cards",
4
- "version": "0.1.0-rc.9",
4
+ "version": "0.1.1",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -43,32 +43,27 @@
43
43
  },
44
44
  "license": "MIT",
45
45
  "peerDependencies": {
46
- "react": "^18.2.0",
47
46
  "@monotykamary/cordis": "^4.0.1",
48
- "@monotykamary/dsh-client-connection": "^0.1.0-rc.9",
49
- "@monotykamary/dsh-api-remotes": "^0.1.0-rc.9",
50
- "@monotykamary/dsh-client-locale": "^0.1.0-rc.9",
51
- "@monotykamary/dsh-client-runtime": "^0.1.0-rc.9",
52
- "@monotykamary/dsh-client-ui-settings": "^0.1.0-rc.9",
53
- "@monotykamary/dsh-invariants": "^0.1.0-rc.9",
54
- "@monotykamary/dsh-client-ui-slots": "^0.1.0-rc.9",
55
- "@monotykamary/dsh-client-web-react": "^0.1.0-rc.9",
56
- "@monotykamary/dsh-client-ui-primitives": "^0.1.0-rc.9"
47
+ "@monotykamary/dsh-api-remotes": "^0.1.1",
48
+ "@monotykamary/dsh-client-locale": "^0.1.1",
49
+ "@monotykamary/dsh-client-runtime": "^0.1.1",
50
+ "@monotykamary/dsh-client-connection": "^0.1.1",
51
+ "@monotykamary/dsh-client-ui-settings": "^0.1.1",
52
+ "@monotykamary/dsh-invariants": "^0.1.1"
57
53
  },
58
54
  "devDependencies": {
59
55
  "@types/react": "~18.3.1",
60
56
  "react": "^18.2.0",
57
+ "@monotykamary/dsh-client-connection": "^0.1.1",
61
58
  "@monotykamary/cordis": "^4.0.1",
62
- "@monotykamary/dsh-api-remotes": "^0.1.0-rc.9",
63
- "@monotykamary/dsh-client-locale": "^0.1.0-rc.9",
64
- "@monotykamary/dsh-client-runtime": "^0.1.0-rc.9",
65
- "@monotykamary/dsh-client-ui-primitives": "^0.1.0-rc.9",
66
- "@monotykamary/dsh-client-test-runtime": "^0.1.0-rc.9",
67
- "@monotykamary/dsh-client-ui-settings": "^0.1.0-rc.9",
68
- "@monotykamary/dsh-client-ui-slots": "^0.1.0-rc.9",
69
- "@monotykamary/dsh-client-connection": "^0.1.0-rc.9",
70
- "@monotykamary/dsh-invariants": "^0.1.0-rc.9",
71
- "@monotykamary/dsh-client-web-react": "^0.1.0-rc.9"
59
+ "@monotykamary/dsh-client-runtime": "^0.1.1",
60
+ "@monotykamary/dsh-client-locale": "^0.1.1",
61
+ "@monotykamary/dsh-client-test-runtime": "^0.1.1",
62
+ "@monotykamary/dsh-api-remotes": "^0.1.1",
63
+ "@monotykamary/dsh-client-ui-primitives": "^0.1.1",
64
+ "@monotykamary/dsh-client-ui-slots": "^0.1.1",
65
+ "@monotykamary/dsh-client-ui-settings": "^0.1.1",
66
+ "@monotykamary/dsh-invariants": "^0.1.1"
72
67
  },
73
68
  "files": [
74
69
  "lib/index.js",