@bigbinary/neeto-form-frontend 1.2.16 → 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/app/javascript/src/translations/en.json +5 -1
- package/dist/index.cjs.js +775 -593
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +827 -645
- package/dist/index.js.map +1 -1
- package/package.json +13 -13
- package/types.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-form-frontend",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.17",
|
|
4
4
|
"description": "Neeto Form Engine Frontend",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-form-nano",
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"@babel/preset-typescript": "7.23.2",
|
|
49
49
|
"@babel/runtime": "7.23.2",
|
|
50
50
|
"@bigbinary/babel-preset-neeto": "1.0.6",
|
|
51
|
-
"@bigbinary/eslint-plugin-neeto": "1.1.
|
|
52
|
-
"@bigbinary/neeto-audit-frontend": "2.0.
|
|
53
|
-
"@bigbinary/neeto-cist": "1.0.
|
|
54
|
-
"@bigbinary/neeto-commons-frontend": "3.1.
|
|
51
|
+
"@bigbinary/eslint-plugin-neeto": "1.1.41",
|
|
52
|
+
"@bigbinary/neeto-audit-frontend": "2.0.9",
|
|
53
|
+
"@bigbinary/neeto-cist": "1.0.8",
|
|
54
|
+
"@bigbinary/neeto-commons-frontend": "3.1.10",
|
|
55
55
|
"@bigbinary/neeto-editor": "1.20.0",
|
|
56
|
-
"@bigbinary/neeto-filters-frontend": "3.0.
|
|
57
|
-
"@bigbinary/neeto-icons": "1.17.
|
|
58
|
-
"@bigbinary/neeto-molecules": "1.3
|
|
56
|
+
"@bigbinary/neeto-filters-frontend": "3.0.15",
|
|
57
|
+
"@bigbinary/neeto-icons": "1.17.11",
|
|
58
|
+
"@bigbinary/neeto-molecules": "1.6.3",
|
|
59
59
|
"@bigbinary/neetoui": "6.1.2",
|
|
60
60
|
"@emotion/is-prop-valid": "1.2.0",
|
|
61
61
|
"@faker-js/faker": "8.2.0",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"stream-browserify": "3.0.0",
|
|
149
149
|
"stream-http": "3.2.0",
|
|
150
150
|
"style-loader": "3.3.3",
|
|
151
|
-
"tailwindcss": "
|
|
151
|
+
"tailwindcss": "3.4.1",
|
|
152
152
|
"tty-browserify": "0.0.1",
|
|
153
153
|
"url": "0.11.1",
|
|
154
154
|
"util": "0.12.5",
|
|
@@ -163,11 +163,11 @@
|
|
|
163
163
|
},
|
|
164
164
|
"peerDependencies": {
|
|
165
165
|
"@bigbinary/neeto-cist": "latest",
|
|
166
|
-
"@bigbinary/neeto-commons-frontend": "3.1.
|
|
166
|
+
"@bigbinary/neeto-commons-frontend": "3.1.10",
|
|
167
167
|
"@bigbinary/neeto-editor": "^1.26.3",
|
|
168
|
-
"@bigbinary/neeto-filters-frontend": "3.0.
|
|
169
|
-
"@bigbinary/neeto-icons": "1.17.
|
|
170
|
-
"@bigbinary/neeto-molecules": "1.3
|
|
168
|
+
"@bigbinary/neeto-filters-frontend": "3.0.15",
|
|
169
|
+
"@bigbinary/neeto-icons": "1.17.11",
|
|
170
|
+
"@bigbinary/neeto-molecules": "1.6.3",
|
|
171
171
|
"@bigbinary/neetoui": "6.1.2",
|
|
172
172
|
"@honeybadger-io/js": "^6.5.3",
|
|
173
173
|
"@honeybadger-io/react": "^6.1.9",
|
package/types.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ interface BuildFormProps {
|
|
|
65
65
|
isFieldLabelDisabled?: (item: Item) => boolean;
|
|
66
66
|
isQuestionDeletable?: (item: Item) => boolean;
|
|
67
67
|
disabledAddButtonTooltipProps?: DisabledAddButtonTooltipProps;
|
|
68
|
+
enableFieldCode?: boolean;
|
|
68
69
|
}
|
|
69
70
|
|
|
70
71
|
interface ExternalFormProps {
|
|
@@ -98,6 +99,7 @@ interface ExternalFormProps {
|
|
|
98
99
|
formDomProps?: FormHTMLAttributes<HTMLFormElement>;
|
|
99
100
|
editorProps?: EditorProps;
|
|
100
101
|
customValidator?: (question: Question) => Schema;
|
|
102
|
+
enablePreFilling?: boolean
|
|
101
103
|
}
|
|
102
104
|
|
|
103
105
|
interface DisabledAddButtonTooltipProps {
|