@bigbinary/neeto-form-frontend 1.2.15 → 1.2.17
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/README.md +1 -1
- package/app/javascript/src/translations/en.json +5 -1
- package/dist/index.cjs.js +3208 -1665
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +3212 -1669
- package/dist/index.js.map +1 -1
- package/package.json +13 -14
- package/types.d.ts +2 -0
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ the proper functioning of the package. Install all the peer dependencies using
|
|
|
90
90
|
the below command:
|
|
91
91
|
|
|
92
92
|
```zsh
|
|
93
|
-
yarn add @bigbinary/neetoui @bigbinary/neeto-icons ramda@^0.28.0 classnames@^2.3.1 formik@2.2.9 @bigbinary/neeto-commons-frontend
|
|
93
|
+
yarn add @bigbinary/neetoui @bigbinary/neeto-icons ramda@^0.28.0 classnames@^2.3.1 formik@2.2.9 @bigbinary/neeto-commons-frontend
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
3. Import stylesheet from the following location:
|
|
@@ -79,6 +79,7 @@
|
|
|
79
79
|
"addNewQuestion": "Add new question",
|
|
80
80
|
"noQuestionLeft": "No more question fields to add"
|
|
81
81
|
},
|
|
82
|
+
"advancedProperties": "Advanced properties",
|
|
82
83
|
"duplicateBtn": "Duplicate",
|
|
83
84
|
"questionFields": {
|
|
84
85
|
"field": {
|
|
@@ -87,9 +88,11 @@
|
|
|
87
88
|
"required": "Required",
|
|
88
89
|
"addOption": "Add new option",
|
|
89
90
|
"option": "Option",
|
|
91
|
+
"numberedOption": "Option {{number}}",
|
|
90
92
|
"options": "Options",
|
|
91
93
|
"labelExample": "Eg: {{what}}",
|
|
92
|
-
"label": "Label"
|
|
94
|
+
"label": "Label",
|
|
95
|
+
"fieldCode": "Field code"
|
|
93
96
|
}
|
|
94
97
|
}
|
|
95
98
|
}
|
|
@@ -99,6 +102,7 @@
|
|
|
99
102
|
},
|
|
100
103
|
"error": {
|
|
101
104
|
"invalidField": "Please enter a valid {{label}}.",
|
|
105
|
+
"invalidFieldCode": "This field code cannot be used.",
|
|
102
106
|
"requiredField": "Please enter {{label}}.",
|
|
103
107
|
"selectMin": "Please select {{min}} {{entity}}",
|
|
104
108
|
"invalidType": "{{label}} should be a valid {{type}}"
|