mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 11:43:56 +00:00
feat: workflow input node add selectMulti; MultipleSelect component (#4527)
* feat: workflow input node add selectMulti; MultipleSelect component add disabled state (#4440) * perf: input form support multiple select --------- Co-authored-by: mmagi <magizhang@qq.com>
This commit is contained in:
@@ -7,6 +7,7 @@ export enum FlowNodeInputTypeEnum { // render ui
|
||||
numberInput = 'numberInput',
|
||||
switch = 'switch', // true/false
|
||||
select = 'select',
|
||||
multipleSelect = 'multipleSelect',
|
||||
|
||||
// editor
|
||||
JSONEditor = 'JSONEditor',
|
||||
@@ -46,6 +47,9 @@ export const FlowNodeInputMap: Record<
|
||||
[FlowNodeInputTypeEnum.select]: {
|
||||
icon: 'core/workflow/inputType/option'
|
||||
},
|
||||
[FlowNodeInputTypeEnum.multipleSelect]: {
|
||||
icon: 'core/workflow/inputType/option'
|
||||
},
|
||||
[FlowNodeInputTypeEnum.switch]: {
|
||||
icon: 'core/workflow/inputType/switch'
|
||||
},
|
||||
|
Reference in New Issue
Block a user