@goodandready/dsh-context-lens 0.1.22 → 0.1.23

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/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to `@goodandready/dsh-context-lens` will be documented in th
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## 0.1.23
9
+
10
+ ### Fixed
11
+ - Settings no longer wait on the removed settingsScope service. The client uses configForms (#90).
12
+
8
13
  ## [0.1.22] - 2026-09-19
9
14
 
10
15
  ### Fixed
package/lib/client.js CHANGED
@@ -620,9 +620,9 @@ window.__ModuleLoader__.load({
620
620
  const scopeRef = React.useRef(null);
621
621
  if (!scopeRef.current && _ctx) {
622
622
  try {
623
- const s = _ctx.settingsScope || (_ctx.get && _ctx.get('settingsScope'));
624
- if (s && typeof s.bind === 'function') {
625
- scopeRef.current = s.bind({ namespace: NS });
623
+ const s = _ctx.configForms || (_ctx.get && _ctx.get('configForms'));
624
+ if (s && typeof s.get === 'function') {
625
+ scopeRef.current = s.get(NS);
626
626
  }
627
627
  } catch (e) { scopeRef.current = null; }
628
628
  }
@@ -975,7 +975,7 @@ window.__ModuleLoader__.load({
975
975
  );
976
976
  }
977
977
 
978
- module.exports.inject = ['slots', 'locale', 'settingsScope'];
978
+ module.exports.inject = ['slots', 'locale', 'configForms'];
979
979
  module.exports.apply = function apply(ctx) {
980
980
  let hasEffect = false;
981
981
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodandready/dsh-context-lens",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "DSH plugin for AST context compression, test log filtering, and token budget guard",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -47,7 +47,8 @@
47
47
  "platform": "web",
48
48
  "inject": [
49
49
  "@deepseek-ai/dsh-client-locale",
50
- "@deepseek-ai/dsh-client-ui-settings"
50
+ "@deepseek-ai/dsh-client-ui-settings",
51
+ "@deepseek-ai/dsh-client-ui-slots"
51
52
  ]
52
53
  }
53
54
  },