@bigbinary/neeto-form-frontend 4.1.7 → 4.1.9
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/BuildForm.js +13 -10
- package/dist/BuildForm.js.map +1 -1
- package/dist/ExternalForm.js +3 -2
- package/dist/ExternalForm.js.map +1 -1
- package/dist/UrlBuilder.js +3 -2
- package/dist/UrlBuilder.js.map +1 -1
- package/dist/cjs/BuildForm.js +13 -10
- package/dist/cjs/BuildForm.js.map +1 -1
- package/dist/cjs/ExternalForm.js +3 -2
- package/dist/cjs/ExternalForm.js.map +1 -1
- package/dist/cjs/UrlBuilder.js +3 -2
- package/dist/cjs/UrlBuilder.js.map +1 -1
- package/dist/cjs/index.js +2 -2
- package/dist/{constants-l3WmeLil.js → constants-D0zli_cv.js} +3 -2
- package/dist/constants-D0zli_cv.js.map +1 -0
- package/dist/{constants-BcJ30DLv.js → constants-DXeRH2r2.js} +3 -1
- package/dist/constants-DXeRH2r2.js.map +1 -0
- package/dist/index.js +2 -2
- package/dist/{utils-hD1qveL_.js → utils-C-ermU02.js} +31 -7
- package/dist/utils-C-ermU02.js.map +1 -0
- package/dist/{utils-bCfzyOOH.js → utils-CdeIdZRi.js} +32 -8
- package/dist/utils-CdeIdZRi.js.map +1 -0
- package/package.json +13 -13
- package/dist/constants-BcJ30DLv.js.map +0 -1
- package/dist/constants-l3WmeLil.js.map +0 -1
- package/dist/utils-bCfzyOOH.js.map +0 -1
- package/dist/utils-hD1qveL_.js.map +0 -1
package/dist/BuildForm.js
CHANGED
|
@@ -4,7 +4,7 @@ import { isPresent, truncate, findBy, isNotPresent, slugify, existsBy, hyphenate
|
|
|
4
4
|
import Spinner from '@bigbinary/neetoui/Spinner';
|
|
5
5
|
import { equals, path, curry, assoc, prop, dissoc, when, includes, isEmpty, reject, keys, pick, omit, evolve, map, mergeLeft, isNil, pipe, filter, isNotNil, uniq, join, pluck, test, paths, difference, split, last, either, T, F } from 'ramda';
|
|
6
6
|
import { k as useDeleteQuestion, Q as QUESTION_TYPES, a as useForm, l as useCreateQuestion, m as useUpdateQuestion, C as CAPTCHA_TYPES, n as useReorderQuestions, i as QUERY_KEYS } from './constants-51SEJjzI.js';
|
|
7
|
-
import { f as buildDisplayLabel, h as INDEPENDENT_LABELS_MAP, i as QUESTION_ACTIONS, j as isElementOverflowing, D as Drag, k as SELECTABLE_KINDS, l as isAutoGeneratedQuestion, m as isRichTextQuestion, N as NON_BASIC_LATIN_CHARACTERS_REGEX, n as RESERVED_FIELD_CODES, d as LABEL_FIELDS, o as isDefaultLanguage, p as buildAddQuestionButtonProps, v as validateEditorContent, F as FIELD_CODES_REJECT_CHARS_REGEX, q as isImmutableField, Q as QUESTIONS_WITHOUT_FIELD_CODE, r as NON_HIDEABLE_FIELDS, s as NON_READ_ONLY_FIELDS, t as RICH_TEXT_QUESTIONS, u as FILE_TYPES_MAP, w as FILE_GROUPS, M as MINIMUM_OPTIONS, x as RATING_OPTIONS, y as STAR_RATING_MIN_VALUE_OPTIONS, z as STAR_RATING_MAX_VALUE_OPTIONS, A as STAR_RATING_ICONS_MAP, B as buildDisabledAddButtonHelpPopoverProps, G as buildReorderPayload, H as isMandatoryField, J as QUESTION_KINDS, a as QUESTION_KIND, K as getActiveQuestionKindDetails, O as DEFAULT_AVAILABLE_LANGUAGES,
|
|
7
|
+
import { f as buildDisplayLabel, h as INDEPENDENT_LABELS_MAP, i as QUESTION_ACTIONS, j as isElementOverflowing, D as Drag, k as SELECTABLE_KINDS, l as isAutoGeneratedQuestion, m as isRichTextQuestion, N as NON_BASIC_LATIN_CHARACTERS_REGEX, n as RESERVED_FIELD_CODES, d as LABEL_FIELDS, o as isDefaultLanguage, p as buildAddQuestionButtonProps, v as validateEditorContent, F as FIELD_CODES_REJECT_CHARS_REGEX, q as isImmutableField, Q as QUESTIONS_WITHOUT_FIELD_CODE, r as NON_HIDEABLE_FIELDS, s as NON_READ_ONLY_FIELDS, t as RICH_TEXT_QUESTIONS, u as FILE_TYPES_MAP, w as FILE_GROUPS, M as MINIMUM_OPTIONS, x as RATING_OPTIONS, y as STAR_RATING_MIN_VALUE_OPTIONS, z as STAR_RATING_MAX_VALUE_OPTIONS, A as STAR_RATING_ICONS_MAP, B as buildDisabledAddButtonHelpPopoverProps, G as buildReorderPayload, H as isMandatoryField, J as QUESTION_KINDS, a as QUESTION_KIND, K as getActiveQuestionKindDetails, O as DEFAULT_AVAILABLE_LANGUAGES, T as DEFAULT_ADVANCED_FEATURES, U as QUESTIONS_INITIAL_VALUE } from './constants-D0zli_cv.js';
|
|
8
8
|
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
|
|
9
9
|
import { useState, useRef, useEffect, createElement } from 'react';
|
|
10
10
|
import { Droppable, Draggable, DragDropContext } from '@hello-pangea/dnd';
|
|
@@ -1742,15 +1742,18 @@ var VerifyEmails = function VerifyEmails() {
|
|
|
1742
1742
|
var _mergeLeft = mergeLeft(hostSpecificTranslations, EMAIL_VERIFICATION_TRANSLATIONS),
|
|
1743
1743
|
title = _mergeLeft.title,
|
|
1744
1744
|
popoverDescription = _mergeLeft.popoverDescription;
|
|
1745
|
-
return /*#__PURE__*/jsx(
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1745
|
+
return /*#__PURE__*/jsx("div", {
|
|
1746
|
+
"data-cy": "email-verification-switch-container",
|
|
1747
|
+
children: /*#__PURE__*/jsx(Switch, {
|
|
1748
|
+
name: "isVerificationEnabled",
|
|
1749
|
+
label: /*#__PURE__*/jsx(Typography, {
|
|
1750
|
+
component: "span",
|
|
1751
|
+
style: "body1",
|
|
1752
|
+
children: /*#__PURE__*/jsx(TitleWithHelpPopover, {
|
|
1753
|
+
helpLink: helpLink,
|
|
1754
|
+
title: title,
|
|
1755
|
+
description: popoverDescription
|
|
1756
|
+
})
|
|
1754
1757
|
})
|
|
1755
1758
|
})
|
|
1756
1759
|
});
|