@bigbinary/neeto-form-frontend 1.0.52 → 1.1.0
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/dist/index.cjs.js +1310 -4737
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +1294 -4722
- package/dist/index.js.map +1 -1
- package/package.json +5 -2
- package/src/translations/de.json +14 -0
- package/src/translations/en.json +101 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-form-frontend",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Neeto Form Engine Frontend",
|
|
5
5
|
"author": "BigBinary",
|
|
6
6
|
"license": "MIT",
|
|
@@ -119,9 +119,11 @@
|
|
|
119
119
|
"classnames": "2.3.1",
|
|
120
120
|
"dayjs": "1.11.1",
|
|
121
121
|
"formik": "2.2.9",
|
|
122
|
+
"i18next": "21.7.0",
|
|
122
123
|
"ramda": "0.29.0",
|
|
123
124
|
"react": "17.0.2",
|
|
124
125
|
"react-dom": "17.0.2",
|
|
126
|
+
"react-i18next": "11.16.8",
|
|
125
127
|
"react-router-dom": "5.3.0",
|
|
126
128
|
"react-toastify": "8.0.2",
|
|
127
129
|
"yup": "^1.0.0",
|
|
@@ -129,6 +131,7 @@
|
|
|
129
131
|
},
|
|
130
132
|
"files": [
|
|
131
133
|
"dist",
|
|
132
|
-
"index.d.ts"
|
|
134
|
+
"index.d.ts",
|
|
135
|
+
"src/translations"
|
|
133
136
|
]
|
|
134
137
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"neetoForm": {
|
|
3
|
+
"error": {
|
|
4
|
+
"invalidField": "Bitte geben Sie ein gültiges {{label}} ein.",
|
|
5
|
+
"invalidType": "{{label}} sollte ein gültiger {{type}} sein",
|
|
6
|
+
"requiredField": "Bitte geben Sie {{label}} ein.",
|
|
7
|
+
"selectMin": "Bitte wählen Sie {{min}} {{entity}} aus"
|
|
8
|
+
},
|
|
9
|
+
"common": {
|
|
10
|
+
"phoneNumberValidation": "Telefonnummer beginnend mit der Landesvorwahl",
|
|
11
|
+
"mustAcceptTermsAndConditions": "Du musst die Geschäftsbedingungen akzeptieren"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"neetoForm": {
|
|
3
|
+
"common": {
|
|
4
|
+
"fieldReq": "{{field}} is required",
|
|
5
|
+
"thisFieldIsRequired": "This Field is required",
|
|
6
|
+
"somethingWentWrong": "Something went wrong!",
|
|
7
|
+
"delete": "Delete",
|
|
8
|
+
"agreeTermsAndConditions": "I agree to terms & conditions mentioned below",
|
|
9
|
+
"agreeCondition": "I agree",
|
|
10
|
+
"mustAcceptTermsAndConditions": "You must accept the terms and conditions",
|
|
11
|
+
"email": "Email",
|
|
12
|
+
"phone": "Phone",
|
|
13
|
+
"phNo": "Phone number",
|
|
14
|
+
"name": "Name",
|
|
15
|
+
"text": "Text",
|
|
16
|
+
"rate": "Rate",
|
|
17
|
+
"reset": "Reset",
|
|
18
|
+
"singleChoice": "Single choice",
|
|
19
|
+
"company": "Company",
|
|
20
|
+
"select": "Select",
|
|
21
|
+
"selectOne": "Select one",
|
|
22
|
+
"required": "Required",
|
|
23
|
+
"invalidURL": "Invalid URL",
|
|
24
|
+
"paragraphCantBeEmpty": "Paragraph can't be empty",
|
|
25
|
+
"fillTheFormToChat": "Please fill in the form to start chatting.",
|
|
26
|
+
"phoneNumberValidation": "phone number starting with country code",
|
|
27
|
+
"yes": "Yes",
|
|
28
|
+
"count": "Count",
|
|
29
|
+
"icon": "Icon",
|
|
30
|
+
"good": "Good",
|
|
31
|
+
"okay": "Okay",
|
|
32
|
+
"bad": "Bad",
|
|
33
|
+
"no": "No"
|
|
34
|
+
},
|
|
35
|
+
"fields": {
|
|
36
|
+
"mcf": "Checkbox",
|
|
37
|
+
"scf": "Radio button",
|
|
38
|
+
"def": "Paragraph",
|
|
39
|
+
"drf": "Dropdown",
|
|
40
|
+
"qif": "Multiple lines text",
|
|
41
|
+
"nif": "Name",
|
|
42
|
+
"tif": "Single line text",
|
|
43
|
+
"eif": "Email",
|
|
44
|
+
"pif": "Phone",
|
|
45
|
+
"rif": "Rating",
|
|
46
|
+
"tcf": "Terms and conditions",
|
|
47
|
+
"date": "Date",
|
|
48
|
+
"fbf": "Feedback",
|
|
49
|
+
"agif": "Additional guests",
|
|
50
|
+
"rtf": "Rich text field",
|
|
51
|
+
"cf": "Condition"
|
|
52
|
+
},
|
|
53
|
+
"toasts": {
|
|
54
|
+
"formSubmitted": "Form has been submitted successfully!"
|
|
55
|
+
},
|
|
56
|
+
"callouts": {
|
|
57
|
+
"submitError": "Couldn't submit the form"
|
|
58
|
+
},
|
|
59
|
+
"successPage": {
|
|
60
|
+
"title1": "Thanks for completing this form.",
|
|
61
|
+
"title2": "Your response has been accepted."
|
|
62
|
+
},
|
|
63
|
+
"emptyState": {
|
|
64
|
+
"noData": "No data found"
|
|
65
|
+
},
|
|
66
|
+
"questions": {
|
|
67
|
+
"deleteAlert": {
|
|
68
|
+
"title": "Are you sure you want to delete the field \"{{label}}\"?",
|
|
69
|
+
"message": "This action cannot be undone."
|
|
70
|
+
},
|
|
71
|
+
"common": {
|
|
72
|
+
"notFound": "No questions found",
|
|
73
|
+
"primaryPanel": {
|
|
74
|
+
"addNewQuestion": "Add new question"
|
|
75
|
+
},
|
|
76
|
+
"duplicateBtn": "Duplicate",
|
|
77
|
+
"questionFields": {
|
|
78
|
+
"field": {
|
|
79
|
+
"question": "Question",
|
|
80
|
+
"placeholder": "Placeholder",
|
|
81
|
+
"required": "Required",
|
|
82
|
+
"addOption": "Add new option",
|
|
83
|
+
"option": "Option",
|
|
84
|
+
"options": "Options",
|
|
85
|
+
"labelExample": "Eg: {{what}}",
|
|
86
|
+
"label": "Label"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"labels": {
|
|
92
|
+
"additionalGuests": "Additional guests"
|
|
93
|
+
},
|
|
94
|
+
"error": {
|
|
95
|
+
"invalidField": "Please enter a valid {{label}}.",
|
|
96
|
+
"requiredField": "Please enter {{label}}.",
|
|
97
|
+
"selectMin": "Please select {{min}} {{entity}}",
|
|
98
|
+
"invalidType": "{{label}} should be a valid {{type}}"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|