-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathdata.ts
More file actions
44 lines (44 loc) · 980 Bytes
/
data.ts
File metadata and controls
44 lines (44 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { t } from '@/locales'
const input_type_list = [
{
label: t('dynamicsForm.input_type_list.TextInput'),
value: 'TextInput'
},
{
label: t('dynamicsForm.input_type_list.PasswordInput'),
value: 'PasswordInput'
},
{
label: t('dynamicsForm.input_type_list.Slider'),
value: 'Slider'
},
{
label: t('dynamicsForm.input_type_list.SwitchInput'),
value: 'SwitchInput'
},
{
label: t('dynamicsForm.input_type_list.SingleSelect'),
value: 'SingleSelect'
},
{
label: t('dynamicsForm.input_type_list.MultiSelect'),
value: 'MultiSelect'
},
{
label: t('dynamicsForm.input_type_list.DatePicker'),
value: 'DatePicker'
},
{
label: t('dynamicsForm.input_type_list.JsonInput'),
value: 'JsonInput'
},
{
label: t('dynamicsForm.input_type_list.RadioCard'),
value: 'RadioCard'
},
{
label: t('dynamicsForm.input_type_list.RadioRow'),
value: 'RadioRow'
}
]
export { input_type_list }