@flowgram.ai/form-materials 0.2.16 → 0.2.17
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/bin/materials.ts +6 -1
- package/bin/project.ts +5 -0
- package/dist/esm/index.js +207 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +149 -6
- package/dist/index.d.ts +149 -6
- package/dist/index.js +202 -9
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/components/batch-outputs/config.json +12 -0
- package/src/components/batch-outputs/index.tsx +61 -0
- package/src/components/batch-outputs/styles.tsx +19 -0
- package/src/components/batch-outputs/types.ts +22 -0
- package/src/components/batch-outputs/use-list.ts +86 -0
- package/src/components/batch-variable-selector/index.tsx +5 -0
- package/src/components/condition-row/constants.ts +5 -0
- package/src/components/condition-row/hooks/useOp.tsx +5 -0
- package/src/components/condition-row/hooks/useRule.ts +5 -0
- package/src/components/condition-row/index.tsx +5 -0
- package/src/components/condition-row/styles.tsx +5 -0
- package/src/components/condition-row/types.ts +5 -0
- package/src/components/constant-input/index.tsx +5 -0
- package/src/components/constant-input/types.ts +5 -0
- package/src/components/dynamic-value-input/index.tsx +6 -0
- package/src/components/dynamic-value-input/styles.tsx +5 -0
- package/src/components/index.ts +6 -0
- package/src/components/json-schema-editor/components/blur-input.tsx +5 -0
- package/src/components/json-schema-editor/default-value.tsx +5 -0
- package/src/components/json-schema-editor/hooks.tsx +5 -0
- package/src/components/json-schema-editor/index.tsx +5 -0
- package/src/components/json-schema-editor/styles.tsx +5 -0
- package/src/components/json-schema-editor/types.ts +5 -0
- package/src/components/json-schema-editor/utils.ts +5 -0
- package/src/components/type-selector/constants.tsx +5 -0
- package/src/components/type-selector/index.tsx +5 -0
- package/src/components/variable-selector/index.tsx +7 -0
- package/src/components/variable-selector/styles.tsx +5 -0
- package/src/components/variable-selector/use-variable-tree.tsx +8 -3
- package/src/effects/auto-rename-ref/index.ts +5 -0
- package/src/effects/index.ts +5 -0
- package/src/effects/provide-batch-input/index.ts +5 -0
- package/src/effects/provide-batch-outputs/index.ts +5 -1
- package/src/effects/provide-json-schema-outputs/index.ts +5 -0
- package/src/effects/sync-variable-title/index.ts +5 -0
- package/src/form-plugins/batch-outputs-plugin/config.json +7 -0
- package/src/form-plugins/batch-outputs-plugin/index.ts +104 -0
- package/src/form-plugins/index.ts +6 -0
- package/src/index.ts +6 -0
- package/src/typings/flow-value/index.ts +5 -0
- package/src/typings/index.ts +5 -0
- package/src/typings/json-schema/index.ts +5 -0
- package/src/utils/format-legacy-refs/index.ts +5 -0
- package/src/utils/index.ts +5 -0
- package/src/utils/json-schema/index.ts +6 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import React$1 from 'react';
|
|
2
2
|
import { TriggerRenderProps } from '@douyinfe/semi-ui/lib/es/treeSelect';
|
|
3
|
-
import { EffectOptions, ASTNodeJSON, ASTNode, BaseType } from '@flowgram.ai/editor';
|
|
3
|
+
import { EffectOptions, ASTNodeJSON, ASTNode, BaseType, FormPluginCreator } from '@flowgram.ai/editor';
|
|
4
|
+
import { TreeNodeData } from '@douyinfe/semi-ui/lib/es/tree';
|
|
4
5
|
|
|
6
|
+
/**
|
|
7
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
8
|
+
* SPDX-License-Identifier: MIT
|
|
9
|
+
*/
|
|
5
10
|
type JsonSchemaBasicType = 'boolean' | 'string' | 'integer' | 'number' | 'object' | 'array' | 'map';
|
|
6
11
|
interface IJsonSchema<T = string> {
|
|
7
12
|
type?: T;
|
|
@@ -23,6 +28,21 @@ interface IJsonSchema<T = string> {
|
|
|
23
28
|
}
|
|
24
29
|
type IBasicJsonSchema = IJsonSchema<JsonSchemaBasicType>;
|
|
25
30
|
|
|
31
|
+
/**
|
|
32
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
33
|
+
* SPDX-License-Identifier: MIT
|
|
34
|
+
*/
|
|
35
|
+
|
|
36
|
+
declare function useVariableTree(params: {
|
|
37
|
+
includeSchema?: IJsonSchema | IJsonSchema[];
|
|
38
|
+
excludeSchema?: IJsonSchema | IJsonSchema[];
|
|
39
|
+
}): TreeNodeData[];
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
43
|
+
* SPDX-License-Identifier: MIT
|
|
44
|
+
*/
|
|
45
|
+
|
|
26
46
|
interface PropTypes$2 {
|
|
27
47
|
value?: string[];
|
|
28
48
|
config?: {
|
|
@@ -38,8 +58,13 @@ interface PropTypes$2 {
|
|
|
38
58
|
triggerRender?: (props: TriggerRenderProps) => React$1.ReactNode;
|
|
39
59
|
}
|
|
40
60
|
type VariableSelectorProps = PropTypes$2;
|
|
61
|
+
|
|
41
62
|
declare const VariableSelector: ({ value, config, onChange, style, readonly, includeSchema, excludeSchema, hasError, triggerRender, }: PropTypes$2) => React$1.JSX.Element;
|
|
42
63
|
|
|
64
|
+
/**
|
|
65
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
66
|
+
* SPDX-License-Identifier: MIT
|
|
67
|
+
*/
|
|
43
68
|
interface IFlowConstantValue {
|
|
44
69
|
type: 'constant';
|
|
45
70
|
content?: string | number | boolean;
|
|
@@ -59,6 +84,11 @@ interface IFlowTemplateValue {
|
|
|
59
84
|
type IFlowValue = IFlowConstantValue | IFlowRefValue | IFlowExpressionValue | IFlowTemplateValue;
|
|
60
85
|
type IFlowConstantRefValue = IFlowConstantValue | IFlowRefValue;
|
|
61
86
|
|
|
87
|
+
/**
|
|
88
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
89
|
+
* SPDX-License-Identifier: MIT
|
|
90
|
+
*/
|
|
91
|
+
|
|
62
92
|
declare const VariableTypeIcons: {
|
|
63
93
|
[key: string]: React$1.ReactNode;
|
|
64
94
|
};
|
|
@@ -67,6 +97,11 @@ declare const ArrayIcons: {
|
|
|
67
97
|
};
|
|
68
98
|
declare const getSchemaIcon: (value?: Partial<IJsonSchema>) => React$1.ReactNode;
|
|
69
99
|
|
|
100
|
+
/**
|
|
101
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
102
|
+
* SPDX-License-Identifier: MIT
|
|
103
|
+
*/
|
|
104
|
+
|
|
70
105
|
interface PropTypes$1 {
|
|
71
106
|
value?: Partial<IJsonSchema>;
|
|
72
107
|
onChange: (value?: Partial<IJsonSchema>) => void;
|
|
@@ -77,6 +112,11 @@ declare const getTypeSelectValue: (value?: Partial<IJsonSchema>) => string[] | u
|
|
|
77
112
|
declare const parseTypeSelectValue: (value?: string[]) => Partial<IJsonSchema> | undefined;
|
|
78
113
|
declare function TypeSelector(props: PropTypes$1): React$1.JSX.Element;
|
|
79
114
|
|
|
115
|
+
/**
|
|
116
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
117
|
+
* SPDX-License-Identifier: MIT
|
|
118
|
+
*/
|
|
119
|
+
|
|
80
120
|
interface ConfigType {
|
|
81
121
|
placeholder?: string;
|
|
82
122
|
descTitle?: string;
|
|
@@ -87,6 +127,11 @@ interface ConfigType {
|
|
|
87
127
|
jsonFormatText?: string;
|
|
88
128
|
}
|
|
89
129
|
|
|
130
|
+
/**
|
|
131
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
132
|
+
* SPDX-License-Identifier: MIT
|
|
133
|
+
*/
|
|
134
|
+
|
|
90
135
|
declare function JsonSchemaEditor(props: {
|
|
91
136
|
value?: IJsonSchema;
|
|
92
137
|
onChange?: (value: IJsonSchema) => void;
|
|
@@ -94,8 +139,18 @@ declare function JsonSchemaEditor(props: {
|
|
|
94
139
|
className?: string;
|
|
95
140
|
}): React$1.JSX.Element;
|
|
96
141
|
|
|
142
|
+
/**
|
|
143
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
144
|
+
* SPDX-License-Identifier: MIT
|
|
145
|
+
*/
|
|
146
|
+
|
|
97
147
|
declare function BatchVariableSelector(props: VariableSelectorProps): React$1.JSX.Element;
|
|
98
148
|
|
|
149
|
+
/**
|
|
150
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
151
|
+
* SPDX-License-Identifier: MIT
|
|
152
|
+
*/
|
|
153
|
+
|
|
99
154
|
interface Strategy<Value = any> {
|
|
100
155
|
hit: (schema: IJsonSchema) => boolean;
|
|
101
156
|
Renderer: React.FC<RendererProps<Value>>;
|
|
@@ -105,15 +160,25 @@ interface RendererProps<Value = any> {
|
|
|
105
160
|
onChange?: (value: Value) => void;
|
|
106
161
|
readonly?: boolean;
|
|
107
162
|
}
|
|
108
|
-
interface PropsType$
|
|
163
|
+
interface PropsType$2 extends RendererProps {
|
|
109
164
|
schema: IJsonSchema;
|
|
110
165
|
strategies?: Strategy[];
|
|
111
166
|
[key: string]: any;
|
|
112
167
|
}
|
|
113
168
|
|
|
114
|
-
|
|
169
|
+
/**
|
|
170
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
171
|
+
* SPDX-License-Identifier: MIT
|
|
172
|
+
*/
|
|
115
173
|
|
|
116
|
-
|
|
174
|
+
declare function ConstantInput(props: PropsType$2): React$1.JSX.Element;
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
178
|
+
* SPDX-License-Identifier: MIT
|
|
179
|
+
*/
|
|
180
|
+
|
|
181
|
+
interface PropsType$1 {
|
|
117
182
|
value?: IFlowConstantRefValue;
|
|
118
183
|
onChange: (value?: IFlowConstantRefValue) => void;
|
|
119
184
|
readonly?: boolean;
|
|
@@ -122,10 +187,16 @@ interface PropsType {
|
|
|
122
187
|
schema?: IJsonSchema;
|
|
123
188
|
constantProps?: {
|
|
124
189
|
strategies?: Strategy[];
|
|
190
|
+
schema?: IJsonSchema;
|
|
125
191
|
[key: string]: any;
|
|
126
192
|
};
|
|
127
193
|
}
|
|
128
|
-
declare function DynamicValueInput({ value, onChange, readonly, style, schema, constantProps, }: PropsType): React$1.JSX.Element;
|
|
194
|
+
declare function DynamicValueInput({ value, onChange, readonly, style, schema, constantProps, }: PropsType$1): React$1.JSX.Element;
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
198
|
+
* SPDX-License-Identifier: MIT
|
|
199
|
+
*/
|
|
129
200
|
|
|
130
201
|
declare enum Op {
|
|
131
202
|
EQ = "eq",
|
|
@@ -149,6 +220,11 @@ interface ConditionRowValueType {
|
|
|
149
220
|
right?: IFlowConstantRefValue;
|
|
150
221
|
}
|
|
151
222
|
|
|
223
|
+
/**
|
|
224
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
225
|
+
* SPDX-License-Identifier: MIT
|
|
226
|
+
*/
|
|
227
|
+
|
|
152
228
|
interface PropTypes {
|
|
153
229
|
value?: ConditionRowValueType;
|
|
154
230
|
onChange: (value?: ConditionRowValueType) => void;
|
|
@@ -157,10 +233,46 @@ interface PropTypes {
|
|
|
157
233
|
}
|
|
158
234
|
declare function ConditionRow({ style, value, onChange, readonly }: PropTypes): React$1.JSX.Element;
|
|
159
235
|
|
|
236
|
+
/**
|
|
237
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
238
|
+
* SPDX-License-Identifier: MIT
|
|
239
|
+
*/
|
|
240
|
+
|
|
241
|
+
type ValueType = Record<string, IFlowRefValue | undefined>;
|
|
242
|
+
interface PropsType {
|
|
243
|
+
value?: ValueType;
|
|
244
|
+
onChange: (value?: ValueType) => void;
|
|
245
|
+
readonly?: boolean;
|
|
246
|
+
hasError?: boolean;
|
|
247
|
+
style?: React.CSSProperties;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
252
|
+
* SPDX-License-Identifier: MIT
|
|
253
|
+
*/
|
|
254
|
+
|
|
255
|
+
declare function BatchOutputs(props: PropsType): React$1.JSX.Element;
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
259
|
+
* SPDX-License-Identifier: MIT
|
|
260
|
+
*/
|
|
261
|
+
|
|
160
262
|
declare const provideBatchInputEffect: EffectOptions[];
|
|
161
263
|
|
|
264
|
+
/**
|
|
265
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
266
|
+
* SPDX-License-Identifier: MIT
|
|
267
|
+
*/
|
|
268
|
+
|
|
162
269
|
declare const provideBatchOutputsEffect: EffectOptions[];
|
|
163
270
|
|
|
271
|
+
/**
|
|
272
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
273
|
+
* SPDX-License-Identifier: MIT
|
|
274
|
+
*/
|
|
275
|
+
|
|
164
276
|
/**
|
|
165
277
|
* Auto rename ref when form item's key is renamed
|
|
166
278
|
*
|
|
@@ -174,10 +286,24 @@ declare const provideBatchOutputsEffect: EffectOptions[];
|
|
|
174
286
|
*/
|
|
175
287
|
declare const autoRenameRefEffect: EffectOptions[];
|
|
176
288
|
|
|
289
|
+
/**
|
|
290
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
291
|
+
* SPDX-License-Identifier: MIT
|
|
292
|
+
*/
|
|
293
|
+
|
|
177
294
|
declare const provideJsonSchemaOutputs: EffectOptions[];
|
|
178
295
|
|
|
296
|
+
/**
|
|
297
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
298
|
+
* SPDX-License-Identifier: MIT
|
|
299
|
+
*/
|
|
300
|
+
|
|
179
301
|
declare const syncVariableTitle: EffectOptions[];
|
|
180
302
|
|
|
303
|
+
/**
|
|
304
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
305
|
+
* SPDX-License-Identifier: MIT
|
|
306
|
+
*/
|
|
181
307
|
interface LegacyFlowRefValueSchema {
|
|
182
308
|
type: 'ref';
|
|
183
309
|
content: string;
|
|
@@ -258,6 +384,11 @@ declare function formatNewRefToLegacyRef(value: NewFlowRefValueSchema): {
|
|
|
258
384
|
content: string;
|
|
259
385
|
};
|
|
260
386
|
|
|
387
|
+
/**
|
|
388
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
389
|
+
* SPDX-License-Identifier: MIT
|
|
390
|
+
*/
|
|
391
|
+
|
|
261
392
|
declare namespace JsonSchemaUtils {
|
|
262
393
|
/**
|
|
263
394
|
* Converts a JSON schema to an Abstract Syntax Tree (AST) representation.
|
|
@@ -287,4 +418,16 @@ declare namespace JsonSchemaUtils {
|
|
|
287
418
|
function isASTMatchSchema(typeAST: BaseType, schema: IJsonSchema | IJsonSchema[]): boolean;
|
|
288
419
|
}
|
|
289
420
|
|
|
290
|
-
|
|
421
|
+
/**
|
|
422
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
423
|
+
* SPDX-License-Identifier: MIT
|
|
424
|
+
*/
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* Free Layout only right now
|
|
428
|
+
*/
|
|
429
|
+
declare const createBatchOutputsFormPlugin: FormPluginCreator<{
|
|
430
|
+
outputKey: string;
|
|
431
|
+
}>;
|
|
432
|
+
|
|
433
|
+
export { ArrayIcons, BatchOutputs, BatchVariableSelector, ConditionRow, type ConditionRowValueType, ConstantInput, DynamicValueInput, type IBasicJsonSchema, type IFlowConstantRefValue, type IFlowConstantValue, type IFlowExpressionValue, type IFlowRefValue, type IFlowTemplateValue, type IFlowValue, type IJsonSchema, type JsonSchemaBasicType, JsonSchemaEditor, JsonSchemaUtils, TypeSelector, VariableSelector, type VariableSelectorProps, VariableTypeIcons, autoRenameRefEffect, createBatchOutputsFormPlugin, formatLegacyRefOnInit, formatLegacyRefOnSubmit, formatLegacyRefToNewRef, formatNewRefToLegacyRef, getSchemaIcon, getTypeSelectValue, isLegacyFlowRefValueSchema, isNewFlowRefValueSchema, parseTypeSelectValue, provideBatchInputEffect, provideBatchOutputsEffect, provideJsonSchemaOutputs, syncVariableTitle, useVariableTree };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import React$1 from 'react';
|
|
2
2
|
import { TriggerRenderProps } from '@douyinfe/semi-ui/lib/es/treeSelect';
|
|
3
|
-
import { EffectOptions, ASTNodeJSON, ASTNode, BaseType } from '@flowgram.ai/editor';
|
|
3
|
+
import { EffectOptions, ASTNodeJSON, ASTNode, BaseType, FormPluginCreator } from '@flowgram.ai/editor';
|
|
4
|
+
import { TreeNodeData } from '@douyinfe/semi-ui/lib/es/tree';
|
|
4
5
|
|
|
6
|
+
/**
|
|
7
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
8
|
+
* SPDX-License-Identifier: MIT
|
|
9
|
+
*/
|
|
5
10
|
type JsonSchemaBasicType = 'boolean' | 'string' | 'integer' | 'number' | 'object' | 'array' | 'map';
|
|
6
11
|
interface IJsonSchema<T = string> {
|
|
7
12
|
type?: T;
|
|
@@ -23,6 +28,21 @@ interface IJsonSchema<T = string> {
|
|
|
23
28
|
}
|
|
24
29
|
type IBasicJsonSchema = IJsonSchema<JsonSchemaBasicType>;
|
|
25
30
|
|
|
31
|
+
/**
|
|
32
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
33
|
+
* SPDX-License-Identifier: MIT
|
|
34
|
+
*/
|
|
35
|
+
|
|
36
|
+
declare function useVariableTree(params: {
|
|
37
|
+
includeSchema?: IJsonSchema | IJsonSchema[];
|
|
38
|
+
excludeSchema?: IJsonSchema | IJsonSchema[];
|
|
39
|
+
}): TreeNodeData[];
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
43
|
+
* SPDX-License-Identifier: MIT
|
|
44
|
+
*/
|
|
45
|
+
|
|
26
46
|
interface PropTypes$2 {
|
|
27
47
|
value?: string[];
|
|
28
48
|
config?: {
|
|
@@ -38,8 +58,13 @@ interface PropTypes$2 {
|
|
|
38
58
|
triggerRender?: (props: TriggerRenderProps) => React$1.ReactNode;
|
|
39
59
|
}
|
|
40
60
|
type VariableSelectorProps = PropTypes$2;
|
|
61
|
+
|
|
41
62
|
declare const VariableSelector: ({ value, config, onChange, style, readonly, includeSchema, excludeSchema, hasError, triggerRender, }: PropTypes$2) => React$1.JSX.Element;
|
|
42
63
|
|
|
64
|
+
/**
|
|
65
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
66
|
+
* SPDX-License-Identifier: MIT
|
|
67
|
+
*/
|
|
43
68
|
interface IFlowConstantValue {
|
|
44
69
|
type: 'constant';
|
|
45
70
|
content?: string | number | boolean;
|
|
@@ -59,6 +84,11 @@ interface IFlowTemplateValue {
|
|
|
59
84
|
type IFlowValue = IFlowConstantValue | IFlowRefValue | IFlowExpressionValue | IFlowTemplateValue;
|
|
60
85
|
type IFlowConstantRefValue = IFlowConstantValue | IFlowRefValue;
|
|
61
86
|
|
|
87
|
+
/**
|
|
88
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
89
|
+
* SPDX-License-Identifier: MIT
|
|
90
|
+
*/
|
|
91
|
+
|
|
62
92
|
declare const VariableTypeIcons: {
|
|
63
93
|
[key: string]: React$1.ReactNode;
|
|
64
94
|
};
|
|
@@ -67,6 +97,11 @@ declare const ArrayIcons: {
|
|
|
67
97
|
};
|
|
68
98
|
declare const getSchemaIcon: (value?: Partial<IJsonSchema>) => React$1.ReactNode;
|
|
69
99
|
|
|
100
|
+
/**
|
|
101
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
102
|
+
* SPDX-License-Identifier: MIT
|
|
103
|
+
*/
|
|
104
|
+
|
|
70
105
|
interface PropTypes$1 {
|
|
71
106
|
value?: Partial<IJsonSchema>;
|
|
72
107
|
onChange: (value?: Partial<IJsonSchema>) => void;
|
|
@@ -77,6 +112,11 @@ declare const getTypeSelectValue: (value?: Partial<IJsonSchema>) => string[] | u
|
|
|
77
112
|
declare const parseTypeSelectValue: (value?: string[]) => Partial<IJsonSchema> | undefined;
|
|
78
113
|
declare function TypeSelector(props: PropTypes$1): React$1.JSX.Element;
|
|
79
114
|
|
|
115
|
+
/**
|
|
116
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
117
|
+
* SPDX-License-Identifier: MIT
|
|
118
|
+
*/
|
|
119
|
+
|
|
80
120
|
interface ConfigType {
|
|
81
121
|
placeholder?: string;
|
|
82
122
|
descTitle?: string;
|
|
@@ -87,6 +127,11 @@ interface ConfigType {
|
|
|
87
127
|
jsonFormatText?: string;
|
|
88
128
|
}
|
|
89
129
|
|
|
130
|
+
/**
|
|
131
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
132
|
+
* SPDX-License-Identifier: MIT
|
|
133
|
+
*/
|
|
134
|
+
|
|
90
135
|
declare function JsonSchemaEditor(props: {
|
|
91
136
|
value?: IJsonSchema;
|
|
92
137
|
onChange?: (value: IJsonSchema) => void;
|
|
@@ -94,8 +139,18 @@ declare function JsonSchemaEditor(props: {
|
|
|
94
139
|
className?: string;
|
|
95
140
|
}): React$1.JSX.Element;
|
|
96
141
|
|
|
142
|
+
/**
|
|
143
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
144
|
+
* SPDX-License-Identifier: MIT
|
|
145
|
+
*/
|
|
146
|
+
|
|
97
147
|
declare function BatchVariableSelector(props: VariableSelectorProps): React$1.JSX.Element;
|
|
98
148
|
|
|
149
|
+
/**
|
|
150
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
151
|
+
* SPDX-License-Identifier: MIT
|
|
152
|
+
*/
|
|
153
|
+
|
|
99
154
|
interface Strategy<Value = any> {
|
|
100
155
|
hit: (schema: IJsonSchema) => boolean;
|
|
101
156
|
Renderer: React.FC<RendererProps<Value>>;
|
|
@@ -105,15 +160,25 @@ interface RendererProps<Value = any> {
|
|
|
105
160
|
onChange?: (value: Value) => void;
|
|
106
161
|
readonly?: boolean;
|
|
107
162
|
}
|
|
108
|
-
interface PropsType$
|
|
163
|
+
interface PropsType$2 extends RendererProps {
|
|
109
164
|
schema: IJsonSchema;
|
|
110
165
|
strategies?: Strategy[];
|
|
111
166
|
[key: string]: any;
|
|
112
167
|
}
|
|
113
168
|
|
|
114
|
-
|
|
169
|
+
/**
|
|
170
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
171
|
+
* SPDX-License-Identifier: MIT
|
|
172
|
+
*/
|
|
115
173
|
|
|
116
|
-
|
|
174
|
+
declare function ConstantInput(props: PropsType$2): React$1.JSX.Element;
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
178
|
+
* SPDX-License-Identifier: MIT
|
|
179
|
+
*/
|
|
180
|
+
|
|
181
|
+
interface PropsType$1 {
|
|
117
182
|
value?: IFlowConstantRefValue;
|
|
118
183
|
onChange: (value?: IFlowConstantRefValue) => void;
|
|
119
184
|
readonly?: boolean;
|
|
@@ -122,10 +187,16 @@ interface PropsType {
|
|
|
122
187
|
schema?: IJsonSchema;
|
|
123
188
|
constantProps?: {
|
|
124
189
|
strategies?: Strategy[];
|
|
190
|
+
schema?: IJsonSchema;
|
|
125
191
|
[key: string]: any;
|
|
126
192
|
};
|
|
127
193
|
}
|
|
128
|
-
declare function DynamicValueInput({ value, onChange, readonly, style, schema, constantProps, }: PropsType): React$1.JSX.Element;
|
|
194
|
+
declare function DynamicValueInput({ value, onChange, readonly, style, schema, constantProps, }: PropsType$1): React$1.JSX.Element;
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
198
|
+
* SPDX-License-Identifier: MIT
|
|
199
|
+
*/
|
|
129
200
|
|
|
130
201
|
declare enum Op {
|
|
131
202
|
EQ = "eq",
|
|
@@ -149,6 +220,11 @@ interface ConditionRowValueType {
|
|
|
149
220
|
right?: IFlowConstantRefValue;
|
|
150
221
|
}
|
|
151
222
|
|
|
223
|
+
/**
|
|
224
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
225
|
+
* SPDX-License-Identifier: MIT
|
|
226
|
+
*/
|
|
227
|
+
|
|
152
228
|
interface PropTypes {
|
|
153
229
|
value?: ConditionRowValueType;
|
|
154
230
|
onChange: (value?: ConditionRowValueType) => void;
|
|
@@ -157,10 +233,46 @@ interface PropTypes {
|
|
|
157
233
|
}
|
|
158
234
|
declare function ConditionRow({ style, value, onChange, readonly }: PropTypes): React$1.JSX.Element;
|
|
159
235
|
|
|
236
|
+
/**
|
|
237
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
238
|
+
* SPDX-License-Identifier: MIT
|
|
239
|
+
*/
|
|
240
|
+
|
|
241
|
+
type ValueType = Record<string, IFlowRefValue | undefined>;
|
|
242
|
+
interface PropsType {
|
|
243
|
+
value?: ValueType;
|
|
244
|
+
onChange: (value?: ValueType) => void;
|
|
245
|
+
readonly?: boolean;
|
|
246
|
+
hasError?: boolean;
|
|
247
|
+
style?: React.CSSProperties;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
252
|
+
* SPDX-License-Identifier: MIT
|
|
253
|
+
*/
|
|
254
|
+
|
|
255
|
+
declare function BatchOutputs(props: PropsType): React$1.JSX.Element;
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
259
|
+
* SPDX-License-Identifier: MIT
|
|
260
|
+
*/
|
|
261
|
+
|
|
160
262
|
declare const provideBatchInputEffect: EffectOptions[];
|
|
161
263
|
|
|
264
|
+
/**
|
|
265
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
266
|
+
* SPDX-License-Identifier: MIT
|
|
267
|
+
*/
|
|
268
|
+
|
|
162
269
|
declare const provideBatchOutputsEffect: EffectOptions[];
|
|
163
270
|
|
|
271
|
+
/**
|
|
272
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
273
|
+
* SPDX-License-Identifier: MIT
|
|
274
|
+
*/
|
|
275
|
+
|
|
164
276
|
/**
|
|
165
277
|
* Auto rename ref when form item's key is renamed
|
|
166
278
|
*
|
|
@@ -174,10 +286,24 @@ declare const provideBatchOutputsEffect: EffectOptions[];
|
|
|
174
286
|
*/
|
|
175
287
|
declare const autoRenameRefEffect: EffectOptions[];
|
|
176
288
|
|
|
289
|
+
/**
|
|
290
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
291
|
+
* SPDX-License-Identifier: MIT
|
|
292
|
+
*/
|
|
293
|
+
|
|
177
294
|
declare const provideJsonSchemaOutputs: EffectOptions[];
|
|
178
295
|
|
|
296
|
+
/**
|
|
297
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
298
|
+
* SPDX-License-Identifier: MIT
|
|
299
|
+
*/
|
|
300
|
+
|
|
179
301
|
declare const syncVariableTitle: EffectOptions[];
|
|
180
302
|
|
|
303
|
+
/**
|
|
304
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
305
|
+
* SPDX-License-Identifier: MIT
|
|
306
|
+
*/
|
|
181
307
|
interface LegacyFlowRefValueSchema {
|
|
182
308
|
type: 'ref';
|
|
183
309
|
content: string;
|
|
@@ -258,6 +384,11 @@ declare function formatNewRefToLegacyRef(value: NewFlowRefValueSchema): {
|
|
|
258
384
|
content: string;
|
|
259
385
|
};
|
|
260
386
|
|
|
387
|
+
/**
|
|
388
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
389
|
+
* SPDX-License-Identifier: MIT
|
|
390
|
+
*/
|
|
391
|
+
|
|
261
392
|
declare namespace JsonSchemaUtils {
|
|
262
393
|
/**
|
|
263
394
|
* Converts a JSON schema to an Abstract Syntax Tree (AST) representation.
|
|
@@ -287,4 +418,16 @@ declare namespace JsonSchemaUtils {
|
|
|
287
418
|
function isASTMatchSchema(typeAST: BaseType, schema: IJsonSchema | IJsonSchema[]): boolean;
|
|
288
419
|
}
|
|
289
420
|
|
|
290
|
-
|
|
421
|
+
/**
|
|
422
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
423
|
+
* SPDX-License-Identifier: MIT
|
|
424
|
+
*/
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* Free Layout only right now
|
|
428
|
+
*/
|
|
429
|
+
declare const createBatchOutputsFormPlugin: FormPluginCreator<{
|
|
430
|
+
outputKey: string;
|
|
431
|
+
}>;
|
|
432
|
+
|
|
433
|
+
export { ArrayIcons, BatchOutputs, BatchVariableSelector, ConditionRow, type ConditionRowValueType, ConstantInput, DynamicValueInput, type IBasicJsonSchema, type IFlowConstantRefValue, type IFlowConstantValue, type IFlowExpressionValue, type IFlowRefValue, type IFlowTemplateValue, type IFlowValue, type IJsonSchema, type JsonSchemaBasicType, JsonSchemaEditor, JsonSchemaUtils, TypeSelector, VariableSelector, type VariableSelectorProps, VariableTypeIcons, autoRenameRefEffect, createBatchOutputsFormPlugin, formatLegacyRefOnInit, formatLegacyRefOnSubmit, formatLegacyRefToNewRef, formatNewRefToLegacyRef, getSchemaIcon, getTypeSelectValue, isLegacyFlowRefValueSchema, isNewFlowRefValueSchema, parseTypeSelectValue, provideBatchInputEffect, provideBatchOutputsEffect, provideJsonSchemaOutputs, syncVariableTitle, useVariableTree };
|