@bigbinary/neeto-form-frontend 3.12.6 → 3.12.7
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.
|
@@ -191,12 +191,12 @@
|
|
|
191
191
|
},
|
|
192
192
|
"domainRestriction": {
|
|
193
193
|
"whitelistedDomains": {
|
|
194
|
-
"label": "
|
|
195
|
-
"description": "
|
|
194
|
+
"label": "Allow email domains",
|
|
195
|
+
"description": "Emails having the following domains will be accepted.",
|
|
196
196
|
"popoverDescription": "Enter domains that should be permitted. Only emails with these domains will be accepted."
|
|
197
197
|
},
|
|
198
198
|
"blacklistedDomains": {
|
|
199
|
-
"label": "
|
|
199
|
+
"label": "Reject email domains",
|
|
200
200
|
"description": "Emails having the following domains will be rejected.",
|
|
201
201
|
"popoverDescription": "Enter domains that should be restricted. Emails with these domains will not be accepted."
|
|
202
202
|
},
|
package/dist/BuildForm.js
CHANGED
|
@@ -2173,7 +2173,7 @@ var Form = function Form(_ref) {
|
|
|
2173
2173
|
var _useTranslation = useTranslation(),
|
|
2174
2174
|
t = _useTranslation.t;
|
|
2175
2175
|
var formikContext = useFormikContext();
|
|
2176
|
-
var _useState = useState(
|
|
2176
|
+
var _useState = useState({}),
|
|
2177
2177
|
_useState2 = _slicedToArray(_useState, 2),
|
|
2178
2178
|
selectedQuestion = _useState2[0],
|
|
2179
2179
|
setSelectedQuestion = _useState2[1];
|
|
@@ -2273,7 +2273,7 @@ var Form = function Form(_ref) {
|
|
|
2273
2273
|
}
|
|
2274
2274
|
};
|
|
2275
2275
|
useOnClickOutside(containerRef, function () {
|
|
2276
|
-
return handleSelect(
|
|
2276
|
+
return handleSelect({});
|
|
2277
2277
|
}, {
|
|
2278
2278
|
enabled: !(isDeleteAlertOpen || isManageQuestionPaneOpen)
|
|
2279
2279
|
});
|