devlog-ui 0.1.7 → 1.1.0

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/dist/index.d.ts CHANGED
@@ -331,6 +331,12 @@ export declare interface LoggerConfig {
331
331
  minLevel?: LogLevel;
332
332
  /** Enable/disable logging entirely (default: true) */
333
333
  enabled?: boolean;
334
+ /** Ctrl+Shift+L action: toggle overlay or open pop-out (default: 'toggle') */
335
+ shortcutAction?: 'toggle' | 'popout';
336
+ /** Show the floating toggle button in the UI (default: true) */
337
+ showToggleButton?: boolean;
338
+ /** Collapse span groups by default in the UI (default: false) */
339
+ spanCollapsed?: boolean;
334
340
  }
335
341
 
336
342
  /**