executable-stories-formatters 1.15.0 → 1.16.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/dist/index.d.cts CHANGED
@@ -308,6 +308,10 @@ interface FormatterOptions {
308
308
  mermaidEnabled?: boolean;
309
309
  /** Days before the report shows a stale warning. 0 disables. Default: 7 */
310
310
  staleAfterDays?: number;
311
+ /** Show the Share button in the interactive report header. Default: false. */
312
+ share?: boolean;
313
+ /** Command the share dialog shows. Default: `npx executable-stories share <output-dir>`. */
314
+ shareCommand?: string;
311
315
  };
312
316
  /**
313
317
  * Run history store (see loadHistory/updateHistory). When set, the HTML
@@ -479,6 +483,8 @@ interface ResolvedFormatterOptions {
479
483
  syntaxHighlighting: boolean;
480
484
  mermaidEnabled: boolean;
481
485
  staleAfterDays: number;
486
+ share: boolean;
487
+ shareCommand: string | undefined;
482
488
  };
483
489
  historyStore: HistoryStore | undefined;
484
490
  junit: {
package/dist/index.d.ts CHANGED
@@ -308,6 +308,10 @@ interface FormatterOptions {
308
308
  mermaidEnabled?: boolean;
309
309
  /** Days before the report shows a stale warning. 0 disables. Default: 7 */
310
310
  staleAfterDays?: number;
311
+ /** Show the Share button in the interactive report header. Default: false. */
312
+ share?: boolean;
313
+ /** Command the share dialog shows. Default: `npx executable-stories share <output-dir>`. */
314
+ shareCommand?: string;
311
315
  };
312
316
  /**
313
317
  * Run history store (see loadHistory/updateHistory). When set, the HTML
@@ -479,6 +483,8 @@ interface ResolvedFormatterOptions {
479
483
  syntaxHighlighting: boolean;
480
484
  mermaidEnabled: boolean;
481
485
  staleAfterDays: number;
486
+ share: boolean;
487
+ shareCommand: string | undefined;
482
488
  };
483
489
  historyStore: HistoryStore | undefined;
484
490
  junit: {