@squeed/flow-sdk 2.0.5 → 2.0.7
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.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +7023 -6888
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -371,6 +371,11 @@ export declare interface FlowDiagramConfig {
|
|
|
371
371
|
bottomBarExtra?: React.ReactNode;
|
|
372
372
|
/** Animate fit/center/focus actions for 300ms by default. Per-action flags override this; reduced motion stays instant. */
|
|
373
373
|
animateViewport?: boolean;
|
|
374
|
+
edgeReveal?: {
|
|
375
|
+
durationMs?: number;
|
|
376
|
+
paused?: boolean;
|
|
377
|
+
revealNodes?: boolean;
|
|
378
|
+
};
|
|
374
379
|
formSchema?: FormSchema;
|
|
375
380
|
spacing?: NodeSpacing;
|
|
376
381
|
edgeRadius?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -371,6 +371,11 @@ export declare interface FlowDiagramConfig {
|
|
|
371
371
|
bottomBarExtra?: React.ReactNode;
|
|
372
372
|
/** Animate fit/center/focus actions for 300ms by default. Per-action flags override this; reduced motion stays instant. */
|
|
373
373
|
animateViewport?: boolean;
|
|
374
|
+
edgeReveal?: {
|
|
375
|
+
durationMs?: number;
|
|
376
|
+
paused?: boolean;
|
|
377
|
+
revealNodes?: boolean;
|
|
378
|
+
};
|
|
374
379
|
formSchema?: FormSchema;
|
|
375
380
|
spacing?: NodeSpacing;
|
|
376
381
|
edgeRadius?: number;
|