@goplasmatic/dataflow-ui 2.0.12 → 2.0.14

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
@@ -197,6 +197,10 @@ declare interface DebuggerContextValue {
197
197
  hasTrace: boolean;
198
198
  progress: number;
199
199
  totalSteps: number;
200
+ /** Current position within filtered steps (0-indexed), -1 if at ready state */
201
+ currentFilteredPosition: number;
202
+ /** Array of actual step indices that are shown (for navigation) */
203
+ filteredStepIndices: number[];
200
204
  isEngineReady: boolean;
201
205
  skipFailedConditions: boolean;
202
206
  }