-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-data.ts
70 lines (69 loc) · 1.18 KB
/
form-data.ts
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { FormField } from "@/types/form-field";
export const data: FormField[] = [
{
id: "1",
label: "Name",
key: "name",
dataType: "string",
isPopoverOpen: false,
},
{
id: "2",
label: "Email",
key: "email",
dataType: "string",
isPopoverOpen: false,
},
{
id: "3",
label: "Phone",
key: "phone",
dataType: "number",
isPopoverOpen: false,
},
{
id: "4",
label: "Terms and Conditions",
key: "boolean",
description: "I consent to the terms and conditions",
dataType: "boolean",
isPopoverOpen: false,
},
{
id: "5",
label: "Date",
key: "date",
dataType: "date",
isPopoverOpen: false,
},
{
id: "6",
label: "Game",
description: "Select a game",
key: "enum",
options: [
{
value: "nfs",
label: "Need for Speed",
},
{
value: "asphalt",
label: "Asphalt 8",
},
{
value: "gta",
label: "Grand Theft Auto",
},
{
value: "pes",
label: "Pes",
},
{
value: "fifa",
label: "FIFA",
},
],
dataType: "enum",
isPopoverOpen: false,
},
];