@particle-academy/fancy-flow 0.63.0 → 0.65.0
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/README.md +15 -0
- package/dist/chunk-77V4QC6Y.js +54 -0
- package/dist/chunk-77V4QC6Y.js.map +1 -0
- package/dist/{chunk-MEIDPBKE.js → chunk-W5DPKJY4.js} +4 -2
- package/dist/chunk-W5DPKJY4.js.map +1 -0
- package/dist/engine.cjs +51 -0
- package/dist/engine.cjs.map +1 -1
- package/dist/engine.d.cts +64 -3
- package/dist/engine.d.ts +64 -3
- package/dist/engine.js +1 -0
- package/dist/engine.js.map +1 -1
- package/dist/index.cjs +58 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -4
- package/dist/index.d.ts +16 -4
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +50 -0
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.js +2 -1
- package/package.json +1 -1
- package/dist/chunk-MEIDPBKE.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -5,14 +5,14 @@ import { ConnectionValidatorOptions } from './registry/index.cjs';
|
|
|
5
5
|
export { ANY_PORT_TYPE, BUILTIN_KINDS, PortCompatibility, RegistryNode, RichInputAdapter, RichInputPreview, buildNodeTypes, createConnectionValidator, defaultPortCompatibility, getRichInputAdapter, isRichInputEnabled, onRichInputAdapterChanged, registerBuiltinKinds, registerRichInputAdapter, resolveNodePorts, resolvePortSpec } from './registry/index.cjs';
|
|
6
6
|
import { a as FlowNode, F as FlowGraph, g as NodeRunStatus, E as ExecutorRegistry } from './types-JFYjPJAG.cjs';
|
|
7
7
|
export { A as ActionNodeData, B as BaseNodeData, D as DecisionNodeData, d as FlowEdge, e as FlowNodeData, f as FlowNodeKind, N as NodeExecutor, h as NoteNodeData, O as OutputNodeData, P as PortDescriptor, R as RunEvent, S as SubgraphNodeData, T as TriggerNodeData } from './types-JFYjPJAG.cjs';
|
|
8
|
+
import { N as NodeKindDefinition, C as ConfigField, a as NodeCategory } from './types-D71SKA5A.cjs';
|
|
9
|
+
export { A as AvailableVariable, D as DocumentConfigField, E as EmitsRelation, t as ExpressionForm, u as ExpressionGrammarHelp, K as KeyValueConfigField, O as OutputField, h as OutputShape, P as PortSpec, R as RenderBodyContext, n as RepeaterConfigField, o as RepeaterRowField, w as availableVariables, x as baseVariables, y as describeExpressionGrammar, z as outputFieldsFor } from './types-D71SKA5A.cjs';
|
|
8
10
|
import { C as ConfigFieldRenderFn, H as HumanFieldRenderers } from './HumanPrompt-Bpp3JiVH.cjs';
|
|
9
11
|
export { a as ConfigFieldRenderContext, b as ConfigFieldRenderer, c as ConfigFieldRendererProps } from './HumanPrompt-Bpp3JiVH.cjs';
|
|
10
12
|
import { WorkflowSchema, WorkflowMetadata } from './schema/index.cjs';
|
|
11
13
|
export { ImportIssue, ImportOptions, ImportResult, WORKFLOW_SCHEMA_URL, WORKFLOW_SCHEMA_VERSION, WorkflowSchemaEdge, WorkflowSchemaNode, exportWorkflow, importWorkflow, migrateSchema, workflowToBlob } from './schema/index.cjs';
|
|
12
14
|
import { AutoLayoutOptions } from './layout/index.cjs';
|
|
13
15
|
export { AutoLayoutDirection } from './layout/index.cjs';
|
|
14
|
-
import { a as NodeCategory, N as NodeKindDefinition } from './types-D71SKA5A.cjs';
|
|
15
|
-
export { A as AvailableVariable, C as ConfigField, D as DocumentConfigField, E as EmitsRelation, t as ExpressionForm, u as ExpressionGrammarHelp, K as KeyValueConfigField, O as OutputField, h as OutputShape, P as PortSpec, R as RenderBodyContext, n as RepeaterConfigField, o as RepeaterRowField, w as availableVariables, x as baseVariables, y as describeExpressionGrammar, z as outputFieldsFor } from './types-D71SKA5A.cjs';
|
|
16
16
|
export { F as FlowNodeStatus, a as FlowViewer, b as FlowViewerClassNames, c as FlowViewerProps } from './FlowViewer-DABx-6A-.cjs';
|
|
17
17
|
import { FlowRunFeedEntry } from './runtime/index.cjs';
|
|
18
18
|
export { HistoryController, UseFlowHistoryReturn, UseFlowRunOptions, UseFlowRunReturn, UseFlowStateReturn, applyOutputsToNodes, applyStatusesToNodes, createHistory, useFlowHistory, useFlowRun, useFlowState } from './runtime/index.cjs';
|
|
@@ -101,6 +101,16 @@ type NodeConfigPanelProps = {
|
|
|
101
101
|
*/
|
|
102
102
|
/** Host renderers keyed by field `type`. See {@link ConfigFieldRenderer}. */
|
|
103
103
|
fieldRenderers?: Record<string, ConfigFieldRenderFn>;
|
|
104
|
+
/**
|
|
105
|
+
* Presentation-only visibility policy for schema fields. Returning `false`
|
|
106
|
+
* omits the complete field wrapper (label, description, and control) while
|
|
107
|
+
* leaving the registered kind and its runtime schema untouched.
|
|
108
|
+
*/
|
|
109
|
+
fieldFilter?: (context: {
|
|
110
|
+
node: FlowNode;
|
|
111
|
+
kind: NodeKindDefinition;
|
|
112
|
+
field: ConfigField;
|
|
113
|
+
}) => boolean;
|
|
104
114
|
/**
|
|
105
115
|
* The graph the node lives in. Supplying it is what makes the `{{ }}` variable
|
|
106
116
|
* picker context-aware — it reads the UPSTREAM node's declared `outputShape`
|
|
@@ -120,7 +130,7 @@ type NodeConfigPanelProps = {
|
|
|
120
130
|
* NodeConfigPanel — schema-driven form for the selected node. Defers to
|
|
121
131
|
* `kind.renderPanel` if the kind opts out of the auto-form.
|
|
122
132
|
*/
|
|
123
|
-
declare function NodeConfigPanel({ node, onChange, onDelete, deleteLabel, header, renderCredentialField, renderDocumentField, fieldRenderers, graph, className, style, }: NodeConfigPanelProps): react.JSX.Element;
|
|
133
|
+
declare function NodeConfigPanel({ node, onChange, onDelete, deleteLabel, header, renderCredentialField, renderDocumentField, fieldRenderers, fieldFilter, graph, className, style, }: NodeConfigPanelProps): react.JSX.Element;
|
|
124
134
|
|
|
125
135
|
/**
|
|
126
136
|
* Clone a set of nodes AND the edges internal to that set, remapping every id.
|
|
@@ -353,6 +363,8 @@ type FlowEditorProps = {
|
|
|
353
363
|
* editor and composing one by hand.
|
|
354
364
|
*/
|
|
355
365
|
fieldRenderers?: ComponentProps<typeof NodeConfigPanel>["fieldRenderers"];
|
|
366
|
+
/** Presentation-only config-field filter, forwarded to `NodeConfigPanel`. */
|
|
367
|
+
fieldFilter?: ComponentProps<typeof NodeConfigPanel>["fieldFilter"];
|
|
356
368
|
/** Show run feed below the canvas. Default true. */
|
|
357
369
|
showFeed?: boolean;
|
|
358
370
|
/** Total editor height. Default 720. */
|
|
@@ -675,4 +687,4 @@ type ExpressionFieldProps = {
|
|
|
675
687
|
*/
|
|
676
688
|
declare function ExpressionField({ value, onChange, placeholder, rows, handle, graph, nodeId, }: ExpressionFieldProps): react.JSX.Element;
|
|
677
689
|
|
|
678
|
-
export { ActionNode, type AlignEdge, AutoLayoutOptions, ConfigFieldRenderFn, ConnectionValidatorOptions, DecisionNode, ExecutorRegistry, ExpressionField, type ExpressionFieldProps, FlowCanvas, type FlowCanvasProps, FlowEditor, type FlowEditorAction, type FlowEditorApi, type FlowEditorBuiltins, type FlowEditorProps, type FlowEditorSlots, FlowGraph, FlowNode, type FlowNodeRenderProps, FlowRunControls, type FlowRunControlsProps, FlowRunFeed, FlowRunFeedEntry, type FlowRunFeedProps, LaneNode, NodeCategory, NodeConfigPanel, type NodeConfigPanelProps, NodeKindDefinition, NodePalette, type NodePaletteProps, NodePort, type NodePortProps, type NodePortSide, type NodePortType, NodeRunStatus, NodeShell, type NodeShellProps, NoteNode, OutputNode, SubgraphNode, TriggerNode, WorkflowMetadata, WorkflowSchema, alignNodes, cloneSubgraph, defaultNodeTypes, defineNode, distributeNodes, flowKeys, flowLive, paletteDropHandlers, reconnectEdge, useFlowEditor, useFlowEditorOptional };
|
|
690
|
+
export { ActionNode, type AlignEdge, AutoLayoutOptions, ConfigField, ConfigFieldRenderFn, ConnectionValidatorOptions, DecisionNode, ExecutorRegistry, ExpressionField, type ExpressionFieldProps, FlowCanvas, type FlowCanvasProps, FlowEditor, type FlowEditorAction, type FlowEditorApi, type FlowEditorBuiltins, type FlowEditorProps, type FlowEditorSlots, FlowGraph, FlowNode, type FlowNodeRenderProps, FlowRunControls, type FlowRunControlsProps, FlowRunFeed, FlowRunFeedEntry, type FlowRunFeedProps, LaneNode, NodeCategory, NodeConfigPanel, type NodeConfigPanelProps, NodeKindDefinition, NodePalette, type NodePaletteProps, NodePort, type NodePortProps, type NodePortSide, type NodePortType, NodeRunStatus, NodeShell, type NodeShellProps, NoteNode, OutputNode, SubgraphNode, TriggerNode, WorkflowMetadata, WorkflowSchema, alignNodes, cloneSubgraph, defaultNodeTypes, defineNode, distributeNodes, flowKeys, flowLive, paletteDropHandlers, reconnectEdge, useFlowEditor, useFlowEditorOptional };
|
package/dist/index.d.ts
CHANGED
|
@@ -5,14 +5,14 @@ import { ConnectionValidatorOptions } from './registry/index.js';
|
|
|
5
5
|
export { ANY_PORT_TYPE, BUILTIN_KINDS, PortCompatibility, RegistryNode, RichInputAdapter, RichInputPreview, buildNodeTypes, createConnectionValidator, defaultPortCompatibility, getRichInputAdapter, isRichInputEnabled, onRichInputAdapterChanged, registerBuiltinKinds, registerRichInputAdapter, resolveNodePorts, resolvePortSpec } from './registry/index.js';
|
|
6
6
|
import { a as FlowNode, F as FlowGraph, g as NodeRunStatus, E as ExecutorRegistry } from './types-JFYjPJAG.js';
|
|
7
7
|
export { A as ActionNodeData, B as BaseNodeData, D as DecisionNodeData, d as FlowEdge, e as FlowNodeData, f as FlowNodeKind, N as NodeExecutor, h as NoteNodeData, O as OutputNodeData, P as PortDescriptor, R as RunEvent, S as SubgraphNodeData, T as TriggerNodeData } from './types-JFYjPJAG.js';
|
|
8
|
+
import { N as NodeKindDefinition, C as ConfigField, a as NodeCategory } from './types-Ckhz-YwC.js';
|
|
9
|
+
export { A as AvailableVariable, D as DocumentConfigField, E as EmitsRelation, t as ExpressionForm, u as ExpressionGrammarHelp, K as KeyValueConfigField, O as OutputField, h as OutputShape, P as PortSpec, R as RenderBodyContext, n as RepeaterConfigField, o as RepeaterRowField, w as availableVariables, x as baseVariables, y as describeExpressionGrammar, z as outputFieldsFor } from './types-Ckhz-YwC.js';
|
|
8
10
|
import { C as ConfigFieldRenderFn, H as HumanFieldRenderers } from './HumanPrompt-BKThiyjB.js';
|
|
9
11
|
export { a as ConfigFieldRenderContext, b as ConfigFieldRenderer, c as ConfigFieldRendererProps } from './HumanPrompt-BKThiyjB.js';
|
|
10
12
|
import { WorkflowSchema, WorkflowMetadata } from './schema/index.js';
|
|
11
13
|
export { ImportIssue, ImportOptions, ImportResult, WORKFLOW_SCHEMA_URL, WORKFLOW_SCHEMA_VERSION, WorkflowSchemaEdge, WorkflowSchemaNode, exportWorkflow, importWorkflow, migrateSchema, workflowToBlob } from './schema/index.js';
|
|
12
14
|
import { AutoLayoutOptions } from './layout/index.js';
|
|
13
15
|
export { AutoLayoutDirection } from './layout/index.js';
|
|
14
|
-
import { a as NodeCategory, N as NodeKindDefinition } from './types-Ckhz-YwC.js';
|
|
15
|
-
export { A as AvailableVariable, C as ConfigField, D as DocumentConfigField, E as EmitsRelation, t as ExpressionForm, u as ExpressionGrammarHelp, K as KeyValueConfigField, O as OutputField, h as OutputShape, P as PortSpec, R as RenderBodyContext, n as RepeaterConfigField, o as RepeaterRowField, w as availableVariables, x as baseVariables, y as describeExpressionGrammar, z as outputFieldsFor } from './types-Ckhz-YwC.js';
|
|
16
16
|
export { F as FlowNodeStatus, a as FlowViewer, b as FlowViewerClassNames, c as FlowViewerProps } from './FlowViewer-BI_AyyvU.js';
|
|
17
17
|
import { FlowRunFeedEntry } from './runtime/index.js';
|
|
18
18
|
export { HistoryController, UseFlowHistoryReturn, UseFlowRunOptions, UseFlowRunReturn, UseFlowStateReturn, applyOutputsToNodes, applyStatusesToNodes, createHistory, useFlowHistory, useFlowRun, useFlowState } from './runtime/index.js';
|
|
@@ -101,6 +101,16 @@ type NodeConfigPanelProps = {
|
|
|
101
101
|
*/
|
|
102
102
|
/** Host renderers keyed by field `type`. See {@link ConfigFieldRenderer}. */
|
|
103
103
|
fieldRenderers?: Record<string, ConfigFieldRenderFn>;
|
|
104
|
+
/**
|
|
105
|
+
* Presentation-only visibility policy for schema fields. Returning `false`
|
|
106
|
+
* omits the complete field wrapper (label, description, and control) while
|
|
107
|
+
* leaving the registered kind and its runtime schema untouched.
|
|
108
|
+
*/
|
|
109
|
+
fieldFilter?: (context: {
|
|
110
|
+
node: FlowNode;
|
|
111
|
+
kind: NodeKindDefinition;
|
|
112
|
+
field: ConfigField;
|
|
113
|
+
}) => boolean;
|
|
104
114
|
/**
|
|
105
115
|
* The graph the node lives in. Supplying it is what makes the `{{ }}` variable
|
|
106
116
|
* picker context-aware — it reads the UPSTREAM node's declared `outputShape`
|
|
@@ -120,7 +130,7 @@ type NodeConfigPanelProps = {
|
|
|
120
130
|
* NodeConfigPanel — schema-driven form for the selected node. Defers to
|
|
121
131
|
* `kind.renderPanel` if the kind opts out of the auto-form.
|
|
122
132
|
*/
|
|
123
|
-
declare function NodeConfigPanel({ node, onChange, onDelete, deleteLabel, header, renderCredentialField, renderDocumentField, fieldRenderers, graph, className, style, }: NodeConfigPanelProps): react.JSX.Element;
|
|
133
|
+
declare function NodeConfigPanel({ node, onChange, onDelete, deleteLabel, header, renderCredentialField, renderDocumentField, fieldRenderers, fieldFilter, graph, className, style, }: NodeConfigPanelProps): react.JSX.Element;
|
|
124
134
|
|
|
125
135
|
/**
|
|
126
136
|
* Clone a set of nodes AND the edges internal to that set, remapping every id.
|
|
@@ -353,6 +363,8 @@ type FlowEditorProps = {
|
|
|
353
363
|
* editor and composing one by hand.
|
|
354
364
|
*/
|
|
355
365
|
fieldRenderers?: ComponentProps<typeof NodeConfigPanel>["fieldRenderers"];
|
|
366
|
+
/** Presentation-only config-field filter, forwarded to `NodeConfigPanel`. */
|
|
367
|
+
fieldFilter?: ComponentProps<typeof NodeConfigPanel>["fieldFilter"];
|
|
356
368
|
/** Show run feed below the canvas. Default true. */
|
|
357
369
|
showFeed?: boolean;
|
|
358
370
|
/** Total editor height. Default 720. */
|
|
@@ -675,4 +687,4 @@ type ExpressionFieldProps = {
|
|
|
675
687
|
*/
|
|
676
688
|
declare function ExpressionField({ value, onChange, placeholder, rows, handle, graph, nodeId, }: ExpressionFieldProps): react.JSX.Element;
|
|
677
689
|
|
|
678
|
-
export { ActionNode, type AlignEdge, AutoLayoutOptions, ConfigFieldRenderFn, ConnectionValidatorOptions, DecisionNode, ExecutorRegistry, ExpressionField, type ExpressionFieldProps, FlowCanvas, type FlowCanvasProps, FlowEditor, type FlowEditorAction, type FlowEditorApi, type FlowEditorBuiltins, type FlowEditorProps, type FlowEditorSlots, FlowGraph, FlowNode, type FlowNodeRenderProps, FlowRunControls, type FlowRunControlsProps, FlowRunFeed, FlowRunFeedEntry, type FlowRunFeedProps, LaneNode, NodeCategory, NodeConfigPanel, type NodeConfigPanelProps, NodeKindDefinition, NodePalette, type NodePaletteProps, NodePort, type NodePortProps, type NodePortSide, type NodePortType, NodeRunStatus, NodeShell, type NodeShellProps, NoteNode, OutputNode, SubgraphNode, TriggerNode, WorkflowMetadata, WorkflowSchema, alignNodes, cloneSubgraph, defaultNodeTypes, defineNode, distributeNodes, flowKeys, flowLive, paletteDropHandlers, reconnectEdge, useFlowEditor, useFlowEditorOptional };
|
|
690
|
+
export { ActionNode, type AlignEdge, AutoLayoutOptions, ConfigField, ConfigFieldRenderFn, ConnectionValidatorOptions, DecisionNode, ExecutorRegistry, ExpressionField, type ExpressionFieldProps, FlowCanvas, type FlowCanvasProps, FlowEditor, type FlowEditorAction, type FlowEditorApi, type FlowEditorBuiltins, type FlowEditorProps, type FlowEditorSlots, FlowGraph, FlowNode, type FlowNodeRenderProps, FlowRunControls, type FlowRunControlsProps, FlowRunFeed, FlowRunFeedEntry, type FlowRunFeedProps, LaneNode, NodeCategory, NodeConfigPanel, type NodeConfigPanelProps, NodeKindDefinition, NodePalette, type NodePaletteProps, NodePort, type NodePortProps, type NodePortSide, type NodePortType, NodeRunStatus, NodeShell, type NodeShellProps, NoteNode, OutputNode, SubgraphNode, TriggerNode, WorkflowMetadata, WorkflowSchema, alignNodes, cloneSubgraph, defaultNodeTypes, defineNode, distributeNodes, flowKeys, flowLive, paletteDropHandlers, reconnectEdge, useFlowEditor, useFlowEditorOptional };
|
package/dist/index.js
CHANGED
|
@@ -7,8 +7,9 @@ export { UnresolvedPathError, evaluateConfig, evaluateExpression, resolvePath, t
|
|
|
7
7
|
import { buildNodeTypes } from './chunk-5H54OTKT.js';
|
|
8
8
|
export { ANY_PORT_TYPE, RegistryNode, buildNodeTypes, createConnectionValidator, defaultPortCompatibility } from './chunk-5H54OTKT.js';
|
|
9
9
|
export { LEGACY_PAUSE_PREFIXES, PAUSE_PREFIX, decodePause, encodePause, isPause, pauseForHuman } from './chunk-UEOE6B52.js';
|
|
10
|
-
import { workflowToBlob, importWorkflow, exportWorkflow } from './chunk-
|
|
11
|
-
export { WORKFLOW_SCHEMA_URL, WORKFLOW_SCHEMA_VERSION, exportWorkflow, importWorkflow, migrateSchema, workflowToBlob } from './chunk-
|
|
10
|
+
import { workflowToBlob, importWorkflow, exportWorkflow } from './chunk-W5DPKJY4.js';
|
|
11
|
+
export { WORKFLOW_SCHEMA_URL, WORKFLOW_SCHEMA_VERSION, exportWorkflow, importWorkflow, migrateSchema, workflowToBlob } from './chunk-W5DPKJY4.js';
|
|
12
|
+
import './chunk-77V4QC6Y.js';
|
|
12
13
|
import { ReactFlowProvider, useReactFlow, humanInputFields, onNodeKindsChanged, listNodeKinds, getNodeKind, defaultConfigFor, FlowEditorProvider, addEdge, applyEdgeChanges, applyNodeChanges, Position, ensureBuiltinKinds, validateConfig, categoryAccent, Handle } from './chunk-JF6WCRBU.js';
|
|
13
14
|
export { BUILTIN_KINDS, LaneNode, NoteNode, categoryAccent, clearNodeKindOverrides, defaultConfigFor, ensureBuiltinKinds, getNodeKind, listNodeKinds, onNodeKindsChanged, overrideNodeKind, registerBuiltinKinds, registerNodeKind, resolveNodePorts, resolvePortSpec, runFlow, useFlowEditor, useFlowEditorOptional, validateConfig } from './chunk-JF6WCRBU.js';
|
|
14
15
|
import { getRichInputAdapter } from './chunk-F5RPRB7A.js';
|
|
@@ -776,6 +777,7 @@ function NodeConfigPanel({
|
|
|
776
777
|
renderCredentialField,
|
|
777
778
|
renderDocumentField,
|
|
778
779
|
fieldRenderers,
|
|
780
|
+
fieldFilter,
|
|
779
781
|
graph,
|
|
780
782
|
className,
|
|
781
783
|
style
|
|
@@ -822,6 +824,9 @@ function NodeConfigPanel({
|
|
|
822
824
|
const setStatusMsg = (key, value) => onChange({ ...node, data: { ...node.data, [key]: value } });
|
|
823
825
|
const setConfigValue = (key, value) => onChange({ ...node, data: { ...node.data, config: { ...config, [key]: value } } });
|
|
824
826
|
const issues = validateConfig(kind, config);
|
|
827
|
+
const configFields = (kind.configSchema ?? []).filter(
|
|
828
|
+
(field) => fieldFilter ? fieldFilter({ node, kind, field }) : true
|
|
829
|
+
);
|
|
825
830
|
const adapter = getRichInputAdapter();
|
|
826
831
|
const documentField = renderDocumentField ?? (adapter?.renderEditor ? ({ value, onChange: set }) => adapter.renderEditor({ value, onChange: set }) : void 0);
|
|
827
832
|
return /* @__PURE__ */ jsxs("aside", { className: ["ff-panel", className ?? ""].filter(Boolean).join(" "), style, children: [
|
|
@@ -897,8 +902,8 @@ function NodeConfigPanel({
|
|
|
897
902
|
onChange: (next) => onChange({ ...node, data: { ...node.data, config: next } }),
|
|
898
903
|
nodeId: node.id
|
|
899
904
|
}) : /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
900
|
-
|
|
901
|
-
|
|
905
|
+
configFields.length > 0 && /* @__PURE__ */ jsx("hr", { className: "ff-panel__divider" }),
|
|
906
|
+
configFields.map((field) => /* @__PURE__ */ jsxs("div", { className: "ff-panel__field", children: [
|
|
902
907
|
/* @__PURE__ */ jsxs("label", { className: "ff-panel__label", htmlFor: fieldId(field.key), children: [
|
|
903
908
|
field.label,
|
|
904
909
|
field.required && /* @__PURE__ */ jsx("span", { className: "ff-panel__required", "aria-hidden": true, children: " *" })
|
|
@@ -1169,6 +1174,7 @@ function FlowEditorInner({
|
|
|
1169
1174
|
showPalette = true,
|
|
1170
1175
|
showPanel = true,
|
|
1171
1176
|
fieldRenderers,
|
|
1177
|
+
fieldFilter,
|
|
1172
1178
|
showFeed = true,
|
|
1173
1179
|
extraToolbar,
|
|
1174
1180
|
actions = [],
|
|
@@ -1737,6 +1743,7 @@ function FlowEditorInner({
|
|
|
1737
1743
|
node: api.selected,
|
|
1738
1744
|
onChange: api.updateNode,
|
|
1739
1745
|
fieldRenderers,
|
|
1746
|
+
fieldFilter,
|
|
1740
1747
|
graph: flow,
|
|
1741
1748
|
onDelete: builtins.delete === false ? void 0 : (n) => api.deleteNodes([n.id])
|
|
1742
1749
|
}
|