@bigbinary/neeto-form-frontend 4.2.4 → 4.2.6
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/ar.json +2 -1
- package/app/javascript/src/translations/bg.json +2 -1
- package/app/javascript/src/translations/ca.json +2 -1
- package/app/javascript/src/translations/cs.json +2 -1
- package/app/javascript/src/translations/da.json +2 -1
- package/app/javascript/src/translations/de.json +2 -1
- package/app/javascript/src/translations/es-MX.json +2 -1
- package/app/javascript/src/translations/es.json +2 -1
- package/app/javascript/src/translations/et.json +2 -1
- package/app/javascript/src/translations/fi.json +2 -1
- package/app/javascript/src/translations/fil.json +2 -1
- package/app/javascript/src/translations/fr.json +2 -1
- package/app/javascript/src/translations/he.json +2 -1
- package/app/javascript/src/translations/hi.json +2 -1
- package/app/javascript/src/translations/hr.json +2 -1
- package/app/javascript/src/translations/id.json +2 -1
- package/app/javascript/src/translations/it.json +2 -1
- package/app/javascript/src/translations/ja.json +2 -1
- package/app/javascript/src/translations/ko.json +2 -1
- package/app/javascript/src/translations/nl.json +2 -1
- package/app/javascript/src/translations/pl.json +2 -1
- package/app/javascript/src/translations/pt-BR.json +2 -1
- package/app/javascript/src/translations/pt.json +2 -1
- package/app/javascript/src/translations/ro.json +2 -1
- package/app/javascript/src/translations/ru.json +2 -1
- package/app/javascript/src/translations/sk.json +2 -1
- package/app/javascript/src/translations/sl.json +2 -1
- package/app/javascript/src/translations/sv.json +2 -1
- package/app/javascript/src/translations/th.json +2 -1
- package/app/javascript/src/translations/tr.json +2 -1
- package/app/javascript/src/translations/uk.json +2 -1
- package/app/javascript/src/translations/vi.json +2 -1
- package/app/javascript/src/translations/zh-CN.json +2 -1
- package/app/javascript/src/translations/zh-TW.json +2 -1
- package/dist/BuildForm.js +57 -69
- package/dist/BuildForm.js.map +1 -1
- package/dist/cjs/BuildForm.js +57 -69
- package/dist/cjs/BuildForm.js.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +13 -13
package/dist/cjs/BuildForm.js
CHANGED
|
@@ -44,7 +44,6 @@ var utils$1 = require('@bigbinary/neeto-editor/utils');
|
|
|
44
44
|
var yup = require('yup');
|
|
45
45
|
var Radio = require('@bigbinary/neetoui/formik/Radio');
|
|
46
46
|
var Label = require('@bigbinary/neetoui/Label');
|
|
47
|
-
var HelpPopover = require('@bigbinary/neeto-molecules/HelpPopover');
|
|
48
47
|
var CreatableSelect = require('react-select/creatable');
|
|
49
48
|
var _toArray = require('@babel/runtime/helpers/toArray');
|
|
50
49
|
var Close = require('@bigbinary/neeto-icons/Close');
|
|
@@ -56,6 +55,7 @@ var Checkbox$1 = require('@bigbinary/neetoui/formik/Checkbox');
|
|
|
56
55
|
var Checkbox = require('@bigbinary/neetoui/Checkbox');
|
|
57
56
|
var OptionFields = require('@bigbinary/neeto-molecules/OptionFields');
|
|
58
57
|
var Slider = require('@bigbinary/neetoui/Slider');
|
|
58
|
+
var HelpPopover = require('@bigbinary/neeto-molecules/HelpPopover');
|
|
59
59
|
require('@bigbinary/neeto-commons-frontend/constants');
|
|
60
60
|
require('axios');
|
|
61
61
|
require('dompurify');
|
|
@@ -814,7 +814,7 @@ var Block = function Block(_ref) {
|
|
|
814
814
|
children = _ref.children,
|
|
815
815
|
dataTestid = _ref.dataTestid;
|
|
816
816
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
817
|
-
className: "mt-4 space-y-
|
|
817
|
+
className: "mt-4 space-y-3",
|
|
818
818
|
"data-testid": dataTestid,
|
|
819
819
|
children: [/*#__PURE__*/jsxRuntime.jsx("div", {
|
|
820
820
|
className: "flex items-center justify-between",
|
|
@@ -1043,7 +1043,8 @@ var Form$1 = function Form(_ref) {
|
|
|
1043
1043
|
var shouldShowHideSwitch = isFieldCodeEnabled && !usesCustomSubmissionComponent && !ramda.includes(kind, constants$1.NON_HIDEABLE_FIELDS);
|
|
1044
1044
|
var canRestrictResponseVisibilityToHost = restrictResponseVisibilityToHost && !ramda.includes(kind, constants$1.NON_HIDEABLE_FIELDS);
|
|
1045
1045
|
var canMarkResponsesAsReadOnly = markResponsesAsReadOnly && !ramda.includes(kind, constants$1.NON_READ_ONLY_FIELDS);
|
|
1046
|
-
var
|
|
1046
|
+
var isBasicSettingsVisible = !isRequired && (!isImmutable || shouldShowHideSwitch);
|
|
1047
|
+
var isSettingsBlockVisible = isBasicSettingsVisible || canMarkResponsesAsReadOnly;
|
|
1047
1048
|
var handleKindChange = function handleKindChange(option) {
|
|
1048
1049
|
var data = buildQuestionData(option);
|
|
1049
1050
|
updateFormState(data);
|
|
@@ -1108,29 +1109,31 @@ var Form$1 = function Form(_ref) {
|
|
|
1108
1109
|
}), isSettingsBlockVisible && /*#__PURE__*/jsxRuntime.jsxs(Block, {
|
|
1109
1110
|
dataTestid: "settings-card",
|
|
1110
1111
|
title: t("neetoForm.common.settings"),
|
|
1111
|
-
children: [
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1112
|
+
children: [isBasicSettingsVisible && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1113
|
+
children: [!isImmutable && /*#__PURE__*/jsxRuntime.jsx(RequiredSwitch, {}), shouldShowHideSwitch && /*#__PURE__*/jsxRuntime.jsx(Switch, {
|
|
1114
|
+
label: t("neetoForm.common.hideQuestion"),
|
|
1115
|
+
name: "isHidden",
|
|
1116
|
+
labelProps: hideSwitchLabelProps(hideQuestionHelpDocUrl)
|
|
1117
|
+
}), canRestrictResponseVisibilityToHost && /*#__PURE__*/jsxRuntime.jsx(Switch, {
|
|
1118
|
+
label: t("neetoForm.common.responseVisibleOnlyToHost"),
|
|
1119
|
+
name: "isResponseVisibleOnlyToHost",
|
|
1120
|
+
labelProps: responseVisibleOnlyToHostSwitchLabelProps(responseVisibleOnlyToHostHelpDocUrl)
|
|
1121
|
+
})]
|
|
1122
|
+
}), canMarkResponsesAsReadOnly && /*#__PURE__*/jsxRuntime.jsx(Switch, {
|
|
1123
|
+
label: t("neetoForm.common.readOnly"),
|
|
1124
|
+
labelProps: readOnlySwitchLabelProps(readOnlyHelpDocUrl),
|
|
1125
|
+
name: "isReadOnly"
|
|
1119
1126
|
})]
|
|
1120
|
-
}),
|
|
1127
|
+
}), shouldShowFieldCode && /*#__PURE__*/jsxRuntime.jsx(Accordion, {
|
|
1121
1128
|
className: "neeto-form-nano-advanced-properties-accordion",
|
|
1122
1129
|
"data-testid": "advanced-properties-card",
|
|
1123
1130
|
defaultActiveKey: isFieldCodeInvalid ? 0 : null // This is to open the accordion when field code is invalid
|
|
1124
1131
|
,
|
|
1125
1132
|
children: /*#__PURE__*/jsxRuntime.jsx(Accordion.Item, {
|
|
1126
1133
|
title: t("neetoForm.common.advancedProperties"),
|
|
1127
|
-
children: /*#__PURE__*/jsxRuntime.
|
|
1134
|
+
children: /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
1128
1135
|
className: "flex flex-col space-y-4",
|
|
1129
|
-
children:
|
|
1130
|
-
label: t("neetoForm.common.readOnly"),
|
|
1131
|
-
name: "isReadOnly",
|
|
1132
|
-
labelProps: readOnlySwitchLabelProps(readOnlyHelpDocUrl)
|
|
1133
|
-
})]
|
|
1136
|
+
children: shouldShowFieldCode && /*#__PURE__*/jsxRuntime.jsx(FieldCode, {})
|
|
1134
1137
|
})
|
|
1135
1138
|
})
|
|
1136
1139
|
})]
|
|
@@ -1403,27 +1406,6 @@ var SwitchBlock = function SwitchBlock(_ref) {
|
|
|
1403
1406
|
});
|
|
1404
1407
|
};
|
|
1405
1408
|
|
|
1406
|
-
function ownKeys$5(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1407
|
-
function _objectSpread$5(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$5(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$5(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1408
|
-
var TitleWithHelpPopover = function TitleWithHelpPopover(_ref) {
|
|
1409
|
-
var title = _ref.title,
|
|
1410
|
-
description = _ref.description,
|
|
1411
|
-
helpLink = _ref.helpLink;
|
|
1412
|
-
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
1413
|
-
className: "flex gap-2",
|
|
1414
|
-
children: [title, /*#__PURE__*/jsxRuntime.jsx(HelpPopover, _objectSpread$5({
|
|
1415
|
-
description: description,
|
|
1416
|
-
popoverProps: {
|
|
1417
|
-
position: "top"
|
|
1418
|
-
}
|
|
1419
|
-
}, helpLink && {
|
|
1420
|
-
helpLinkProps: {
|
|
1421
|
-
href: helpLink
|
|
1422
|
-
}
|
|
1423
|
-
}))]
|
|
1424
|
-
});
|
|
1425
|
-
};
|
|
1426
|
-
|
|
1427
1409
|
var DOMAIN_RESTRICTION_TRANSLATIONS = {
|
|
1428
1410
|
whitelistedDomains: {
|
|
1429
1411
|
title: i18next.t("neetoForm.domainRestriction.whitelistedDomains.label"),
|
|
@@ -1442,8 +1424,8 @@ var EMAIL_VERIFICATION_TRANSLATIONS = {
|
|
|
1442
1424
|
};
|
|
1443
1425
|
|
|
1444
1426
|
var _excluded$2 = ["children"];
|
|
1445
|
-
function ownKeys$
|
|
1446
|
-
function _objectSpread$
|
|
1427
|
+
function ownKeys$5(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1428
|
+
function _objectSpread$5(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$5(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$5(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1447
1429
|
var STYLES = {
|
|
1448
1430
|
border: {
|
|
1449
1431
|
"default": "1px solid rgb(var(--neeto-ui-gray-400))",
|
|
@@ -1455,8 +1437,8 @@ var STYLES = {
|
|
|
1455
1437
|
}
|
|
1456
1438
|
};
|
|
1457
1439
|
var MultiValueRemove = function MultiValueRemove(props) {
|
|
1458
|
-
return /*#__PURE__*/jsxRuntime.jsx(reactSelect.components.MultiValueRemove, _objectSpread$
|
|
1459
|
-
innerProps: _objectSpread$
|
|
1440
|
+
return /*#__PURE__*/jsxRuntime.jsx(reactSelect.components.MultiValueRemove, _objectSpread$5(_objectSpread$5({}, props), {}, {
|
|
1441
|
+
innerProps: _objectSpread$5(_objectSpread$5({}, props.innerProps), {}, _defineProperty({}, "data-testid", "".concat(utils.hyphenize(props.data.label), "-remove-icon"))),
|
|
1460
1442
|
children: /*#__PURE__*/jsxRuntime.jsx(Close, {
|
|
1461
1443
|
size: 16
|
|
1462
1444
|
})
|
|
@@ -1476,8 +1458,8 @@ var ValueContainer = function ValueContainer(_ref) {
|
|
|
1476
1458
|
firstChild = _children[0],
|
|
1477
1459
|
rest = _children.slice(1);
|
|
1478
1460
|
var shouldCollapse = !isFocused && value.length > visibleDomainsCount;
|
|
1479
|
-
return /*#__PURE__*/jsxRuntime.jsxs(reactSelect.components.ValueContainer, _objectSpread$
|
|
1480
|
-
innerProps: _objectSpread$
|
|
1461
|
+
return /*#__PURE__*/jsxRuntime.jsxs(reactSelect.components.ValueContainer, _objectSpread$5(_objectSpread$5({}, props), {}, {
|
|
1462
|
+
innerProps: _objectSpread$5(_objectSpread$5({}, props.innerProps), {}, _defineProperty({}, "data-testid", "multi-domain-input-container")),
|
|
1481
1463
|
children: [shouldCollapse ? firstChild.slice(0, visibleDomainsCount) : firstChild, shouldCollapse && /*#__PURE__*/jsxRuntime.jsx(Tag, {
|
|
1482
1464
|
style: "secondary",
|
|
1483
1465
|
label: t("neetoForm.common.remainingItemsCount", {
|
|
@@ -1487,8 +1469,8 @@ var ValueContainer = function ValueContainer(_ref) {
|
|
|
1487
1469
|
}));
|
|
1488
1470
|
};
|
|
1489
1471
|
var ClearIndicator = function ClearIndicator(props) {
|
|
1490
|
-
return /*#__PURE__*/jsxRuntime.jsx(reactSelect.components.ClearIndicator, _objectSpread$
|
|
1491
|
-
innerProps: _objectSpread$
|
|
1472
|
+
return /*#__PURE__*/jsxRuntime.jsx(reactSelect.components.ClearIndicator, _objectSpread$5(_objectSpread$5({}, props), {}, {
|
|
1473
|
+
innerProps: _objectSpread$5(_objectSpread$5({}, props.innerProps), {}, _defineProperty({}, "data-testid", "clear-all-button")),
|
|
1492
1474
|
children: /*#__PURE__*/jsxRuntime.jsx(Close, {
|
|
1493
1475
|
className: "cursor-pointer",
|
|
1494
1476
|
size: 16
|
|
@@ -1509,7 +1491,7 @@ var CUSTOM_STYLES = {
|
|
|
1509
1491
|
input: ramda.assoc("overflow", "hidden"),
|
|
1510
1492
|
multiValue: function multiValue(styles, _ref2) {
|
|
1511
1493
|
var valid = _ref2.data.valid;
|
|
1512
|
-
return _objectSpread$
|
|
1494
|
+
return _objectSpread$5(_objectSpread$5({}, styles), {}, {
|
|
1513
1495
|
border: valid ? STYLES.border["default"] : STYLES.border.error,
|
|
1514
1496
|
color: valid ? STYLES.color["default"] : STYLES.color.error
|
|
1515
1497
|
});
|
|
@@ -1552,8 +1534,8 @@ var formatErrorMessage = function formatErrorMessage(error) {
|
|
|
1552
1534
|
};
|
|
1553
1535
|
|
|
1554
1536
|
var _excluded$1 = ["label", "value", "onChange", "error", "onBlur"];
|
|
1555
|
-
function ownKeys$
|
|
1556
|
-
function _objectSpread$
|
|
1537
|
+
function ownKeys$4(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1538
|
+
function _objectSpread$4(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$4(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$4(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1557
1539
|
var MultiDomainInput = function MultiDomainInput(_ref) {
|
|
1558
1540
|
var _ref$label = _ref.label,
|
|
1559
1541
|
label = _ref$label === void 0 ? "" : _ref$label,
|
|
@@ -1612,7 +1594,7 @@ var MultiDomainInput = function MultiDomainInput(_ref) {
|
|
|
1612
1594
|
"data-testid": "".concat(utils.hyphenize(label), "-input-label"),
|
|
1613
1595
|
children: label
|
|
1614
1596
|
})
|
|
1615
|
-
}), /*#__PURE__*/jsxRuntime.jsx(CreatableSelect, _objectSpread$
|
|
1597
|
+
}), /*#__PURE__*/jsxRuntime.jsx(CreatableSelect, _objectSpread$4({
|
|
1616
1598
|
isMulti: true,
|
|
1617
1599
|
required: true,
|
|
1618
1600
|
classNamePrefix: "neeto-ui-react-select",
|
|
@@ -1622,7 +1604,7 @@ var MultiDomainInput = function MultiDomainInput(_ref) {
|
|
|
1622
1604
|
className: classnames("neeto-ui-react-select__container neeto-ui-react-select__container--medium neeto-ui-email-input__select", {
|
|
1623
1605
|
"neeto-ui-react-select__container--error": !!error
|
|
1624
1606
|
}),
|
|
1625
|
-
styles: _objectSpread$
|
|
1607
|
+
styles: _objectSpread$4(_objectSpread$4({}, CUSTOM_STYLES), {}, {
|
|
1626
1608
|
control: ramda.mergeLeft({
|
|
1627
1609
|
maxHeight: "200px",
|
|
1628
1610
|
overflowY: "auto"
|
|
@@ -1634,7 +1616,7 @@ var MultiDomainInput = function MultiDomainInput(_ref) {
|
|
|
1634
1616
|
},
|
|
1635
1617
|
onInputChange: setInputValue,
|
|
1636
1618
|
onKeyDown: handleKeyDown
|
|
1637
|
-
}, _objectSpread$
|
|
1619
|
+
}, _objectSpread$4({
|
|
1638
1620
|
inputValue: inputValue,
|
|
1639
1621
|
isFocused: isFocused,
|
|
1640
1622
|
onChange: onChange,
|
|
@@ -1656,6 +1638,8 @@ var MultiDomainInput = function MultiDomainInput(_ref) {
|
|
|
1656
1638
|
});
|
|
1657
1639
|
};
|
|
1658
1640
|
|
|
1641
|
+
function ownKeys$3(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1642
|
+
function _objectSpread$3(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$3(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$3(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1659
1643
|
var validateDomains = function validateDomains(value) {
|
|
1660
1644
|
var schema = yup__namespace.array().of(yup__namespace.string().test("verify domains", i18next.t("neetoForm.error.invalidDomain"), function (domain) {
|
|
1661
1645
|
return VALID_DOMAIN_REGEX.test(domain);
|
|
@@ -1691,6 +1675,20 @@ var validateDomains = function validateDomains(value) {
|
|
|
1691
1675
|
};
|
|
1692
1676
|
}());
|
|
1693
1677
|
};
|
|
1678
|
+
var buildHelpPopoverLabelProps = function buildHelpPopoverLabelProps(popoverDescription, helpLink) {
|
|
1679
|
+
return {
|
|
1680
|
+
helpIconProps: {
|
|
1681
|
+
popoverProps: _objectSpread$3({
|
|
1682
|
+
description: popoverDescription
|
|
1683
|
+
}, helpLink && {
|
|
1684
|
+
helpLinkProps: {
|
|
1685
|
+
href: helpLink,
|
|
1686
|
+
label: i18next.t("neetoForm.common.viewHelpArticle")
|
|
1687
|
+
}
|
|
1688
|
+
})
|
|
1689
|
+
}
|
|
1690
|
+
};
|
|
1691
|
+
};
|
|
1694
1692
|
|
|
1695
1693
|
var EmailDomains = function EmailDomains(_ref) {
|
|
1696
1694
|
var name = _ref.name,
|
|
@@ -1743,12 +1741,9 @@ var RestrictDomainsBlock = function RestrictDomainsBlock(_ref) {
|
|
|
1743
1741
|
className: "flex flex-col space-y-4",
|
|
1744
1742
|
"data-testid": "".concat(neetoCist.hyphenate(switchName), "-container"),
|
|
1745
1743
|
children: [/*#__PURE__*/jsxRuntime.jsx(SwitchBlock, {
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
title: title,
|
|
1750
|
-
description: popoverDescription
|
|
1751
|
-
})
|
|
1744
|
+
label: title,
|
|
1745
|
+
labelProps: buildHelpPopoverLabelProps(popoverDescription, helpLink),
|
|
1746
|
+
name: switchName
|
|
1752
1747
|
}), isDomainRestrictionEnabled && /*#__PURE__*/jsxRuntime.jsx(EmailDomains, {
|
|
1753
1748
|
label: description,
|
|
1754
1749
|
name: domainName
|
|
@@ -1767,16 +1762,9 @@ var VerifyEmails = function VerifyEmails() {
|
|
|
1767
1762
|
return /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
1768
1763
|
"data-testid": "email-verification-switch-container",
|
|
1769
1764
|
children: /*#__PURE__*/jsxRuntime.jsx(Switch, {
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
style: "body1",
|
|
1774
|
-
children: /*#__PURE__*/jsxRuntime.jsx(TitleWithHelpPopover, {
|
|
1775
|
-
helpLink: helpLink,
|
|
1776
|
-
title: title,
|
|
1777
|
-
description: popoverDescription
|
|
1778
|
-
})
|
|
1779
|
-
})
|
|
1765
|
+
label: title,
|
|
1766
|
+
labelProps: buildHelpPopoverLabelProps(popoverDescription, helpLink),
|
|
1767
|
+
name: "isVerificationEnabled"
|
|
1780
1768
|
})
|
|
1781
1769
|
});
|
|
1782
1770
|
};
|