@flowgram.ai/form-materials 0.3.0 → 0.3.1

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.
Files changed (33) hide show
  1. package/bin/materials.ts +9 -1
  2. package/dist/esm/index.js +117 -87
  3. package/dist/esm/index.js.map +1 -1
  4. package/dist/index.d.mts +94 -87
  5. package/dist/index.d.ts +94 -87
  6. package/dist/index.js +191 -164
  7. package/dist/index.js.map +1 -1
  8. package/package.json +5 -5
  9. package/src/components/condition-row/constants.ts +4 -0
  10. package/src/components/constant-input/index.tsx +1 -1
  11. package/src/components/constant-input/types.ts +1 -1
  12. package/src/components/display-schema-tag/index.tsx +1 -1
  13. package/src/components/display-schema-tree/index.tsx +1 -1
  14. package/src/components/json-schema-editor/config.json +1 -1
  15. package/src/components/type-selector/index.tsx +1 -1
  16. package/src/components/variable-selector/use-variable-tree.tsx +1 -1
  17. package/src/index.ts +1 -0
  18. package/src/plugins/disable-declaration-plugin/config.json +5 -0
  19. package/src/plugins/disable-declaration-plugin/create-disable-declaration-plugin.ts +31 -0
  20. package/src/plugins/disable-declaration-plugin/index.tsx +6 -0
  21. package/src/plugins/index.ts +7 -0
  22. package/src/{shared → plugins}/json-schema-preset/create-type-preset-plugin.tsx +4 -2
  23. package/src/shared/index.ts +0 -1
  24. /package/src/{shared → plugins}/json-schema-preset/config.json +0 -0
  25. /package/src/{shared → plugins}/json-schema-preset/index.tsx +0 -0
  26. /package/src/{shared → plugins}/json-schema-preset/manager.ts +0 -0
  27. /package/src/{shared → plugins}/json-schema-preset/type-definition/array.tsx +0 -0
  28. /package/src/{shared → plugins}/json-schema-preset/type-definition/boolean.tsx +0 -0
  29. /package/src/{shared → plugins}/json-schema-preset/type-definition/index.tsx +0 -0
  30. /package/src/{shared → plugins}/json-schema-preset/type-definition/integer.tsx +0 -0
  31. /package/src/{shared → plugins}/json-schema-preset/type-definition/number.tsx +0 -0
  32. /package/src/{shared → plugins}/json-schema-preset/type-definition/object.tsx +0 -0
  33. /package/src/{shared → plugins}/json-schema-preset/type-definition/string.tsx +0 -0
package/dist/index.d.mts CHANGED
@@ -6,8 +6,8 @@ import { InferValues } from '@coze-editor/editor/react';
6
6
  import preset from '@coze-editor/editor/preset-code';
7
7
  import { BaseVariableField, EffectOptions, FormPluginCreator } from '@flowgram.ai/editor';
8
8
  import * as _flowgram_ai_node from '@flowgram.ai/node';
9
- import { TreeNodeData } from '@douyinfe/semi-ui/lib/es/tree';
10
9
  import * as _flowgram_ai_core from '@flowgram.ai/core';
10
+ import { TreeNodeData } from '@douyinfe/semi-ui/lib/es/tree';
11
11
 
12
12
  /**
13
13
  * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
@@ -102,90 +102,6 @@ declare function JsonSchemaEditor(props: {
102
102
 
103
103
  declare function BatchVariableSelector(props: VariableSelectorProps): React$1.JSX.Element;
104
104
 
105
- /**
106
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
107
- * SPDX-License-Identifier: MIT
108
- */
109
- interface LegacyFlowRefValueSchema {
110
- type: 'ref';
111
- content: string;
112
- }
113
- interface NewFlowRefValueSchema {
114
- type: 'ref';
115
- content: string[];
116
- }
117
- /**
118
- * In flowgram 0.2.0, for introducing Loop variable functionality,
119
- * the FlowRefValueSchema type definition is updated:
120
- *
121
- * interface LegacyFlowRefValueSchema {
122
- * type: 'ref';
123
- * content: string;
124
- * }
125
- *
126
- * interface NewFlowRefValueSchema {
127
- * type: 'ref';
128
- * content: string[];
129
- * }
130
- *
131
- *
132
- * For making sure backend json will not be changed, we provide format legacy ref utils for updating the formData
133
- *
134
- * How to use:
135
- *
136
- * 1. Call formatLegacyRefOnSubmit on the formData before submitting
137
- * 2. Call formatLegacyRefOnInit on the formData after submitting
138
- *
139
- * Example:
140
- * import { formatLegacyRefOnSubmit, formatLegacyRefOnInit } from '@flowgram.ai/form-materials';
141
- * formMeta: {
142
- * formatOnSubmit: (data) => formatLegacyRefOnSubmit(data),
143
- * formatOnInit: (data) => formatLegacyRefOnInit(data),
144
- * }
145
- */
146
- declare function formatLegacyRefOnSubmit(value: any): any;
147
- /**
148
- * In flowgram 0.2.0, for introducing Loop variable functionality,
149
- * the FlowRefValueSchema type definition is updated:
150
- *
151
- * interface LegacyFlowRefValueSchema {
152
- * type: 'ref';
153
- * content: string;
154
- * }
155
- *
156
- * interface NewFlowRefValueSchema {
157
- * type: 'ref';
158
- * content: string[];
159
- * }
160
- *
161
- *
162
- * For making sure backend json will not be changed, we provide format legacy ref utils for updating the formData
163
- *
164
- * How to use:
165
- *
166
- * 1. Call formatLegacyRefOnSubmit on the formData before submitting
167
- * 2. Call formatLegacyRefOnInit on the formData after submitting
168
- *
169
- * Example:
170
- * import { formatLegacyRefOnSubmit, formatLegacyRefOnInit } from '@flowgram.ai/form-materials';
171
- *
172
- * formMeta: {
173
- * formatOnSubmit: (data) => formatLegacyRefOnSubmit(data),
174
- * formatOnInit: (data) => formatLegacyRefOnInit(data),
175
- * }
176
- */
177
- declare function formatLegacyRefOnInit(value: any): any;
178
- declare function isLegacyFlowRefValueSchema(value: any): value is LegacyFlowRefValueSchema;
179
- declare function isNewFlowRefValueSchema(value: any): value is NewFlowRefValueSchema;
180
- declare function formatLegacyRefToNewRef(value: LegacyFlowRefValueSchema): {
181
- type: string;
182
- content: string[];
183
- };
184
- declare function formatNewRefToLegacyRef(value: NewFlowRefValueSchema): {
185
- type: string;
186
- content: string;
187
- };
188
-
189
105
  /**
190
106
  * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
191
107
  * SPDX-License-Identifier: MIT
@@ -204,7 +120,8 @@ interface JsonSchemaTypeRegistry<Value = any> extends JsonSchemaTypeRegistry$1 {
204
120
  }
205
121
 
206
122
  declare const createTypePresetPlugin: _flowgram_ai_core.PluginCreator<{
207
- types: JsonSchemaTypeRegistry[];
123
+ types?: JsonSchemaTypeRegistry[];
124
+ unregisterTypes?: string[];
208
125
  }>;
209
126
 
210
127
  /**
@@ -217,6 +134,12 @@ declare const JsonSchemaTypePresetProvider: ({ types, children, }: React$1.Props
217
134
  types: JsonSchemaTypeRegistry[];
218
135
  }>) => React$1.JSX.Element;
219
136
 
137
+ /**
138
+ * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
139
+ * SPDX-License-Identifier: MIT
140
+ */
141
+ declare const createDisableDeclarationPlugin: _flowgram_ai_core.PluginCreator<void>;
142
+
220
143
  /**
221
144
  * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
222
145
  * SPDX-License-Identifier: MIT
@@ -556,6 +479,90 @@ declare const provideJsonSchemaOutputs: EffectOptions[];
556
479
 
557
480
  declare const syncVariableTitle: EffectOptions[];
558
481
 
482
+ /**
483
+ * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
484
+ * SPDX-License-Identifier: MIT
485
+ */
486
+ interface LegacyFlowRefValueSchema {
487
+ type: 'ref';
488
+ content: string;
489
+ }
490
+ interface NewFlowRefValueSchema {
491
+ type: 'ref';
492
+ content: string[];
493
+ }
494
+ /**
495
+ * In flowgram 0.2.0, for introducing Loop variable functionality,
496
+ * the FlowRefValueSchema type definition is updated:
497
+ *
498
+ * interface LegacyFlowRefValueSchema {
499
+ * type: 'ref';
500
+ * content: string;
501
+ * }
502
+ *
503
+ * interface NewFlowRefValueSchema {
504
+ * type: 'ref';
505
+ * content: string[];
506
+ * }
507
+ *
508
+ *
509
+ * For making sure backend json will not be changed, we provide format legacy ref utils for updating the formData
510
+ *
511
+ * How to use:
512
+ *
513
+ * 1. Call formatLegacyRefOnSubmit on the formData before submitting
514
+ * 2. Call formatLegacyRefOnInit on the formData after submitting
515
+ *
516
+ * Example:
517
+ * import { formatLegacyRefOnSubmit, formatLegacyRefOnInit } from '@flowgram.ai/form-materials';
518
+ * formMeta: {
519
+ * formatOnSubmit: (data) => formatLegacyRefOnSubmit(data),
520
+ * formatOnInit: (data) => formatLegacyRefOnInit(data),
521
+ * }
522
+ */
523
+ declare function formatLegacyRefOnSubmit(value: any): any;
524
+ /**
525
+ * In flowgram 0.2.0, for introducing Loop variable functionality,
526
+ * the FlowRefValueSchema type definition is updated:
527
+ *
528
+ * interface LegacyFlowRefValueSchema {
529
+ * type: 'ref';
530
+ * content: string;
531
+ * }
532
+ *
533
+ * interface NewFlowRefValueSchema {
534
+ * type: 'ref';
535
+ * content: string[];
536
+ * }
537
+ *
538
+ *
539
+ * For making sure backend json will not be changed, we provide format legacy ref utils for updating the formData
540
+ *
541
+ * How to use:
542
+ *
543
+ * 1. Call formatLegacyRefOnSubmit on the formData before submitting
544
+ * 2. Call formatLegacyRefOnInit on the formData after submitting
545
+ *
546
+ * Example:
547
+ * import { formatLegacyRefOnSubmit, formatLegacyRefOnInit } from '@flowgram.ai/form-materials';
548
+ *
549
+ * formMeta: {
550
+ * formatOnSubmit: (data) => formatLegacyRefOnSubmit(data),
551
+ * formatOnInit: (data) => formatLegacyRefOnInit(data),
552
+ * }
553
+ */
554
+ declare function formatLegacyRefOnInit(value: any): any;
555
+ declare function isLegacyFlowRefValueSchema(value: any): value is LegacyFlowRefValueSchema;
556
+ declare function isNewFlowRefValueSchema(value: any): value is NewFlowRefValueSchema;
557
+ declare function formatLegacyRefToNewRef(value: LegacyFlowRefValueSchema): {
558
+ type: string;
559
+ content: string[];
560
+ };
561
+ declare function formatNewRefToLegacyRef(value: NewFlowRefValueSchema): {
562
+ type: string;
563
+ content: string;
564
+ };
565
+
559
566
  /**
560
567
  * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
561
568
  * SPDX-License-Identifier: MIT
@@ -580,4 +587,4 @@ interface InputConfig {
580
587
  }
581
588
  declare const createInferInputsPlugin: _flowgram_ai_node.FormPluginCreator<InputConfig>;
582
589
 
583
- export { BatchOutputs, BatchVariableSelector, CodeEditor, CodeEditorMini, type CodeEditorPropsType, ConditionRow, type ConditionRowValueType, ConstantInput, type ConstantRendererProps, DisplayFlowValue, DisplayInputsValues, DisplayOutputs, DisplaySchemaTag, DisplaySchemaTree, DynamicValueInput, type IFlowConstantRefValue, type IFlowConstantValue, type IFlowExpressionValue, type IFlowRefValue, type IFlowTemplateValue, type IFlowValue, type IFlowValueExtra, InputsValues, JsonEditorWithVariables, JsonSchemaEditor, JsonSchemaTypePresetProvider, type JsonSchemaTypeRegistry, PromptEditor, type PromptEditorPropsType, PromptEditorWithInputs, PromptEditorWithVariables, TypeSelector, VariableSelector, type VariableSelectorProps, autoRenameRefEffect, createBatchOutputsFormPlugin, createInferInputsPlugin, createTypePresetPlugin, formatLegacyRefOnInit, formatLegacyRefOnSubmit, formatLegacyRefToNewRef, formatNewRefToLegacyRef, getTypeSelectValue, isLegacyFlowRefValueSchema, isNewFlowRefValueSchema, parseTypeSelectValue, provideBatchInputEffect, provideBatchOutputsEffect, provideJsonSchemaOutputs, syncVariableTitle, useTypeManager, useVariableTree };
590
+ export { BatchOutputs, BatchVariableSelector, CodeEditor, CodeEditorMini, type CodeEditorPropsType, ConditionRow, type ConditionRowValueType, ConstantInput, type ConstantRendererProps, DisplayFlowValue, DisplayInputsValues, DisplayOutputs, DisplaySchemaTag, DisplaySchemaTree, DynamicValueInput, type IFlowConstantRefValue, type IFlowConstantValue, type IFlowExpressionValue, type IFlowRefValue, type IFlowTemplateValue, type IFlowValue, type IFlowValueExtra, InputsValues, JsonEditorWithVariables, JsonSchemaEditor, JsonSchemaTypePresetProvider, type JsonSchemaTypeRegistry, PromptEditor, type PromptEditorPropsType, PromptEditorWithInputs, PromptEditorWithVariables, TypeSelector, VariableSelector, type VariableSelectorProps, autoRenameRefEffect, createBatchOutputsFormPlugin, createDisableDeclarationPlugin, createInferInputsPlugin, createTypePresetPlugin, formatLegacyRefOnInit, formatLegacyRefOnSubmit, formatLegacyRefToNewRef, formatNewRefToLegacyRef, getTypeSelectValue, isLegacyFlowRefValueSchema, isNewFlowRefValueSchema, parseTypeSelectValue, provideBatchInputEffect, provideBatchOutputsEffect, provideJsonSchemaOutputs, syncVariableTitle, useTypeManager, useVariableTree };
package/dist/index.d.ts CHANGED
@@ -6,8 +6,8 @@ import { InferValues } from '@coze-editor/editor/react';
6
6
  import preset from '@coze-editor/editor/preset-code';
7
7
  import { BaseVariableField, EffectOptions, FormPluginCreator } from '@flowgram.ai/editor';
8
8
  import * as _flowgram_ai_node from '@flowgram.ai/node';
9
- import { TreeNodeData } from '@douyinfe/semi-ui/lib/es/tree';
10
9
  import * as _flowgram_ai_core from '@flowgram.ai/core';
10
+ import { TreeNodeData } from '@douyinfe/semi-ui/lib/es/tree';
11
11
 
12
12
  /**
13
13
  * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
@@ -102,90 +102,6 @@ declare function JsonSchemaEditor(props: {
102
102
 
103
103
  declare function BatchVariableSelector(props: VariableSelectorProps): React$1.JSX.Element;
104
104
 
105
- /**
106
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
107
- * SPDX-License-Identifier: MIT
108
- */
109
- interface LegacyFlowRefValueSchema {
110
- type: 'ref';
111
- content: string;
112
- }
113
- interface NewFlowRefValueSchema {
114
- type: 'ref';
115
- content: string[];
116
- }
117
- /**
118
- * In flowgram 0.2.0, for introducing Loop variable functionality,
119
- * the FlowRefValueSchema type definition is updated:
120
- *
121
- * interface LegacyFlowRefValueSchema {
122
- * type: 'ref';
123
- * content: string;
124
- * }
125
- *
126
- * interface NewFlowRefValueSchema {
127
- * type: 'ref';
128
- * content: string[];
129
- * }
130
- *
131
- *
132
- * For making sure backend json will not be changed, we provide format legacy ref utils for updating the formData
133
- *
134
- * How to use:
135
- *
136
- * 1. Call formatLegacyRefOnSubmit on the formData before submitting
137
- * 2. Call formatLegacyRefOnInit on the formData after submitting
138
- *
139
- * Example:
140
- * import { formatLegacyRefOnSubmit, formatLegacyRefOnInit } from '@flowgram.ai/form-materials';
141
- * formMeta: {
142
- * formatOnSubmit: (data) => formatLegacyRefOnSubmit(data),
143
- * formatOnInit: (data) => formatLegacyRefOnInit(data),
144
- * }
145
- */
146
- declare function formatLegacyRefOnSubmit(value: any): any;
147
- /**
148
- * In flowgram 0.2.0, for introducing Loop variable functionality,
149
- * the FlowRefValueSchema type definition is updated:
150
- *
151
- * interface LegacyFlowRefValueSchema {
152
- * type: 'ref';
153
- * content: string;
154
- * }
155
- *
156
- * interface NewFlowRefValueSchema {
157
- * type: 'ref';
158
- * content: string[];
159
- * }
160
- *
161
- *
162
- * For making sure backend json will not be changed, we provide format legacy ref utils for updating the formData
163
- *
164
- * How to use:
165
- *
166
- * 1. Call formatLegacyRefOnSubmit on the formData before submitting
167
- * 2. Call formatLegacyRefOnInit on the formData after submitting
168
- *
169
- * Example:
170
- * import { formatLegacyRefOnSubmit, formatLegacyRefOnInit } from '@flowgram.ai/form-materials';
171
- *
172
- * formMeta: {
173
- * formatOnSubmit: (data) => formatLegacyRefOnSubmit(data),
174
- * formatOnInit: (data) => formatLegacyRefOnInit(data),
175
- * }
176
- */
177
- declare function formatLegacyRefOnInit(value: any): any;
178
- declare function isLegacyFlowRefValueSchema(value: any): value is LegacyFlowRefValueSchema;
179
- declare function isNewFlowRefValueSchema(value: any): value is NewFlowRefValueSchema;
180
- declare function formatLegacyRefToNewRef(value: LegacyFlowRefValueSchema): {
181
- type: string;
182
- content: string[];
183
- };
184
- declare function formatNewRefToLegacyRef(value: NewFlowRefValueSchema): {
185
- type: string;
186
- content: string;
187
- };
188
-
189
105
  /**
190
106
  * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
191
107
  * SPDX-License-Identifier: MIT
@@ -204,7 +120,8 @@ interface JsonSchemaTypeRegistry<Value = any> extends JsonSchemaTypeRegistry$1 {
204
120
  }
205
121
 
206
122
  declare const createTypePresetPlugin: _flowgram_ai_core.PluginCreator<{
207
- types: JsonSchemaTypeRegistry[];
123
+ types?: JsonSchemaTypeRegistry[];
124
+ unregisterTypes?: string[];
208
125
  }>;
209
126
 
210
127
  /**
@@ -217,6 +134,12 @@ declare const JsonSchemaTypePresetProvider: ({ types, children, }: React$1.Props
217
134
  types: JsonSchemaTypeRegistry[];
218
135
  }>) => React$1.JSX.Element;
219
136
 
137
+ /**
138
+ * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
139
+ * SPDX-License-Identifier: MIT
140
+ */
141
+ declare const createDisableDeclarationPlugin: _flowgram_ai_core.PluginCreator<void>;
142
+
220
143
  /**
221
144
  * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
222
145
  * SPDX-License-Identifier: MIT
@@ -556,6 +479,90 @@ declare const provideJsonSchemaOutputs: EffectOptions[];
556
479
 
557
480
  declare const syncVariableTitle: EffectOptions[];
558
481
 
482
+ /**
483
+ * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
484
+ * SPDX-License-Identifier: MIT
485
+ */
486
+ interface LegacyFlowRefValueSchema {
487
+ type: 'ref';
488
+ content: string;
489
+ }
490
+ interface NewFlowRefValueSchema {
491
+ type: 'ref';
492
+ content: string[];
493
+ }
494
+ /**
495
+ * In flowgram 0.2.0, for introducing Loop variable functionality,
496
+ * the FlowRefValueSchema type definition is updated:
497
+ *
498
+ * interface LegacyFlowRefValueSchema {
499
+ * type: 'ref';
500
+ * content: string;
501
+ * }
502
+ *
503
+ * interface NewFlowRefValueSchema {
504
+ * type: 'ref';
505
+ * content: string[];
506
+ * }
507
+ *
508
+ *
509
+ * For making sure backend json will not be changed, we provide format legacy ref utils for updating the formData
510
+ *
511
+ * How to use:
512
+ *
513
+ * 1. Call formatLegacyRefOnSubmit on the formData before submitting
514
+ * 2. Call formatLegacyRefOnInit on the formData after submitting
515
+ *
516
+ * Example:
517
+ * import { formatLegacyRefOnSubmit, formatLegacyRefOnInit } from '@flowgram.ai/form-materials';
518
+ * formMeta: {
519
+ * formatOnSubmit: (data) => formatLegacyRefOnSubmit(data),
520
+ * formatOnInit: (data) => formatLegacyRefOnInit(data),
521
+ * }
522
+ */
523
+ declare function formatLegacyRefOnSubmit(value: any): any;
524
+ /**
525
+ * In flowgram 0.2.0, for introducing Loop variable functionality,
526
+ * the FlowRefValueSchema type definition is updated:
527
+ *
528
+ * interface LegacyFlowRefValueSchema {
529
+ * type: 'ref';
530
+ * content: string;
531
+ * }
532
+ *
533
+ * interface NewFlowRefValueSchema {
534
+ * type: 'ref';
535
+ * content: string[];
536
+ * }
537
+ *
538
+ *
539
+ * For making sure backend json will not be changed, we provide format legacy ref utils for updating the formData
540
+ *
541
+ * How to use:
542
+ *
543
+ * 1. Call formatLegacyRefOnSubmit on the formData before submitting
544
+ * 2. Call formatLegacyRefOnInit on the formData after submitting
545
+ *
546
+ * Example:
547
+ * import { formatLegacyRefOnSubmit, formatLegacyRefOnInit } from '@flowgram.ai/form-materials';
548
+ *
549
+ * formMeta: {
550
+ * formatOnSubmit: (data) => formatLegacyRefOnSubmit(data),
551
+ * formatOnInit: (data) => formatLegacyRefOnInit(data),
552
+ * }
553
+ */
554
+ declare function formatLegacyRefOnInit(value: any): any;
555
+ declare function isLegacyFlowRefValueSchema(value: any): value is LegacyFlowRefValueSchema;
556
+ declare function isNewFlowRefValueSchema(value: any): value is NewFlowRefValueSchema;
557
+ declare function formatLegacyRefToNewRef(value: LegacyFlowRefValueSchema): {
558
+ type: string;
559
+ content: string[];
560
+ };
561
+ declare function formatNewRefToLegacyRef(value: NewFlowRefValueSchema): {
562
+ type: string;
563
+ content: string;
564
+ };
565
+
559
566
  /**
560
567
  * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
561
568
  * SPDX-License-Identifier: MIT
@@ -580,4 +587,4 @@ interface InputConfig {
580
587
  }
581
588
  declare const createInferInputsPlugin: _flowgram_ai_node.FormPluginCreator<InputConfig>;
582
589
 
583
- export { BatchOutputs, BatchVariableSelector, CodeEditor, CodeEditorMini, type CodeEditorPropsType, ConditionRow, type ConditionRowValueType, ConstantInput, type ConstantRendererProps, DisplayFlowValue, DisplayInputsValues, DisplayOutputs, DisplaySchemaTag, DisplaySchemaTree, DynamicValueInput, type IFlowConstantRefValue, type IFlowConstantValue, type IFlowExpressionValue, type IFlowRefValue, type IFlowTemplateValue, type IFlowValue, type IFlowValueExtra, InputsValues, JsonEditorWithVariables, JsonSchemaEditor, JsonSchemaTypePresetProvider, type JsonSchemaTypeRegistry, PromptEditor, type PromptEditorPropsType, PromptEditorWithInputs, PromptEditorWithVariables, TypeSelector, VariableSelector, type VariableSelectorProps, autoRenameRefEffect, createBatchOutputsFormPlugin, createInferInputsPlugin, createTypePresetPlugin, formatLegacyRefOnInit, formatLegacyRefOnSubmit, formatLegacyRefToNewRef, formatNewRefToLegacyRef, getTypeSelectValue, isLegacyFlowRefValueSchema, isNewFlowRefValueSchema, parseTypeSelectValue, provideBatchInputEffect, provideBatchOutputsEffect, provideJsonSchemaOutputs, syncVariableTitle, useTypeManager, useVariableTree };
590
+ export { BatchOutputs, BatchVariableSelector, CodeEditor, CodeEditorMini, type CodeEditorPropsType, ConditionRow, type ConditionRowValueType, ConstantInput, type ConstantRendererProps, DisplayFlowValue, DisplayInputsValues, DisplayOutputs, DisplaySchemaTag, DisplaySchemaTree, DynamicValueInput, type IFlowConstantRefValue, type IFlowConstantValue, type IFlowExpressionValue, type IFlowRefValue, type IFlowTemplateValue, type IFlowValue, type IFlowValueExtra, InputsValues, JsonEditorWithVariables, JsonSchemaEditor, JsonSchemaTypePresetProvider, type JsonSchemaTypeRegistry, PromptEditor, type PromptEditorPropsType, PromptEditorWithInputs, PromptEditorWithVariables, TypeSelector, VariableSelector, type VariableSelectorProps, autoRenameRefEffect, createBatchOutputsFormPlugin, createDisableDeclarationPlugin, createInferInputsPlugin, createTypePresetPlugin, formatLegacyRefOnInit, formatLegacyRefOnSubmit, formatLegacyRefToNewRef, formatNewRefToLegacyRef, getTypeSelectValue, isLegacyFlowRefValueSchema, isNewFlowRefValueSchema, parseTypeSelectValue, provideBatchInputEffect, provideBatchOutputsEffect, provideJsonSchemaOutputs, syncVariableTitle, useTypeManager, useVariableTree };