@linkdlab/funcnodes_react_flow 0.4.8 → 0.4.11
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/funcnodes/funcnodesworker.d.ts +3 -3
- package/dist/funcnodes_react_flow.css +1 -1
- package/dist/index.cjs.js +86 -86
- package/dist/index.es.js +3346 -3245
- package/dist/index.umd.js +64 -64
- package/dist/states/fnrfzst.t.d.ts +1 -1
- package/dist/types/versioned/v1/edge.t.d.ts +6 -0
- package/dist/types/versioned/v1/index.d.ts +1 -0
- package/dist/types/versioned/v1/io.t.d.ts +1 -0
- package/dist/types/versioned/v1/node.t.d.ts +1 -0
- package/package.json +1 -1
|
@@ -164,7 +164,7 @@ interface FuncNodesReactFlowZustandInterface {
|
|
|
164
164
|
progress_state: UseBoundStore<StoreApi<ProgressState>>;
|
|
165
165
|
update_render_options: (options: RenderOptions) => void;
|
|
166
166
|
rf_instance?: ReturnType<typeof useReactFlow>;
|
|
167
|
-
on_node_action: (action: latest.NodeAction) =>
|
|
167
|
+
on_node_action: (action: latest.NodeAction) => latest.NodeType | undefined;
|
|
168
168
|
on_edge_action: (edge: EdgeAction) => void;
|
|
169
169
|
set_progress: (progress: ProgressState) => void;
|
|
170
170
|
auto_progress: () => void;
|
|
@@ -18,6 +18,7 @@ export interface IOStore {
|
|
|
18
18
|
valuestore: UseBoundStore<StoreApi<ValueStoreInterface>>;
|
|
19
19
|
node: NodeStore;
|
|
20
20
|
updateValueStore: (newData: Partial<ValueStoreInterface>) => void;
|
|
21
|
+
serialize: () => SerializedIOType;
|
|
21
22
|
}
|
|
22
23
|
export interface BasicIOType {
|
|
23
24
|
connected: boolean;
|