mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
40 lines
563 B
TypeScript
40 lines
563 B
TypeScript
const input_type_list = [
|
|
{
|
|
label: '文本框',
|
|
value: 'TextInput'
|
|
},
|
|
{
|
|
label: '滑块',
|
|
value: 'Slider'
|
|
},
|
|
{
|
|
label: '开关',
|
|
value: 'SwitchInput'
|
|
},
|
|
{
|
|
label: '单选框',
|
|
value: 'SingleSelect'
|
|
},
|
|
{
|
|
label: '多选框',
|
|
value: 'MultiSelect'
|
|
},
|
|
{
|
|
label: '日期',
|
|
value: 'DatePicker'
|
|
},
|
|
{
|
|
label: 'JSON文本框',
|
|
value: 'JsonInput'
|
|
},
|
|
{
|
|
label: '选项卡',
|
|
value: 'RadioCard'
|
|
},
|
|
{
|
|
label: '单行选项卡',
|
|
value: 'RadioRow'
|
|
}
|
|
]
|
|
export { input_type_list }
|