@bigbinary/neeto-form-frontend 4.4.5 → 4.4.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.
Files changed (58) hide show
  1. package/README.md +4 -1
  2. package/app/javascript/src/translations/en.json +10 -1
  3. package/package.json +11 -15
  4. package/types.d.ts +1 -0
  5. package/dist/BuildForm.js +0 -3035
  6. package/dist/BuildForm.js.map +0 -1
  7. package/dist/ExternalForm.js +0 -639
  8. package/dist/ExternalForm.js.map +0 -1
  9. package/dist/NeetoFormProvider.js +0 -11
  10. package/dist/NeetoFormProvider.js.map +0 -1
  11. package/dist/Submission.js +0 -2832
  12. package/dist/Submission.js.map +0 -1
  13. package/dist/UrlBuilder.js +0 -309
  14. package/dist/UrlBuilder.js.map +0 -1
  15. package/dist/buildForm-Bdc3ubm4.js +0 -38
  16. package/dist/buildForm-Bdc3ubm4.js.map +0 -1
  17. package/dist/buildForm-CkVmGF-A.js +0 -35
  18. package/dist/buildForm-CkVmGF-A.js.map +0 -1
  19. package/dist/cjs/BuildForm.js +0 -3056
  20. package/dist/cjs/BuildForm.js.map +0 -1
  21. package/dist/cjs/ExternalForm.js +0 -641
  22. package/dist/cjs/ExternalForm.js.map +0 -1
  23. package/dist/cjs/NeetoFormProvider.js +0 -13
  24. package/dist/cjs/NeetoFormProvider.js.map +0 -1
  25. package/dist/cjs/Submission.js +0 -2834
  26. package/dist/cjs/Submission.js.map +0 -1
  27. package/dist/cjs/UrlBuilder.js +0 -311
  28. package/dist/cjs/UrlBuilder.js.map +0 -1
  29. package/dist/cjs/hooks.js +0 -33
  30. package/dist/cjs/hooks.js.map +0 -1
  31. package/dist/cjs/index.js +0 -112
  32. package/dist/cjs/index.js.map +0 -1
  33. package/dist/constants-30230o5k.js +0 -496
  34. package/dist/constants-30230o5k.js.map +0 -1
  35. package/dist/constants-DNNZYQ9X.js +0 -515
  36. package/dist/constants-DNNZYQ9X.js.map +0 -1
  37. package/dist/hooks.js +0 -20
  38. package/dist/hooks.js.map +0 -1
  39. package/dist/index-BfavwyMH.js +0 -43
  40. package/dist/index-BfavwyMH.js.map +0 -1
  41. package/dist/index-Dz5Yvk3n.js +0 -51
  42. package/dist/index-Dz5Yvk3n.js.map +0 -1
  43. package/dist/index.js +0 -94
  44. package/dist/index.js.map +0 -1
  45. package/dist/main.css +0 -2
  46. package/dist/main.css.map +0 -1
  47. package/dist/useFormSubmission-CdKlP6De.js +0 -24
  48. package/dist/useFormSubmission-CdKlP6De.js.map +0 -1
  49. package/dist/useFormSubmission-zyh3tA0H.js +0 -22
  50. package/dist/useFormSubmission-zyh3tA0H.js.map +0 -1
  51. package/dist/utils-BRC5Gg_A.js +0 -2641
  52. package/dist/utils-BRC5Gg_A.js.map +0 -1
  53. package/dist/utils-DklENIyr.js +0 -2610
  54. package/dist/utils-DklENIyr.js.map +0 -1
  55. package/dist/yup-B3B89G9K.js +0 -1074
  56. package/dist/yup-B3B89G9K.js.map +0 -1
  57. package/dist/yup-DL9p9dFl.js +0 -994
  58. package/dist/yup-DL9p9dFl.js.map +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"file":"constants-DNNZYQ9X.js","sources":["../app/javascript/src/common/constants.js","../app/javascript/src/apis/neeto_form.js","../app/javascript/src/hooks/utils.js","../app/javascript/src/hooks/useFormApi.js","../app/javascript/src/components/constants.js"],"sourcesContent":["export const STRING_FILTER_OPTIONS = [\n { value: \"cont\", label: \"Contains\" },\n { value: \"eq\", label: \"Equals\" },\n { value: \"not_eq\", label: \"Not Equals\" },\n { value: \"start\", label: \"Starts With\" },\n { value: \"end\", label: \"Ends With\" },\n];\nexport const BASE_URL = \"/neeto_form\";\n\nexport const BASIC_FORM_ATTRIBUTES = [\"title\", \"slug\", \"enabled\", \"questions\"];\n\nexport const QUERY_KEYS = {\n QUESTIONS: \"neetoFormQuestions\",\n SUBMISSIONS: \"neetoFormSubmissions\",\n SUBMISSION: \"neetoFormSubmission\",\n FORMS: \"neetoFormForms\",\n FORM: \"neetoFormForm\",\n FORMIK: \"neetoFormFormik\",\n};\n\nexport const FORMS_URL = `${BASE_URL}/api/v1/forms`;\nexport const FORM_URL = `${FORMS_URL}/:formId`;\n\nexport const QUESTIONS_URL = `${FORM_URL}/questions`;\nexport const QUESTION_URL = `${QUESTIONS_URL}/:questionId`;\nexport const PUBLIC_QUESTIONS_URL = `${FORM_URL}/public/questions`;\nexport const REORDER_QUESTIONS_URL = `${QUESTIONS_URL}/reorder`;\n\nexport const QUESTION_RESPONSES_URL = `${FORM_URL}/question_responses`;\nexport const PUBLIC_QUESTION_RESPONSES_URL = `${FORM_URL}/public/question_responses`;\n\nexport const SUBMISSIONS_URL = `${FORM_URL}/submissions`;\nexport const SUBMISSION_URL = `${SUBMISSIONS_URL}/:submissionId`;\nexport const PUBLIC_SUBMISSION_URL = `${FORM_URL}/public/submissions/:submissionId`;\n\nexport const EMAIL_VERIFICATIONS_CREATE_URL = `${FORM_URL}/public/email_verifications`;\nexport const EMAIL_VERIFICATIONS_VERIFY_URL = `${FORM_URL}/public/email_verifications/verify`;\n","import axios from \"axios\";\nimport i18next from \"i18next\";\nimport { buildUrl } from \"neetocommons/utils\";\n\nimport {\n FORMS_URL,\n FORM_URL,\n PUBLIC_QUESTIONS_URL,\n PUBLIC_QUESTION_RESPONSES_URL,\n PUBLIC_SUBMISSION_URL,\n QUESTIONS_URL,\n QUESTION_RESPONSES_URL,\n QUESTION_URL,\n REORDER_QUESTIONS_URL,\n SUBMISSIONS_URL,\n SUBMISSION_URL,\n} from \"src/common/constants\";\n\nconst getForms = params => axios.get(FORMS_URL, { params });\nconst createForm = payload => axios.post(FORMS_URL, payload);\nconst updateForm = (formId, payload) =>\n axios.patch(buildUrl(FORM_URL, { formId }), payload);\nconst destroyForm = formId => axios.delete(buildUrl(FORM_URL, { formId }));\n\nconst getQuestions = (formId, language = i18next.resolvedLanguage) =>\n axios.get(buildUrl(QUESTIONS_URL, { formId }), { params: { language } });\n\nconst getPublicQuestions = (formId, language = i18next.resolvedLanguage) =>\n axios.get(buildUrl(PUBLIC_QUESTIONS_URL, { formId }), {\n params: { language },\n });\n\nconst createQuestion = (formId, payload) =>\n axios.post(buildUrl(QUESTIONS_URL, { formId }), payload);\n\nconst updateQuestion = ({ formId, questionId, payload }) =>\n axios.patch(buildUrl(QUESTION_URL, { formId, questionId }), payload);\n\nconst deleteQuestion = (formId, questionId) =>\n axios.delete(buildUrl(QUESTION_URL, { formId, questionId }));\n\nconst reorderQuestions = (formId, payload) =>\n axios.post(buildUrl(REORDER_QUESTIONS_URL, { formId }), payload);\n\nconst submitPublicForm = (formId, payload) =>\n axios.post(buildUrl(PUBLIC_QUESTION_RESPONSES_URL, { formId }), payload);\n\nconst updatePublicSubmission = (formId, payload) =>\n axios.put(buildUrl(PUBLIC_QUESTION_RESPONSES_URL, { formId }), payload);\n\nconst getPublicSubmission = (\n formId,\n submissionId,\n language = i18next.resolvedLanguage\n) =>\n axios.get(buildUrl(PUBLIC_SUBMISSION_URL, { formId, submissionId }), {\n params: { language },\n });\n\nconst getSubmissions = (formId, language = i18next.resolvedLanguage) =>\n axios.get(buildUrl(SUBMISSIONS_URL, { formId }), {\n params: { language },\n });\n\nconst getSubmission = (\n formId,\n submissionId,\n language = i18next.resolvedLanguage\n) =>\n axios.get(buildUrl(SUBMISSION_URL, { formId, submissionId }), {\n params: { language },\n });\n\nconst updateSubmission = (formId, payload) =>\n axios.put(buildUrl(QUESTION_RESPONSES_URL, { formId }), payload);\n\nconst neetoFormApi = {\n getForms,\n createForm,\n updateForm,\n destroyForm,\n getQuestions,\n getPublicQuestions,\n createQuestion,\n updateQuestion,\n deleteQuestion,\n reorderQuestions,\n submitPublicForm,\n getSubmissions,\n getSubmission,\n getPublicSubmission,\n updateSubmission,\n updatePublicSubmission,\n};\n\nexport default neetoFormApi;\n","import { assoc } from \"ramda\";\n\nimport { QUERY_KEYS } from \"src/common/constants\";\n\nexport const handleQuestionMutationSuccess = ({\n args,\n formId,\n language,\n queryClient,\n onSuccess,\n}) => {\n const [data] = args;\n\n queryClient.invalidateQueries({\n queryKey: [QUERY_KEYS.QUESTIONS, formId],\n });\n\n queryClient.invalidateQueries({\n queryKey: [QUERY_KEYS.QUESTIONS, `preview/${formId}`],\n });\n\n queryClient.setQueryData(\n [QUERY_KEYS.QUESTIONS, formId, language],\n assoc(\"questions\", data.questions)\n );\n\n queryClient.setQueryData(\n [QUERY_KEYS.QUESTIONS, `preview/${formId}`, language],\n assoc(\"questions\", data.questions)\n );\n\n onSuccess?.(...args);\n};\n","import {\n useQuery,\n useMutation,\n useQueryClient,\n keepPreviousData,\n} from \"@tanstack/react-query\";\nimport i18next from \"i18next\";\nimport { filterNonNull } from \"neetocist\";\nimport { DEFAULT_PAGE_INDEX, DEFAULT_PAGE_SIZE } from \"neetocommons/constants\";\nimport { useMutationWithInvalidation } from \"neetocommons/react-utils\";\nimport { mergeLeft, pick } from \"ramda\";\n\nimport neetoFormApi from \"apis/neeto_form\";\nimport { BASIC_FORM_ATTRIBUTES, QUERY_KEYS } from \"common/constants\";\n\nimport { handleQuestionMutationSuccess } from \"./utils\";\n\nexport const usePublicForm = ({\n formId,\n preview = null,\n language = i18next.resolvedLanguage,\n ...options\n}) =>\n useQuery({\n queryKey: [\n QUERY_KEYS.QUESTIONS,\n preview ? `preview/${formId}` : formId,\n language,\n ],\n queryFn: () => neetoFormApi.getPublicQuestions(formId, language),\n placeholderData: keepPreviousData,\n ...options,\n });\n\nexport const useForm = ({\n formId,\n language = i18next.resolvedLanguage,\n ...options\n}) =>\n useQuery({\n queryKey: [QUERY_KEYS.QUESTIONS, formId, language],\n queryFn: () => neetoFormApi.getQuestions(formId, language),\n placeholderData: keepPreviousData,\n ...options,\n });\n\nexport const useCreateForm = (options, language = i18next.resolvedLanguage) => {\n const queryClient = useQueryClient();\n\n return useMutation({\n mutationFn: neetoFormApi.createForm,\n ...options,\n onSuccess: form => {\n queryClient.setQueryData(\n [QUERY_KEYS.QUESTIONS],\n forms => forms && [...forms, form]\n );\n queryClient.setQueryData([QUERY_KEYS.QUESTIONS, form.id, language], form);\n queryClient.setQueryData(\n [QUERY_KEYS.QUESTIONS, `preview/${form.id}`, language],\n form\n );\n queryClient.invalidateQueries({ queryKey: [QUERY_KEYS.FORMS] });\n options?.onSuccess?.(form);\n },\n });\n};\n\nexport const useUpdateForm = (options, language = i18next.resolvedLanguage) => {\n const queryClient = useQueryClient();\n\n return useMutation({\n mutationFn: ({ id, values }) => neetoFormApi.updateForm(id, values),\n ...options,\n onSuccess: (data, { id }) => {\n queryClient.setQueryData(\n [QUERY_KEYS.QUESTIONS, id, language],\n mergeLeft(pick(BASIC_FORM_ATTRIBUTES, data))\n );\n\n queryClient.setQueryData(\n [QUERY_KEYS.QUESTIONS, `preview/${id}`, language],\n mergeLeft(pick(BASIC_FORM_ATTRIBUTES, data))\n );\n queryClient.invalidateQueries({ queryKey: [QUERY_KEYS.FORMS] });\n queryClient.invalidateQueries({ queryKey: [QUERY_KEYS.QUESTIONS, id] });\n queryClient.invalidateQueries({\n queryKey: [QUERY_KEYS.QUESTIONS, `preview/${id}`],\n });\n\n options.onSuccess && options.onSuccess(data);\n },\n });\n};\n\nexport const useCreateQuestion = (formId, language, options = {}) => {\n const queryClient = useQueryClient();\n\n return useMutation({\n mutationFn: payload =>\n neetoFormApi.createQuestion(formId, filterNonNull(payload)),\n ...options,\n onSuccess: (...args) =>\n handleQuestionMutationSuccess({\n args,\n formId,\n language,\n queryClient,\n onSuccess: options.onSuccess,\n }),\n });\n};\n\nexport const useUpdateQuestion = (formId, language, options = {}) => {\n const queryClient = useQueryClient();\n\n return useMutation({\n mutationFn: ({ questionId, payload }) =>\n neetoFormApi.updateQuestion({\n formId,\n questionId,\n payload: filterNonNull(payload),\n }),\n ...options,\n onSuccess: (...args) =>\n handleQuestionMutationSuccess({\n args,\n formId,\n language,\n queryClient,\n onSuccess: options.onSuccess,\n }),\n });\n};\n\nexport const useDeleteQuestion = (formId, language, options = {}) => {\n const queryClient = useQueryClient();\n\n return useMutation({\n mutationFn: questionId => neetoFormApi.deleteQuestion(formId, questionId),\n ...options,\n onSuccess: (...args) =>\n handleQuestionMutationSuccess({\n args,\n formId,\n language,\n queryClient,\n onSuccess: options.onSuccess,\n }),\n });\n};\n\nexport const useReorderQuestions = (formId, language, options = {}) => {\n const queryClient = useQueryClient();\n\n return useMutation({\n mutationFn: payload =>\n neetoFormApi.reorderQuestions(formId, filterNonNull(payload)),\n ...options,\n onSuccess: (...args) =>\n handleQuestionMutationSuccess({\n args,\n formId,\n language,\n queryClient,\n onSuccess: options.onSuccess,\n }),\n });\n};\n\nexport const useForms = ({\n page = DEFAULT_PAGE_INDEX,\n pageSize = DEFAULT_PAGE_SIZE,\n ...options\n} = {}) =>\n useQuery({\n queryKey: [QUERY_KEYS.FORMS, page],\n queryFn: () => neetoFormApi.getForms({ page, pageSize }),\n placeholderData: keepPreviousData,\n ...options,\n });\n\nexport const useDeleteForm = options =>\n useMutationWithInvalidation(({ id }) => neetoFormApi.destroyForm(id), {\n ...options,\n keysToInvalidate: [\n [QUERY_KEYS.FORMS],\n (_, { id }) => [QUERY_KEYS.QUESTIONS, id],\n (_, { id }) => [QUERY_KEYS.QUESTIONS, `preview/${id}`],\n ],\n onSuccess: (...args) => {\n options.onSuccess && options.onSuccess(...args);\n },\n });\n\nexport const useSubmissions = ({ formId, ...options }) =>\n useQuery({\n queryKey: [QUERY_KEYS.SUBMISSIONS, formId],\n queryFn: () => neetoFormApi.getPublicSubmissions(formId),\n placeholderData: keepPreviousData,\n ...options,\n });\n\nexport const useSubmission = ({\n formId,\n submissionId,\n fetchPublicSubmission = true,\n ...options\n}) =>\n useQuery({\n queryKey: [QUERY_KEYS.SUBMISSION, formId, submissionId],\n queryFn: () =>\n fetchPublicSubmission\n ? neetoFormApi.getPublicSubmission(formId, submissionId)\n : neetoFormApi.getSubmission(formId, submissionId),\n placeholderData: keepPreviousData,\n ...options,\n });\n\nexport const useCreateSubmission = options => {\n const queryClient = useQueryClient();\n\n return useMutation({\n mutationFn: ({ formId, values }) =>\n neetoFormApi.submitPublicForm(formId, values),\n ...options,\n onSuccess: (...args) => {\n const [data, { formId }] = args;\n queryClient.invalidateQueries({\n queryKey: [QUERY_KEYS.SUBMISSIONS, formId],\n });\n\n queryClient.setQueryData(\n [QUERY_KEYS.SUBMISSION, formId, data?.submission?.id],\n data?.submission\n );\n\n queryClient.invalidateQueries({\n queryKey: [QUERY_KEYS.SUBMISSION, formId, data?.submission?.id],\n });\n options.onSuccess && options.onSuccess(...args);\n },\n });\n};\n\nexport const useUpdateSubmission = options => {\n const queryClient = useQueryClient();\n\n return useMutation({\n mutationFn: ({ formId, values }) =>\n neetoFormApi.updatePublicSubmission(formId, values),\n ...options,\n onSuccess: (...args) => {\n const [data, { formId }] = args;\n queryClient.invalidateQueries({\n queryKey: [[QUERY_KEYS.SUBMISSIONS, formId]],\n });\n\n queryClient.setQueryData(\n [QUERY_KEYS.SUBMISSION, formId, data?.submission?.id],\n data?.submission\n );\n\n queryClient.invalidateQueries({\n queryKey: [[QUERY_KEYS.SUBMISSION, formId, data.submission.id]],\n });\n options.onSuccess && options.onSuccess(...args);\n },\n });\n};\n","export const QUESTION_TYPES = {\n NAME: \"name\",\n PHONE: \"phone\",\n EMAIL: \"email\",\n ADDITIONAL_GUESTS: \"additional_guests\",\n TEXT: \"text\",\n TEXTAREA: \"textarea\",\n RICH_TEXT: \"rich_text\",\n INTEGER: \"integer\",\n DECIMAL: \"decimal\",\n PARAGRAPH: \"paragraph\",\n TERMS_AND_CONDITION: \"termsandcondition\",\n CONDITION: \"condition\",\n CHECKBOX: \"checkbox\",\n RADIO: \"radio\",\n DROPDOWN: \"dropdown\",\n STAR_RATING: \"star_rating\",\n OPINION_SCALE: \"opinion_scale\",\n RATING: \"rating\",\n DATE: \"date\",\n FILE_UPLOAD: \"file_upload\",\n CAPTCHA: \"captcha\",\n SMS_REMINDER: \"sms_reminder\",\n ADDRESS: \"address\",\n};\n\nexport const CAPTCHA_TYPES = {\n RECAPTCHA_V2: \"recaptcha_v2\",\n MATH_CAPTCHA: \"math_captcha\",\n};\n"],"names":["BASE_URL","BASIC_FORM_ATTRIBUTES","QUERY_KEYS","QUESTIONS","SUBMISSIONS","SUBMISSION","FORMS","FORM","FORMIK","FORMS_URL","concat","FORM_URL","QUESTIONS_URL","QUESTION_URL","PUBLIC_QUESTIONS_URL","REORDER_QUESTIONS_URL","QUESTION_RESPONSES_URL","PUBLIC_QUESTION_RESPONSES_URL","SUBMISSIONS_URL","SUBMISSION_URL","PUBLIC_SUBMISSION_URL","EMAIL_VERIFICATIONS_CREATE_URL","EMAIL_VERIFICATIONS_VERIFY_URL","getForms","params","axios","get","createForm","payload","post","updateForm","formId","patch","buildUrl","destroyForm","getQuestions","language","arguments","length","undefined","i18next","resolvedLanguage","getPublicQuestions","createQuestion","updateQuestion","_ref","questionId","deleteQuestion","reorderQuestions","submitPublicForm","updatePublicSubmission","put","getPublicSubmission","submissionId","getSubmissions","getSubmission","updateSubmission","neetoFormApi","handleQuestionMutationSuccess","args","queryClient","onSuccess","_args","_slicedToArray","data","invalidateQueries","queryKey","setQueryData","assoc","questions","apply","_toConsumableArray","usePublicForm","_ref$preview","preview","_ref$language","options","_objectWithoutProperties","_excluded","useQuery","_objectSpread","queryFn","placeholderData","keepPreviousData","useForm","_ref2","_ref2$language","_excluded2","useCreateForm","useQueryClient","useMutation","mutationFn","form","_options$onSuccess","forms","id","call","useUpdateForm","_ref3","values","_ref4","mergeLeft","pick","useCreateQuestion","filterNonNull","_len","Array","_key","useUpdateQuestion","_ref5","_len2","_key2","useDeleteQuestion","_len3","_key3","useReorderQuestions","_len4","_key4","useForms","_ref6","_ref6$page","page","DEFAULT_PAGE_INDEX","_ref6$pageSize","pageSize","DEFAULT_PAGE_SIZE","_excluded3","useDeleteForm","useMutationWithInvalidation","_ref7","keysToInvalidate","_","_ref8","_ref9","useSubmission","_ref11","_ref11$fetchPublicSub","fetchPublicSubmission","_excluded5","useCreateSubmission","_ref12","_data$submission","_data$submission2","_len5","_key5","submission","useUpdateSubmission","_ref13","_data$submission3","_len6","_key6","QUESTION_TYPES","NAME","PHONE","EMAIL","ADDITIONAL_GUESTS","TEXT","TEXTAREA","RICH_TEXT","INTEGER","DECIMAL","PARAGRAPH","TERMS_AND_CONDITION","CONDITION","CHECKBOX","RADIO","DROPDOWN","STAR_RATING","OPINION_SCALE","RATING","DATE","FILE_UPLOAD","CAPTCHA","SMS_REMINDER","ADDRESS","CAPTCHA_TYPES","RECAPTCHA_V2","MATH_CAPTCHA"],"mappings":"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"}
package/dist/hooks.js DELETED
@@ -1,20 +0,0 @@
1
- export { c as useCreateForm, e as useDeleteForm, a as useForm, u as useForms, b as usePublicForm, d as useUpdateForm } from './constants-30230o5k.js';
2
- export { u as useFormSubmission } from './useFormSubmission-zyh3tA0H.js';
3
- export { u as useBuildFormState } from './buildForm-CkVmGF-A.js';
4
- import '@babel/runtime/helpers/toConsumableArray';
5
- import '@babel/runtime/helpers/defineProperty';
6
- import '@babel/runtime/helpers/objectWithoutProperties';
7
- import '@tanstack/react-query';
8
- import 'i18next';
9
- import '@bigbinary/neeto-cist';
10
- import '@bigbinary/neeto-commons-frontend/constants';
11
- import '@bigbinary/neeto-commons-frontend/react-utils';
12
- import 'ramda';
13
- import 'axios';
14
- import '@bigbinary/neeto-commons-frontend/utils';
15
- import '@babel/runtime/helpers/slicedToArray';
16
- import 'zustand';
17
- import './index-BfavwyMH.js';
18
- import '@babel/runtime/helpers/typeof';
19
- import '@bigbinary/neeto-editor/utils';
20
- //# sourceMappingURL=hooks.js.map
package/dist/hooks.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"hooks.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
@@ -1,43 +0,0 @@
1
- import '@babel/runtime/helpers/typeof';
2
- import { t } from 'i18next';
3
- import { isEditorEmpty } from '@bigbinary/neeto-editor/utils';
4
- import { compose, isEmpty, trim, useWith, path, split, isNotNil, either, isNil, values, equals } from 'ramda';
5
- import { Q as QUESTION_TYPES } from './constants-30230o5k.js';
6
-
7
- var isBlank = compose(isEmpty, trim);
8
- var parseServerError = function parseServerError(error) {
9
- var _error$notice;
10
- return (_error$notice = error.notice) !== null && _error$notice !== void 0 ? _error$notice : t("neetoForm.common.somethingWentWrong");
11
- };
12
- var isEmptyValues = function isEmptyValues(obj) {
13
- return either(isNil, isEmpty)(obj) ? true : values(obj).every(function (value) {
14
- if (isEmpty(value)) {
15
- return true;
16
- } else if (Array.isArray(value)) {
17
- return equals([false, false, false], value);
18
- }
19
- return !value;
20
- });
21
- };
22
-
23
- // eslint-disable-next-line react-hooks/rules-of-hooks
24
- useWith(path, [split(".")]);
25
- var isFunction = function isFunction(obj) {
26
- return typeof obj === "function";
27
- };
28
- var fieldWithFallback = function fieldWithFallback(question, fieldName) {
29
- var hasRichContent = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
30
- var fallback = question["".concat(fieldName, "Fallback")];
31
- var field = question[fieldName];
32
- var isFieldEmpty = hasRichContent ? isEditorEmpty(field) : isEmpty(field);
33
- return isFieldEmpty && isNotNil(fallback) ? fallback : field;
34
- };
35
- var getComponentDisplayName = function getComponentDisplayName(Component) {
36
- return Component.displayName || Component.name || "Component";
37
- };
38
- var isNameQuestion = function isNameQuestion(kind) {
39
- return kind === QUESTION_TYPES.NAME;
40
- };
41
-
42
- export { isBlank as a, isEmptyValues as b, isNameQuestion as c, fieldWithFallback as f, getComponentDisplayName as g, isFunction as i, parseServerError as p };
43
- //# sourceMappingURL=index-BfavwyMH.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index-BfavwyMH.js","sources":["../app/javascript/src/utils/index.js"],"sourcesContent":["import { t } from \"i18next\";\nimport { isEditorEmpty } from \"neetoeditor\";\nimport {\n compose,\n isEmpty,\n trim,\n isNil,\n equals,\n values,\n either,\n useWith,\n path,\n split,\n isNotNil,\n} from \"ramda\";\n\nimport { QUESTION_TYPES } from \"components/constants\";\n\nexport const isBlank = compose(isEmpty, trim);\n\nexport const parseServerError = error =>\n error.notice ?? t(\"neetoForm.common.somethingWentWrong\");\n\nexport const isPlainObject = obj =>\n typeof obj === \"object\" && !Array.isArray(obj) && obj !== null;\n\nexport const isStringOrNumber = obj =>\n typeof obj === \"string\" || typeof obj === \"number\";\n\nexport const isEmptyValues = obj =>\n either(isNil, isEmpty)(obj)\n ? true\n : values(obj).every(value => {\n if (isEmpty(value)) {\n return true;\n } else if (Array.isArray(value)) {\n return equals([false, false, false], value);\n }\n\n return !value;\n });\n\n// eslint-disable-next-line react-hooks/rules-of-hooks\nexport const dotPath = useWith(path, [split(\".\")]);\n\nexport const isFunction = obj => typeof obj === \"function\";\n\nexport const fieldWithFallback = (\n question,\n fieldName,\n hasRichContent = false\n) => {\n const fallback = question[`${fieldName}Fallback`];\n const field = question[fieldName];\n const isFieldEmpty = hasRichContent ? isEditorEmpty(field) : isEmpty(field);\n\n return isFieldEmpty && isNotNil(fallback) ? fallback : field;\n};\n\nexport const getComponentDisplayName = Component =>\n Component.displayName || Component.name || \"Component\";\n\nexport const isNameQuestion = kind => kind === QUESTION_TYPES.NAME;\n"],"names":["isBlank","compose","isEmpty","trim","parseServerError","error","_error$notice","notice","t","isEmptyValues","obj","either","isNil","values","every","value","Array","isArray","equals","useWith","path","split","isFunction","fieldWithFallback","question","fieldName","hasRichContent","arguments","length","undefined","fallback","concat","field","isFieldEmpty","isEditorEmpty","isNotNil","getComponentDisplayName","Component","displayName","name","isNameQuestion","kind","QUESTION_TYPES","NAME"],"mappings":";;;;;;AAkBO,IAAMA,OAAO,GAAGC,OAAO,CAACC,OAAO,EAAEC,IAAI;IAE/BC,gBAAgB,GAAG,SAAnBA,gBAAgBA,CAAGC,KAAK,EAAA;AAAA,EAAA,IAAAC,aAAA;AAAA,EAAA,OAAA,CAAAA,aAAA,GACnCD,KAAK,CAACE,MAAM,MAAA,IAAA,IAAAD,aAAA,KAAA,KAAA,CAAA,GAAAA,aAAA,GAAIE,CAAC,CAAC,qCAAqC,CAAC;AAAA;IAQ7CC,aAAa,GAAG,SAAhBA,aAAaA,CAAGC,GAAG,EAAA;EAAA,OAC9BC,MAAM,CAACC,KAAK,EAAEV,OAAO,CAAC,CAACQ,GAAG,CAAC,GACvB,IAAI,GACJG,MAAM,CAACH,GAAG,CAAC,CAACI,KAAK,CAAC,UAAAC,KAAK,EAAI;AACzB,IAAA,IAAIb,OAAO,CAACa,KAAK,CAAC,EAAE;AAClB,MAAA,OAAO,IAAI;KACZ,MAAM,IAAIC,KAAK,CAACC,OAAO,CAACF,KAAK,CAAC,EAAE;MAC/B,OAAOG,MAAM,CAAC,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,EAAEH,KAAK,CAAC;AAC7C;AAEA,IAAA,OAAO,CAACA,KAAK;AACf,GAAC,CAAC;AAAA;;AAER;AACuBI,OAAO,CAACC,IAAI,EAAE,CAACC,KAAK,CAAC,GAAG,CAAC,CAAC;IAEpCC,UAAU,GAAG,SAAbA,UAAUA,CAAGZ,GAAG,EAAA;EAAA,OAAI,OAAOA,GAAG,KAAK,UAAU;AAAA;AAEnD,IAAMa,iBAAiB,GAAG,SAApBA,iBAAiBA,CAC5BC,QAAQ,EACRC,SAAS,EAEN;AAAA,EAAA,IADHC,cAAc,GAAAC,SAAA,CAAAC,MAAA,GAAA,CAAA,IAAAD,SAAA,CAAA,CAAA,CAAA,KAAAE,SAAA,GAAAF,SAAA,CAAA,CAAA,CAAA,GAAG,KAAK;AAEtB,EAAA,IAAMG,QAAQ,GAAGN,QAAQ,IAAAO,MAAA,CAAIN,SAAS,EAAW,UAAA,CAAA,CAAA;AACjD,EAAA,IAAMO,KAAK,GAAGR,QAAQ,CAACC,SAAS,CAAC;AACjC,EAAA,IAAMQ,YAAY,GAAGP,cAAc,GAAGQ,aAAa,CAACF,KAAK,CAAC,GAAG9B,OAAO,CAAC8B,KAAK,CAAC;EAE3E,OAAOC,YAAY,IAAIE,QAAQ,CAACL,QAAQ,CAAC,GAAGA,QAAQ,GAAGE,KAAK;AAC9D;IAEaI,uBAAuB,GAAG,SAA1BA,uBAAuBA,CAAGC,SAAS,EAAA;EAAA,OAC9CA,SAAS,CAACC,WAAW,IAAID,SAAS,CAACE,IAAI,IAAI,WAAW;AAAA;IAE3CC,cAAc,GAAG,SAAjBA,cAAcA,CAAGC,IAAI,EAAA;AAAA,EAAA,OAAIA,IAAI,KAAKC,cAAc,CAACC,IAAI;AAAA;;;;"}
@@ -1,51 +0,0 @@
1
- 'use strict';
2
-
3
- require('@babel/runtime/helpers/typeof');
4
- var i18next = require('i18next');
5
- var utils = require('@bigbinary/neeto-editor/utils');
6
- var ramda = require('ramda');
7
- var constants = require('./constants-DNNZYQ9X.js');
8
-
9
- var isBlank = ramda.compose(ramda.isEmpty, ramda.trim);
10
- var parseServerError = function parseServerError(error) {
11
- var _error$notice;
12
- return (_error$notice = error.notice) !== null && _error$notice !== void 0 ? _error$notice : i18next.t("neetoForm.common.somethingWentWrong");
13
- };
14
- var isEmptyValues = function isEmptyValues(obj) {
15
- return ramda.either(ramda.isNil, ramda.isEmpty)(obj) ? true : ramda.values(obj).every(function (value) {
16
- if (ramda.isEmpty(value)) {
17
- return true;
18
- } else if (Array.isArray(value)) {
19
- return ramda.equals([false, false, false], value);
20
- }
21
- return !value;
22
- });
23
- };
24
-
25
- // eslint-disable-next-line react-hooks/rules-of-hooks
26
- ramda.useWith(ramda.path, [ramda.split(".")]);
27
- var isFunction = function isFunction(obj) {
28
- return typeof obj === "function";
29
- };
30
- var fieldWithFallback = function fieldWithFallback(question, fieldName) {
31
- var hasRichContent = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
32
- var fallback = question["".concat(fieldName, "Fallback")];
33
- var field = question[fieldName];
34
- var isFieldEmpty = hasRichContent ? utils.isEditorEmpty(field) : ramda.isEmpty(field);
35
- return isFieldEmpty && ramda.isNotNil(fallback) ? fallback : field;
36
- };
37
- var getComponentDisplayName = function getComponentDisplayName(Component) {
38
- return Component.displayName || Component.name || "Component";
39
- };
40
- var isNameQuestion = function isNameQuestion(kind) {
41
- return kind === constants.QUESTION_TYPES.NAME;
42
- };
43
-
44
- exports.fieldWithFallback = fieldWithFallback;
45
- exports.getComponentDisplayName = getComponentDisplayName;
46
- exports.isBlank = isBlank;
47
- exports.isEmptyValues = isEmptyValues;
48
- exports.isFunction = isFunction;
49
- exports.isNameQuestion = isNameQuestion;
50
- exports.parseServerError = parseServerError;
51
- //# sourceMappingURL=index-Dz5Yvk3n.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index-Dz5Yvk3n.js","sources":["../app/javascript/src/utils/index.js"],"sourcesContent":["import { t } from \"i18next\";\nimport { isEditorEmpty } from \"neetoeditor\";\nimport {\n compose,\n isEmpty,\n trim,\n isNil,\n equals,\n values,\n either,\n useWith,\n path,\n split,\n isNotNil,\n} from \"ramda\";\n\nimport { QUESTION_TYPES } from \"components/constants\";\n\nexport const isBlank = compose(isEmpty, trim);\n\nexport const parseServerError = error =>\n error.notice ?? t(\"neetoForm.common.somethingWentWrong\");\n\nexport const isPlainObject = obj =>\n typeof obj === \"object\" && !Array.isArray(obj) && obj !== null;\n\nexport const isStringOrNumber = obj =>\n typeof obj === \"string\" || typeof obj === \"number\";\n\nexport const isEmptyValues = obj =>\n either(isNil, isEmpty)(obj)\n ? true\n : values(obj).every(value => {\n if (isEmpty(value)) {\n return true;\n } else if (Array.isArray(value)) {\n return equals([false, false, false], value);\n }\n\n return !value;\n });\n\n// eslint-disable-next-line react-hooks/rules-of-hooks\nexport const dotPath = useWith(path, [split(\".\")]);\n\nexport const isFunction = obj => typeof obj === \"function\";\n\nexport const fieldWithFallback = (\n question,\n fieldName,\n hasRichContent = false\n) => {\n const fallback = question[`${fieldName}Fallback`];\n const field = question[fieldName];\n const isFieldEmpty = hasRichContent ? isEditorEmpty(field) : isEmpty(field);\n\n return isFieldEmpty && isNotNil(fallback) ? fallback : field;\n};\n\nexport const getComponentDisplayName = Component =>\n Component.displayName || Component.name || \"Component\";\n\nexport const isNameQuestion = kind => kind === QUESTION_TYPES.NAME;\n"],"names":["isBlank","compose","isEmpty","trim","parseServerError","error","_error$notice","notice","t","isEmptyValues","obj","either","isNil","values","every","value","Array","isArray","equals","useWith","path","split","isFunction","fieldWithFallback","question","fieldName","hasRichContent","arguments","length","undefined","fallback","concat","field","isFieldEmpty","isEditorEmpty","isNotNil","getComponentDisplayName","Component","displayName","name","isNameQuestion","kind","QUESTION_TYPES","NAME"],"mappings":";;;;;;;;AAkBO,IAAMA,OAAO,GAAGC,aAAO,CAACC,aAAO,EAAEC,UAAI;IAE/BC,gBAAgB,GAAG,SAAnBA,gBAAgBA,CAAGC,KAAK,EAAA;AAAA,EAAA,IAAAC,aAAA;AAAA,EAAA,OAAA,CAAAA,aAAA,GACnCD,KAAK,CAACE,MAAM,MAAA,IAAA,IAAAD,aAAA,KAAA,KAAA,CAAA,GAAAA,aAAA,GAAIE,SAAC,CAAC,qCAAqC,CAAC;AAAA;IAQ7CC,aAAa,GAAG,SAAhBA,aAAaA,CAAGC,GAAG,EAAA;EAAA,OAC9BC,YAAM,CAACC,WAAK,EAAEV,aAAO,CAAC,CAACQ,GAAG,CAAC,GACvB,IAAI,GACJG,YAAM,CAACH,GAAG,CAAC,CAACI,KAAK,CAAC,UAAAC,KAAK,EAAI;AACzB,IAAA,IAAIb,aAAO,CAACa,KAAK,CAAC,EAAE;AAClB,MAAA,OAAO,IAAI;KACZ,MAAM,IAAIC,KAAK,CAACC,OAAO,CAACF,KAAK,CAAC,EAAE;MAC/B,OAAOG,YAAM,CAAC,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,EAAEH,KAAK,CAAC;AAC7C;AAEA,IAAA,OAAO,CAACA,KAAK;AACf,GAAC,CAAC;AAAA;;AAER;AACuBI,aAAO,CAACC,UAAI,EAAE,CAACC,WAAK,CAAC,GAAG,CAAC,CAAC;IAEpCC,UAAU,GAAG,SAAbA,UAAUA,CAAGZ,GAAG,EAAA;EAAA,OAAI,OAAOA,GAAG,KAAK,UAAU;AAAA;AAEnD,IAAMa,iBAAiB,GAAG,SAApBA,iBAAiBA,CAC5BC,QAAQ,EACRC,SAAS,EAEN;AAAA,EAAA,IADHC,cAAc,GAAAC,SAAA,CAAAC,MAAA,GAAA,CAAA,IAAAD,SAAA,CAAA,CAAA,CAAA,KAAAE,SAAA,GAAAF,SAAA,CAAA,CAAA,CAAA,GAAG,KAAK;AAEtB,EAAA,IAAMG,QAAQ,GAAGN,QAAQ,IAAAO,MAAA,CAAIN,SAAS,EAAW,UAAA,CAAA,CAAA;AACjD,EAAA,IAAMO,KAAK,GAAGR,QAAQ,CAACC,SAAS,CAAC;AACjC,EAAA,IAAMQ,YAAY,GAAGP,cAAc,GAAGQ,mBAAa,CAACF,KAAK,CAAC,GAAG9B,aAAO,CAAC8B,KAAK,CAAC;EAE3E,OAAOC,YAAY,IAAIE,cAAQ,CAACL,QAAQ,CAAC,GAAGA,QAAQ,GAAGE,KAAK;AAC9D;IAEaI,uBAAuB,GAAG,SAA1BA,uBAAuBA,CAAGC,SAAS,EAAA;EAAA,OAC9CA,SAAS,CAACC,WAAW,IAAID,SAAS,CAACE,IAAI,IAAI,WAAW;AAAA;IAE3CC,cAAc,GAAG,SAAjBA,cAAcA,CAAGC,IAAI,EAAA;AAAA,EAAA,OAAIA,IAAI,KAAKC,wBAAc,CAACC,IAAI;AAAA;;;;;;;;;;"}
package/dist/index.js DELETED
@@ -1,94 +0,0 @@
1
- export { default as BuildForm } from './BuildForm.js';
2
- export { default as NeetoFormProvider } from './NeetoFormProvider.js';
3
- export { default as ExternalForm } from './ExternalForm.js';
4
- export { default as Submission } from './Submission.js';
5
- export { default as UrlBuilder } from './UrlBuilder.js';
6
- export { c as useCreateForm, e as useDeleteForm, a as useForm, u as useForms, b as usePublicForm, d as useUpdateForm } from './constants-30230o5k.js';
7
- export { u as useFormSubmission } from './useFormSubmission-zyh3tA0H.js';
8
- export { u as useBuildFormState } from './buildForm-CkVmGF-A.js';
9
- import '@tanstack/react-query';
10
- import 'classnames';
11
- import '@bigbinary/neeto-cist';
12
- import '@bigbinary/neetoui/Spinner';
13
- import 'ramda';
14
- import './yup-DL9p9dFl.js';
15
- import 'i18next';
16
- import 'react';
17
- import '@babel/runtime/helpers/defineProperty';
18
- import '@babel/runtime/helpers/objectWithoutProperties';
19
- import 'react/jsx-runtime';
20
- import '@babel/runtime/helpers/toConsumableArray';
21
- import 'dompurify';
22
- import './index-BfavwyMH.js';
23
- import '@babel/runtime/helpers/typeof';
24
- import '@bigbinary/neeto-editor/utils';
25
- import '@bigbinary/neeto-icons/Plus';
26
- import 'yup';
27
- import '@babel/runtime/helpers/slicedToArray';
28
- import '@hello-pangea/dnd';
29
- import '@bigbinary/neeto-commons-frontend/react-utils';
30
- import '@bigbinary/neeto-commons-frontend/utils';
31
- import 'zustand/shallow';
32
- import '@bigbinary/neetoui/Alert';
33
- import 'react-i18next';
34
- import '@bigbinary/neetoui/Typography';
35
- import '@bigbinary/neetoui/Modal';
36
- import '@bigbinary/neeto-molecules/MoreDropdown';
37
- import '@bigbinary/neetoui/Dropdown';
38
- import '@bigbinary/neetoui/Tooltip';
39
- import 'uuid';
40
- import '@bigbinary/neetoui/NoData';
41
- import '@bigbinary/neetoui/Button';
42
- import '@bigbinary/neetoui/Pane';
43
- import '@bigbinary/neetoui/formik/ActionBlock';
44
- import '@bigbinary/neetoui/formik/Form';
45
- import 'formik';
46
- import '@bigbinary/neetoui/Accordion';
47
- import '@bigbinary/neetoui/formik/Select';
48
- import '@bigbinary/neetoui/formik/Switch';
49
- import '@bigbinary/neetoui/formik/Textarea';
50
- import '@bigbinary/neeto-editor/Editor';
51
- import '@bigbinary/neetoui/formik/Input';
52
- import '@bigbinary/neeto-molecules/OptionFields';
53
- import 'framer-motion';
54
- import '@bigbinary/neetoui/formik/Radio';
55
- import '@bigbinary/neetoui/Label';
56
- import 'react-select/creatable';
57
- import '@babel/runtime/helpers/toArray';
58
- import '@bigbinary/neeto-icons/Close';
59
- import '@bigbinary/neetoui/Tag';
60
- import 'react-select';
61
- import '@babel/runtime/helpers/asyncToGenerator';
62
- import '@babel/runtime/regenerator';
63
- import '@bigbinary/neetoui/formik/Checkbox';
64
- import '@bigbinary/neetoui/Checkbox';
65
- import '@bigbinary/neetoui/Slider';
66
- import '@bigbinary/neeto-molecules/HelpPopover';
67
- import '@bigbinary/neeto-hotkeys';
68
- import '@bigbinary/neeto-icons/Warning';
69
- import '@bigbinary/neeto-molecules/PageLoader';
70
- import '@bigbinary/neetoui/Callout';
71
- import '@bigbinary/neeto-icons/Check';
72
- import './utils-DklENIyr.js';
73
- import 'libphonenumber-js';
74
- import '@bigbinary/neeto-editor/EditorContent';
75
- import '@bigbinary/neetoui/MultiEmailInput';
76
- import '@bigbinary/neeto-molecules/PhoneNumber';
77
- import '@bigbinary/neetoui/Select';
78
- import '@bigbinary/neetoui/Input';
79
- import '@bigbinary/neeto-icons/Refresh';
80
- import '@bigbinary/neeto-commons-frontend/initializers';
81
- import 'react-google-recaptcha';
82
- import '@bigbinary/neetoui/DatePicker';
83
- import '@bigbinary/neetoui/Toastr';
84
- import 'axios';
85
- import '@bigbinary/neeto-icons/CheckCircle';
86
- import '@bigbinary/neeto-molecules/FileUpload';
87
- import '@bigbinary/neetoui/Radio';
88
- import '@bigbinary/neeto-icons/Image';
89
- import '@bigbinary/neetoui/Textarea';
90
- import '@honeybadger-io/js';
91
- import '@bigbinary/neeto-molecules/CopyToClipboardButton';
92
- import '@bigbinary/neeto-commons-frontend/constants';
93
- import 'zustand';
94
- //# sourceMappingURL=index.js.map
package/dist/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/dist/main.css DELETED
@@ -1,2 +0,0 @@
1
- :root{--neeto-form-engine-primary-color:#2f3941;--neeto-form-engine-primary-color-dark:#000;--neeto-form-engine-secondary-color:#fff;--neeto-form-engine-question-color:0,0,0;--neeto-form-engine-answer-color:45,54,212;--neeto-form-engine-button-background-color:45,54,212;--neeto-form-engine-button-text-color:255,255,255;--neeto-form-engine-error-color:175,4,4;--neeto-form-engine-transition:all 0.1s ease-out;--neeto-form-engine-border-radius-sm:0.3125rem}@keyframes rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes rotate-and-scale{0%{transform:rotate(0deg) scale(0)}to{transform:rotate(-1turn) scale(1)}}@keyframes rotate-and-scale-clockwise{0%{transform:rotate(0deg) scale(0)}to{transform:rotate(1turn) scale(1)}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.neeto-form-engine-add-question-between{visibility:hidden}.neeto-form-engine-add-question-between *{transition:none!important}.neeto-form-engine-question-accordion__drag-icon{display:none!important}.neeto-form-engine-question-accordion .neeto-form-engine-question-accordion__body,.neeto-form-engine-question-accordion .neeto-form-engine-question-accordion__header{border-radius:var(--neeto-ui-rounded-lg)}.neeto-form-engine-question-accordion:hover .neeto-form-engine-add-question-between{visibility:visible}.neeto-form-engine-question-accordion:hover .neeto-form-engine-question-accordion__drag-icon{display:block!important}.neeto-form-engine-question-accordion:hover .neeto-form-engine-question-accordion__icon{display:none!important}.neeto-form-engine-form h5{color:rgb(var(--neeto-ui-gray-800));font-size:var(--neeto-ui-text-sm);font-weight:var(--neeto-ui-font-semibold);line-height:var(--neeto-ui-leading-normal);margin-bottom:1rem}.neeto-form-engine-form .neeto-form-engine-questions-wrapper{max-height:calc(100vh - 240px)}.neeto-form-engine-form .neeto-form-engine-choices__wrapper:not(:last-child),.neeto-form-engine-form .neeto-form-engine-input__wrapper:not(:last-child),.neeto-form-engine-form .neeto-form-engine-rating:not(:last-child),.neeto-form-engine-form .neeto-form-engine-star-rating:not(:last-child){margin-bottom:1rem}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices{align-items:flex-start;display:flex;flex-direction:column;gap:.5rem;justify-content:flex-start;margin:.5rem 0 0}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice{align-items:center;background-color:rgb(var(--neeto-ui-white));border:thin solid rgb(var(--neeto-ui-gray-300));border-radius:var(--neeto-ui-rounded);color:rgb(var(--neeto-ui-gray-700));cursor:pointer;display:flex;flex-direction:row;font-size:var(--neeto-ui-text-sm);gap:.75rem;justify-content:flex-start;line-height:var(--neeto-ui-leading-normal);padding:.625rem .75rem;transition:var(--neeto-ui-transition);width:100%}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice:hover{border-color:rgb(var(-neeto-ui-gray-400))}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice.active{border-color:rgb(var(--neeto-ui-gray-800))}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=checkbox]{border-radius:var(--neeto-ui-rounded-sm)}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=checkbox],.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=radio]{border:2px solid rgb(var(--neeto-ui-gray-300));height:1rem;width:1rem}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=checkbox]:not(:disabled),.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=radio]:not(:disabled){cursor:pointer}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=checkbox]:hover:not(:disabled,:checked),.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=radio]:hover:not(:disabled,:checked){border-color:rgb(var(-neeto-ui-gray-400))}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=checkbox]:checked,.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=radio]:checked{border:none!important}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=checkbox]:disabled,.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=radio]:disabled{cursor:not-allowed;opacity:.5}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=checkbox]:focus,.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=checkbox]:focus-visible,.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=radio]:focus,.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=radio]:focus-visible{outline:transparent}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=checkbox]:focus-visible,.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=radio]:focus-visible{box-shadow:0 0 0 2px rgb(var(--neeto-ui-white)),0 0 0 4px rgb(var(--neeto-ui-gray-300))}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice label{font-weight:400}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-ui-radio__container{gap:.5rem;width:100%}.neeto-form-engine-form .neeto-form-engine-star-rating>.neeto-form-engine-label{margin-bottom:1rem}.neeto-form-engine-form .neeto-form-engine-star-rating .neeto-form-engine-star-rating__row{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;gap:1.5rem;justify-content:flex-start}.neeto-form-engine-form .neeto-form-engine-star-rating .neeto-form-engine-star-rating__row input[type=radio]{display:none}.neeto-form-engine-form .neeto-form-engine-star-rating .neeto-form-engine-star-rating__row .neeto-form-engine-star-rating__icon.neeto-form-engine-star-rating__icon--active{fill:rgb(var(--neeto-ui-primary-500));stroke:rgb(var(--neeto-ui-primary-500))}.neeto-form-engine-form .neeto-form-engine-rating>.neeto-form-engine-label{margin-bottom:1rem}.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row{align-items:center;display:flex;flex-direction:row;gap:1.5rem;justify-content:flex-start}.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row input[type=radio]{display:none}.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item{align-items:center;color:rgb(var(--neeto-ui-gray-600));cursor:pointer;display:flex;flex-direction:column;justify-content:center;padding:.5rem}.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item svg{margin-bottom:.25rem}.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item svg path{stroke:currentColor;transition:var(--neeto-ui-transition)}.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item .neeto-form-engine-label{color:inherit;transition:var(--neeto-ui-transition)}.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--happy.active,.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--happy:active,.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--happy:focus,.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--happy:hover{color:rgb(var(--neeto-ui-success-500))}.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--confused.active,.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--confused:active,.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--confused:focus,.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--confused:hover{color:rgb(var(--neeto-ui-warning-500))}.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--sad.active,.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--sad:active,.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--sad:focus,.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--sad:hover{color:rgb(var(--neeto-ui-error-500))}.neeto-form-engine-terms .neeto-form-engine-choice{align-items:center;color:rgb(var(--neeto-ui-gray-700));display:flex;flex-direction:row;font-size:var(--neeto-ui-text-sm);gap:.75rem;justify-content:flex-start;line-height:var(--neeto-ui-leading-normal);padding:.5rem 0;transition:var(--neeto-ui-transition);width:100%}.neeto-form-engine-terms .neeto-form-engine-choice:hover{border-color:rgb(var(-neeto-ui-gray-400))}.neeto-form-engine-terms .neeto-form-engine-choice.active{border-color:rgb(var(--neeto-ui-gray-800))}.neeto-form-engine-terms .neeto-form-engine-choice input[type=checkbox]{border-radius:var(--neeto-ui-rounded-sm)}.neeto-form-engine-terms .neeto-form-engine-choice input[type=checkbox],.neeto-form-engine-terms .neeto-form-engine-choice input[type=radio]{align-self:flex-start;border:2px solid rgb(var(--neeto-ui-gray-300));height:1rem;margin-top:.125rem;width:1rem}.neeto-form-engine-terms .neeto-form-engine-choice input[type=checkbox]:not(:disabled),.neeto-form-engine-terms .neeto-form-engine-choice input[type=radio]:not(:disabled){cursor:pointer}.neeto-form-engine-terms .neeto-form-engine-choice input[type=checkbox]:hover:not(:disabled,:checked),.neeto-form-engine-terms .neeto-form-engine-choice input[type=radio]:hover:not(:disabled,:checked){border-color:rgb(var(-neeto-ui-gray-400))}.neeto-form-engine-terms .neeto-form-engine-choice input[type=checkbox]:checked,.neeto-form-engine-terms .neeto-form-engine-choice input[type=radio]:checked{border:none!important}.neeto-form-engine-terms .neeto-form-engine-choice input[type=checkbox]:disabled,.neeto-form-engine-terms .neeto-form-engine-choice input[type=radio]:disabled{cursor:not-allowed;opacity:.5}.neeto-form-engine-terms .neeto-form-engine-choice input[type=checkbox]:focus,.neeto-form-engine-terms .neeto-form-engine-choice input[type=checkbox]:focus-visible,.neeto-form-engine-terms .neeto-form-engine-choice input[type=radio]:focus,.neeto-form-engine-terms .neeto-form-engine-choice input[type=radio]:focus-visible{outline:transparent}.neeto-form-engine-terms .neeto-form-engine-choice input[type=checkbox]:focus-visible,.neeto-form-engine-terms .neeto-form-engine-choice input[type=radio]:focus-visible{box-shadow:0 0 0 2px rgb(var(--neeto-ui-white)),0 0 0 4px rgb(var(--neeto-ui-gray-300))}body .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-input input{min-height:2.5rem;padding:.5em .8em}body .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-react-select__container .neeto-ui-react-select__value-container{min-height:2.5rem}body .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-input__prefix .neeto-ui-react-select__value-container{min-height:1.875rem}body .neeto-form-engine-form .neeto-form-engine-date-picker .ant-picker-input>input{padding-bottom:.5rem;padding-top:.5rem}body .neeto-form-engine-form .neeto-form-engine-star-rating__row button{outline:none}body .neeto-form-engine-form .neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item{box-shadow:none;outline:none}body .neeto-form-engine-form .neeto-form-engine-form{display:flex;flex-direction:column;gap:.625rem}body .neeto-form-engine-form .neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice{background-color:rgb(var(--neeto-ui-white));padding-bottom:.625rem;padding-top:.625rem}body .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-input:focus-within:not(.neeto-ui-input--naked,.neeto-ui-input--error){box-shadow:0 0 0 1px rgb(var(--neeto-ui-primary-500)) inset}body .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--error:focus-within{box-shadow:0 0 0 1px rgb(var(--neeto-ui-error-500)) inset}body .neeto-form-engine-form .neeto-ui-react-select__control.neeto-ui-react-select__control--is-focused{box-shadow:0 0 0 1px rgb(var(--neeto-ui-primary-500)) inset}body .neeto-form-engine-form .neeto-ui-react-select__container.neeto-ui-react-select__container--error .neeto-ui-react-select__control.neeto-ui-react-select__control--is-focused{box-shadow:0 0 0 1px rgb(var(--neeto-ui-error-500)) inset}.neeto-form-nano-form__card--active{box-shadow:0 0 0 1px rgb(var(--neeto-ui-primary-500)) inset}.neeto-form-nano-advanced-properties-accordion{--neeto-ui-accordion-item-padding-x:0rem;--neeto-ui-accordion-drop-padding-x:0rem;--neeto-ui-accordion-wrapper-border-width:0rem}.neeto-ui-input__wrapper.neeto-form-nano-placeholder-input .neeto-ui-input textarea{padding-top:.1875rem}.neeto-ui-input__wrapper.neeto-form-nano-placeholder-input.neeto-form-nano-placeholder-input-rich_text .neeto-ui-input textarea,.neeto-ui-input__wrapper.neeto-form-nano-placeholder-input.neeto-form-nano-placeholder-input-textarea .neeto-ui-input textarea{min-height:4em!important}@media (max-width:768px){.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice label{font-size:1rem}}.neeto-form-nano-adaptive-input textarea{--neeto-ui-input-line-height:1.5}button.neeto-form-engine-button{align-items:center;background-color:#2f3941;background-color:var(--neeto-form-engine-primary-color);border-radius:var(--neeto-ui-rounded-sm);color:#fff;color:var(--neeto-form-engine-secondary-color);display:flex;flex-direction:row;font-size:var(--neeto-ui-text-sm);font-weight:var(--neeto-ui-font-medium);justify-content:center;letter-spacing:-.0094rem;line-height:1;padding:.5rem .75rem;position:relative;transition:var(--neeto-ui-transition)}button.neeto-form-engine-button:active,button.neeto-form-engine-button:focus,button.neeto-form-engine-button:hover{background-color:#000;background-color:var(--neeto-form-engine-primary-color-dark)}.neeto-form-engine-button__loader,.neeto-form-engine-button__success{align-items:center;background:inherit;border-radius:inherit;cursor:default;display:flex;flex-direction:row;height:100%;inset-inline-start:0;justify-content:center;outline:none;position:absolute;top:0;width:100%}.neeto-form-engine-button__loader svg path,.neeto-form-engine-button__success svg path{stroke:currentColor}.neeto-form-engine-input__wrapper{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;justify-content:flex-start}.neeto-form-engine-input__wrapper .neeto-form-engine-input__label-wrapper{display:flex;justify-content:space-between;margin-bottom:.375rem;width:100%}.neeto-form-engine-input__wrapper .neeto-form-engine-rich-text-input{width:100%}.neeto-form-engine-input__wrapper .neeto-form-engine-input{align-items:center;background-color:rgb(var(--neeto-ui-white));border:thin solid rgb(var(--neeto-ui-gray-400));border-radius:var(--neeto-ui-rounded);color:rgb(var(--neeto-ui-gray-800));display:flex;flex-direction:row;font-size:var(--neeto-ui-text-sm);justify-content:flex-start;line-height:1.6;overflow:hidden;transition:var(--neeto-ui-transition);width:100%}.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--textarea{padding:.5rem}.neeto-form-engine-input__wrapper .neeto-form-engine-input input,.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea{background-color:transparent;border:none;box-shadow:none;color:inherit;font-size:inherit;line-height:inherit;outline:none;width:100%}.neeto-form-engine-input__wrapper .neeto-form-engine-input input::-moz-placeholder,.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea::-moz-placeholder{color:rgb(var(-neeto-ui-gray-400))}.neeto-form-engine-input__wrapper .neeto-form-engine-input input::placeholder,.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea::placeholder{color:rgb(var(-neeto-ui-gray-400))}.neeto-form-engine-input__wrapper .neeto-form-engine-input input:focus,.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea:focus{outline-color:transparent}.neeto-form-engine-input__wrapper .neeto-form-engine-input input{line-height:1.3;padding:.375rem .5rem}.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea{max-height:14rem;overflow-y:auto;padding:0}.neeto-form-engine-input__wrapper .neeto-form-engine-input:focus-within:not(.neeto-form-engine-input--error){border-color:rgb(var(--neeto-ui-gray-800));box-shadow:var(--neeto-ui-shadow-m)}.neeto-form-engine-input__wrapper .neeto-form-engine-input:hover:not(.neeto-form-engine-input--error,.neeto-form-engine-input--disabled){border-color:rgb(var(--neeto-ui-gray-700))}.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--error{border-color:rgb(var(--neeto-ui-error-500))}.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--error:focus-within{box-shadow:0 0 0 3px rgb(var(--neeto-ui-pastel-red))}.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--error textarea{resize:none}.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--disabled{background-color:rgb(var(--neeto-ui-gray-100));cursor:not-allowed}.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--disabled input,.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--disabled textarea{cursor:not-allowed}.neeto-form-engine-input__wrapper .neeto-form-engine-input__prefix,.neeto-form-engine-input__wrapper .neeto-form-engine-input__suffix{align-items:center;color:rgb(var(--neeto-ui-gray-600));display:flex;flex-direction:row;font-size:.875rem;justify-content:flex-start}.neeto-form-engine-input__wrapper .neeto-form-engine-input__prefix svg,.neeto-form-engine-input__wrapper .neeto-form-engine-input__suffix svg{height:1rem;width:1rem}.neeto-form-engine-input__wrapper .neeto-form-engine-input__prefix{margin-inline-start:.625rem}.neeto-form-engine-input__wrapper .neeto-form-engine-input__suffix{margin-inline-end:.625rem}.neeto-form-engine-input__wrapper .neeto-form-engine-input--block-add-on .neeto-form-engine-input__prefix,.neeto-form-engine-input__wrapper .neeto-form-engine-input--block-add-on .neeto-form-engine-input__suffix{background-color:rgb(var(--neeto-ui-gray-100));margin:0;padding:.5rem .625rem}.neeto-form-engine-input__wrapper .neeto-form-engine-input--block-add-on .neeto-form-engine-input__prefix{border-inline-end:thin solid rgb(var(--neeto-ui-gray-300))}.neeto-form-engine-input__wrapper .neeto-form-engine-input--block-add-on .neeto-form-engine-input__suffix{border-inline-start:thin solid rgb(var(--neeto-ui-gray-300))}.neeto-form-engine-input__error{color:rgb(var(--neeto-ui-error-500));font-size:var(--neeto-ui-text-xs);margin-top:.25rem}.neeto-form-engine-label{color:rgb(var(--neeto-ui-black));font-size:var(--neeto-ui-text-sm);font-weight:var(--neeto-ui-font-medium);letter-spacing:-.0094rem;line-height:1.5}@media (max-width:768px){.neeto-form-engine-input__wrapper .neeto-form-engine-input,.neeto-form-engine-input__wrapper .neeto-form-engine-input input,.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea,.neeto-form-engine-input__wrapper .neeto-form-engine-input__prefix,.neeto-form-engine-input__wrapper .neeto-form-engine-input__suffix,.neeto-form-engine-input__wrapper .neeto-form-engine-rich-text-input{font-size:1rem}.neeto-ui-input--medium,.neeto-ui-input__wrapper .neeto-ui-input,.neeto-ui-react-select__container,.neeto-ui-react-select__input,.neeto-ui-react-select__menu-portal,.neeto-ui-react-select__multi-value__label{font-size:1rem!important}}.neeto-molecules-phone-number-input__input .neeto-ui-input input{direction:inherit}.neeto-form-engine-date-picker{display:flex;flex-direction:column;width:100%}.neeto-form-engine-date-picker .ant-picker{background-color:rgb(var(--neeto-ui-white));border:thin solid rgb(var(--neeto-ui-gray-400));border-radius:var(--neeto-ui-rounded);color:rgb(var(--neeto-ui-gray-800));font-size:.875rem;line-height:1.15;padding:0;transition:var(--neeto-ui-transition);width:100%}.neeto-form-engine-date-picker .ant-picker:hover:not(.neeto-form-engine-input--error,.neeto-form-engine-input--disabled){border-color:rgb(var(--neeto-ui-gray-700))}.neeto-form-engine-date-picker .ant-picker.ant-picker-focused:not(.neeto-form-engine-input--error){border-color:rgb(var(--neeto-ui-gray-800))!important;box-shadow:var(--neeto-ui-shadow-m)!important;outline:none!important}.neeto-form-engine-date-picker .ant-picker.neeto-form-engine-input--error{border-color:rgb(var(--neeto-ui-error-500))!important}.neeto-form-engine-date-picker .ant-picker.neeto-form-engine-input--error:focus-within{box-shadow:0 0 0 3px rgb(var(--neeto-ui-pastel-red))!important}.neeto-form-engine-date-picker .ant-picker.neeto-form-engine-input--error.ant-picker-focused{border-color:rgb(var(--neeto-ui-error-500))!important;box-shadow:0 0 0 3px rgb(var(--neeto-ui-pastel-red))!important}.neeto-form-engine-date-picker .ant-picker.neeto-form-engine-input--error textarea{resize:none}.neeto-form-engine-date-picker .ant-picker.neeto-ui-date-input{padding:0}.neeto-form-engine-date-picker .ant-picker-suffix{color:rgba(var(--neeto-ui-gray-800));margin:0;padding-inline-end:.4444444444em}.neeto-form-engine-date-picker .ant-picker-suffix svg{height:1rem;width:1rem}.neeto-form-engine-date-picker .ant-picker-clear{background-color:transparent;color:rgba(var(--neeto-ui-gray-800));margin-inline-end:.4444444444rem}.neeto-form-engine-date-picker .ant-picker-clear svg{color:inherit;height:1rem;width:1rem}.neeto-form-engine-date-picker .ant-picker-clear+.ant-picker-suffix .ant-picker-suffix{opacity:0}.neeto-form-engine-date-picker .ant-picker-input:hover input:not([value=""])+.ant-picker-suffix{opacity:0}.neeto-form-engine-date-picker .ant-picker-input>input{background-color:transparent;color:rgba(var(--neeto-ui-gray-800));font-size:.875rem;padding:.375rem .5rem}.neeto-form-engine-date-picker .ant-picker-input>input::-moz-placeholder{color:rgba(var(--neeto-form-answer-color),.5);opacity:1}.neeto-form-engine-date-picker .ant-picker-input>input::placeholder{color:rgba(var(--neeto-form-answer-color),.5);opacity:1}.neeto-form-engine-date-picker-popup .ant-picker-panel-container{background-color:rgb(var(--neeto-ui-white));border:1px solid rgba(var(--neeto-ui-gray-800),.8);border-radius:.75rem}.neeto-form-engine-date-picker-popup .ant-picker-panel-container .ant-picker-panel{border:0}.neeto-form-engine-date-picker-popup .ant-picker-cell,.neeto-form-engine-date-picker-popup .ant-picker-time-panel-column>li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner{color:rgb(var(--neeto-ui-gray-800))}.neeto-form-engine-date-picker-popup .ant-picker-header button{color:rgb(var(--neeto-ui-gray-800))!important}.neeto-form-engine-date-picker-popup .ant-picker-header>button:hover{opacity:.8}.neeto-form-engine-date-picker-popup .ant-picker-content th{color:rgba(var(--neeto-ui-gray-800),.8)}.neeto-form-engine-date-picker-popup .ant-picker-panel .ant-picker-footer,.neeto-form-engine-date-picker-popup .ant-picker-panel .ant-picker-header{background-color:transparent;border:0}.neeto-form-engine-date-picker-popup .ant-picker-now-btn,.neeto-form-engine-date-picker-popup .ant-picker-ok .ant-btn,.neeto-form-engine-date-picker-popup .ant-picker-today-btn{background-color:#4558f9!important;border-radius:var(--neeto-ui-rounded);color:rgb(var(--neeto-ui-white))!important;cursor:pointer;padding:.25rem}.neeto-form-engine-date-picker-popup .ant-picker-now-btn:focus,.neeto-form-engine-date-picker-popup .ant-picker-now-btn:hover,.neeto-form-engine-date-picker-popup .ant-picker-ok .ant-btn:focus,.neeto-form-engine-date-picker-popup .ant-picker-ok .ant-btn:hover,.neeto-form-engine-date-picker-popup .ant-picker-today-btn:focus,.neeto-form-engine-date-picker-popup .ant-picker-today-btn:hover{opacity:.8}.neeto-form-engine-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,.neeto-form-engine-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,.neeto-form-engine-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner{background-color:rgb(var(--neeto-form-answer-color));color:rgb(var(--neeto-form-answer-text-color))}.neeto-form-engine-date-picker-popup .ant-picker-time-panel-column>li.ant-picker-time-panel-cell-selected .ant-picker-time-panel-cell-inner{background-color:rgb(var(--neeto-form-answer-color));color:rgb(var(--neeto-form-answer-text-color))}.neeto-form-engine-date-picker-popup .ant-picker-time-panel-column:not(:first-child){border-inline-start:none}.neeto-form-engine-date-picker-popup .ant-picker-cell:hover:not(.ant-picker-cell-in-view) .ant-picker-cell-inner,.neeto-form-engine-date-picker-popup .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner{background-color:rgba(var(--neeto-form-question-color),.1)}.neeto-form-engine-date-picker-popup .ant-picker-time-panel-column>li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner:hover{background-color:rgba(var(--neeto-form-question-color),.1)}.neeto-form-engine-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner:before{border-color:rgb(var(--neeto-form-answer-color))!important}.neeto-form-engine-date-picker-popup .ant-picker-cell .ant-picker-cell-inner{border-radius:.3125rem!important}.neeto-form-engine-date-picker-popup .ant-picker-content th{font-size:.75rem;text-transform:uppercase}.neeto-form-engine--md .neeto-form-date-picker .ant-picker-input>input{font-size:1.25rem;height:calc(3rem - 2px);padding:.8em}.neeto-form-engine--md .neeto-form-date-picker .ant-picker-suffix{padding-inline-end:.8rem}.neeto-form-engine--md .neeto-form-date-picker .ant-picker-suffix svg{height:1.5rem;width:1.5rem}.neeto-form-engine--md .neeto-form-date-picker .ant-picker-clear{margin-inline-end:.8rem}.neeto-form-engine--md .neeto-form-date-picker .ant-picker-clear svg{height:1.5rem;width:1.5rem}@media (min-width:768px){.neeto-form-engine-date-picker .ant-picker-cell .ant-picker-cell-inner{height:2rem;line-height:2rem;min-width:2rem}.neeto-form-engine-date-picker .ant-picker-date-panel{width:320px}.neeto-form-engine-date-picker .ant-picker-header{align-items:center;min-height:4.25rem;padding:.75rem 1.5rem 0;white-space:nowrap}.neeto-form-engine-date-picker .ant-picker-date-panel .ant-picker-body{padding-inline-end:1.5rem;padding-inline-start:1.5rem}.neeto-form-engine-date-picker .ant-picker-date-panel .ant-picker-content{width:272px}}@media (max-width:768px){.neeto-form-engine-date-picker .ant-picker{font-size:1rem}.neeto-form-engine-date-picker .ant-picker-input>input{font-size:1rem}.neeto-form-engine--md .neeto-form-date-picker .ant-picker-input>input{font-size:1rem}}[dir=rtl] .neeto-form-engine-date-picker-popup .ant-picker-header-next-btn{transform:rotate(180deg)}[dir=rtl] .neeto-form-engine-date-picker-popup .ant-picker-header-prev-btn{transform:rotate(180deg)}.neeto-form-engine-loader{height:100%;width:100%}.neeto-form-engine-loader,.neeto-form-engine-spinner{align-items:center;display:flex;flex-direction:row;justify-content:center}.neeto-form-engine-spinner svg{animation:rotate 1s ease-in-out infinite}.neeto-form-engine-dropdown{align-items:center;display:inline-flex;position:relative}.neeto-form-engine-dropdown button{margin:0}.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu{background-color:rgb(var(--neeto-ui-white));border-radius:var(--neeto-ui-rounded);box-shadow:var(--neeto-ui-shadow-m)-m;inset-inline-end:0;margin:0;min-width:168px;opacity:0;padding:.25rem 0;pointer-events:none;position:absolute;top:100%;transition:var(--neeto-ui-transition)}.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li{list-style:none}.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button{align-items:center;color:rgb(var(--neeto-ui-gray-700));cursor:pointer;display:flex;flex-direction:row;font-size:var(--neeto-ui-text-xs);gap:.5rem;justify-content:flex-start;line-height:1;padding:.5rem .625rem;transition:var(--neeto-ui-transition);white-space:nowrap;width:100%}.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button:active,.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button:focus,.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button:hover{background-color:rgb(var(--neeto-ui-gray-200))}.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button svg{height:.875rem;width:.875rem}.neeto-form-engine-dropdown:hover .neeto-form-engine-dropdown-menu,.neeto-form-engine-dropdown>button:focus+.neeto-form-engine-dropdown-menu{opacity:1;pointer-events:all}.neeto-form-engine-callout{align-items:center;animation:fade-in .3s both;background-color:rgb(var(--neeto-ui-gray-200));border-radius:var(--neeto-ui-rounded-sm);bottom:2.5rem;color:rgb(var(--neeto-ui-gray-600));display:flex;flex-direction:column;gap:.75rem;inset-inline-end:0;inset-inline-start:0;justify-content:flex-start;margin:auto;padding:.75rem;position:absolute;width:calc(100% - 48px)}.neeto-form-engine-callout.neeto-form-engine-callout--static{position:static}.neeto-form-engine-callout.neeto-form-engine-callout--error{background-color:rgb(var(--neeto-ui-pastel-red))}.neeto-form-engine-callout.neeto-form-engine-callout--info{background-color:rgb(var(--neeto-ui-pastel-blue))}.neeto-form-engine-callout .neeto-form-engine-callout__close{color:rgb(var(--neeto-ui-gray-600));inset-inline-end:.75rem;padding:0;position:absolute;top:.75rem;transition:var(--neeto-ui-transition)}.neeto-form-engine-callout .neeto-form-engine-callout__close:active,.neeto-form-engine-callout .neeto-form-engine-callout__close:focus,.neeto-form-engine-callout .neeto-form-engine-callout__close:hover{color:rgb(var(--neeto-ui-gray-800))}.neeto-form-engine-callout .neeto-form-engine-callout__content{margin:auto;max-width:240px;width:100%}.neeto-form-engine-callout .neeto-form-engine-callout__content h5{color:rgb(var(--neeto-ui-gray-800));font-size:var(--neeto-ui-text-sm);font-weight:var(--neeto-ui-font-semibold);letter-spacing:-.0094rem;line-height:1rem;margin-bottom:.25rem;text-align:center}.neeto-form-engine-callout .neeto-form-engine-callout__content p{font-size:var(--neeto-ui-text-xs);line-height:1rem;text-align:center}.neeto-form-engine-callout button.neeto-form-engine-callout__button{align-items:center;background-color:rgb(var(--neeto-ui-white));border-radius:var(--neeto-ui-rounded-sm);color:rgb(var(--neeto-ui-gray-800));display:flex;flex-direction:row;font-size:var(--neeto-ui-text-sm);font-weight:var(--neeto-ui-font-semibold);justify-content:center;letter-spacing:-.0094rem;line-height:1rem;padding:.375rem .5rem;transition:var(--neeto-ui-transition)}.neeto-form-engine-callout button.neeto-form-engine-callout__button:active,.neeto-form-engine-callout button.neeto-form-engine-callout__button:focus,.neeto-form-engine-callout button.neeto-form-engine-callout__button:hover{background-color:rgb(var(--neeto-ui-gray-100))}.neeto-form-engine-email-input{width:100%}.neeto-form-engine-email-input .neeto-form-engine-label{margin-bottom:.5rem}.neeto-form-engine-email-input .neeto-form-engine-email-input__title-row{gap:.5rem;justify-content:space-between;width:100%}.neeto-form-engine-email-input .neeto-form-engine-email-input__title-row .neeto-form-engine-label{flex-grow:1;overflow-wrap:break-word}.neeto-form-engine-email-input .neeto-form-engine-email-input__title-row .neeto-form-engine-email-input__counter{color:rgb(var(--neeto-form-engine-gray-700));line-height:1;margin-bottom:.5rem;margin-inline-start:auto}.neeto-form-engine-email-input .neeto-form-engine-email-input__prefix{margin-inline-start:.75rem}.neeto-form-engine-email-input .neeto-form-engine-email-input__prefix svg,.neeto-form-engine-email-input .neeto-form-engine-email-input__suffix svg{height:1rem;width:1rem}.loader{min-height:192px}.neeto-form-nano-external-form .neeto-form-engine-form{display:flex;flex-direction:column;gap:1rem}.neeto-form-nano-external-form--size-large{display:flex;flex-direction:column;margin:0 auto;max-width:46.5rem;padding-inline-end:1rem;padding-bottom:4rem;padding-top:1rem;padding-inline-start:1rem;width:100%}.neeto-form-nano-external-form--size-large .neeto-form-engine-input__label-wrapper{margin:.5rem 0 1rem}.neeto-form-nano-external-form--size-large .neeto-ui-input__wrapper>.neeto-ui-input__label-wrapper>.neeto-ui-label,.neeto-form-nano-external-form--size-large .neeto-ui-input__wrapper>.neeto-ui-label{--neeto-ui-label-font-size:1.3125rem;--neeto-ui-label-font-weight:400;margin:.5rem 0 1rem}.neeto-form-nano-external-form--size-large .neeto-ui-checkbox__container .neeto-ui-label{--neeto-ui-label-font-size:1.3125rem;--neeto-ui-label-font-weight:400}.neeto-form-nano-external-form--size-large .neeto-form-engine-label{font-size:1.3125rem;font-weight:400}.neeto-form-nano-external-form--size-large .neeto-form-nano-external-form-header .neeto-form-nano-external-form-title{font-size:2.25rem;font-weight:400;line-height:1.2;margin:.4em 0;text-align:start}.neeto-form-nano-external-form--size-large .neeto-form-nano-form-footer .neeto-ui-btn--size-medium{border-radius:.625rem!important;font-size:1rem;height:2.5rem;padding:.625em 1.25em}.neeto-form-nano-external-form--size-large .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice label{font-size:1rem!important;position:relative;top:-.0625rem}.neeto-form-nano-external-form--size-large .neeto-form-engine-rating__item .neeto-form-engine-label,.neeto-form-nano-external-form--size-large .neeto-form-engine-star-rating .neeto-form-engine-star-rating__row .neeto-form-engine-label,.neeto-form-nano-external-form--size-large .neeto-form-engine-terms .neeto-ui-checkbox__container .neeto-ui-label{font-size:1rem}@media only screen and (min-width:768px){.neeto-form-nano-external-form--size-large .neeto-form-nano-external-form-header .neeto-form-nano-external-form-title{font-size:3rem}}.neeto-form-nano-sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.neeto-molecules-file-upload__dropzone,.neeto-molecules-file-upload__uploaded-list{width:100%}.neeto-form-nano-math-captcha{align-items:center;border:2px dashed rgba(var(--neeto-ui-primary-500),.5);border-radius:.3125rem;color:rgb(var(--neeto-ui-black));display:flex;font-size:.875rem;gap:.3125rem;padding:.5rem}.neeto-form-nano-math-captcha__button{align-items:center;background:rgb(var(--neeto-ui-primary-500))!important;border:none;border-radius:.1875em;color:rgb(var(--neeto-ui-white));cursor:pointer;display:inline-flex;font-weight:400;gap:.25rem;line-height:1.2;min-height:2.25rem;padding:.3125em;text-decoration:none;transition:all .1s ease-out;-webkit-user-select:none;-moz-user-select:none;user-select:none}.neeto-form-nano-math-captcha__button:hover{opacity:.85}.neeto-form-nano-math-captcha__button:focus,.neeto-form-nano-math-captcha__button:focus-visible{outline:2px solid rgba(var(--neeto-ui-primary-500),.2);outline-offset:1px}.neeto-form-nano-math-captcha__equation{align-items:center;display:flex;gap:.3125rem;justify-content:center;min-width:4rem}.neeto-form-nano-math-captcha__input{border-color:rgb(var(--neeto-ui-primary-500));width:6rem}.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices.neeto-form-engine-choices--picture{grid-gap:1rem;display:grid;gap:1rem;grid-template-columns:repeat(auto-fill,minmax(180px,1fr))}.neeto-form-engine-choice--picture.neeto-form-engine-choice--picture{align-items:start!important;display:flex;flex-direction:column!important}.neeto-form-engine-choice__image-wrapper{align-items:center;background-color:rgb(var(--neeto-ui-gray-100));border-radius:.25rem;display:flex;justify-content:center;overflow:hidden;width:100%}.neeto-form-engine-choice__image-wrapper--loading{animation:pulse 1.5s ease-in-out infinite;background-color:rgb(var(--neeto-ui-gray-200))}.neeto-form-engine-choice__image{height:100%;-o-object-fit:contain;object-fit:contain;width:100%}.neeto-form-engine-choice__image--fit{-o-object-fit:cover;object-fit:cover}.neeto-form-engine-choice__image-placeholder{align-items:center;background-color:rgb(var(--neeto-ui-gray-200))!important;border-radius:.25rem;color:rgb(var(--neeto-ui-gray-400));display:flex;justify-content:center;padding:4rem;width:100%}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.neeto-form-engine-fields-wrapper .neeto-molecules-option-fields__image-option{margin-right:auto;max-width:280px}@layer utilities{.neeto-form-engine-fields-wrapper .neeto-molecules-option-fields__image-uploader img{height:var(--neeto-form-engine-picture-choice-image-height)!important;max-height:200px!important;width:100%!important}.neeto-form-engine-fields-wrapper--fit-image .neeto-molecules-option-fields__image-uploader img{-o-object-fit:cover!important;object-fit:cover!important}}.neeto-form-nano-opinion-scale__group{display:inline-block;max-width:100%;position:relative}.neeto-form-nano-opinion-scale__list{display:flex;flex-wrap:wrap;gap:6px;justify-content:center;list-style:none;margin:0;padding:0;position:relative;width:100%}.neeto-form-nano-opinion-scale__item{color:rgb(var(--neeto-ui-primary-500))}.neeto-form-nano-opinion-scale__item-label{border-radius:.3125rem;border-radius:var(--neeto-form-engine-border-radius-sm);cursor:pointer;display:block;height:3rem;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:3rem}.neeto-form-nano-opinion-scale__item-label:hover .neeto-form-nano-opinion-scale__item-highlight{background-color:rgba(var(--neeto-ui-primary-500),.1)}.neeto-form-nano-opinion-scale__item-highlight{align-items:center;background-color:transparent;border-radius:.3125rem;border-radius:var(--neeto-form-engine-border-radius-sm);box-shadow:0 0 0 1px rgb(var(--neeto-ui-gray-800)) inset;color:rgb(var(--neeto-ui-primary-500));display:inline-flex;height:100%;inset-inline-start:0;justify-content:center;position:absolute;top:0;transition:all .1s ease-out;transition:var(--neeto-form-engine-transition);width:100%}.neeto-form-nano-opinion-scale__item-highlight:hover{background-color:rgba(var(--neeto-ui-primary-500),.1)}.neeto-form-nano-opinion-scale__item-input:focus+.neeto-form-nano-opinion-scale__item-highlight{background-color:rgba(var(--neeto-ui-primary-500),.1)}.neeto-form-nano-opinion-scale__item-input:checked+.neeto-form-nano-opinion-scale__item-highlight{background-color:rgb(var(--neeto-ui-primary-500));border-color:rgb(var(--neeto-ui-primary-500));box-shadow:0 0 0 1px rgb(var(--neeto-ui-primary-500)) inset;color:rgb(var(--neeto-ui-white))!important}.neeto-form-nano-opinion-scale__item-input:checked+.neeto-form-nano-opinion-scale__item-highlight:hover{background-color:rgb(var(--neeto-ui-primary-500))}.neeto-form-nano-opinion-scale__labels-wrap{align-items:center;display:flex;justify-content:space-between;margin:8px 0}.neeto-form-nano-opinion-scale__label{color:rgb(var(--neeto-ui-gray-800));font-size:.875rem;line-height:1.2}.neeto-form-nano-opinion-scale__label--start{visibility:hidden}@media (min-width:768px){.neeto-form-nano-opinion-scale__labels-wrap-mobile{display:none}.neeto-form-nano-opinion-scale__label--start{visibility:visible}}.neeto-form-engine-address{display:flex;flex-wrap:wrap;margin-inline-end:-8px;margin-inline-start:-8px}.neeto-form-engine-address__field{padding:8px;width:100%}.neeto-form-engine-address__field--width-half{width:50%}.neeto-form-engine-address__field--width-one-forth{width:25%}.neeto-form-engine-address__field--width-three-forth{width:75%}
2
- /*# sourceMappingURL=main.css.map */
package/dist/main.css.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../app/javascript/src/stylesheets/base/variables.css","../app/javascript/src/stylesheets/base/animations.css","../app/javascript/src/stylesheets/pages/form-builder.css","../app/javascript/src/stylesheets/components/adaptive_input.css","../app/javascript/src/stylesheets/components/button.css","../app/javascript/src/stylesheets/components/input.css","../app/javascript/src/stylesheets/components/date-picker.css","../app/javascript/src/stylesheets/components/loader.css","../app/javascript/src/stylesheets/components/dropdown.css","../app/javascript/src/stylesheets/components/callout.css","../app/javascript/src/stylesheets/components/email-input.css","../app/javascript/src/stylesheets/components/external-form.css","../app/javascript/src/stylesheets/components/file-upload.css","../app/javascript/src/stylesheets/components/math-captcha.css","../app/javascript/src/stylesheets/components/picture-choice.css","../app/javascript/src/stylesheets/components/opinion_scale.css","../app/javascript/src/stylesheets/components/address.css"],"names":[],"mappings":"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","file":"main.css","sourcesContent":[":root {\n --neeto-form-engine-primary-color: #2f3941;\n --neeto-form-engine-primary-color-dark: #000000;\n --neeto-form-engine-secondary-color: #ffffff;\n --neeto-form-engine-question-color: 0, 0, 0;\n --neeto-form-engine-answer-color: 45, 54, 212;\n --neeto-form-engine-button-background-color: 45, 54, 212;\n --neeto-form-engine-button-text-color: 255, 255, 255;\n --neeto-form-engine-error-color: 175, 4, 4;\n --neeto-form-engine-transition: all 0.1s ease-out;\n --neeto-form-engine-border-radius-sm: 0.3125rem;\n}\n","@keyframes rotate {\n from {\n transform: rotate(0deg);\n }\n\n to {\n transform: rotate(360deg);\n }\n}\n\n@keyframes rotate-and-scale {\n from {\n transform: rotate(0deg) scale(0);\n }\n\n to {\n transform: rotate(-360deg) scale(1);\n }\n}\n\n@keyframes rotate-and-scale-clockwise {\n from {\n transform: rotate(0deg) scale(0);\n }\n\n to {\n transform: rotate(360deg) scale(1);\n }\n}\n\n@keyframes fade-in {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n",".neeto-form-engine-add-question-between {\n visibility: hidden;\n}\n\n.neeto-form-engine-add-question-between * {\n transition: none !important;\n}\n\n.neeto-form-engine-question-accordion__drag-icon {\n display: none !important;\n}\n\n.neeto-form-engine-question-accordion .neeto-form-engine-question-accordion__header {\n border-radius: var(--neeto-ui-rounded-lg);\n}\n\n.neeto-form-engine-question-accordion .neeto-form-engine-question-accordion__body {\n border-radius: var(--neeto-ui-rounded-lg);\n}\n\n.neeto-form-engine-question-accordion:hover .neeto-form-engine-add-question-between {\n visibility: visible;\n}\n\n.neeto-form-engine-question-accordion:hover .neeto-form-engine-question-accordion__drag-icon {\n display: block !important;\n}\n\n.neeto-form-engine-question-accordion:hover .neeto-form-engine-question-accordion__icon {\n display: none !important;\n}\n\n.neeto-form-engine-form h5 {\n font-weight: var(--neeto-ui-font-semibold);\n font-size: var(--neeto-ui-text-sm);\n line-height: var(--neeto-ui-leading-normal);\n color: rgb(var(--neeto-ui-gray-800));\n margin-bottom: 1rem;\n}\n\n.neeto-form-engine-form .neeto-form-engine-questions-wrapper {\n max-height: calc(100vh - 240px);\n}\n\n.neeto-form-engine-form .neeto-form-engine-input__wrapper:not(:last-child),\n.neeto-form-engine-form .neeto-form-engine-rating:not(:last-child),\n.neeto-form-engine-form .neeto-form-engine-star-rating:not(:last-child),\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper:not(:last-child) {\n margin-bottom: 1rem;\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 0.5rem;\n margin: 0.5rem 0 0;\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice {\n width: 100%;\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n\n background-color: rgb(var(--neeto-ui-white));\n border: thin solid rgb(var(--neeto-ui-gray-300));\n border-radius: var(--neeto-ui-rounded);\n color: rgb(var(--neeto-ui-gray-700));\n font-size: var(--neeto-ui-text-sm);\n line-height: var(--neeto-ui-leading-normal);\n transition: var(--neeto-ui-transition);\n cursor: pointer;\n padding: 0.625rem 0.75rem;\n gap: 0.75rem;\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice:hover {\n border-color: rgb(var(-neeto-ui-gray-400));\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice.active {\n border-color: rgb(var(--neeto-ui-gray-800));\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"checkbox\"] {\n border-radius: var(--neeto-ui-rounded-sm);\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"checkbox\"],\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"radio\"] {\n width: 1rem;\n height: 1rem;\n border: 2px solid rgb(var(--neeto-ui-gray-300));\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"checkbox\"]:not(:disabled),\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"radio\"]:not(:disabled) {\n cursor: pointer;\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"checkbox\"]:hover:not(:disabled, :checked),\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"radio\"]:hover:not(:disabled, :checked) {\n border-color: rgb(var(-neeto-ui-gray-400));\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"checkbox\"]:checked,\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"radio\"]:checked {\n border: none !important;\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"checkbox\"]:disabled,\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"radio\"]:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"checkbox\"]:focus,\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"checkbox\"]:focus-visible,\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"radio\"]:focus,\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"radio\"]:focus-visible {\n outline: transparent;\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"checkbox\"]:focus-visible,\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice input[type=\"radio\"]:focus-visible {\n box-shadow: 0 0 0 2px rgb(var(--neeto-ui-white)),\n 0 0 0 4px rgb(var(--neeto-ui-gray-300));\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice label {\n font-weight: 400;\n}\n\n.neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-ui-radio__container {\n width: 100%;\n gap: 0.5rem;\n}\n\n.neeto-form-engine-form .neeto-form-engine-star-rating > .neeto-form-engine-label {\n margin-bottom: 1rem;\n}\n\n.neeto-form-engine-form .neeto-form-engine-star-rating .neeto-form-engine-star-rating__row {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 1.5rem;\n flex-wrap: wrap;\n}\n\n.neeto-form-engine-form .neeto-form-engine-star-rating .neeto-form-engine-star-rating__row input[type=\"radio\"] {\n display: none;\n}\n\n.neeto-form-engine-form .neeto-form-engine-star-rating .neeto-form-engine-star-rating__row .neeto-form-engine-star-rating__icon.neeto-form-engine-star-rating__icon--active {\n fill: rgb(var(--neeto-ui-primary-500));\n stroke: rgb(var(--neeto-ui-primary-500));\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating > .neeto-form-engine-label {\n margin-bottom: 1rem;\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 1.5rem;\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row input[type=\"radio\"] {\n display: none;\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n padding: 0.5rem;\n color: rgb(var(--neeto-ui-gray-600));\n cursor: pointer;\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item svg {\n margin-bottom: 0.25rem;\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item svg path {\n stroke: currentColor;\n transition: var(--neeto-ui-transition);\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item .neeto-form-engine-label {\n color: inherit;\n transition: var(--neeto-ui-transition);\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--happy:hover,\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--happy:focus,\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--happy:active,\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--happy.active {\n color: rgb(var(--neeto-ui-success-500));\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--confused:hover,\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--confused:focus,\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--confused:active,\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--confused.active {\n color: rgb(var(--neeto-ui-warning-500));\n}\n\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--sad:hover,\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--sad:focus,\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--sad:active,\n.neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item.neeto-form-engine-rating__item--sad.active {\n color: rgb(var(--neeto-ui-error-500));\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice {\n width: 100%;\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n\n color: rgb(var(--neeto-ui-gray-700));\n font-size: var(--neeto-ui-text-sm);\n line-height: var(--neeto-ui-leading-normal);\n transition: var(--neeto-ui-transition);\n padding: 0.5rem 0;\n gap: 0.75rem;\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice:hover {\n border-color: rgb(var(-neeto-ui-gray-400));\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice.active {\n border-color: rgb(var(--neeto-ui-gray-800));\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"checkbox\"] {\n border-radius: var(--neeto-ui-rounded-sm);\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"checkbox\"],\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"radio\"] {\n width: 1rem;\n height: 1rem;\n border: 2px solid rgb(var(--neeto-ui-gray-300));\n align-self: flex-start;\n margin-top: 0.125rem;\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"checkbox\"]:not(:disabled),\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"radio\"]:not(:disabled) {\n cursor: pointer;\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"checkbox\"]:hover:not(:disabled, :checked),\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"radio\"]:hover:not(:disabled, :checked) {\n border-color: rgb(var(-neeto-ui-gray-400));\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"checkbox\"]:checked,\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"radio\"]:checked {\n border: none !important;\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"checkbox\"]:disabled,\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"radio\"]:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"checkbox\"]:focus,\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"checkbox\"]:focus-visible,\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"radio\"]:focus,\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"radio\"]:focus-visible {\n outline: transparent;\n}\n\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"checkbox\"]:focus-visible,\n.neeto-form-engine-terms .neeto-form-engine-choice input[type=\"radio\"]:focus-visible {\n box-shadow: 0 0 0 2px rgb(var(--neeto-ui-white)),\n 0 0 0 4px rgb(var(--neeto-ui-gray-300));\n}\n\nbody .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-input input {\n min-height: 2.5rem;\n padding: 0.5em 0.8em;\n}\n\nbody .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-react-select__container .neeto-ui-react-select__value-container {\n min-height: 2.5rem;\n}\n\nbody .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-input__prefix .neeto-ui-react-select__value-container {\n min-height: 1.875rem;\n}\n\nbody .neeto-form-engine-form .neeto-form-engine-date-picker .ant-picker-input > input {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\nbody .neeto-form-engine-form .neeto-form-engine-star-rating__row button {\n outline: none;\n}\n\nbody .neeto-form-engine-form .neeto-form-engine-form .neeto-form-engine-rating .neeto-form-engine-rating__row .neeto-form-engine-rating__item {\n outline: none;\n box-shadow: none;\n}\n\nbody .neeto-form-engine-form .neeto-form-engine-form {\n display: flex;\n flex-direction: column;\n gap: 0.625rem;\n}\n\nbody .neeto-form-engine-form .neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice {\n background-color: rgb(var(--neeto-ui-white));\n}\n\nbody .neeto-form-engine-form .neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice {\n padding-top: 0.625rem;\n padding-bottom: 0.625rem;\n}\n\n/* Focus ring overrides */\n\nbody .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-input:focus-within:not(.neeto-ui-input--naked, .neeto-ui-input--error) {\n box-shadow: 0 0 0 1px rgb(var(--neeto-ui-primary-500)) inset;\n}\n\nbody .neeto-form-engine-form .neeto-ui-input__wrapper .neeto-ui-input.neeto-ui-input--error:focus-within {\n box-shadow: 0 0 0 1px rgb(var(--neeto-ui-error-500)) inset;\n}\n\nbody .neeto-form-engine-form .neeto-ui-react-select__control.neeto-ui-react-select__control--is-focused {\n box-shadow: 0 0 0 1px rgb(var(--neeto-ui-primary-500)) inset;\n}\n\nbody .neeto-form-engine-form .neeto-ui-react-select__container.neeto-ui-react-select__container--error .neeto-ui-react-select__control.neeto-ui-react-select__control--is-focused {\n box-shadow: 0 0 0 1px rgb(var(--neeto-ui-error-500)) inset;\n}\n\n.neeto-form-nano-form__card--active {\n box-shadow: 0 0 0 1px rgb(var(--neeto-ui-primary-500)) inset;\n}\n\n.neeto-form-nano-advanced-properties-accordion {\n --neeto-ui-accordion-item-padding-x: 0rem;\n --neeto-ui-accordion-drop-padding-x: 0rem;\n --neeto-ui-accordion-wrapper-border-width: 0rem;\n}\n\n.neeto-ui-input__wrapper.neeto-form-nano-placeholder-input .neeto-ui-input textarea {\n padding-top: 0.1875rem;\n}\n\n.neeto-ui-input__wrapper.neeto-form-nano-placeholder-input.neeto-form-nano-placeholder-input-textarea .neeto-ui-input textarea,\n.neeto-ui-input__wrapper.neeto-form-nano-placeholder-input.neeto-form-nano-placeholder-input-rich_text .neeto-ui-input textarea {\n min-height: 4em !important;\n}\n\n@media (max-width: 768px) {\n .neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice label {\n font-size: 1rem;\n }\n}\n",".neeto-form-nano-adaptive-input textarea {\n --neeto-ui-input-line-height: 1.5;\n}\n","button.neeto-form-engine-button {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n position: relative;\n\n font-weight: var(--neeto-ui-font-medium);\n font-size: var(--neeto-ui-text-sm);\n line-height: 1;\n letter-spacing: -0.0094rem;\n color: var(--neeto-form-engine-secondary-color);\n\n border-radius: var(--neeto-ui-rounded-sm);\n background-color: var(--neeto-form-engine-primary-color);\n transition: var(--neeto-ui-transition);\n padding: 0.5rem 0.75rem;\n}\n\nbutton.neeto-form-engine-button:hover,\nbutton.neeto-form-engine-button:focus,\nbutton.neeto-form-engine-button:active {\n background-color: var(--neeto-form-engine-primary-color-dark);\n}\n\n.neeto-form-engine-button__loader,\n.neeto-form-engine-button__success {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n position: absolute;\n inset-inline-start: 0;\n top: 0;\n width: 100%;\n height: 100%;\n border-radius: inherit;\n background: inherit;\n cursor: default;\n outline: none;\n}\n\n.neeto-form-engine-button__loader svg path,\n.neeto-form-engine-button__success svg path {\n stroke: currentColor;\n}\n",".neeto-form-engine-input__wrapper {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n flex-grow: 1;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input__label-wrapper {\n display: flex;\n justify-content: space-between;\n margin-bottom: 0.375rem;\n width: 100%;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-rich-text-input {\n width: 100%;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input {\n width: 100%;\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n font-size: var(--neeto-ui-text-sm);\n line-height: 1.6;\n transition: var(--neeto-ui-transition);\n border-radius: var(--neeto-ui-rounded);\n border: thin solid rgb(var(--neeto-ui-gray-400));\n background-color: rgb(var(--neeto-ui-white));\n color: rgb(var(--neeto-ui-gray-800));\n overflow: hidden;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--textarea {\n padding: 0.5rem;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input input,\n.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea {\n width: 100%;\n background-color: transparent;\n color: inherit;\n border: none;\n font-size: inherit;\n line-height: inherit;\n box-shadow: none;\n outline: none;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input input::placeholder,\n.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea::placeholder {\n color: rgb(var(-neeto-ui-gray-400));\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input input:focus,\n.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea:focus {\n outline-color: transparent;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input input {\n padding: 0.375rem 0.5rem;\n line-height: 1.3;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input textarea {\n padding: 0;\n max-height: 14rem;\n overflow-y: auto;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input:focus-within:not(.neeto-form-engine-input--error) {\n border-color: rgb(var(--neeto-ui-gray-800));\n box-shadow: var(--neeto-ui-shadow-m);\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input:hover:not(.neeto-form-engine-input--error, .neeto-form-engine-input--disabled) {\n border-color: rgb(var(--neeto-ui-gray-700));\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--error {\n border-color: rgb(var(--neeto-ui-error-500));\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--error:focus-within {\n box-shadow: 0 0 0 3px rgb(var(--neeto-ui-pastel-red));\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--error textarea {\n resize: none;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--disabled {\n background-color: rgb(var(--neeto-ui-gray-100));\n cursor: not-allowed;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--disabled input {\n cursor: not-allowed;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input.neeto-form-engine-input--disabled textarea {\n cursor: not-allowed;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input__prefix,\n.neeto-form-engine-input__wrapper .neeto-form-engine-input__suffix {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n font-size: 0.875rem;\n color: rgb(var(--neeto-ui-gray-600));\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input__prefix svg,\n.neeto-form-engine-input__wrapper .neeto-form-engine-input__suffix svg {\n width: 1rem;\n height: 1rem;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input__prefix {\n margin-inline-start: 0.625rem;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input__suffix {\n margin-inline-end: 0.625rem;\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input--block-add-on .neeto-form-engine-input__prefix,\n.neeto-form-engine-input__wrapper .neeto-form-engine-input--block-add-on .neeto-form-engine-input__suffix {\n margin: 0;\n padding: 0.5rem 0.625rem;\n background-color: rgb(var(--neeto-ui-gray-100));\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input--block-add-on .neeto-form-engine-input__prefix {\n border-inline-end: thin solid rgb(var(--neeto-ui-gray-300));\n}\n\n.neeto-form-engine-input__wrapper .neeto-form-engine-input--block-add-on .neeto-form-engine-input__suffix {\n border-inline-start: thin solid rgb(var(--neeto-ui-gray-300));\n}\n\n.neeto-form-engine-input__error {\n margin-top: 0.25rem;\n font-size: var(--neeto-ui-text-xs);\n color: rgb(var(--neeto-ui-error-500));\n}\n\n.neeto-form-engine-label {\n font-size: var(--neeto-ui-text-sm);\n color: rgb(var(--neeto-ui-black));\n font-weight: var(--neeto-ui-font-medium);\n letter-spacing: -0.0094rem;\n line-height: 1.5;\n}\n\n@media (max-width: 768px) {\n .neeto-form-engine-input__wrapper .neeto-form-engine-rich-text-input {\n font-size: 1rem;\n }\n\n .neeto-form-engine-input__wrapper .neeto-form-engine-input {\n font-size: 1rem;\n }\n\n .neeto-form-engine-input__wrapper .neeto-form-engine-input input,\n .neeto-form-engine-input__wrapper .neeto-form-engine-input textarea {\n font-size: 1rem;\n }\n\n .neeto-form-engine-input__wrapper .neeto-form-engine-input__prefix,\n .neeto-form-engine-input__wrapper .neeto-form-engine-input__suffix {\n font-size: 1rem;\n }\n\n .neeto-ui-react-select__container,\n .neeto-ui-react-select__menu-portal,\n .neeto-ui-react-select__multi-value__label,\n .neeto-ui-react-select__input,\n .neeto-ui-input__wrapper .neeto-ui-input,\n .neeto-ui-input--medium {\n font-size: 1rem !important;\n }\n}\n\n.neeto-molecules-phone-number-input__input .neeto-ui-input input {\n direction: inherit;\n}",".neeto-form-engine-date-picker {\n display: flex;\n flex-direction: column;\n width: 100%;\n}\n\n.neeto-form-engine-date-picker .ant-picker {\n font-size: 0.875rem;\n line-height: 1.15;\n width: 100%;\n border-radius: var(--neeto-ui-rounded);\n transition: var(--neeto-ui-transition);\n border: thin solid rgb(var(--neeto-ui-gray-400));\n color: rgb(var(--neeto-ui-gray-800));\n background-color: rgb(var(--neeto-ui-white));\n padding: 0;\n}\n\n.neeto-form-engine-date-picker .ant-picker:hover:not(.neeto-form-engine-input--error, .neeto-form-engine-input--disabled) {\n border-color: rgb(var(--neeto-ui-gray-700));\n}\n\n.neeto-form-engine-date-picker .ant-picker.ant-picker-focused:not(.neeto-form-engine-input--error) {\n outline: none !important;\n border-color: rgb(var(--neeto-ui-gray-800)) !important;\n box-shadow: var(--neeto-ui-shadow-m) !important;\n}\n\n.neeto-form-engine-date-picker .ant-picker.neeto-form-engine-input--error {\n border-color: rgb(var(--neeto-ui-error-500)) !important;\n}\n\n.neeto-form-engine-date-picker .ant-picker.neeto-form-engine-input--error:focus-within {\n box-shadow: 0 0 0 3px rgb(var(--neeto-ui-pastel-red)) !important;\n}\n\n.neeto-form-engine-date-picker .ant-picker.neeto-form-engine-input--error.ant-picker-focused {\n border-color: rgb(var(--neeto-ui-error-500)) !important;\n box-shadow: 0 0 0 3px rgb(var(--neeto-ui-pastel-red)) !important;\n}\n\n.neeto-form-engine-date-picker .ant-picker.neeto-form-engine-input--error textarea {\n resize: none;\n}\n\n.neeto-form-engine-date-picker .ant-picker.neeto-ui-date-input {\n padding: 0;\n}\n\n.neeto-form-engine-date-picker .ant-picker-suffix {\n color: rgba(var(--neeto-ui-gray-800));\n padding-inline-end: 0.4444444444em;\n margin: 0;\n}\n\n.neeto-form-engine-date-picker .ant-picker-suffix svg {\n width: 1rem;\n height: 1rem;\n}\n\n.neeto-form-engine-date-picker .ant-picker-clear {\n color: rgba(var(--neeto-ui-gray-800));\n margin-inline-end: 0.4444444444rem;\n background-color: transparent;\n}\n\n.neeto-form-engine-date-picker .ant-picker-clear svg {\n width: 1rem;\n height: 1rem;\n color: inherit;\n}\n\n.neeto-form-engine-date-picker .ant-picker-clear+.ant-picker-suffix .ant-picker-suffix {\n opacity: 0;\n}\n\n.neeto-form-engine-date-picker .ant-picker-input:hover input:not([value=\"\"])+.ant-picker-suffix {\n opacity: 0;\n}\n\n.neeto-form-engine-date-picker .ant-picker-input>input {\n font-size: 0.875rem;\n padding: 0.375rem 0.5rem;\n color: rgba(var(--neeto-ui-gray-800));\n background-color: transparent;\n}\n\n.neeto-form-engine-date-picker .ant-picker-input>input::placeholder {\n /* Chrome, Firefox, Opera, Safari 10.1+ */\n color: rgba(var(--neeto-form-answer-color), 0.5);\n opacity: 1;\n /* Firefox */\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-panel-container {\n background-color: rgb(var(--neeto-ui-white));\n border: 1px solid rgba(var(--neeto-ui-gray-800), 0.8);\n border-radius: 0.75rem;\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-panel-container .ant-picker-panel {\n border: 0;\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-cell,\n.neeto-form-engine-date-picker-popup .ant-picker-time-panel-column>li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner {\n color: rgb(var(--neeto-ui-gray-800));\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-header button {\n color: rgb(var(--neeto-ui-gray-800)) !important;\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-header>button:hover {\n opacity: 0.8;\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-content th {\n color: rgba(var(--neeto-ui-gray-800), 0.8);\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-panel .ant-picker-header,\n.neeto-form-engine-date-picker-popup .ant-picker-panel .ant-picker-footer {\n border: 0;\n background-color: transparent;\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-today-btn,\n.neeto-form-engine-date-picker-popup .ant-picker-now-btn,\n.neeto-form-engine-date-picker-popup .ant-picker-ok .ant-btn {\n background-color: #4558f9 !important;\n color: rgb(var(--neeto-ui-white)) !important;\n cursor: pointer;\n padding: 0.25rem;\n border-radius: var(--neeto-ui-rounded);\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-today-btn:hover,\n.neeto-form-engine-date-picker-popup .ant-picker-today-btn:focus,\n.neeto-form-engine-date-picker-popup .ant-picker-now-btn:hover,\n.neeto-form-engine-date-picker-popup .ant-picker-now-btn:focus,\n.neeto-form-engine-date-picker-popup .ant-picker-ok .ant-btn:hover,\n.neeto-form-engine-date-picker-popup .ant-picker-ok .ant-btn:focus {\n opacity: 0.8;\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner,\n.neeto-form-engine-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner,\n.neeto-form-engine-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner {\n background-color: rgb(var(--neeto-form-answer-color));\n color: rgb(var(--neeto-form-answer-text-color));\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-time-panel-column>li.ant-picker-time-panel-cell-selected .ant-picker-time-panel-cell-inner {\n background-color: rgb(var(--neeto-form-answer-color));\n color: rgb(var(--neeto-form-answer-text-color));\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-time-panel-column:not(:first-child) {\n border-inline-start: none;\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-cell:hover:not(.ant-picker-cell-in-view) .ant-picker-cell-inner,\n.neeto-form-engine-date-picker-popup .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner {\n background-color: rgba(var(--neeto-form-question-color), 0.1);\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-time-panel-column>li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner:hover {\n background-color: rgba(var(--neeto-form-question-color), 0.1);\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-cell-in-view.ant-picker-cell-today .ant-picker-cell-inner::before {\n border-color: rgb(var(--neeto-form-answer-color)) !important;\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-cell .ant-picker-cell-inner {\n border-radius: 0.3125rem !important;\n}\n\n.neeto-form-engine-date-picker-popup .ant-picker-content th {\n font-size: 0.75rem;\n text-transform: uppercase;\n}\n\n.neeto-form-engine--md .neeto-form-date-picker .ant-picker-input>input {\n font-size: 1.25rem;\n height: calc(3rem - 2px);\n padding: 0.8em;\n}\n\n.neeto-form-engine--md .neeto-form-date-picker .ant-picker-suffix {\n padding-inline-end: 0.8rem;\n}\n\n.neeto-form-engine--md .neeto-form-date-picker .ant-picker-suffix svg {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n.neeto-form-engine--md .neeto-form-date-picker .ant-picker-clear {\n margin-inline-end: 0.8rem;\n}\n\n.neeto-form-engine--md .neeto-form-date-picker .ant-picker-clear svg {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n@media (min-width: 768px) {\n .neeto-form-engine-date-picker .ant-picker-cell .ant-picker-cell-inner {\n min-width: 2rem;\n height: 2rem;\n line-height: 2rem;\n }\n\n .neeto-form-engine-date-picker .ant-picker-date-panel {\n width: 320px;\n }\n\n .neeto-form-engine-date-picker .ant-picker-header {\n min-height: 4.25rem;\n padding: 0.75rem 1.5rem 0rem 1.5rem;\n white-space: nowrap;\n align-items: center;\n }\n\n .neeto-form-engine-date-picker .ant-picker-date-panel .ant-picker-body {\n padding-inline-start: 1.5rem;\n padding-inline-end: 1.5rem;\n }\n\n .neeto-form-engine-date-picker .ant-picker-date-panel .ant-picker-content {\n width: 272px;\n }\n}\n\n@media (max-width: 768px) {\n .neeto-form-engine-date-picker .ant-picker {\n font-size: 1rem;\n }\n\n .neeto-form-engine-date-picker .ant-picker-input>input {\n font-size: 1rem;\n }\n\n .neeto-form-engine--md .neeto-form-date-picker .ant-picker-input>input {\n font-size: 1rem;\n }\n}\n\n/* RTL Styles */\n\n[dir=\"rtl\"] .neeto-form-engine-date-picker-popup .ant-picker-header-next-btn {\n transform: rotate(180deg);\n}\n\n[dir=\"rtl\"] .neeto-form-engine-date-picker-popup .ant-picker-header-prev-btn {\n transform: rotate(180deg);\n}\n",".neeto-form-engine-loader {\n width: 100%;\n height: 100%;\n\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n\n.neeto-form-engine-spinner {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n\n.neeto-form-engine-spinner svg {\n animation: rotate 1s ease-in-out infinite;\n}\n",".neeto-form-engine-dropdown {\n display: inline-flex;\n align-items: center;\n position: relative;\n}\n\n.neeto-form-engine-dropdown button {\n margin: 0;\n}\n\n.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu {\n opacity: 0;\n background-color: rgb(var(--neeto-ui-white));\n border-radius: var(--neeto-ui-rounded);\n box-shadow: var(--neeto-ui-shadow-m)-m;\n transition: var(--neeto-ui-transition);\n pointer-events: none;\n min-width: 168px;\n padding: 0.25rem 0;\n margin: 0;\n\n position: absolute;\n top: 100%;\n inset-inline-end: 0;\n}\n\n.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li {\n list-style: none;\n}\n\n.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button {\n width: 100%;\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n\n color: rgb(var(--neeto-ui-gray-700));\n font-size: var(--neeto-ui-text-xs);\n transition: var(--neeto-ui-transition);\n white-space: nowrap;\n line-height: 1;\n padding: 0.5rem 0.625rem;\n gap: 0.5rem;\n cursor: pointer;\n}\n\n.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button:hover,\n.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button:active,\n.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button:focus {\n background-color: rgb(var(--neeto-ui-gray-200));\n}\n\n.neeto-form-engine-dropdown .neeto-form-engine-dropdown-menu li button svg {\n width: 0.875rem;\n height: 0.875rem;\n}\n\n/* Handle Dropdown Trigger */\n\n.neeto-form-engine-dropdown:hover .neeto-form-engine-dropdown-menu,\n.neeto-form-engine-dropdown>button:focus+.neeto-form-engine-dropdown-menu {\n opacity: 1;\n pointer-events: all;\n}\n",".neeto-form-engine-callout {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n gap: 0.75rem;\n\n width: calc(100% - 48px);\n background-color: rgb(var(--neeto-ui-gray-200));\n color: rgb(var(--neeto-ui-gray-600));\n border-radius: var(--neeto-ui-rounded-sm);\n padding: 0.75rem;\n\n position: absolute;\n inset-inline-start: 0;\n inset-inline-end: 0;\n bottom: 2.5rem;\n margin: auto;\n\n animation: fade-in 0.3s both;\n}\n\n.neeto-form-engine-callout.neeto-form-engine-callout--static {\n position: static;\n}\n\n.neeto-form-engine-callout.neeto-form-engine-callout--error {\n background-color: rgb(var(--neeto-ui-pastel-red));\n}\n\n.neeto-form-engine-callout.neeto-form-engine-callout--info {\n background-color: rgb(var(--neeto-ui-pastel-blue));\n}\n\n.neeto-form-engine-callout .neeto-form-engine-callout__close {\n position: absolute;\n inset-inline-end: 0.75rem;\n top: 0.75rem;\n padding: 0;\n color: rgb(var(--neeto-ui-gray-600));\n transition: var(--neeto-ui-transition);\n}\n\n.neeto-form-engine-callout .neeto-form-engine-callout__close:hover,\n.neeto-form-engine-callout .neeto-form-engine-callout__close:focus,\n.neeto-form-engine-callout .neeto-form-engine-callout__close:active {\n color: rgb(var(--neeto-ui-gray-800));\n}\n\n.neeto-form-engine-callout .neeto-form-engine-callout__content {\n width: 100%;\n max-width: 240px;\n margin: auto;\n}\n\n.neeto-form-engine-callout .neeto-form-engine-callout__content h5 {\n font-weight: var(--neeto-ui-font-semibold);\n font-size: var(--neeto-ui-text-sm);\n line-height: 1rem;\n text-align: center;\n letter-spacing: -0.0094rem;\n color: rgb(var(--neeto-ui-gray-800));\n margin-bottom: 0.25rem;\n}\n\n.neeto-form-engine-callout .neeto-form-engine-callout__content p {\n font-size: var(--neeto-ui-text-xs);\n line-height: 1rem;\n text-align: center;\n}\n\n.neeto-form-engine-callout button.neeto-form-engine-callout__button {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n\n font-weight: var(--neeto-ui-font-semibold);\n font-size: var(--neeto-ui-text-sm);\n line-height: 1rem;\n letter-spacing: -0.0094rem;\n color: rgb(var(--neeto-ui-gray-800));\n\n border-radius: var(--neeto-ui-rounded-sm);\n transition: var(--neeto-ui-transition);\n background-color: rgb(var(--neeto-ui-white));\n padding: 0.375rem 0.5rem;\n}\n\n.neeto-form-engine-callout button.neeto-form-engine-callout__button:hover,\n.neeto-form-engine-callout button.neeto-form-engine-callout__button:focus,\n.neeto-form-engine-callout button.neeto-form-engine-callout__button:active {\n background-color: rgb(var(--neeto-ui-gray-100));\n}\n",".neeto-form-engine-email-input {\n width: 100%;\n}\n\n.neeto-form-engine-email-input .neeto-form-engine-label {\n margin-bottom: 0.5rem;\n}\n\n.neeto-form-engine-email-input .neeto-form-engine-email-input__title-row {\n gap: 0.5rem;\n justify-content: space-between;\n width: 100%;\n}\n\n.neeto-form-engine-email-input .neeto-form-engine-email-input__title-row .neeto-form-engine-label {\n flex-grow: 1;\n overflow-wrap: break-word;\n}\n\n.neeto-form-engine-email-input .neeto-form-engine-email-input__title-row .neeto-form-engine-email-input__counter {\n color: rgb(var(--neeto-form-engine-gray-700));\n line-height: 1;\n margin-bottom: 0.5rem;\n margin-inline-start: auto;\n}\n\n.neeto-form-engine-email-input .neeto-form-engine-email-input__prefix {\n margin-inline-start: 0.75rem;\n}\n\n.neeto-form-engine-email-input .neeto-form-engine-email-input__prefix svg {\n width: 1rem;\n height: 1rem;\n}\n\n.neeto-form-engine-email-input .neeto-form-engine-email-input__suffix svg {\n width: 1rem;\n height: 1rem;\n}\n",".loader {\n min-height: 192px;\n}\n\n/* sizing */\n\n.neeto-form-nano-external-form .neeto-form-engine-form {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n}\n\n.neeto-form-nano-external-form--size-large {\n max-width: 46.5rem;\n margin: 0 auto;\n width: 100%;\n padding-top: 1rem;\n padding-inline-start: 1rem;\n padding-inline-end: 1rem;\n padding-bottom: 4rem;\n display: flex;\n flex-direction: column;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-form-engine-input__label-wrapper {\n margin: 0.5rem 0 1rem;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-ui-input__wrapper>.neeto-ui-input__label-wrapper>.neeto-ui-label,\n.neeto-form-nano-external-form--size-large .neeto-ui-input__wrapper>.neeto-ui-label {\n --neeto-ui-label-font-size: 1.3125rem;\n --neeto-ui-label-font-weight: 400;\n margin: 0.5rem 0 1rem;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-ui-checkbox__container .neeto-ui-label {\n --neeto-ui-label-font-size: 1.3125rem;\n --neeto-ui-label-font-weight: 400;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-form-engine-label {\n font-size: 1.3125rem;\n font-weight: 400;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-form-nano-external-form-header .neeto-form-nano-external-form-title {\n font-size: 2.25rem;\n text-align: start;\n font-weight: 400;\n line-height: 1.2;\n margin: 0.4em 0;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-form-nano-form-footer .neeto-ui-btn--size-medium {\n font-size: 1rem;\n height: 2.5rem;\n padding: 0.625em 1.25em;\n border-radius: 0.625rem !important;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-form-engine-choices__wrapper .neeto-form-engine-choices .neeto-form-engine-choice label {\n font-size: 1rem !important;\n top: -0.0625rem;\n position: relative;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-form-engine-star-rating .neeto-form-engine-star-rating__row .neeto-form-engine-label {\n font-size: 1rem;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-form-engine-rating__item .neeto-form-engine-label {\n font-size: 1rem;\n}\n\n.neeto-form-nano-external-form--size-large .neeto-form-engine-terms .neeto-ui-checkbox__container .neeto-ui-label {\n font-size: 1rem;\n}\n\n@media only screen and (min-width: 768px) {\n .neeto-form-nano-external-form--size-large .neeto-form-nano-external-form-header .neeto-form-nano-external-form-title {\n font-size: 3rem;\n }\n}\n\n.neeto-form-nano-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n",".neeto-molecules-file-upload__dropzone {\n width: 100%;\n}\n\n.neeto-molecules-file-upload__uploaded-list {\n width: 100%;\n}\n",".neeto-form-nano-math-captcha {\n border: 2px dashed rgba(var(--neeto-ui-primary-500), 0.5);\n border-radius: 0.3125rem;\n padding: 0.5rem;\n color: rgb(var(--neeto-ui-black));\n display: flex;\n align-items: center;\n gap: 0.3125rem;\n font-size: 0.875rem;\n}\n\n.neeto-form-nano-math-captcha__button {\n cursor: pointer;\n user-select: none;\n text-decoration: none;\n border: none;\n transition: all 0.1s ease-out;\n\n padding: 0.3125em;\n font-weight: 400;\n line-height: 1.2;\n min-height: 2.25rem;\n\n background: rgb(var(--neeto-ui-primary-500)) !important;\n color: rgb(var(--neeto-ui-white));\n border-radius: 0.1875em;\n\n display: inline-flex;\n align-items: center;\n gap: 0.25rem;\n}\n\n.neeto-form-nano-math-captcha__button:hover {\n opacity: 0.85;\n}\n\n.neeto-form-nano-math-captcha__button:focus-visible,\n.neeto-form-nano-math-captcha__button:focus {\n outline: 2px solid rgba(var(--neeto-ui-primary-500), 0.2);\n outline-offset: 1px;\n}\n\n.neeto-form-nano-math-captcha__equation {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 0.3125rem;\n min-width: 4rem;\n}\n\n.neeto-form-nano-math-captcha__input {\n width: 6rem;\n border-color: rgb(var(--neeto-ui-primary-500));\n}\n",".neeto-form-engine-form .neeto-form-engine-choices__wrapper .neeto-form-engine-choices.neeto-form-engine-choices--picture {\n display: grid;\n grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));\n gap: 1rem;\n}\n\n.neeto-form-engine-choice--picture.neeto-form-engine-choice--picture {\n display: flex;\n flex-direction: column !important;\n align-items: start !important;\n}\n\n.neeto-form-engine-choice__image-wrapper {\n width: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n overflow: hidden;\n border-radius: 0.25rem;\n background-color: rgb(var(--neeto-ui-gray-100));\n}\n\n.neeto-form-engine-choice__image-wrapper--loading {\n background-color: rgb(var(--neeto-ui-gray-200));\n animation: pulse 1.5s ease-in-out infinite;\n}\n\n.neeto-form-engine-choice__image {\n width: 100%;\n height: 100%;\n object-fit: contain;\n}\n\n.neeto-form-engine-choice__image--fit {\n object-fit: cover;\n}\n\n.neeto-form-engine-choice__image-placeholder {\n display: flex;\n align-items: center;\n justify-content: center;\n background-color: rgb(var(--neeto-ui-gray-200)) !important;\n border-radius: 0.25rem;\n color: rgb(var(--neeto-ui-gray-400));\n padding: 4rem;\n width: 100%;\n}\n\n@keyframes pulse {\n\n 0%,\n 100% {\n opacity: 1;\n }\n\n 50% {\n opacity: 0.5;\n }\n}\n\n.neeto-form-engine-fields-wrapper .neeto-molecules-option-fields__image-option {\n max-width: 280px;\n margin-right: auto;\n}\n\n/* fit images preview */\n@layer utilities {\n .neeto-form-engine-fields-wrapper .neeto-molecules-option-fields__image-uploader img {\n width: 100% !important;\n height: var(--neeto-form-engine-picture-choice-image-height) !important;\n max-height: 200px !important;\n }\n\n .neeto-form-engine-fields-wrapper--fit-image .neeto-molecules-option-fields__image-uploader img {\n object-fit: cover !important;\n }\n}","/* Opinion scale */\n\n.neeto-form-nano-opinion-scale__group {\n position: relative;\n display: inline-block;\n max-width: 100%;\n}\n\n.neeto-form-nano-opinion-scale__list {\n list-style: none;\n margin: 0;\n padding: 0;\n position: relative;\n gap: 6px;\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n width: 100%;\n}\n\n.neeto-form-nano-opinion-scale__item {\n color: rgb(var(--neeto-ui-primary-500));\n}\n\n.neeto-form-nano-opinion-scale__item-label {\n cursor: pointer;\n user-select: none;\n position: relative;\n width: 3rem;\n height: 3rem;\n display: block;\n border-radius: var(--neeto-form-engine-border-radius-sm);\n}\n\n.neeto-form-nano-opinion-scale__item-label:hover .neeto-form-nano-opinion-scale__item-highlight {\n background-color: rgba(var(--neeto-ui-primary-500), 0.1);\n}\n\n.neeto-form-nano-opinion-scale__item-highlight {\n position: absolute;\n inset-inline-start: 0;\n top: 0;\n width: 100%;\n height: 100%;\n display: inline-flex;\n align-items: center;\n justify-content: center;\n color: rgb(var(--neeto-ui-primary-500));\n background-color: transparent;\n box-shadow: 0 0 0 1px rgb(var(--neeto-ui-gray-800)) inset;\n border-radius: var(--neeto-form-engine-border-radius-sm);\n transition: var(--neeto-form-engine-transition);\n}\n\n.neeto-form-nano-opinion-scale__item-highlight:hover {\n background-color: rgba(var(--neeto-ui-primary-500), 0.1);\n}\n\n.neeto-form-nano-opinion-scale__item-input:focus+.neeto-form-nano-opinion-scale__item-highlight {\n background-color: rgba(var(--neeto-ui-primary-500), 0.1);\n}\n\n.neeto-form-nano-opinion-scale__item-input:checked+.neeto-form-nano-opinion-scale__item-highlight {\n background-color: rgb(var(--neeto-ui-primary-500));\n color: rgb(var(--neeto-ui-white)) !important;\n border-color: rgb(var(--neeto-ui-primary-500));\n box-shadow: 0 0 0 1px rgb(var(--neeto-ui-primary-500)) inset;\n}\n\n.neeto-form-nano-opinion-scale__item-input:checked+.neeto-form-nano-opinion-scale__item-highlight:hover {\n background-color: rgb(var(--neeto-ui-primary-500));\n}\n\n.neeto-form-nano-opinion-scale__labels-wrap {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin: 8px 0;\n}\n\n.neeto-form-nano-opinion-scale__label {\n font-size: 0.875rem;\n line-height: 1.2;\n color: rgb(var(--neeto-ui-gray-800));\n}\n\n.neeto-form-nano-opinion-scale__label--start {\n visibility: hidden;\n}\n\n@media (min-width: 768px) {\n .neeto-form-nano-opinion-scale__labels-wrap-mobile {\n display: none;\n }\n\n .neeto-form-nano-opinion-scale__label--start {\n visibility: visible;\n }\n}\n",".neeto-form-engine-address {\n display: flex;\n flex-wrap: wrap;\n margin-inline-start: -8px;\n margin-inline-end: -8px;\n}\n\n.neeto-form-engine-address__field {\n width: 100%;\n padding: 8px;\n}\n\n.neeto-form-engine-address__field--width-half {\n width: 50%;\n}\n\n.neeto-form-engine-address__field--width-one-forth {\n width: 25%;\n}\n\n.neeto-form-engine-address__field--width-three-forth {\n width: 75%;\n}\n"]}
@@ -1,24 +0,0 @@
1
- 'use strict';
2
-
3
- var constants = require('./constants-DNNZYQ9X.js');
4
-
5
- var useFormSubmission = function useFormSubmission(_ref) {
6
- var _ref$formId = _ref.formId,
7
- formId = _ref$formId === void 0 ? "" : _ref$formId,
8
- _ref$submissionId = _ref.submissionId,
9
- submissionId = _ref$submissionId === void 0 ? "" : _ref$submissionId;
10
- var _useSubmission = constants.useSubmission({
11
- formId: formId,
12
- submissionId: submissionId,
13
- enabled: !!(formId && submissionId)
14
- }),
15
- submission = _useSubmission.data,
16
- isLoading = _useSubmission.isLoading;
17
- return {
18
- submission: submission,
19
- isLoading: isLoading
20
- };
21
- };
22
-
23
- exports.useFormSubmission = useFormSubmission;
24
- //# sourceMappingURL=useFormSubmission-CdKlP6De.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"useFormSubmission-CdKlP6De.js","sources":["../app/javascript/src/hooks/useFormSubmission.js"],"sourcesContent":["import { useSubmission } from \"./useFormApi\";\n\nconst useFormSubmission = ({ formId = \"\", submissionId = \"\" }) => {\n const { data: submission, isLoading } = useSubmission({\n formId,\n submissionId,\n enabled: !!(formId && submissionId),\n });\n\n return { submission, isLoading };\n};\n\nexport default useFormSubmission;\n"],"names":["useFormSubmission","_ref","_ref$formId","formId","_ref$submissionId","submissionId","_useSubmission","useSubmission","enabled","submission","data","isLoading"],"mappings":";;;;AAEA,IAAMA,iBAAiB,GAAG,SAApBA,iBAAiBA,CAAAC,IAAA,EAA2C;AAAA,EAAA,IAAAC,WAAA,GAAAD,IAAA,CAArCE,MAAM;AAANA,IAAAA,MAAM,GAAAD,WAAA,KAAG,KAAA,CAAA,GAAA,EAAE,GAAAA,WAAA;IAAAE,iBAAA,GAAAH,IAAA,CAAEI,YAAY;AAAZA,IAAAA,YAAY,GAAAD,iBAAA,KAAG,KAAA,CAAA,GAAA,EAAE,GAAAA,iBAAA;EACzD,IAAAE,cAAA,GAAwCC,uBAAa,CAAC;AACpDJ,MAAAA,MAAM,EAANA,MAAM;AACNE,MAAAA,YAAY,EAAZA,YAAY;AACZG,MAAAA,OAAO,EAAE,CAAC,EAAEL,MAAM,IAAIE,YAAY;AACpC,KAAC,CAAC;IAJYI,UAAU,GAAAH,cAAA,CAAhBI,IAAI;IAAcC,SAAS,GAAAL,cAAA,CAATK,SAAS;EAMnC,OAAO;AAAEF,IAAAA,UAAU,EAAVA,UAAU;AAAEE,IAAAA,SAAS,EAATA;GAAW;AAClC;;;;"}