@hachej/boring-workspace 0.1.39 → 0.1.41

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.
@@ -222,6 +222,8 @@ declare interface LeftTabParams {
222
222
  searchQuery?: string;
223
223
  bridge?: unknown;
224
224
  chromeless?: boolean;
225
+ /** Optional DOM target for left-tab toolbar actions owned by the pane. */
226
+ chromeActionsElement?: Element | null;
225
227
  revealFileTreeRequest?: {
226
228
  path: string;
227
229
  seq: number;
@@ -253,6 +255,8 @@ declare interface PanelConfig<T = any> {
253
255
  essential?: boolean;
254
256
  chromeless?: boolean;
255
257
  supportsFullPage?: boolean;
258
+ /** Center-panel id opened when this config is used as a left-tab category. */
259
+ defaultPanelId?: string;
256
260
  /** Source: "builtin" | "app" */
257
261
  source?: string;
258
262
  pluginId?: string;
@@ -385,6 +389,7 @@ declare interface SurfaceShellProps {
385
389
  */
386
390
  extraPanels?: string[];
387
391
  defaultLeftTab?: string;
392
+ onReloadAgentPlugins?: () => void | Promise<unknown>;
388
393
  initialPanels?: Array<{
389
394
  id: string;
390
395
  component: string;