@squeed/flow-sdk 2.0.25 → 2.0.26
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 +10 -10
- 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 +4775 -4737
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -444,6 +444,11 @@ export declare interface FlowDiagramConfig {
|
|
|
444
444
|
minZoom?: number;
|
|
445
445
|
nodeGridSpacing?: "collision" | "layout";
|
|
446
446
|
nodeGridConnections?: boolean;
|
|
447
|
+
nodeGrid?: {
|
|
448
|
+
enabled: boolean;
|
|
449
|
+
options: NodeGridOptions;
|
|
450
|
+
order?: string[];
|
|
451
|
+
};
|
|
447
452
|
bottomBarCollision?: boolean;
|
|
448
453
|
bottomBarFill?: boolean;
|
|
449
454
|
/** Max zoom level (default: 1.5) */
|
package/dist/index.d.ts
CHANGED
|
@@ -444,6 +444,11 @@ export declare interface FlowDiagramConfig {
|
|
|
444
444
|
minZoom?: number;
|
|
445
445
|
nodeGridSpacing?: "collision" | "layout";
|
|
446
446
|
nodeGridConnections?: boolean;
|
|
447
|
+
nodeGrid?: {
|
|
448
|
+
enabled: boolean;
|
|
449
|
+
options: NodeGridOptions;
|
|
450
|
+
order?: string[];
|
|
451
|
+
};
|
|
447
452
|
bottomBarCollision?: boolean;
|
|
448
453
|
bottomBarFill?: boolean;
|
|
449
454
|
/** Max zoom level (default: 1.5) */
|