@dimina-kit/devtools 0.4.0-dev.20260717120050 → 0.4.0-dev.20260718085557

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.
@@ -480,10 +480,11 @@ export async function createDevtoolsRuntime(config = {}) {
480
480
  // Native-host inspector: injects the render-guest IIFE and drives WXML /
481
481
  // element-highlight against the active render-host <webview>. Reused by
482
482
  // the storage panel (element inspect) and the WXML panel service.
483
- const renderInspector = createRenderInspector({ connections: context.connections });
483
+ const renderInspector = createRenderInspector({ connections: context.connections, broker: context.cdpSessionBroker });
484
484
  const storage = setupSimulatorStorage(mainWindow.webContents, {
485
485
  senderPolicy: context.senderPolicy,
486
486
  connections: context.connections,
487
+ broker: context.cdpSessionBroker,
487
488
  // Per-project filter for the simulator-storage panel: the simulator
488
489
  // uses a fixed `persist:simulator` partition + a fixed simulator.html
489
490
  // origin, so localStorage is shared across every project that has
@@ -524,6 +525,7 @@ export async function createDevtoolsRuntime(config = {}) {
524
525
  const networkForward = createNetworkForwarder({
525
526
  getServiceWc: (appId) => context.bridge?.getServiceWc(appId) ?? null,
526
527
  connections: context.connections,
528
+ broker: context.cdpSessionBroker,
527
529
  });
528
530
  context.networkForward = networkForward;
529
531
  context.registry.add(networkForward);