@bigbinary/neeto-form-frontend 3.12.1 → 3.12.2
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 +1 -2
- package/dist/BuildForm.js.map +1 -1
- package/dist/ExternalForm.js +2 -3
- package/dist/ExternalForm.js.map +1 -1
- package/dist/Submission.js +170 -155
- package/dist/Submission.js.map +1 -1
- package/dist/UrlBuilder.js +2 -3
- package/dist/UrlBuilder.js.map +1 -1
- package/dist/cjs/BuildForm.js +3 -4
- package/dist/cjs/BuildForm.js.map +1 -1
- package/dist/cjs/ExternalForm.js +2 -3
- package/dist/cjs/ExternalForm.js.map +1 -1
- package/dist/cjs/Submission.js +168 -153
- package/dist/cjs/Submission.js.map +1 -1
- package/dist/cjs/UrlBuilder.js +12 -13
- package/dist/cjs/UrlBuilder.js.map +1 -1
- package/dist/cjs/index.js +2 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/{constants-DdGn1rF4.js → constants-Cg0HQXNC.js} +335 -4
- package/dist/constants-Cg0HQXNC.js.map +1 -0
- package/dist/{constants-CIKOBOUZ.js → constants-DojODK3U.js} +363 -8
- package/dist/constants-DojODK3U.js.map +1 -0
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/dist/{utils-DbT-aQHP.js → utils-CWpYc-_S.js} +2 -3
- package/dist/{utils-DbT-aQHP.js.map → utils-CWpYc-_S.js.map} +1 -1
- package/dist/{utils-F-H352VB.js → utils-DE2Rc41X.js} +6 -7
- package/dist/{utils-F-H352VB.js.map → utils-DE2Rc41X.js.map} +1 -1
- package/package.json +1 -1
- package/types.d.ts +0 -1
- package/dist/constants-Byuu9IoS.js +0 -339
- package/dist/constants-Byuu9IoS.js.map +0 -1
- package/dist/constants-CIKOBOUZ.js.map +0 -1
- package/dist/constants-CN0KQk0z.js +0 -369
- package/dist/constants-CN0KQk0z.js.map +0 -1
- package/dist/constants-DdGn1rF4.js.map +0 -1
package/dist/BuildForm.js
CHANGED
|
@@ -8,8 +8,7 @@ import { showThumbsUpToastr, withEventTargetValue, hyphenize } from '@bigbinary/
|
|
|
8
8
|
import PageLoader from '@bigbinary/neeto-molecules/PageLoader';
|
|
9
9
|
import { equals, path, curry, assoc, prop, dissoc, when, includes, isEmpty, reject, keys, pick, omit, evolve, map, modify, without, mergeLeft, isNil, pipe, filter, isNotNil, uniq, join, pluck, test, difference, split, last, __, concat, F } from 'ramda';
|
|
10
10
|
import { i as useDeleteQuestion, Q as QUESTION_TYPES, j as useFetchQuestions, k as useCreateQuestion, l as useUpdateQuestion, C as CAPTCHA_TYPES, m as useReorderQuestions, h as QUERY_KEYS } from './constants-LQk7jxH9.js';
|
|
11
|
-
import { Q as QUESTION_KIND } from './constants-
|
|
12
|
-
import { b as buildDisplayLabel, I as INDEPENDENT_LABELS_MAP, i as isElementOverflowing, D as Drag, S as SELECTABLE_KINDS, c as isAutoGeneratedQuestion, d as isRichTextQuestion, N as NON_BASIC_LATIN_CHARACTERS_REGEX, R as RESERVED_FIELD_CODES, L as LABEL_FIELDS, e as isDefaultLanguage, f as buildDisabledAddButtonTooltipProps, h as buildAddQuestionButtonProps, v as validateEditorContent, F as FIELD_CODES_REJECT_CHARS_REGEX, j as isImmutableField, Q as QUESTIONS_WITHOUT_FIELD_CODE, k as NON_HIDEABLE_FIELDS, l as NON_READ_ONLY_FIELDS, m as RICH_TEXT_QUESTIONS, n as FILE_TYPES_MAP, o as FILE_GROUPS, M as MINIMUM_OPTIONS, p as RATING_OPTIONS, q as STAR_RATING_MIN_VALUE_OPTIONS, r as STAR_RATING_MAX_VALUE_OPTIONS, s as STAR_RATING_ICONS_MAP, t as QUESTION_ACTIONS, u as QUESTION_KINDS, w as getActiveQuestionKindDetails, x as DEFAULT_AVAILABLE_LANGUAGES, y as QUESTIONS_INITIAL_VALUE, z as buildReorderPayload, A as MANDATORY_KINDS } from './constants-DdGn1rF4.js';
|
|
11
|
+
import { d as buildDisplayLabel, e as INDEPENDENT_LABELS_MAP, i as isElementOverflowing, D as Drag, f as SELECTABLE_KINDS, h as isAutoGeneratedQuestion, j as isRichTextQuestion, N as NON_BASIC_LATIN_CHARACTERS_REGEX, k as RESERVED_FIELD_CODES, L as LABEL_FIELDS, l as isDefaultLanguage, m as buildDisabledAddButtonTooltipProps, n as buildAddQuestionButtonProps, v as validateEditorContent, F as FIELD_CODES_REJECT_CHARS_REGEX, o as isImmutableField, Q as QUESTIONS_WITHOUT_FIELD_CODE, p as NON_HIDEABLE_FIELDS, q as NON_READ_ONLY_FIELDS, r as RICH_TEXT_QUESTIONS, s as FILE_TYPES_MAP, t as FILE_GROUPS, M as MINIMUM_OPTIONS, u as RATING_OPTIONS, w as STAR_RATING_MIN_VALUE_OPTIONS, x as STAR_RATING_MAX_VALUE_OPTIONS, y as STAR_RATING_ICONS_MAP, z as QUESTION_ACTIONS, A as QUESTION_KINDS, a as QUESTION_KIND, B as getActiveQuestionKindDetails, G as DEFAULT_AVAILABLE_LANGUAGES, H as QUESTIONS_INITIAL_VALUE, J as buildReorderPayload, K as MANDATORY_KINDS } from './constants-Cg0HQXNC.js';
|
|
13
12
|
import _slicedToArray from '@babel/runtime/helpers/slicedToArray';
|
|
14
13
|
import _objectWithoutProperties from '@babel/runtime/helpers/objectWithoutProperties';
|
|
15
14
|
import { Droppable, Draggable, DragDropContext } from '@hello-pangea/dnd';
|