executable-stories-formatters 1.5.0 → 1.8.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.
@@ -105,6 +105,12 @@ type DocEntry = {
105
105
  height?: number | string;
106
106
  phase: DocPhase;
107
107
  children?: DocEntry[];
108
+ } | {
109
+ kind: "state";
110
+ label?: string;
111
+ value: unknown;
112
+ phase: DocPhase;
113
+ children?: DocEntry[];
108
114
  } | {
109
115
  kind: "custom";
110
116
  type: string;
@@ -105,6 +105,12 @@ type DocEntry = {
105
105
  height?: number | string;
106
106
  phase: DocPhase;
107
107
  children?: DocEntry[];
108
+ } | {
109
+ kind: "state";
110
+ label?: string;
111
+ value: unknown;
112
+ phase: DocPhase;
113
+ children?: DocEntry[];
108
114
  } | {
109
115
  kind: "custom";
110
116
  type: string;