@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/dataflow-ui.css +2511 -53
- package/dist/datalogic_wasm-CrfXtaOs-Bn3jizlo.cjs +375 -0
- package/dist/datalogic_wasm-CrfXtaOs-CXAvQXKl.js +374 -0
- package/dist/index.cjs +22125 -9775
- package/dist/index.d.ts +4 -0
- package/dist/index.js +18750 -6400
- package/package.json +3 -3
- package/dist/datalogic_wasm-4utZNR2J-B5BvlAcC.cjs +0 -364
- package/dist/datalogic_wasm-4utZNR2J-DW6r1ZIK.js +0 -363
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
|
}
|