@rkmodules/rules 0.0.103 → 0.0.104
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.js +13 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +13 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/lib/Flow/index.d.ts +1 -4
- package/package.json +1 -1
package/dist/lib/Flow/index.d.ts
CHANGED
|
@@ -6,12 +6,9 @@ import { WidgetProps } from "./Components/Control";
|
|
|
6
6
|
import { Prompts, Updater } from "./types";
|
|
7
7
|
import "./style/xyflow.css";
|
|
8
8
|
export * from "./types";
|
|
9
|
-
/**
|
|
10
|
-
* goal: this component should only be responsible for updating the inner node graph, it should call the onChange handler
|
|
11
|
-
* on any change, but not rerender when the given function changes, as it slows down the interface drastically
|
|
12
|
-
*/
|
|
13
9
|
interface FlowProps {
|
|
14
10
|
function: GraphedFunction;
|
|
11
|
+
positions?: Record<string, XYPosition>;
|
|
15
12
|
engine: Engine;
|
|
16
13
|
center?: boolean;
|
|
17
14
|
fitView?: boolean;
|