@bigbinary/neeto-thank-you-frontend 1.1.4 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/README.md +34 -14
  2. package/dist/BrandingInfo-da0b773a.js +32 -0
  3. package/dist/BrandingInfo-da0b773a.js.map +1 -0
  4. package/dist/ConfigureThankYou.js +534 -0
  5. package/dist/ConfigureThankYou.js.map +1 -0
  6. package/dist/ShowThankYou.js +81 -0
  7. package/dist/ShowThankYou.js.map +1 -0
  8. package/dist/SocialShare-d2986d0d.js +40 -0
  9. package/dist/SocialShare-d2986d0d.js.map +1 -0
  10. package/dist/cjs/BrandingInfo-cdb9a379.js +38 -0
  11. package/dist/cjs/BrandingInfo-cdb9a379.js.map +1 -0
  12. package/dist/cjs/ConfigureThankYou.js +573 -0
  13. package/dist/cjs/ConfigureThankYou.js.map +1 -0
  14. package/dist/cjs/ShowThankYou.js +89 -0
  15. package/dist/cjs/ShowThankYou.js.map +1 -0
  16. package/dist/cjs/SocialShare-99170cdb.js +47 -0
  17. package/dist/cjs/SocialShare-99170cdb.js.map +1 -0
  18. package/dist/cjs/commons.js +42 -0
  19. package/dist/cjs/commons.js.map +1 -0
  20. package/dist/cjs/constants.js +19 -0
  21. package/dist/cjs/constants.js.map +1 -0
  22. package/dist/cjs/index.js +52 -0
  23. package/dist/cjs/index.js.map +1 -0
  24. package/dist/cjs/query-95d5312e.js +12 -0
  25. package/dist/cjs/query-95d5312e.js.map +1 -0
  26. package/dist/cjs/useShowThankYouConfiguration.js +12 -0
  27. package/dist/cjs/useShowThankYouConfiguration.js.map +1 -0
  28. package/dist/cjs/useShowThankYouPage.js +11 -0
  29. package/dist/cjs/useShowThankYouPage.js.map +1 -0
  30. package/dist/cjs/useThankYouConfigurationApi-d04d9e79.js +55 -0
  31. package/dist/cjs/useThankYouConfigurationApi-d04d9e79.js.map +1 -0
  32. package/dist/cjs/useThankYouPageApi-8ed1dad1.js +40 -0
  33. package/dist/cjs/useThankYouPageApi-8ed1dad1.js.map +1 -0
  34. package/dist/cjs/utils.js +16 -0
  35. package/dist/cjs/utils.js.map +1 -0
  36. package/dist/commons.js +33 -0
  37. package/dist/commons.js.map +1 -0
  38. package/dist/constants.js +13 -0
  39. package/dist/constants.js.map +1 -0
  40. package/dist/index.js +41 -851
  41. package/dist/index.js.map +1 -1
  42. package/dist/query-ab526f47.js +9 -0
  43. package/dist/query-ab526f47.js.map +1 -0
  44. package/dist/useShowThankYouConfiguration.js +7 -0
  45. package/dist/useShowThankYouConfiguration.js.map +1 -0
  46. package/dist/useShowThankYouPage.js +6 -0
  47. package/dist/useShowThankYouPage.js.map +1 -0
  48. package/dist/useThankYouConfigurationApi-4d803194.js +48 -0
  49. package/dist/useThankYouConfigurationApi-4d803194.js.map +1 -0
  50. package/dist/useThankYouPageApi-14742993.js +34 -0
  51. package/dist/useThankYouPageApi-14742993.js.map +1 -0
  52. package/dist/utils.js +12 -0
  53. package/dist/utils.js.map +1 -0
  54. package/package.json +20 -12
  55. package/types/ConfigureThankYou.d.ts +49 -0
  56. package/types/ShowThankYou.d.ts +28 -0
  57. package/types/useShowThankYouConfiguration.d.ts +8 -0
  58. package/types/useShowThankYouPage.d.ts +17 -0
  59. package/types.d.ts +4 -75
  60. package/dist/index.cjs.js +0 -898
  61. package/dist/index.cjs.js.map +0 -1
package/dist/index.js CHANGED
@@ -1,853 +1,43 @@
1
- import * as React from 'react';
2
- import React__default, { useState, useEffect, useRef } from 'react';
3
- import { hyphenate, noop } from '@bigbinary/neeto-cist';
4
- import Scrollable from '@bigbinary/neeto-molecules/Scrollable';
5
- import { t as t$1 } from 'i18next';
6
- import { isEditorEmpty, FormikEditor, EditorContent } from '@bigbinary/neeto-editor';
7
- import * as yup from 'yup';
8
- import classNames from 'classnames';
9
- import PageLoader from '@bigbinary/neeto-molecules/PageLoader';
10
- import ActionBlock from '@bigbinary/neetoui/formik/ActionBlock';
11
- import BlockNavigation from '@bigbinary/neetoui/formik/BlockNavigation';
12
- import NeetoUIForm from '@bigbinary/neetoui/formik/Form';
13
- import Radio from '@bigbinary/neetoui/formik/Radio';
14
- import { isEmpty } from 'ramda';
15
- import { useMutationWithInvalidation } from '@bigbinary/neeto-commons-frontend/react-utils';
16
- import { useQuery } from 'react-query';
17
- import axios from 'axios';
18
- import { useFormikContext } from 'formik';
19
- import Label$1 from '@bigbinary/neetoui/Label';
20
- import Input from '@bigbinary/neetoui/formik/Input';
21
- import Switch from '@bigbinary/neetoui/formik/Switch';
22
- import { useTranslation, Trans } from 'react-i18next';
23
- import { ImageUploader } from '@bigbinary/neeto-image-uploader-frontend';
24
- import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
25
- import Button from '@bigbinary/neetoui/Button';
26
- import Typography from '@bigbinary/neetoui/Typography';
27
- import Modal from '@bigbinary/neetoui/Modal';
28
- import { buildUrl } from '@bigbinary/neeto-commons-frontend/utils';
29
- import { globalProps } from '@bigbinary/neeto-commons-frontend/initializers';
30
- import { Link } from '@bigbinary/neeto-icons';
31
- import NeetoUIHeader from '@bigbinary/neeto-molecules/Header';
32
-
33
- var FORM_OPTIONS = {
34
- customize: {
35
- label: t$1("neetoThankYou.thankYou.customize"),
36
- description: t$1("neetoThankYou.thankYou.customizeDescription"),
37
- kind: "custom_message"
38
- },
39
- externalLink: {
40
- label: t$1("neetoThankYou.thankYou.externalLink"),
41
- description: t$1("neetoThankYou.thankYou.externalLinkDescription"),
42
- kind: "redirect_to_url"
43
- }
44
- };
45
- var DEFAULT_IMAGE_PROPERTIES = {
46
- imageSignedId: null,
47
- imageUrl: ""
48
- };
49
- var VALIDATION_SCHEMA = yup.object().shape({
50
- kind: yup.string().required(),
51
- message: yup.string().test("message", t$1("neetoThankYou.thankYou.validations.messageRequired"), function (value) {
52
- return !isEditorEmpty(value);
53
- }),
54
- socialSharingEnabled: yup.bool(),
55
- showResubmitLink: yup.bool(),
56
- resubmitLinkText: yup.string().when("showResubmitLink", {
57
- is: true,
58
- then: yup.string().required(t$1("neetoThankYou.thankYou.validations.resubmitLinkTextIsRequired"))
59
- }),
60
- redirectUrl: yup.string().when("kind", {
61
- is: FORM_OPTIONS.externalLink.kind,
62
- then: yup.string().url(t$1("neetoThankYou.thankYou.validations.invalidLink")).required(t$1("neetoThankYou.thankYou.validations.invalidLink")).when("kind", {
63
- is: FORM_OPTIONS.customize.kind,
64
- then: yup.string()
65
- })
66
- })
67
- });
68
- var EXTERNAL_URL_PREFIX = "https://";
69
- var THANK_YOU_TEXT_ALIGNMENTS = {
70
- left: "left",
71
- center: "center"
72
- };
73
-
74
- function _typeof(o) {
75
- "@babel/helpers - typeof";
76
-
77
- return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
78
- return typeof o;
79
- } : function (o) {
80
- return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
81
- }, _typeof(o);
82
- }
83
-
84
- function _toPrimitive(input, hint) {
85
- if (_typeof(input) !== "object" || input === null) return input;
86
- var prim = input[Symbol.toPrimitive];
87
- if (prim !== undefined) {
88
- var res = prim.call(input, hint || "default");
89
- if (_typeof(res) !== "object") return res;
90
- throw new TypeError("@@toPrimitive must return a primitive value.");
91
- }
92
- return (hint === "string" ? String : Number)(input);
93
- }
94
-
95
- function _toPropertyKey(arg) {
96
- var key = _toPrimitive(arg, "string");
97
- return _typeof(key) === "symbol" ? key : String(key);
98
- }
99
-
100
- function _defineProperty(obj, key, value) {
101
- key = _toPropertyKey(key);
102
- if (key in obj) {
103
- Object.defineProperty(obj, key, {
104
- value: value,
105
- enumerable: true,
106
- configurable: true,
107
- writable: true
108
- });
109
- } else {
110
- obj[key] = value;
111
- }
112
- return obj;
113
- }
114
-
115
- var THANK_YOU_ENGINE_BASE_URL = "/neeto_thank_you_engine";
116
-
117
- var baseUrl$1 = "".concat(THANK_YOU_ENGINE_BASE_URL, "/thank_you_configuration");
118
- var show$1 = function show(entityId) {
119
- return axios.get(baseUrl$1, {
120
- params: {
121
- entityId: entityId
122
- }
123
- });
124
- };
125
- var update = function update(_ref) {
126
- var entityId = _ref.entityId,
127
- payload = _ref.payload;
128
- return axios.put(baseUrl$1, {
129
- entityId: entityId,
130
- thankYouConfiguration: payload
131
- });
132
- };
133
- var thankYouConfigurationApi = {
134
- show: show$1,
135
- update: update
136
- };
137
-
138
- var QUERY_KEYS = {
139
- THANK_YOU_CONFIGURATION: "thank-you-configuration",
140
- THANK_YOU_PAGE: "thank-you-page"
141
- };
142
-
143
- function ownKeys$2(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
144
- function _objectSpread$2(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$2(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$2(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
145
- var useShowThankYouConfiguration = function useShowThankYouConfiguration(_ref) {
146
- var entityId = _ref.entityId;
147
- return useQuery([QUERY_KEYS.THANK_YOU_CONFIGURATION, entityId], function () {
148
- return thankYouConfigurationApi.show(entityId);
149
- });
150
- };
151
- var useUpdateThankYouConfiguration = function useUpdateThankYouConfiguration(options) {
152
- return useMutationWithInvalidation(function (_ref2) {
153
- var entityId = _ref2.entityId,
154
- payload = _ref2.payload;
155
- return thankYouConfigurationApi.update({
156
- entityId: entityId,
157
- payload: payload
158
- });
159
- }, _objectSpread$2({
160
- keysToInvalidate: [QUERY_KEYS.THANK_YOU_CONFIGURATION]
161
- }, options));
162
- };
163
-
164
- function _arrayWithHoles(arr) {
165
- if (Array.isArray(arr)) return arr;
166
- }
167
-
168
- function _iterableToArrayLimit(r, l) {
169
- var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
170
- if (null != t) {
171
- var e,
172
- n,
173
- i,
174
- u,
175
- a = [],
176
- f = !0,
177
- o = !1;
178
- try {
179
- if (i = (t = t.call(r)).next, 0 === l) {
180
- if (Object(t) !== t) return;
181
- f = !1;
182
- } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);
183
- } catch (r) {
184
- o = !0, n = r;
185
- } finally {
186
- try {
187
- if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return;
188
- } finally {
189
- if (o) throw n;
190
- }
191
- }
192
- return a;
193
- }
194
- }
195
-
196
- function _arrayLikeToArray(arr, len) {
197
- if (len == null || len > arr.length) len = arr.length;
198
- for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
199
- return arr2;
200
- }
201
-
202
- function _unsupportedIterableToArray(o, minLen) {
203
- if (!o) return;
204
- if (typeof o === "string") return _arrayLikeToArray(o, minLen);
205
- var n = Object.prototype.toString.call(o).slice(8, -1);
206
- if (n === "Object" && o.constructor) n = o.constructor.name;
207
- if (n === "Map" || n === "Set") return Array.from(o);
208
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
209
- }
210
-
211
- function _nonIterableRest() {
212
- throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
213
- }
214
-
215
- function _slicedToArray(arr, i) {
216
- return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
217
- }
218
-
219
- var IMAGE_SIZE_LIMIT = 1; // MB
220
- var IMAGE_UPLOADER_CONFIG = {
221
- maxImageSize: IMAGE_SIZE_LIMIT
222
- };
223
-
224
- var Image = function Image() {
225
- var _useFormikContext = useFormikContext(),
226
- setFieldValue = _useFormikContext.setFieldValue,
227
- values = _useFormikContext.values;
228
- var handleImageChange = function handleImageChange(image) {
229
- if (isEmpty(image.signedId)) {
230
- setFieldValue("imageUrl", "");
231
- setFieldValue("imageSignedId", null);
232
- return;
233
- }
234
- setFieldValue("imageUrl", image.url);
235
- setFieldValue("imageSignedId", image.signedId);
236
- };
237
- return /*#__PURE__*/jsx(ImageUploader, {
238
- className: "h-60",
239
- src: values.imageUrl,
240
- uploadConfig: IMAGE_UPLOADER_CONFIG,
241
- onUploadComplete: handleImageChange
242
- }, values.imageUrl);
243
- };
244
-
245
- var ResubmissionWarningModal = function ResubmissionWarningModal(_ref) {
246
- var isOpen = _ref.isOpen,
247
- setIsOpen = _ref.setIsOpen,
248
- uniqueSubmissionLink = _ref.uniqueSubmissionLink;
249
- var _useTranslation = useTranslation(),
250
- t = _useTranslation.t;
251
- return /*#__PURE__*/jsxs(Modal, {
252
- isOpen: isOpen,
253
- onClose: function onClose() {
254
- return setIsOpen(false);
255
- },
256
- children: [/*#__PURE__*/jsx(Modal.Header, {
257
- children: /*#__PURE__*/jsxs(Typography, {
258
- style: "h3",
259
- weight: "semibold",
260
- children: [t("neetoThankYou.common.alert"), "!"]
261
- })
262
- }), /*#__PURE__*/jsx(Modal.Body, {
263
- children: t("neetoThankYou.thankYou.resubmissionWarning")
264
- }), /*#__PURE__*/jsxs(Modal.Footer, {
265
- className: "space-x-2",
266
- children: [/*#__PURE__*/jsx(Button, {
267
- label: t("neetoThankYou.thankYou.uniqueSubmissionLinkText"),
268
- to: uniqueSubmissionLink
269
- }), /*#__PURE__*/jsx(Button, {
270
- label: t("neetoThankYou.common.ok"),
271
- style: "text",
272
- onClick: function onClick() {
273
- return setIsOpen(false);
274
- }
275
- })]
276
- })]
277
- });
278
- };
279
-
280
- var Customize = function Customize(_ref) {
281
- var editorRef = _ref.editorRef,
282
- uniqueSubmissionEnabled = _ref.uniqueSubmissionEnabled,
283
- hasImageUploader = _ref.hasImageUploader,
284
- uniqueSubmissionLink = _ref.uniqueSubmissionLink,
285
- entityId = _ref.entityId,
286
- disableSocialShare = _ref.disableSocialShare,
287
- disableSubmitAnotherResponse = _ref.disableSubmitAnotherResponse;
288
- var _useState = useState(false),
289
- _useState2 = _slicedToArray(_useState, 2),
290
- isUniqueSubmissionWarningModalOpen = _useState2[0],
291
- setIsUniqueSubmissionWarningModalOpen = _useState2[1];
292
- var _useTranslation = useTranslation(),
293
- t = _useTranslation.t;
294
- var _useFormikContext = useFormikContext(),
295
- values = _useFormikContext.values,
296
- setFieldValue = _useFormikContext.setFieldValue;
297
- var _useShowThankYouConfi = useShowThankYouConfiguration({
298
- entityId: entityId
299
- }),
300
- _useShowThankYouConfi2 = _useShowThankYouConfi.data,
301
- _useShowThankYouConfi3 = _useShowThankYouConfi2 === void 0 ? {} : _useShowThankYouConfi2,
302
- thankYouConfiguration = _useShowThankYouConfi3.thankYouConfiguration,
303
- isFetching = _useShowThankYouConfi.isFetching;
304
- useEffect(function () {
305
- var _editorRef$current$ed;
306
- if (isFetching) return;
307
- setFieldValue("message", thankYouConfiguration.message);
308
- (_editorRef$current$ed = editorRef.current.editor) === null || _editorRef$current$ed === void 0 || _editorRef$current$ed.commands.setContent(thankYouConfiguration.message);
309
- }, [isFetching]);
310
- var handleResubmitLinkChange = function handleResubmitLinkChange(event) {
311
- uniqueSubmissionEnabled ? setIsUniqueSubmissionWarningModalOpen(true) : setFieldValue("showResubmitLink", event.target.checked);
312
- };
313
- return /*#__PURE__*/jsxs("div", {
314
- className: "flex flex-col gap-4",
315
- children: [hasImageUploader && /*#__PURE__*/jsxs("div", {
316
- className: "flex flex-col gap-2",
317
- children: [/*#__PURE__*/jsx(Label$1, {
318
- children: t("neetoThankYou.thankYou.imageLabel")
319
- }), /*#__PURE__*/jsx(Image, {})]
320
- }), /*#__PURE__*/jsx("div", {
321
- className: "flex flex-col gap-2",
322
- children: /*#__PURE__*/jsx(FormikEditor, {
323
- required: true,
324
- "data-cy": "thank-you-message-editor",
325
- label: t("neetoThankYou.thankYou.messageLabel"),
326
- name: "message",
327
- ref: editorRef
328
- })
329
- }), !disableSocialShare && /*#__PURE__*/jsx(Switch, {
330
- label: t("neetoThankYou.thankYou.socialShareIcons"),
331
- name: "socialSharingEnabled"
332
- }), !disableSubmitAnotherResponse && /*#__PURE__*/jsxs(Fragment, {
333
- children: [/*#__PURE__*/jsx(Switch, {
334
- label: t("neetoThankYou.thankYou.showResubmitLink"),
335
- name: "showResubmitLink",
336
- className: classNames({
337
- "neeto-ui-switch--disabled": uniqueSubmissionEnabled
338
- }),
339
- onChange: handleResubmitLinkChange
340
- }), values.showResubmitLink && /*#__PURE__*/jsx(Input, {
341
- required: true,
342
- label: t("neetoThankYou.thankYou.resubmitLinkText"),
343
- name: "resubmitLinkText"
344
- })]
345
- }), /*#__PURE__*/jsx(ResubmissionWarningModal, {
346
- uniqueSubmissionLink: uniqueSubmissionLink,
347
- isOpen: isUniqueSubmissionWarningModalOpen,
348
- setIsOpen: setIsUniqueSubmissionWarningModalOpen
349
- })]
350
- });
351
- };
352
-
353
- var ENVIRONMENTS = {
354
- development: "development",
355
- staging: "staging",
356
- production: "production",
357
- heroku: "heroku"
358
- };
359
- var IS_PRODUCTION_ENV = globalProps.railsEnv === ENVIRONMENTS.production;
360
- var TLD = IS_PRODUCTION_ENV ? "com" : "net";
361
-
362
- var getNeetoAuthRoute = function getNeetoAuthRoute(topLevelDomain) {
363
- return "https://app.neetoauth.".concat(topLevelDomain, "/signups/new");
364
- };
365
- var getRedirectUri = function getRedirectUri(appName) {
366
- return "".concat(appName.toLowerCase(), ".").concat(TLD);
367
- };
368
- var buildSignUpUrl = function buildSignUpUrl(appName) {
369
- return buildUrl(getNeetoAuthRoute(TLD), {
370
- redirectUri: getRedirectUri(appName)
371
- });
372
- };
373
-
374
- function ownKeys$1(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
375
- function _objectSpread$1(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$1(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$1(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
376
- var BrandingInfo = function BrandingInfo(_ref) {
377
- var _brandingInfo$additio;
378
- var brandingInfo = _ref.brandingInfo,
379
- appName = _ref.appName;
380
- return /*#__PURE__*/jsx("div", {
381
- className: "neeto-thank-you-configuration__branding-wrap",
382
- children: /*#__PURE__*/jsx("div", {
383
- className: "neeto-thank-you-configuration__nav",
384
- children: /*#__PURE__*/jsx("div", {
385
- className: "neeto-thank-you-configuration__nav-footer",
386
- children: /*#__PURE__*/jsx(Trans, {
387
- i18nKey: brandingInfo.displayText,
388
- components: _objectSpread$1({
389
- signUpLink: /*#__PURE__*/jsx("a", {
390
- className: "neeto-thank-you-configuration__link",
391
- href: buildSignUpUrl(appName),
392
- rel: "noreferrer",
393
- target: "_blank"
394
- }),
395
- span: /*#__PURE__*/jsx("span", {})
396
- }, (_brandingInfo$additio = brandingInfo.additionalComponents) !== null && _brandingInfo$additio !== void 0 ? _brandingInfo$additio : {})
397
- })
398
- })
399
- })
400
- });
401
- };
402
-
403
- var _ellipse, _ellipse2, _ellipse3;
404
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
405
- const SvgBrowserControls = props => /*#__PURE__*/React.createElement("svg", _extends({
406
- xmlns: "http://www.w3.org/2000/svg",
407
- width: 43,
408
- height: 13,
409
- fill: "none"
410
- }, props), _ellipse || (_ellipse = /*#__PURE__*/React.createElement("ellipse", {
411
- cx: 6.405,
412
- cy: 6.644,
413
- fill: "#FFEFED",
414
- rx: 5.745,
415
- ry: 5.859
416
- })), _ellipse2 || (_ellipse2 = /*#__PURE__*/React.createElement("ellipse", {
417
- cx: 37.044,
418
- cy: 6.644,
419
- fill: "#98F3F4",
420
- rx: 5.745,
421
- ry: 5.859
422
- })), _ellipse3 || (_ellipse3 = /*#__PURE__*/React.createElement("ellipse", {
423
- cx: 21.725,
424
- cy: 6.644,
425
- fill: "#FFF2D7",
426
- rx: 5.745,
427
- ry: 5.859
428
- })));
429
-
430
- var SocialShare = function SocialShare(_ref) {
431
- var socialHandles = _ref.socialHandles,
432
- publicLinkId = _ref.publicLinkId;
433
- var _useTranslation = useTranslation(),
434
- t = _useTranslation.t;
435
- return /*#__PURE__*/jsxs("div", {
436
- className: "neeto-thank-you-configuration__social-share",
437
- children: [/*#__PURE__*/jsx("h3", {
438
- className: "neeto-thank-you-configuration__social-share-title",
439
- children: t("neetoThankYou.thankYou.socialShareHeading")
440
- }), /*#__PURE__*/jsx("div", {
441
- className: "neeto-thank-you-configuration-social-follow",
442
- children: socialHandles === null || socialHandles === void 0 ? void 0 : socialHandles.map(function (data, idx) {
443
- var Icon = data.icon,
444
- generateShareUrl = data.generateShareUrl;
445
- return /*#__PURE__*/jsx("div", {
446
- className: "neeto-thank-you-configuration-social-follow__item",
447
- children: /*#__PURE__*/jsx("a", {
448
- href: generateShareUrl(publicLinkId),
449
- rel: "noreferrer",
450
- target: "_blank",
451
- children: /*#__PURE__*/jsx(Icon, {})
452
- })
453
- }, idx);
454
- })
455
- })]
456
- });
457
- };
458
-
459
- var MemoizedEditorContent = /*#__PURE__*/React__default.memo(EditorContent);
460
- var Preview = function Preview(_ref) {
461
- var _values$resubmitLinkT;
462
- var socialHandles = _ref.socialHandles,
463
- thankYouTextAlignment = _ref.thankYouTextAlignment,
464
- resubmitLink = _ref.resubmitLink,
465
- publicLinkId = _ref.publicLinkId,
466
- isPublished = _ref.isPublished,
467
- appName = _ref.appName,
468
- brandingInfo = _ref.brandingInfo;
469
- var _useFormikContext = useFormikContext(),
470
- values = _useFormikContext.values;
471
- var _useTranslation = useTranslation(),
472
- t = _useTranslation.t;
473
- return /*#__PURE__*/jsxs("div", {
474
- className: "flex flex-col",
475
- children: [/*#__PURE__*/jsx(Typography, {
476
- className: "mb-3 block md:hidden",
477
- lineHeight: "normal",
478
- style: "h3",
479
- weight: "semibold",
480
- children: t("neetoThankYou.thankYou.preview")
481
- }), /*#__PURE__*/jsxs("div", {
482
- className: classNames("neeto-thank-you-configuration-preview", {
483
- "neeto-thank-you-configuration-alignment--left": thankYouTextAlignment === THANK_YOU_TEXT_ALIGNMENTS.left,
484
- "neeto-thank-you-configuration-alignment--center": thankYouTextAlignment === THANK_YOU_TEXT_ALIGNMENTS.center,
485
- "pointer-events-none": !isPublished
486
- }),
487
- children: [/*#__PURE__*/jsx("div", {
488
- className: "neeto-thank-you-configuration-preview__browser-header",
489
- children: /*#__PURE__*/jsx(SvgBrowserControls, {})
490
- }), /*#__PURE__*/jsx("div", {
491
- className: "neeto-thank-you-configuration",
492
- children: /*#__PURE__*/jsx("main", {
493
- className: "neeto-thank-you-configuration__main",
494
- children: /*#__PURE__*/jsxs("div", {
495
- className: "neeto-thank-you-configuration__box",
496
- children: [!isEmpty(values === null || values === void 0 ? void 0 : values.imageUrl) && /*#__PURE__*/jsx("div", {
497
- className: "neeto-thank-you-configuration__img",
498
- children: /*#__PURE__*/jsx("img", {
499
- alt: "",
500
- src: values.imageUrl
501
- })
502
- }), (values === null || values === void 0 ? void 0 : values.message) && /*#__PURE__*/jsx("div", {
503
- className: "neeto-thank-you-configuration__description",
504
- children: /*#__PURE__*/jsx(MemoizedEditorContent, {
505
- content: values.message,
506
- "data-cy": "preview-editor-content"
507
- })
508
- }), (values === null || values === void 0 ? void 0 : values.showResubmitLink) && /*#__PURE__*/jsx("a", {
509
- className: "neeto-thank-you-configuration__resubmit",
510
- href: resubmitLink,
511
- children: (_values$resubmitLinkT = values === null || values === void 0 ? void 0 : values.resubmitLinkText) !== null && _values$resubmitLinkT !== void 0 ? _values$resubmitLinkT : t("neetoThankYou.thankYou.resubmit")
512
- }), (values === null || values === void 0 ? void 0 : values.socialSharingEnabled) && /*#__PURE__*/jsx(SocialShare, {
513
- publicLinkId: publicLinkId,
514
- socialHandles: socialHandles
515
- })]
516
- })
517
- })
518
- }), (values === null || values === void 0 ? void 0 : values.brandingEnabled) && /*#__PURE__*/jsx(BrandingInfo, {
519
- appName: appName,
520
- brandingInfo: brandingInfo
521
- })]
522
- })]
523
- });
524
- };
525
-
526
- var ExternalLink = function ExternalLink() {
527
- var _useTranslation = useTranslation(),
528
- t = _useTranslation.t;
529
- return /*#__PURE__*/jsx(Input, {
530
- autoFocus: true,
531
- required: true,
532
- label: t("neetoThankYou.thankYou.link"),
533
- name: "redirectUrl",
534
- placeholder: EXTERNAL_URL_PREFIX,
535
- prefix: /*#__PURE__*/jsx(Link, {})
536
- });
537
- };
538
-
539
- var Label = function Label(_ref) {
540
- var label = _ref.label,
541
- description = _ref.description,
542
- kind = _ref.kind;
543
- return /*#__PURE__*/jsxs(Typography, {
544
- className: "neeto-ui-text-gray-700",
545
- "data-cy": "neeto-thank-you-configuration-".concat(hyphenate(kind), "-label"),
546
- style: "body2",
547
- weight: "semibold",
548
- children: [label, /*#__PURE__*/jsx("span", {
549
- className: "block text-xs font-normal leading-snug",
550
- "data-cy": "neeto-thank-you-configuration-".concat(hyphenate(kind), "-description"),
551
- children: description
552
- })]
553
- });
554
- };
555
-
556
- function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
557
- function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
558
- var Form = function Form(_ref) {
559
- var socialHandles = _ref.socialHandles,
560
- entityId = _ref.entityId,
561
- publicLinkId = _ref.publicLinkId,
562
- hasImageUploader = _ref.hasImageUploader,
563
- uniqueSubmissionEnabled = _ref.uniqueSubmissionEnabled,
564
- uniqueSubmissionLink = _ref.uniqueSubmissionLink,
565
- redirectToOnCancel = _ref.redirectToOnCancel,
566
- thankYouTextAlignment = _ref.thankYouTextAlignment,
567
- resubmitLink = _ref.resubmitLink,
568
- isPublished = _ref.isPublished,
569
- disableSubmitAnotherResponse = _ref.disableSubmitAnotherResponse,
570
- disableRadioSelection = _ref.disableRadioSelection,
571
- appName = _ref.appName,
572
- blockNavigation = _ref.blockNavigation,
573
- onConfigUpdateSuccess = _ref.onConfigUpdateSuccess,
574
- brandingInfo = _ref.brandingInfo;
575
- var _useShowThankYouConfi = useShowThankYouConfiguration({
576
- entityId: entityId
577
- }),
578
- _useShowThankYouConfi2 = _useShowThankYouConfi.data,
579
- _useShowThankYouConfi3 = _useShowThankYouConfi2 === void 0 ? {} : _useShowThankYouConfi2,
580
- thankYouConfiguration = _useShowThankYouConfi3.thankYouConfiguration,
581
- isLoading = _useShowThankYouConfi.isLoading;
582
- var _useUpdateThankYouCon = useUpdateThankYouConfiguration(),
583
- updateThankYouConfiguration = _useUpdateThankYouCon.mutate,
584
- isUpdatingForm = _useUpdateThankYouCon.isLoading;
585
- var editorRef = useRef({
586
- editor: {}
587
- });
588
- if (isLoading) {
589
- return /*#__PURE__*/jsx("div", {
590
- className: "flex h-full w-full items-center justify-center",
591
- children: /*#__PURE__*/jsx(PageLoader, {})
592
- });
593
- }
594
- var resetEditor = function resetEditor() {
595
- var _editorRef$current$ed;
596
- return (_editorRef$current$ed = editorRef.current.editor) === null || _editorRef$current$ed === void 0 ? void 0 : _editorRef$current$ed.commands.setContent(thankYouConfiguration.message);
597
- };
598
- return /*#__PURE__*/jsx(NeetoUIForm, {
599
- formikProps: {
600
- enableReinitialize: true,
601
- initialValues: _objectSpread(_objectSpread({}, DEFAULT_IMAGE_PROPERTIES), thankYouConfiguration),
602
- validationSchema: VALIDATION_SCHEMA,
603
- onSubmit: function onSubmit(values) {
604
- return updateThankYouConfiguration({
605
- entityId: entityId,
606
- payload: _objectSpread(_objectSpread({}, values), {}, {
607
- image: values.imageSignedId
608
- })
609
- }, {
610
- onSuccess: function onSuccess() {
611
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
612
- args[_key] = arguments[_key];
613
- }
614
- return onConfigUpdateSuccess(args, thankYouConfiguration);
615
- }
616
- });
617
- }
618
- },
619
- children: function children(_ref2) {
620
- var values = _ref2.values;
621
- return /*#__PURE__*/jsxs("div", {
622
- className: "grid grid-cols-1 gap-10 pb-6 md:grid-cols-2 md:gap-6",
623
- children: [/*#__PURE__*/jsxs("div", {
624
- className: "flex flex-col",
625
- children: [blockNavigation && /*#__PURE__*/jsx(BlockNavigation, {}), !disableRadioSelection && /*#__PURE__*/jsx("div", {
626
- className: "mb-6 w-full",
627
- children: /*#__PURE__*/jsx(Radio, {
628
- containerClassName: "grid grid-cols-1 sm:grid-cols-2 gap-6 items-stretch w-full",
629
- name: "kind",
630
- children: Object.values(FORM_OPTIONS).map(function (option) {
631
- return /*#__PURE__*/jsx(Radio.Item, {
632
- label: /*#__PURE__*/jsx(Label, _objectSpread({}, option)),
633
- name: "kind",
634
- value: option.kind,
635
- className: classNames("neeto-thank-you-configuration-radio__item", {
636
- active: values.kind === option.kind
637
- })
638
- }, option.kind);
639
- })
640
- })
641
- }), values.kind === FORM_OPTIONS.customize.kind ? /*#__PURE__*/jsx(Customize, {
642
- disableSubmitAnotherResponse: disableSubmitAnotherResponse,
643
- editorRef: editorRef,
644
- entityId: entityId,
645
- hasImageUploader: hasImageUploader,
646
- uniqueSubmissionEnabled: uniqueSubmissionEnabled,
647
- uniqueSubmissionLink: uniqueSubmissionLink,
648
- disableSocialShare: isEmpty(socialHandles)
649
- }) : /*#__PURE__*/jsx(ExternalLink, {}), /*#__PURE__*/jsx(ActionBlock, {
650
- className: "mt-6",
651
- isSubmitting: isUpdatingForm,
652
- cancelButtonProps: _objectSpread({
653
- "data-cy": "neeto-thank-you-configuration-cancel-button"
654
- }, redirectToOnCancel ? {
655
- to: redirectToOnCancel,
656
- onClick: noop
657
- } : {
658
- type: "reset",
659
- onClick: resetEditor
660
- }),
661
- submitButtonProps: {
662
- "data-cy": "neeto-thank-you-configuration-save-button"
663
- }
664
- })]
665
- }), values.kind === FORM_OPTIONS.customize.kind && /*#__PURE__*/jsx(Preview, {
666
- appName: appName,
667
- brandingInfo: brandingInfo,
668
- isPublished: isPublished,
669
- publicLinkId: publicLinkId,
670
- resubmitLink: resubmitLink,
671
- socialHandles: socialHandles,
672
- thankYouTextAlignment: thankYouTextAlignment
673
- })]
674
- });
675
- }
676
- });
677
- };
678
-
679
- var Header = function Header(_ref) {
680
- var breadcrumbs = _ref.breadcrumbs;
681
- var _useTranslation = useTranslation(),
682
- t = _useTranslation.t;
683
- return /*#__PURE__*/jsx("div", {
684
- className: "w-full px-6",
685
- children: /*#__PURE__*/jsx(NeetoUIHeader, {
686
- breadcrumbs: breadcrumbs,
687
- size: "small",
688
- title: t("neetoThankYou.common.thankYou")
689
- })
690
- });
691
- };
692
-
693
- var ConfigureThankYou = function ConfigureThankYou(_ref) {
694
- var breadcrumbs = _ref.breadcrumbs,
695
- isPublished = _ref.isPublished,
696
- entityId = _ref.entityId,
697
- publicLinkId = _ref.publicLinkId,
698
- resubmitLink = _ref.resubmitLink,
699
- redirectToOnCancel = _ref.redirectToOnCancel,
700
- _ref$socialHandles = _ref.socialHandles,
701
- socialHandles = _ref$socialHandles === void 0 ? [] : _ref$socialHandles,
702
- _ref$uniqueSubmission = _ref.uniqueSubmissionLink,
703
- uniqueSubmissionLink = _ref$uniqueSubmission === void 0 ? "" : _ref$uniqueSubmission,
704
- _ref$uniqueSubmission2 = _ref.uniqueSubmissionEnabled,
705
- uniqueSubmissionEnabled = _ref$uniqueSubmission2 === void 0 ? false : _ref$uniqueSubmission2,
706
- _ref$hasImageUploader = _ref.hasImageUploader,
707
- hasImageUploader = _ref$hasImageUploader === void 0 ? false : _ref$hasImageUploader,
708
- _ref$disableSubmitAno = _ref.disableSubmitAnotherResponse,
709
- disableSubmitAnotherResponse = _ref$disableSubmitAno === void 0 ? false : _ref$disableSubmitAno,
710
- _ref$disableRadioSele = _ref.disableRadioSelection,
711
- disableRadioSelection = _ref$disableRadioSele === void 0 ? false : _ref$disableRadioSele,
712
- _ref$thankYouTextAlig = _ref.thankYouTextAlignment,
713
- thankYouTextAlignment = _ref$thankYouTextAlig === void 0 ? THANK_YOU_TEXT_ALIGNMENTS.center : _ref$thankYouTextAlig,
714
- customHeader = _ref.customHeader,
715
- appName = _ref.appName,
716
- _ref$blockNavigation = _ref.blockNavigation,
717
- blockNavigation = _ref$blockNavigation === void 0 ? false : _ref$blockNavigation,
718
- _ref$onConfigUpdateSu = _ref.onConfigUpdateSuccess,
719
- onConfigUpdateSuccess = _ref$onConfigUpdateSu === void 0 ? noop : _ref$onConfigUpdateSu,
720
- brandingInfo = _ref.brandingInfo;
721
- return /*#__PURE__*/jsxs(Fragment, {
722
- children: [customHeader || /*#__PURE__*/jsx(Header, {
723
- breadcrumbs: breadcrumbs
724
- }), /*#__PURE__*/jsx(Scrollable, {
725
- className: "w-full p-6 pt-0",
726
- children: /*#__PURE__*/jsx("div", {
727
- className: "mx-auto h-full max-w-7xl",
728
- children: /*#__PURE__*/jsx(Form, {
729
- appName: appName,
730
- blockNavigation: blockNavigation,
731
- brandingInfo: brandingInfo,
732
- disableRadioSelection: disableRadioSelection,
733
- disableSubmitAnotherResponse: disableSubmitAnotherResponse,
734
- entityId: entityId,
735
- hasImageUploader: hasImageUploader,
736
- isPublished: isPublished,
737
- onConfigUpdateSuccess: onConfigUpdateSuccess,
738
- publicLinkId: publicLinkId,
739
- redirectToOnCancel: redirectToOnCancel,
740
- resubmitLink: resubmitLink,
741
- socialHandles: socialHandles,
742
- thankYouTextAlignment: thankYouTextAlignment,
743
- uniqueSubmissionEnabled: uniqueSubmissionEnabled,
744
- uniqueSubmissionLink: uniqueSubmissionLink
745
- })
746
- })
747
- })]
748
- });
749
- };
750
-
751
- var baseUrl = "".concat(THANK_YOU_ENGINE_BASE_URL, "/thank_you_page");
752
- var show = function show(_ref) {
753
- var entityId = _ref.entityId,
754
- isTemplateView = _ref.isTemplateView;
755
- return axios.get(baseUrl, {
756
- params: {
757
- entityId: entityId,
758
- isTemplateView: isTemplateView
759
- }
760
- });
761
- };
762
- var thankYouPageApi = {
763
- show: show
764
- };
765
-
766
- var useShowThankYouPage = function useShowThankYouPage(_ref) {
767
- var entityId = _ref.entityId,
768
- isTemplateView = _ref.isTemplateView;
769
- return useQuery([QUERY_KEYS.THANK_YOU_PAGE, entityId], function () {
770
- return thankYouPageApi.show({
771
- entityId: entityId,
772
- isTemplateView: isTemplateView
773
- });
774
- });
775
- };
776
-
777
- var buildDraftUrl = function buildDraftUrl(url) {
778
- return "".concat(url, "?draftPreview=true");
779
- };
780
-
781
- var DefaultPageLoader = function DefaultPageLoader() {
782
- return /*#__PURE__*/jsx("div", {
783
- className: "neeto-thank-you-configuration",
784
- children: /*#__PURE__*/jsx(PageLoader, {})
785
- });
786
- };
787
- var ShowThankYou = function ShowThankYou(_ref) {
788
- var _thankYouConfiguratio;
789
- var entityId = _ref.entityId,
790
- isDraftPreview = _ref.isDraftPreview,
791
- resubmitLink = _ref.resubmitLink,
792
- socialHandles = _ref.socialHandles,
793
- isThankYouPageLoading = _ref.isThankYouPageLoading,
794
- publicLinkId = _ref.publicLinkId,
795
- appName = _ref.appName,
796
- CustomPageLoader = _ref.customPageLoader,
797
- brandingInfo = _ref.brandingInfo;
798
- var _useTranslation = useTranslation(),
799
- t = _useTranslation.t;
800
- var _useShowThankYouPage = useShowThankYouPage({
801
- entityId: entityId
802
- }),
803
- _useShowThankYouPage$ = _useShowThankYouPage.data,
804
- _useShowThankYouPage$2 = _useShowThankYouPage$ === void 0 ? {} : _useShowThankYouPage$,
805
- thankYouConfiguration = _useShowThankYouPage$2.thankYouConfiguration,
806
- isLoading = _useShowThankYouPage.isLoading;
807
- var PageLoader = CustomPageLoader || DefaultPageLoader;
808
- if (isLoading && isThankYouPageLoading) {
809
- return /*#__PURE__*/jsx(PageLoader, {});
810
- }
811
- return /*#__PURE__*/jsxs("div", {
812
- className: "neeto-thank-you-configuration",
813
- children: [/*#__PURE__*/jsx("main", {
814
- className: "neeto-thank-you-configuration__main",
815
- children: /*#__PURE__*/jsxs("div", {
816
- className: "neeto-thank-you-configuration__box",
817
- children: [!isEmpty(thankYouConfiguration === null || thankYouConfiguration === void 0 ? void 0 : thankYouConfiguration.imageUrl) && /*#__PURE__*/jsx("div", {
818
- className: "neeto-thank-you-configuration__img",
819
- children: /*#__PURE__*/jsx("img", {
820
- alt: "",
821
- src: thankYouConfiguration === null || thankYouConfiguration === void 0 ? void 0 : thankYouConfiguration.imageUrl
822
- })
823
- }), (thankYouConfiguration === null || thankYouConfiguration === void 0 ? void 0 : thankYouConfiguration.message) && /*#__PURE__*/jsx("div", {
824
- className: "neeto-thank-you-configuration__description",
825
- children: /*#__PURE__*/jsx(EditorContent, {
826
- content: thankYouConfiguration.message
827
- })
828
- }), (thankYouConfiguration === null || thankYouConfiguration === void 0 ? void 0 : thankYouConfiguration.showResubmitLink) && /*#__PURE__*/jsx("a", {
829
- className: "neeto-thank-you-configuration__resubmit",
830
- href: isDraftPreview ? buildDraftUrl(resubmitLink) : resubmitLink,
831
- children: (_thankYouConfiguratio = thankYouConfiguration === null || thankYouConfiguration === void 0 ? void 0 : thankYouConfiguration.resubmitLinkText) !== null && _thankYouConfiguratio !== void 0 ? _thankYouConfiguratio : t("neetoThankYou.common.resubmit")
832
- }), (thankYouConfiguration === null || thankYouConfiguration === void 0 ? void 0 : thankYouConfiguration.socialSharingEnabled) && /*#__PURE__*/jsx(SocialShare, {
833
- publicLinkId: publicLinkId,
834
- socialHandles: socialHandles
835
- }), isDraftPreview && /*#__PURE__*/jsx(Typography, {
836
- style: "body3",
837
- children: t("neetoThankYou.thankYou.draftVersionForm")
838
- })]
839
- })
840
- }), (thankYouConfiguration === null || thankYouConfiguration === void 0 ? void 0 : thankYouConfiguration.brandingEnabled) && /*#__PURE__*/jsx(BrandingInfo, {
841
- appName: appName,
842
- brandingInfo: brandingInfo
843
- })]
844
- });
845
- };
846
-
847
- var e=[],t=[];function n(n,r){if(n&&"undefined"!=typeof document){var a,s=!0===r.prepend?"prepend":"append",d=!0===r.singleTag,i="string"==typeof r.container?document.querySelector(r.container):document.getElementsByTagName("head")[0];if(d){var u=e.indexOf(i);-1===u&&(u=e.push(i)-1,t[u]={}),a=t[u]&&t[u][s]?t[u][s]:t[u][s]=c();}else a=c();65279===n.charCodeAt(0)&&(n=n.substring(1)),a.styleSheet?a.styleSheet.cssText+=n:a.appendChild(document.createTextNode(n));}function c(){var e=document.createElement("style");if(e.setAttribute("type","text/css"),r.attributes)for(var t=Object.keys(r.attributes),n=0;n<t.length;n++)e.setAttribute(t[n],r.attributes[t[n]]);var a="prepend"===s?"afterbegin":"beforeend";return i.insertAdjacentElement(a,e),e}}
848
-
849
- var css = ":root{--neeto-thank-you-editor-content-color:0,0,0;--neeto-thank-you-background-color:255,255,255;--neeto-thank-you-background-image-position:center;--neeto-thank-you-gray-100:248,249,249;--neeto-thank-you-gray-800:31,31,31}.neeto-thank-you-configuration{display:flex;flex-direction:column;height:100vh;overflow-y:hidden;position:relative}.neeto-thank-you-configuration__nav{display:flex;justify-content:center;padding:4px;width:100%}.neeto-thank-you-configuration__link{align-items:center;color:inherit;display:flex;font-weight:600;gap:.25rem;text-decoration:none}.neeto-thank-you-configuration__link:hover{opacity:.8}.neeto-thank-you-configuration__link span{border-bottom:1px solid}.neeto-thank-you-configuration__link svg{height:1rem;width:auto}.neeto-thank-you-configuration__main{align-items:center;display:flex;height:calc(100vh - 40px);justify-content:center;overflow-y:auto}.neeto-thank-you-configuration__box{margin:0 auto;max-width:100%;padding:0 15px;text-align:center;width:51.25rem}.neeto-thank-you-configuration__default-img-wrap{font-size:2.5rem;text-align:center}.neeto-thank-you-configuration-alignment--left .neeto-thank-you-configuration__box{align-items:flex-start;text-align:left}.neeto-thank-you-configuration__title{font-size:2rem;line-height:1.25;margin:.67em 0}.neeto-thank-you-configuration__img{margin-bottom:1.5rem;margin-top:2.5rem}.neeto-thank-you-configuration__img img{display:inline-block;max-height:50vh;max-width:100%;vertical-align:top}.neeto-thank-you-configuration__description{font-size:1rem;line-height:1.5;margin:0 0 2rem}.neeto-thank-you-configuration__description .neeto-editor-content h1,.neeto-thank-you-configuration__description .neeto-editor-content h2,.neeto-thank-you-configuration__description .neeto-editor-content h3{font-weight:500;line-height:1.325;margin-bottom:4px}.neeto-thank-you-configuration__description .neeto-editor-content h1{font-size:2.5rem}.neeto-thank-you-configuration__description .neeto-editor-content h2{font-size:1.5rem}.neeto-thank-you-configuration__description .neeto-editor-content h3{font-size:1.25rem}.neeto-thank-you-configuration__description .neeto-editor-content a[href]{color:#2d36d4}.neeto-thank-you-configuration__social-share{margin-top:2rem}.neeto-thank-you-configuration__social-share .neeto-thank-you-configuration-social-follow{align-items:center;display:inline-flex;flex-wrap:wrap;gap:1rem;justify-content:center}.neeto-thank-you-configuration__social-share .neeto-thank-you-configuration-social-follow__item{font-size:1.5rem;width:-moz-fit-content;width:fit-content}.neeto-thank-you-configuration__social-share-title{font-size:.8rem;font-weight:400;line-height:1.2;margin:.8rem 0}.neeto-thank-you-configuration__resubmit{border-bottom:1px solid;font-weight:600}.neeto-thank-you-configuration__nav-footer{align-items:center;display:flex;font-size:.875rem;gap:.5rem;justify-content:center}.neeto-thank-you-configuration__payment-pending{align-items:center;display:flex;flex-direction:column;height:100vh;justify-content:center;width:100%}.neeto-thank-you-configuration__payment-pending-body{align-items:center;color:\"#2f3941\";display:flex;flex-direction:column;gap:1rem;justify-content:center}.neeto-thank-you-configuration-preview{border:1px solid rgb(var(--neeto-ui-gray-300));border-radius:var(--neeto-ui-rounded-lg);box-shadow:var(--neeto-ui-shadow-xs);display:flex;flex-direction:column;height:100%;min-height:500px;overflow:hidden}.neeto-thank-you-configuration-preview .neeto-thank-you-configuration{height:100%;max-height:100%}.neeto-thank-you-configuration-preview .neeto-thank-you-configuration .neeto-thank-you-configuration__main{height:auto}.neeto-thank-you-configuration-preview__browser-header{border-bottom:1px solid rgb(var(--neeto-ui-gray-300));padding:5px}.neeto-thank-you-configuration__branding-wrap{align-items:center;background-color:#f8f9f9;background-color:rgb(var(--neeto-thank-you-gray-100));color:#1f1f1f;color:rgb(var(--neeto-thank-you-gray-800));display:flex;flex-shrink:0;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Fira Sans,Droid Sans,Helvetica Neue;font-size:14px;height:2.5rem;justify-content:center;padding:.375rem 1rem;width:100%}.neeto-thank-you-configuration-radio__item{align-items:flex-start;background-color:rgb(var(--neeto-ui-white));border:1px solid rgb(var(--neeto-ui-gray-300));border-radius:var(--neeto-ui-rounded);padding:12px 16px}.neeto-thank-you-configuration-radio__item.neeto-ui-radio__item:not(:last-child){margin-right:0!important}.neeto-thank-you-configuration-radio__item.neeto-ui-radio__item{align-items:start!important}.neeto-thank-you-configuration-radio__item.neeto-ui-radio__item .neeto-ui-radio{margin-top:3px}.neeto-thank-you-configuration-radio__item.active{background-color:rgb(var(--neeto-ui-primary-100));border:1.5px solid rgb(var(--neeto-ui-primary-800))}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImFwcC9qYXZhc2NyaXB0L3N0eWxlc2hlZXRzL2Fic3RyYWN0cy9fcm9vdC5zY3NzIiwiYXBwL2phdmFzY3JpcHQvc3R5bGVzaGVldHMvYXBwbGljYXRpb24uc2NzcyIsImFwcC9qYXZhc2NyaXB0L3N0eWxlc2hlZXRzL2xheW91dC9fdGhhbmsteW91LnNjc3MiLCJhcHAvamF2YXNjcmlwdC9zdHlsZXNoZWV0cy9jb21wb25lbnRzL190aGFuay15b3Uuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUNFLDRDQUFBLENBQ0EsOENBQUEsQ0FDQSxrREFBQSxDQUNBLHNDQUFBLENBQ0EsbUNDQ0YsQ0NOQSwrQkFDRSxZQUFBLENBQ0EscUJBQUEsQ0FDQSxZQUFBLENBQ0EsaUJBQUEsQ0FDQSxpQkRTRixDQ05BLG9DQUVFLFlBQUEsQ0FDQSxzQkFBQSxDQUNBLFdBQUEsQ0FIQSxVRFlGLENDTkEscUNBS0Usa0JBQUEsQ0FGQSxhQUFBLENBQ0EsWUFBQSxDQUhBLGVBQUEsQ0FLQSxVQUFBLENBSkEsb0JEYUYsQ0NQRSwyQ0FDRSxVRFNKLENDTkUsMENBQ0UsdUJEUUosQ0NMRSx5Q0FDRSxXQUFBLENBQ0EsVURPSixDQ0hBLHFDQUVFLGtCQUFBLENBREEsWUFBQSxDQUdBLHlCQUFBLENBREEsc0JBQUEsQ0FFQSxlRE1GLENDSEEsb0NBRUUsYUFBQSxDQUVBLGNBQUEsQ0FEQSxjQUFBLENBRUEsaUJBQUEsQ0FKQSxjRFVGLENDSEEsaURBRUUsZ0JBQUEsQ0FEQSxpQkRPRixDQ0ZFLG1GQUVFLHNCQUFBLENBREEsZURNSixDQ0RBLHNDQUNFLGNBQUEsQ0FFQSxnQkFBQSxDQURBLGNES0YsQ0NEQSxvQ0FFRSxvQkFBQSxDQURBLGlCREtGLENDRkUsd0NBR0Usb0JBQUEsQ0FEQSxlQUFBLENBREEsY0FBQSxDQUdBLGtCRElKLENDQUEsNENBQ0UsY0FBQSxDQUNBLGVBQUEsQ0FDQSxlREdGLENDQUksK01BR0UsZUFBQSxDQUNBLGlCQUFBLENBQ0EsaUJERU4sQ0NDSSxxRUFDRSxnQkRDTixDQ0VJLHFFQUNFLGdCREFOLENDR0kscUVBQ0UsaUJERE4sQ0NHSSwwRUFDRSxhREROLENDTUEsNkNBQ0UsZURIRixDQ0tFLDBGQUlFLGtCQUFBLENBSEEsbUJBQUEsQ0FDQSxjQUFBLENBQ0EsUUFBQSxDQUVBLHNCREhKLENDTUUsZ0dBQ0UsZ0JBQUEsQ0FDQSxzQkFBQSxDQUFBLGlCREpKLENDUUEsbURBQ0UsZUFBQSxDQUVBLGVBQUEsQ0FDQSxlQUFBLENBRkEsY0RIRixDQ1FBLHlDQUVFLHVCQUFBLENBREEsZURKRixDQ1FBLDJDQUlFLGtCQUFBLENBSEEsWUFBQSxDQUVBLGlCQUFBLENBREEsU0FBQSxDQUdBLHNCRExGLENDUUEsZ0RBR0Usa0JBQUEsQ0FGQSxZQUFBLENBQ0EscUJBQUEsQ0FJQSxZQUFBLENBRkEsc0JBQUEsQ0FDQSxVREpGLENDUUEscURBR0Usa0JBQUEsQ0FHQSxlQUFBLENBTEEsWUFBQSxDQUNBLHFCQUFBLENBR0EsUUFBQSxDQURBLHNCREhGLENDUUEsdUNBSUUsOENBQUEsQ0FFQSx3Q0FBQSxDQURBLG9DQUFBLENBSkEsWUFBQSxDQUNBLHFCQUFBLENBQ0EsV0FBQSxDQUtBLGdCQUFBLENBREEsZURKRixDQ09FLHNFQUNFLFdBQUEsQ0FDQSxlRExKLENDT0ksMkdBQ0UsV0RMTixDQ1VBLHVEQUNFLHFEQUFBLENBQ0EsV0RQRixDQ1VBLDhDQU1FLGtCQUFBLENBTEEsd0JBQUEsQ0FBQSxxREFBQSxDQUNBLGFBQUEsQ0FBQSwwQ0FBQSxDQUNBLFlBQUEsQ0FNQSxhQUFBLENBRUEsd0hBQUEsQ0FEQSxjQUFBLENBTkEsYUFBQSxDQUdBLHNCQUFBLENBQ0Esb0JBQUEsQ0FIQSxVRERGLENFdE1BLDJDQUNFLHNCQUFBLENBRUEsMkNBQUEsQ0FDQSw4Q0FBQSxDQUNBLHFDQUFBLENBSEEsaUJGNE1GLENFdk1FLGlGQUNFLHdCRnlNSixDRXRNRSxnRUFDRSwyQkZ3TUosQ0V0TUksZ0ZBQ0UsY0Z3TU4sQ0VwTUUsa0RBQ0UsaURBQUEsQ0FDQSxtREZzTUoiLCJzb3VyY2VzQ29udGVudCI6WyI6cm9vdCB7XG4gIC0tbmVldG8tdGhhbmsteW91LWVkaXRvci1jb250ZW50LWNvbG9yOiAwLCAwLCAwO1xuICAtLW5lZXRvLXRoYW5rLXlvdS1iYWNrZ3JvdW5kLWNvbG9yOiAyNTUsIDI1NSwgMjU1O1xuICAtLW5lZXRvLXRoYW5rLXlvdS1iYWNrZ3JvdW5kLWltYWdlLXBvc2l0aW9uOiBjZW50ZXI7XG4gIC0tbmVldG8tdGhhbmsteW91LWdyYXktMTAwOiAyNDgsIDI0OSwgMjQ5O1xuICAtLW5lZXRvLXRoYW5rLXlvdS1ncmF5LTgwMDogMzEsIDMxLCAzMTtcbn1cbiIsIjpyb290IHtcbiAgLS1uZWV0by10aGFuay15b3UtZWRpdG9yLWNvbnRlbnQtY29sb3I6IDAsIDAsIDA7XG4gIC0tbmVldG8tdGhhbmsteW91LWJhY2tncm91bmQtY29sb3I6IDI1NSwgMjU1LCAyNTU7XG4gIC0tbmVldG8tdGhhbmsteW91LWJhY2tncm91bmQtaW1hZ2UtcG9zaXRpb246IGNlbnRlcjtcbiAgLS1uZWV0by10aGFuay15b3UtZ3JheS0xMDA6IDI0OCwgMjQ5LCAyNDk7XG4gIC0tbmVldG8tdGhhbmsteW91LWdyYXktODAwOiAzMSwgMzEsIDMxO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24ge1xuICBkaXNwbGF5OiBmbGV4O1xuICBmbGV4LWRpcmVjdGlvbjogY29sdW1uO1xuICBoZWlnaHQ6IDEwMHZoO1xuICBvdmVyZmxvdy15OiBoaWRkZW47XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbn1cblxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19uYXYge1xuICB3aWR0aDogMTAwJTtcbiAgZGlzcGxheTogZmxleDtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIHBhZGRpbmc6IDRweDtcbn1cblxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19saW5rIHtcbiAgZm9udC13ZWlnaHQ6IDYwMDtcbiAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xuICBjb2xvcjogaW5oZXJpdDtcbiAgZGlzcGxheTogZmxleDtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgZ2FwOiAwLjI1cmVtO1xufVxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19saW5rOmhvdmVyIHtcbiAgb3BhY2l0eTogMC44O1xufVxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19saW5rIHNwYW4ge1xuICBib3JkZXItYm90dG9tOiAxcHggc29saWQgY3VycmVudENvbG9yO1xufVxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19saW5rIHN2ZyB7XG4gIGhlaWdodDogMXJlbTtcbiAgd2lkdGg6IGF1dG87XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fbWFpbiB7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBoZWlnaHQ6IGNhbGMoMTAwdmggLSA0MHB4KTtcbiAgb3ZlcmZsb3cteTogYXV0bztcbn1cblxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19ib3gge1xuICB3aWR0aDogNTEuMjVyZW07XG4gIG1hcmdpbjogMCBhdXRvO1xuICBwYWRkaW5nOiAwIDE1cHg7XG4gIG1heC13aWR0aDogMTAwJTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX2RlZmF1bHQtaW1nLXdyYXAge1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGZvbnQtc2l6ZTogMi41cmVtO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24tYWxpZ25tZW50LS1sZWZ0IC5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fYm94IHtcbiAgdGV4dC1hbGlnbjogbGVmdDtcbiAgYWxpZ24taXRlbXM6IGZsZXgtc3RhcnQ7XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fdGl0bGUge1xuICBmb250LXNpemU6IDJyZW07XG4gIG1hcmdpbjogMC42N2VtIDA7XG4gIGxpbmUtaGVpZ2h0OiAxLjI1O1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX2ltZyB7XG4gIG1hcmdpbi10b3A6IDIuNXJlbTtcbiAgbWFyZ2luLWJvdHRvbTogMS41cmVtO1xufVxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19pbWcgaW1nIHtcbiAgbWF4LXdpZHRoOiAxMDAlO1xuICBtYXgtaGVpZ2h0OiA1MHZoO1xuICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gIHZlcnRpY2FsLWFsaWduOiB0b3A7XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fZGVzY3JpcHRpb24ge1xuICBmb250LXNpemU6IDFyZW07XG4gIGxpbmUtaGVpZ2h0OiAxLjU7XG4gIG1hcmdpbjogMHJlbSAwIDJyZW0gMDtcbn1cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fZGVzY3JpcHRpb24gLm5lZXRvLWVkaXRvci1jb250ZW50IGgxLFxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19kZXNjcmlwdGlvbiAubmVldG8tZWRpdG9yLWNvbnRlbnQgaDIsXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX2Rlc2NyaXB0aW9uIC5uZWV0by1lZGl0b3ItY29udGVudCBoMyB7XG4gIGZvbnQtd2VpZ2h0OiA1MDA7XG4gIGxpbmUtaGVpZ2h0OiAxLjMyNTtcbiAgbWFyZ2luLWJvdHRvbTogNHB4O1xufVxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19kZXNjcmlwdGlvbiAubmVldG8tZWRpdG9yLWNvbnRlbnQgaDEge1xuICBmb250LXNpemU6IDIuNXJlbTtcbn1cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fZGVzY3JpcHRpb24gLm5lZXRvLWVkaXRvci1jb250ZW50IGgyIHtcbiAgZm9udC1zaXplOiAxLjVyZW07XG59XG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX2Rlc2NyaXB0aW9uIC5uZWV0by1lZGl0b3ItY29udGVudCBoMyB7XG4gIGZvbnQtc2l6ZTogMS4yNXJlbTtcbn1cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fZGVzY3JpcHRpb24gLm5lZXRvLWVkaXRvci1jb250ZW50IGFbaHJlZl0ge1xuICBjb2xvcjogcmdiKDQ1LCA1NCwgMjEyKTtcbn1cblxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19zb2NpYWwtc2hhcmUge1xuICBtYXJnaW4tdG9wOiAycmVtO1xufVxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19zb2NpYWwtc2hhcmUgLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uLXNvY2lhbC1mb2xsb3cge1xuICBkaXNwbGF5OiBpbmxpbmUtZmxleDtcbiAgZmxleC13cmFwOiB3cmFwO1xuICBnYXA6IDFyZW07XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xufVxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19zb2NpYWwtc2hhcmUgLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uLXNvY2lhbC1mb2xsb3dfX2l0ZW0ge1xuICBmb250LXNpemU6IDEuNXJlbTtcbiAgd2lkdGg6IGZpdC1jb250ZW50O1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX3NvY2lhbC1zaGFyZS10aXRsZSB7XG4gIGZvbnQtc2l6ZTogMC44cmVtO1xuICBtYXJnaW46IDAuOHJlbSAwO1xuICBmb250LXdlaWdodDogNDAwO1xuICBsaW5lLWhlaWdodDogMS4yO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX3Jlc3VibWl0IHtcbiAgZm9udC13ZWlnaHQ6IDYwMDtcbiAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX25hdi1mb290ZXIge1xuICBkaXNwbGF5OiBmbGV4O1xuICBnYXA6IDAuNXJlbTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fcGF5bWVudC1wZW5kaW5nIHtcbiAgZGlzcGxheTogZmxleDtcbiAgZmxleC1kaXJlY3Rpb246IGNvbHVtbjtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMHZoO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX3BheW1lbnQtcGVuZGluZy1ib2R5IHtcbiAgZGlzcGxheTogZmxleDtcbiAgZmxleC1kaXJlY3Rpb246IGNvbHVtbjtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIGdhcDogMXJlbTtcbiAgY29sb3I6IFwiIzJmMzk0MVwiO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24tcHJldmlldyB7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gIGhlaWdodDogMTAwJTtcbiAgYm9yZGVyOiAxcHggc29saWQgcmdiKHZhcigtLW5lZXRvLXVpLWdyYXktMzAwKSk7XG4gIGJveC1zaGFkb3c6IHZhcigtLW5lZXRvLXVpLXNoYWRvdy14cyk7XG4gIGJvcmRlci1yYWRpdXM6IHZhcigtLW5lZXRvLXVpLXJvdW5kZWQtbGcpO1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICBtaW4taGVpZ2h0OiA1MDBweDtcbn1cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbi1wcmV2aWV3IC5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbiB7XG4gIGhlaWdodDogMTAwJTtcbiAgbWF4LWhlaWdodDogMTAwJTtcbn1cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbi1wcmV2aWV3IC5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbiAubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX21haW4ge1xuICBoZWlnaHQ6IHVuc2V0O1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24tcHJldmlld19fYnJvd3Nlci1oZWFkZXIge1xuICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiKHZhcigtLW5lZXRvLXVpLWdyYXktMzAwKSk7XG4gIHBhZGRpbmc6IDVweDtcbn1cblxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19icmFuZGluZy13cmFwIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiKHZhcigtLW5lZXRvLXRoYW5rLXlvdS1ncmF5LTEwMCkpO1xuICBjb2xvcjogcmdiKHZhcigtLW5lZXRvLXRoYW5rLXlvdS1ncmF5LTgwMCkpO1xuICBkaXNwbGF5OiBmbGV4O1xuICBoZWlnaHQ6IDIuNXJlbTtcbiAgd2lkdGg6IDEwMCU7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBwYWRkaW5nOiAwLjM3NXJlbSAxcmVtO1xuICBmbGV4LXNocmluazogMDtcbiAgZm9udC1zaXplOiAxNHB4O1xuICBmb250LWZhbWlseTogc3lzdGVtLXVpLCAtYXBwbGUtc3lzdGVtLCBCbGlua01hY1N5c3RlbUZvbnQsIFwiU2Vnb2UgVUlcIiwgXCJSb2JvdG9cIiwgXCJPeHlnZW5cIiwgXCJVYnVudHVcIiwgXCJGaXJhIFNhbnNcIiwgXCJEcm9pZCBTYW5zXCIsIFwiSGVsdmV0aWNhIE5ldWVcIjtcbn1cblxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uLXJhZGlvX19pdGVtIHtcbiAgYWxpZ24taXRlbXM6IGZsZXgtc3RhcnQ7XG4gIHBhZGRpbmc6IDEycHggMTZweDtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiKHZhcigtLW5lZXRvLXVpLXdoaXRlKSk7XG4gIGJvcmRlcjogMXB4IHNvbGlkIHJnYih2YXIoLS1uZWV0by11aS1ncmF5LTMwMCkpO1xuICBib3JkZXItcmFkaXVzOiB2YXIoLS1uZWV0by11aS1yb3VuZGVkKTtcbn1cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbi1yYWRpb19faXRlbS5uZWV0by11aS1yYWRpb19faXRlbTpub3QoOmxhc3QtY2hpbGQpIHtcbiAgbWFyZ2luLXJpZ2h0OiAwICFpbXBvcnRhbnQ7XG59XG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24tcmFkaW9fX2l0ZW0ubmVldG8tdWktcmFkaW9fX2l0ZW0ge1xuICBhbGlnbi1pdGVtczogc3RhcnQgIWltcG9ydGFudDtcbn1cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbi1yYWRpb19faXRlbS5uZWV0by11aS1yYWRpb19faXRlbSAubmVldG8tdWktcmFkaW8ge1xuICBtYXJnaW4tdG9wOiAzcHg7XG59XG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24tcmFkaW9fX2l0ZW0uYWN0aXZlIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiKHZhcigtLW5lZXRvLXVpLXByaW1hcnktMTAwKSk7XG4gIGJvcmRlcjogMS41cHggc29saWQgcmdiKHZhcigtLW5lZXRvLXVpLXByaW1hcnktODAwKSk7XG59IiwiLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uIHtcbiAgZGlzcGxheTogZmxleDtcbiAgZmxleC1kaXJlY3Rpb246IGNvbHVtbjtcbiAgaGVpZ2h0OiAxMDB2aDtcbiAgb3ZlcmZsb3cteTogaGlkZGVuO1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fbmF2IHtcbiAgd2lkdGg6IDEwMCU7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBwYWRkaW5nOiA0cHg7XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fbGluayB7XG4gIGZvbnQtd2VpZ2h0OiA2MDA7XG4gIHRleHQtZGVjb3JhdGlvbjogbm9uZTtcbiAgY29sb3I6IGluaGVyaXQ7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIGdhcDogMC4yNXJlbTtcblxuICAmOmhvdmVyIHtcbiAgICBvcGFjaXR5OiAwLjg7XG4gIH1cblxuICBzcGFuIHtcbiAgICBib3JkZXItYm90dG9tOiAxcHggc29saWQgY3VycmVudENvbG9yO1xuICB9XG5cbiAgc3ZnIHtcbiAgICBoZWlnaHQ6IDFyZW07XG4gICAgd2lkdGg6IGF1dG87XG4gIH1cbn1cblxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19tYWluIHtcbiAgZGlzcGxheTogZmxleDtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIGhlaWdodDogY2FsYygxMDB2aCAtICN7JHRoYW5reW91LWJyYW5kaW5nLWluZm8tc2VjdGlvbi1oZWlnaHR9KTtcbiAgb3ZlcmZsb3cteTogYXV0bztcbn1cblxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19ib3gge1xuICB3aWR0aDogNTEuMjVyZW07XG4gIG1hcmdpbjogMCBhdXRvO1xuICBwYWRkaW5nOiAwIDE1cHg7XG4gIG1heC13aWR0aDogMTAwJTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX2RlZmF1bHQtaW1nLXdyYXAge1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGZvbnQtc2l6ZTogMi41cmVtO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24tYWxpZ25tZW50LS1sZWZ0IHtcbiAgLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19ib3gge1xuICAgIHRleHQtYWxpZ246IGxlZnQ7XG4gICAgYWxpZ24taXRlbXM6IGZsZXgtc3RhcnQ7XG4gIH1cbn1cblxuLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX190aXRsZSB7XG4gIGZvbnQtc2l6ZTogMnJlbTtcbiAgbWFyZ2luOiAwLjY3ZW0gMDtcbiAgbGluZS1oZWlnaHQ6IDEuMjU7XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9faW1nIHtcbiAgbWFyZ2luLXRvcDogMi41cmVtO1xuICBtYXJnaW4tYm90dG9tOiAxLjVyZW07XG5cbiAgaW1nIHtcbiAgICBtYXgtd2lkdGg6IDEwMCU7XG4gICAgbWF4LWhlaWdodDogNTB2aDtcbiAgICBkaXNwbGF5OiBpbmxpbmUtYmxvY2s7XG4gICAgdmVydGljYWwtYWxpZ246IHRvcDtcbiAgfVxufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX2Rlc2NyaXB0aW9uIHtcbiAgZm9udC1zaXplOiAxcmVtO1xuICBsaW5lLWhlaWdodDogMS41O1xuICBtYXJnaW46IDByZW0gMCAycmVtIDA7XG5cbiAgLm5lZXRvLWVkaXRvci1jb250ZW50IHtcbiAgICBoMSxcbiAgICBoMixcbiAgICBoMyB7XG4gICAgICBmb250LXdlaWdodDogNTAwO1xuICAgICAgbGluZS1oZWlnaHQ6IDEuMzI1O1xuICAgICAgbWFyZ2luLWJvdHRvbTogNHB4O1xuICAgIH1cblxuICAgIGgxIHtcbiAgICAgIGZvbnQtc2l6ZTogMi41cmVtO1xuICAgIH1cblxuICAgIGgyIHtcbiAgICAgIGZvbnQtc2l6ZTogMS41cmVtO1xuICAgIH1cblxuICAgIGgzIHtcbiAgICAgIGZvbnQtc2l6ZTogMS4yNXJlbTtcbiAgICB9XG4gICAgYVtocmVmXSB7XG4gICAgICBjb2xvcjogcmdiKDQ1IDU0IDIxMik7XG4gICAgfVxuICB9XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fc29jaWFsLXNoYXJlIHtcbiAgbWFyZ2luLXRvcDogMnJlbTtcblxuICAubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24tc29jaWFsLWZvbGxvdyB7XG4gICAgZGlzcGxheTogaW5saW5lLWZsZXg7XG4gICAgZmxleC13cmFwOiB3cmFwO1xuICAgIGdhcDogMXJlbTtcbiAgICBhbGlnbi1pdGVtczogY2VudGVyO1xuICAgIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICB9XG5cbiAgLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uLXNvY2lhbC1mb2xsb3dfX2l0ZW0ge1xuICAgIGZvbnQtc2l6ZTogMS41cmVtO1xuICAgIHdpZHRoOiBmaXQtY29udGVudDtcbiAgfVxufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX3NvY2lhbC1zaGFyZS10aXRsZSB7XG4gIGZvbnQtc2l6ZTogMC44cmVtO1xuICBtYXJnaW46IDAuOHJlbSAwO1xuICBmb250LXdlaWdodDogNDAwO1xuICBsaW5lLWhlaWdodDogMS4yO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX3Jlc3VibWl0IHtcbiAgZm9udC13ZWlnaHQ6IDYwMDtcbiAgYm9yZGVyLWJvdHRvbTogMXB4IHNvbGlkO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX25hdi1mb290ZXIge1xuICBkaXNwbGF5OiBmbGV4O1xuICBnYXA6IDAuNXJlbTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbl9fcGF5bWVudC1wZW5kaW5nIHtcbiAgZGlzcGxheTogZmxleDtcbiAgZmxleC1kaXJlY3Rpb246IGNvbHVtbjtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMHZoO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX3BheW1lbnQtcGVuZGluZy1ib2R5IHtcbiAgZGlzcGxheTogZmxleDtcbiAgZmxleC1kaXJlY3Rpb246IGNvbHVtbjtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIGdhcDogMXJlbTtcbiAgY29sb3I6IFwiIzJmMzk0MVwiO1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24tcHJldmlldyB7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gIGhlaWdodDogMTAwJTtcbiAgYm9yZGVyOiAxcHggc29saWQgcmdiKHZhcigtLW5lZXRvLXVpLWdyYXktMzAwKSk7XG4gIGJveC1zaGFkb3c6IHZhcigtLW5lZXRvLXVpLXNoYWRvdy14cyk7XG4gIGJvcmRlci1yYWRpdXM6IHZhcigtLW5lZXRvLXVpLXJvdW5kZWQtbGcpO1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICBtaW4taGVpZ2h0OiA1MDBweDtcblxuICAubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24ge1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBtYXgtaGVpZ2h0OiAxMDAlO1xuXG4gICAgLm5lZXRvLXRoYW5rLXlvdS1jb25maWd1cmF0aW9uX19tYWluIHtcbiAgICAgIGhlaWdodDogdW5zZXQ7XG4gICAgfVxuICB9XG59XG5cbi5uZWV0by10aGFuay15b3UtY29uZmlndXJhdGlvbi1wcmV2aWV3X19icm93c2VyLWhlYWRlciB7XG4gIGJvcmRlci1ib3R0b206IDFweCBzb2xpZCByZ2IodmFyKC0tbmVldG8tdWktZ3JheS0zMDApKTtcbiAgcGFkZGluZzogNXB4O1xufVxuXG4ubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb25fX2JyYW5kaW5nLXdyYXAge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2IodmFyKC0tbmVldG8tdGhhbmsteW91LWdyYXktMTAwKSk7XG4gIGNvbG9yOiByZ2IodmFyKC0tbmVldG8tdGhhbmsteW91LWdyYXktODAwKSk7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGhlaWdodDogMi41cmVtO1xuICB3aWR0aDogMTAwJTtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIHBhZGRpbmc6IDAuMzc1cmVtIDFyZW07XG4gIGZsZXgtc2hyaW5rOiAwO1xuICBmb250LXNpemU6IDE0cHg7XG4gIGZvbnQtZmFtaWx5OiBzeXN0ZW0tdWksIC1hcHBsZS1zeXN0ZW0sIEJsaW5rTWFjU3lzdGVtRm9udCwgXCJTZWdvZSBVSVwiLFxuICAgIFwiUm9ib3RvXCIsIFwiT3h5Z2VuXCIsIFwiVWJ1bnR1XCIsIFwiRmlyYSBTYW5zXCIsIFwiRHJvaWQgU2Fuc1wiLCBcIkhlbHZldGljYSBOZXVlXCI7XG59XG4iLCIubmVldG8tdGhhbmsteW91LWNvbmZpZ3VyYXRpb24tcmFkaW9fX2l0ZW0ge1xuICBhbGlnbi1pdGVtczogZmxleC1zdGFydDtcbiAgcGFkZGluZzogMTJweCAxNnB4O1xuICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2IodmFyKC0tbmVldG8tdWktd2hpdGUpKTtcbiAgYm9yZGVyOiAxcHggc29saWQgcmdiKHZhcigtLW5lZXRvLXVpLWdyYXktMzAwKSk7XG4gIGJvcmRlci1yYWRpdXM6IHZhcigtLW5lZXRvLXVpLXJvdW5kZWQpO1xuXG4gICYubmVldG8tdWktcmFkaW9fX2l0ZW06bm90KDpsYXN0LWNoaWxkKSB7XG4gICAgbWFyZ2luLXJpZ2h0OiAwICFpbXBvcnRhbnQ7XG4gIH1cblxuICAmLm5lZXRvLXVpLXJhZGlvX19pdGVtIHtcbiAgICBhbGlnbi1pdGVtczogc3RhcnQgIWltcG9ydGFudDtcblxuICAgIC5uZWV0by11aS1yYWRpbyB7XG4gICAgICBtYXJnaW4tdG9wOiAzcHg7XG4gICAgfVxuICB9XG5cbiAgJi5hY3RpdmUge1xuICAgIGJhY2tncm91bmQtY29sb3I6IHJnYih2YXIoLS1uZWV0by11aS1wcmltYXJ5LTEwMCkpO1xuICAgIGJvcmRlcjogMS41cHggc29saWQgcmdiKHZhcigtLW5lZXRvLXVpLXByaW1hcnktODAwKSk7XG4gIH1cbn1cbiJdfQ== */";
1
+ export { default as ConfigureThankYou } from './ConfigureThankYou.js';
2
+ export { default as ShowThankYou } from './ShowThankYou.js';
3
+ export { u as useShowThankYouConfiguration } from './useThankYouConfigurationApi-4d803194.js';
4
+ export { u as useShowThankYouPage } from './useThankYouPageApi-14742993.js';
5
+ import { n } from './SocialShare-d2986d0d.js';
6
+ import 'react';
7
+ import '@bigbinary/neeto-cist';
8
+ import '@bigbinary/neeto-molecules/Scrollable';
9
+ import 'i18next';
10
+ import 'classnames';
11
+ import '@bigbinary/neeto-molecules/PageLoader';
12
+ import '@bigbinary/neetoui/formik/ActionBlock';
13
+ import '@bigbinary/neetoui/formik/BlockNavigation';
14
+ import '@bigbinary/neetoui/formik/Form';
15
+ import '@bigbinary/neetoui/formik/Radio';
16
+ import 'ramda';
17
+ import 'formik';
18
+ import '@bigbinary/neeto-editor';
19
+ import '@bigbinary/neetoui/Label';
20
+ import '@bigbinary/neetoui/formik/Input';
21
+ import '@bigbinary/neetoui/formik/Switch';
22
+ import 'react-i18next';
23
+ import '@bigbinary/neeto-image-uploader-frontend';
24
+ import '@bigbinary/neeto-commons-frontend/react-utils';
25
+ import '@bigbinary/neetoui/Button';
26
+ import '@bigbinary/neetoui/Typography';
27
+ import '@bigbinary/neetoui/Modal';
28
+ import './BrandingInfo-da0b773a.js';
29
+ import './utils.js';
30
+ import '@bigbinary/neeto-commons-frontend/utils';
31
+ import './constants.js';
32
+ import '@bigbinary/neeto-commons-frontend/initializers';
33
+ import '@bigbinary/neeto-icons';
34
+ import 'yup';
35
+ import '@bigbinary/neeto-molecules/Header';
36
+ import 'react-query';
37
+ import 'axios';
38
+ import './query-ab526f47.js';
39
+ import 'dompurify';
40
+
41
+ var css = ":root{--neeto-thank-you-editor-content-color:0,0,0;--neeto-thank-you-background-color:255,255,255;--neeto-thank-you-background-image-position:center;--neeto-thank-you-gray-100:248,249,249;--neeto-thank-you-gray-800:31,31,31}.neeto-thank-you-configuration{display:flex;flex-direction:column;height:100vh;overflow-y:hidden;position:relative}.neeto-thank-you-configuration__nav{display:flex;justify-content:center;padding:4px;width:100%}.neeto-thank-you-configuration__link{align-items:center;color:inherit;display:flex;font-weight:600;gap:.25rem;text-decoration:none}.neeto-thank-you-configuration__link:hover{opacity:.8}.neeto-thank-you-configuration__link span{border-bottom:1px solid}.neeto-thank-you-configuration__link svg{height:1rem;width:auto}.neeto-thank-you-configuration__main{align-items:center;display:flex;height:calc(100vh - 40px);justify-content:center;overflow-y:auto}.neeto-thank-you-configuration__box{margin:0 auto;max-width:100%;padding:0 15px;text-align:center;width:51.25rem}.neeto-thank-you-configuration__default-img-wrap{font-size:2.5rem;text-align:center}.neeto-thank-you-configuration-alignment--left .neeto-thank-you-configuration__box{align-items:flex-start;text-align:left}.neeto-thank-you-configuration__title{font-size:2rem;line-height:1.25;margin:.67em 0}.neeto-thank-you-configuration__img{margin-bottom:1.5rem;margin-top:2.5rem}.neeto-thank-you-configuration__img img{display:inline-block;max-height:50vh;max-width:100%;vertical-align:top}.neeto-thank-you-configuration__description{font-size:1rem;line-height:1.5;margin:0 0 2rem}.neeto-thank-you-configuration__description .neeto-editor-content h1,.neeto-thank-you-configuration__description .neeto-editor-content h2,.neeto-thank-you-configuration__description .neeto-editor-content h3{font-weight:500;line-height:1.325;margin-bottom:4px}.neeto-thank-you-configuration__description .neeto-editor-content h1{font-size:2.5rem}.neeto-thank-you-configuration__description .neeto-editor-content h2{font-size:1.5rem}.neeto-thank-you-configuration__description .neeto-editor-content h3{font-size:1.25rem}.neeto-thank-you-configuration__description .neeto-editor-content a[href]{color:#2d36d4}.neeto-thank-you-configuration__social-share{margin-top:2rem}.neeto-thank-you-configuration__social-share .neeto-thank-you-configuration-social-follow{align-items:center;display:inline-flex;flex-wrap:wrap;gap:1rem;justify-content:center}.neeto-thank-you-configuration__social-share .neeto-thank-you-configuration-social-follow__item{font-size:1.5rem;width:-moz-fit-content;width:fit-content}.neeto-thank-you-configuration__social-share-title{font-size:.8rem;font-weight:400;line-height:1.2;margin:.8rem 0}.neeto-thank-you-configuration__resubmit{border-bottom:1px solid;font-weight:600}.neeto-thank-you-configuration__nav-footer{align-items:center;display:flex;font-size:.875rem;gap:.5rem;justify-content:center}.neeto-thank-you-configuration__payment-pending{align-items:center;display:flex;flex-direction:column;height:100vh;justify-content:center;width:100%}.neeto-thank-you-configuration__payment-pending-body{align-items:center;color:\"#2f3941\";display:flex;flex-direction:column;gap:1rem;justify-content:center}.neeto-thank-you-configuration-preview{border:1px solid rgb(var(--neeto-ui-gray-300));border-radius:var(--neeto-ui-rounded-lg);box-shadow:var(--neeto-ui-shadow-xs);display:flex;flex-direction:column;height:100%;min-height:500px;overflow:hidden}.neeto-thank-you-configuration-preview .neeto-thank-you-configuration{height:100%;max-height:100%}.neeto-thank-you-configuration-preview .neeto-thank-you-configuration .neeto-thank-you-configuration__main{height:auto}.neeto-thank-you-configuration-preview__browser-header{border-bottom:1px solid rgb(var(--neeto-ui-gray-300));padding:5px}.neeto-thank-you-configuration__branding-wrap{align-items:center;background-color:#f8f9f9;background-color:rgb(var(--neeto-thank-you-gray-100));color:#1f1f1f;color:rgb(var(--neeto-thank-you-gray-800));display:flex;flex-shrink:0;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Fira Sans,Droid Sans,Helvetica Neue;font-size:14px;height:2.5rem;justify-content:center;padding:.375rem 1rem;width:100%}.neeto-thank-you-configuration-radio__item{align-items:flex-start;background-color:rgb(var(--neeto-ui-white));border:1px solid rgb(var(--neeto-ui-gray-300));border-radius:var(--neeto-ui-rounded);padding:12px 16px}.neeto-thank-you-configuration-radio__item.neeto-ui-radio__item:not(:last-child){margin-right:0!important}.neeto-thank-you-configuration-radio__item.neeto-ui-radio__item{align-items:start!important}.neeto-thank-you-configuration-radio__item.neeto-ui-radio__item .neeto-ui-radio{margin-top:3px}.neeto-thank-you-configuration-radio__item.active{background-color:rgb(var(--neeto-ui-primary-100));border:1.5px solid rgb(var(--neeto-ui-primary-800))}";
850
42
  n(css,{});
851
-
852
- export { ConfigureThankYou, ShowThankYou, useShowThankYouConfiguration, useShowThankYouPage };
853
43
  //# sourceMappingURL=index.js.map