@123usmanhaider321/ui 0.1.8 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (545) hide show
  1. package/README.md +416 -31
  2. package/dist/images/icon/1LINK.svg +50 -0
  3. package/dist/images/icon/CreditCard.svg +83 -0
  4. package/dist/images/icon/Easypaisa.png +0 -0
  5. package/dist/images/icon/MobileWallet.png +0 -0
  6. package/dist/images/icon/Raast-Logo.png +0 -0
  7. package/dist/images/icon/VISA.png +0 -0
  8. package/dist/images/icon/add-circle-1.svg +5 -0
  9. package/dist/images/icon/check-circle-broken.svg +3 -0
  10. package/dist/images/icon/close-circle.svg +5 -0
  11. package/dist/images/icon/jazzcash.png +0 -0
  12. package/dist/images/icon/loading_icon.json +3347 -0
  13. package/dist/images/icon/mastercard-logo.webp +0 -0
  14. package/dist/images/icon/paymo.jpeg +0 -0
  15. package/dist/images/icon/preview-svgrepo-com.svg +36 -0
  16. package/dist/images/icon/trash.svg +7 -0
  17. package/dist/images/icon/unionpay-logo.svg +9 -0
  18. package/dist/index-BLoegwT6.js +60476 -0
  19. package/dist/index-BLoegwT6.js.map +1 -0
  20. package/dist/index-CPnu5V8f.js +11119 -0
  21. package/dist/index-CPnu5V8f.js.map +1 -0
  22. package/dist/index.d.ts +1 -10
  23. package/dist/index.es-C5pDhGOr.js +16734 -0
  24. package/dist/index.es-C5pDhGOr.js.map +1 -0
  25. package/dist/index.js +40 -12
  26. package/dist/index.js.map +1 -1
  27. package/dist/loading_icon-n5H5dQBl.js +3375 -0
  28. package/dist/loading_icon-n5H5dQBl.js.map +1 -0
  29. package/dist/src/components/Alert/ErrorAlert.d.ts +6 -0
  30. package/dist/src/components/Alert/SuccessAlert.d.ts +6 -0
  31. package/dist/{components → src/components}/FormBuilder/DiscountInput.d.ts +3 -6
  32. package/dist/{components → src/components}/FormBuilder/FormBuilder.d.ts +2 -11
  33. package/dist/{components → src/components}/FormBuilder/QuestionCard.d.ts +0 -5
  34. package/dist/{components → src/components}/FormBuilder/QuestionEditor.d.ts +0 -5
  35. package/dist/{components → src/components}/FormBuilder/SortableQuestionList.d.ts +0 -5
  36. package/dist/src/components/FormBuilder/questionIcons.d.ts +5 -0
  37. package/dist/{components/EventAddForm → src/components/NewAddEvent}/AddEventLayout.d.ts +2 -1
  38. package/dist/{components/EventAddForm → src/components/NewAddEvent}/AddEventStepper.d.ts +2 -2
  39. package/dist/{components/EventAddForm → src/components/NewAddEvent}/common/ConfirmationModal.d.ts +1 -1
  40. package/dist/src/components/NewAddEvent/components/EventSubmissionConfirmationModal.d.ts +14 -0
  41. package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/StepTwo/TicketTierSection.d.ts +1 -1
  42. package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/TicketTierForm.d.ts +1 -1
  43. package/dist/{components/EventAddForm → src/components/NewAddEvent}/hooks/useStepperForm.d.ts +22 -22
  44. package/dist/{components/EventAddForm → src/components/NewAddEvent}/hooks/useTicketTierForm.d.ts +63 -15
  45. package/dist/src/components/NewAddEvent/schemas/step1.d.ts +211 -0
  46. package/dist/src/components/NewAddEvent/schemas/step2.d.ts +411 -0
  47. package/dist/{components/EventAddForm → src/components/NewAddEvent}/schemas/utils.d.ts +8 -2
  48. package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/IndividualFormStep.d.ts +1 -1
  49. package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/SocialProfilesStep.d.ts +1 -1
  50. package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/TeamFormStep.d.ts +1 -1
  51. package/dist/src/components/Spinner/spinner.d.ts +4 -0
  52. package/dist/src/components/TicketlyUIProvider.d.ts +35 -0
  53. package/dist/src/components/common/Loader/index.d.ts +8 -0
  54. package/dist/src/components/common/Modals/ConfirmationModal.d.ts +7 -0
  55. package/dist/{components/FormInput → src/components/ui}/FormInput.d.ts +1 -1
  56. package/dist/src/components/ui/Loader.d.ts +4 -0
  57. package/dist/{components/Button/Button.d.ts → src/components/ui/button.d.ts} +1 -1
  58. package/dist/src/index.d.ts +10 -0
  59. package/dist/{lib → src/lib}/actions.d.ts +0 -126
  60. package/dist/src/lib/dom-utils.d.ts +2 -0
  61. package/dist/src/lib/storage-utils.d.ts +5 -0
  62. package/dist/src/lib/types.d.ts +258 -0
  63. package/dist/src/redux/baseQuery.d.ts +16 -0
  64. package/dist/{services → src/redux/features}/eventApi.d.ts +1053 -1745
  65. package/dist/src/redux/features/globalSlice.d.ts +17 -0
  66. package/dist/{services → src/redux/features/single-event}/single-event-api.d.ts +856 -1190
  67. package/dist/src/redux/types.d.ts +2 -0
  68. package/dist/src/services/library-services.d.ts +15 -0
  69. package/dist/src/services/remote-config.d.ts +27 -0
  70. package/dist/{services → src/services}/utils.d.ts +1 -1
  71. package/dist/src/theme/colors.d.ts +127 -0
  72. package/dist/src/theme/typography.d.ts +13 -0
  73. package/dist/src/types/api.d.ts +18 -0
  74. package/dist/style.css +2984 -0
  75. package/dist/styles.css +3760 -4014
  76. package/package.json +78 -68
  77. package/dist/_virtual/_commonjsHelpers.js +0 -9
  78. package/dist/_virtual/_commonjsHelpers.js.map +0 -1
  79. package/dist/_virtual/customParseFormat.js +0 -5
  80. package/dist/_virtual/customParseFormat.js.map +0 -1
  81. package/dist/_virtual/dayjs.min.js +0 -5
  82. package/dist/_virtual/dayjs.min.js.map +0 -1
  83. package/dist/_virtual/duration.js +0 -5
  84. package/dist/_virtual/duration.js.map +0 -1
  85. package/dist/_virtual/index.js +0 -5
  86. package/dist/_virtual/index.js.map +0 -1
  87. package/dist/_virtual/isBetween.js +0 -5
  88. package/dist/_virtual/isBetween.js.map +0 -1
  89. package/dist/_virtual/relativeTime.js +0 -5
  90. package/dist/_virtual/relativeTime.js.map +0 -1
  91. package/dist/_virtual/use-sync-external-store-shim.development.js +0 -5
  92. package/dist/_virtual/use-sync-external-store-shim.development.js.map +0 -1
  93. package/dist/_virtual/use-sync-external-store-shim.production.js +0 -5
  94. package/dist/_virtual/use-sync-external-store-shim.production.js.map +0 -1
  95. package/dist/_virtual/with-selector.development.js +0 -5
  96. package/dist/_virtual/with-selector.development.js.map +0 -1
  97. package/dist/_virtual/with-selector.js +0 -5
  98. package/dist/_virtual/with-selector.js.map +0 -1
  99. package/dist/_virtual/with-selector.production.js +0 -5
  100. package/dist/_virtual/with-selector.production.js.map +0 -1
  101. package/dist/components/Alert/Alert.js +0 -51
  102. package/dist/components/Alert/Alert.js.map +0 -1
  103. package/dist/components/Button/Button.js +0 -52
  104. package/dist/components/Button/Button.js.map +0 -1
  105. package/dist/components/Button/Button.test.d.ts +0 -1
  106. package/dist/components/Button/index.d.ts +0 -1
  107. package/dist/components/Checkbox/Checkbox.js +0 -50
  108. package/dist/components/Checkbox/Checkbox.js.map +0 -1
  109. package/dist/components/Checkbox/Checkbox.test.d.ts +0 -1
  110. package/dist/components/Checkbox/index.d.ts +0 -1
  111. package/dist/components/CheckboxGroup/CheckboxGroup.d.ts +0 -25
  112. package/dist/components/CheckboxGroup/CheckboxGroup.js +0 -99
  113. package/dist/components/CheckboxGroup/CheckboxGroup.js.map +0 -1
  114. package/dist/components/ConfirmationModal/ConfirmationModal.d.ts +0 -15
  115. package/dist/components/ConfirmationModal/ConfirmationModal.js +0 -136
  116. package/dist/components/ConfirmationModal/ConfirmationModal.js.map +0 -1
  117. package/dist/components/ConfirmationModal/index.d.ts +0 -2
  118. package/dist/components/CustomSelect/CustomSelect.js +0 -259
  119. package/dist/components/CustomSelect/CustomSelect.js.map +0 -1
  120. package/dist/components/EventAddForm/AddEventLayout.js +0 -227
  121. package/dist/components/EventAddForm/AddEventLayout.js.map +0 -1
  122. package/dist/components/EventAddForm/AddEventStepper.js +0 -719
  123. package/dist/components/EventAddForm/AddEventStepper.js.map +0 -1
  124. package/dist/components/EventAddForm/common/ConfirmationModal.js +0 -136
  125. package/dist/components/EventAddForm/common/ConfirmationModal.js.map +0 -1
  126. package/dist/components/EventAddForm/common/DescriptionModal.js +0 -70
  127. package/dist/components/EventAddForm/common/DescriptionModal.js.map +0 -1
  128. package/dist/components/EventAddForm/components/AnimatedBackground.d.ts +0 -8
  129. package/dist/components/EventAddForm/components/ApprovalConfirmationModal.d.ts +0 -7
  130. package/dist/components/EventAddForm/components/CheckboxGroup.js +0 -92
  131. package/dist/components/EventAddForm/components/CheckboxGroup.js.map +0 -1
  132. package/dist/components/EventAddForm/components/CustomMeetingForm.js +0 -237
  133. package/dist/components/EventAddForm/components/CustomMeetingForm.js.map +0 -1
  134. package/dist/components/EventAddForm/components/DateTimeField.js +0 -173
  135. package/dist/components/EventAddForm/components/DateTimeField.js.map +0 -1
  136. package/dist/components/EventAddForm/components/EventSubmissionConfirmationModal.d.ts +0 -33
  137. package/dist/components/EventAddForm/components/EventSubmissionConfirmationModal.js +0 -366
  138. package/dist/components/EventAddForm/components/EventSubmissionConfirmationModal.js.map +0 -1
  139. package/dist/components/EventAddForm/components/FileUpload.js +0 -412
  140. package/dist/components/EventAddForm/components/FileUpload.js.map +0 -1
  141. package/dist/components/EventAddForm/components/FormBuilderProceedModal.js +0 -197
  142. package/dist/components/EventAddForm/components/FormBuilderProceedModal.js.map +0 -1
  143. package/dist/components/EventAddForm/components/GoogleMapsAutocompleteInput.js +0 -1179
  144. package/dist/components/EventAddForm/components/GoogleMapsAutocompleteInput.js.map +0 -1
  145. package/dist/components/EventAddForm/components/InputField.d.ts +0 -15
  146. package/dist/components/EventAddForm/components/RadioGroupButton.d.ts +0 -14
  147. package/dist/components/EventAddForm/components/SelectField.d.ts +0 -19
  148. package/dist/components/EventAddForm/components/SingleDateTimeInput.js +0 -102
  149. package/dist/components/EventAddForm/components/SingleDateTimeInput.js.map +0 -1
  150. package/dist/components/EventAddForm/components/StepTwo/CustomFormSection.js +0 -277
  151. package/dist/components/EventAddForm/components/StepTwo/CustomFormSection.js.map +0 -1
  152. package/dist/components/EventAddForm/components/StepTwo/TicketTierSection.js +0 -148
  153. package/dist/components/EventAddForm/components/StepTwo/TicketTierSection.js.map +0 -1
  154. package/dist/components/EventAddForm/components/TicketTierForm.js +0 -418
  155. package/dist/components/EventAddForm/components/TicketTierForm.js.map +0 -1
  156. package/dist/components/EventAddForm/components/TicketTypeSelection.js +0 -93
  157. package/dist/components/EventAddForm/components/TicketTypeSelection.js.map +0 -1
  158. package/dist/components/EventAddForm/hooks/useStepperForm.js +0 -371
  159. package/dist/components/EventAddForm/hooks/useStepperForm.js.map +0 -1
  160. package/dist/components/EventAddForm/hooks/useTicketTierForm.js +0 -237
  161. package/dist/components/EventAddForm/hooks/useTicketTierForm.js.map +0 -1
  162. package/dist/components/EventAddForm/index.d.ts +0 -3
  163. package/dist/components/EventAddForm/index.js +0 -41
  164. package/dist/components/EventAddForm/index.js.map +0 -1
  165. package/dist/components/EventAddForm/schemas/index.d.ts +0 -2
  166. package/dist/components/EventAddForm/schemas/step1.d.ts +0 -47
  167. package/dist/components/EventAddForm/schemas/step1.js +0 -135
  168. package/dist/components/EventAddForm/schemas/step1.js.map +0 -1
  169. package/dist/components/EventAddForm/schemas/step2.d.ts +0 -138
  170. package/dist/components/EventAddForm/schemas/step2.js +0 -94
  171. package/dist/components/EventAddForm/schemas/step2.js.map +0 -1
  172. package/dist/components/EventAddForm/schemas/utils.js +0 -28
  173. package/dist/components/EventAddForm/schemas/utils.js.map +0 -1
  174. package/dist/components/EventAddForm/steps/IndividualFormStep.js +0 -85
  175. package/dist/components/EventAddForm/steps/IndividualFormStep.js.map +0 -1
  176. package/dist/components/EventAddForm/steps/SocialProfilesStep.js +0 -123
  177. package/dist/components/EventAddForm/steps/SocialProfilesStep.js.map +0 -1
  178. package/dist/components/EventAddForm/steps/StepOne.js +0 -462
  179. package/dist/components/EventAddForm/steps/StepOne.js.map +0 -1
  180. package/dist/components/EventAddForm/steps/StepTwo.js +0 -173
  181. package/dist/components/EventAddForm/steps/StepTwo.js.map +0 -1
  182. package/dist/components/EventAddForm/steps/TeamFormStep.js +0 -13
  183. package/dist/components/EventAddForm/steps/TeamFormStep.js.map +0 -1
  184. package/dist/components/FormBuilder/CategoryList.js +0 -242
  185. package/dist/components/FormBuilder/CategoryList.js.map +0 -1
  186. package/dist/components/FormBuilder/DiscountInput.js +0 -366
  187. package/dist/components/FormBuilder/DiscountInput.js.map +0 -1
  188. package/dist/components/FormBuilder/FormBuilder.js +0 -918
  189. package/dist/components/FormBuilder/FormBuilder.js.map +0 -1
  190. package/dist/components/FormBuilder/OptionList.js +0 -120
  191. package/dist/components/FormBuilder/OptionList.js.map +0 -1
  192. package/dist/components/FormBuilder/PaymentPreview.d.ts +0 -12
  193. package/dist/components/FormBuilder/PaymentPreview.js +0 -70
  194. package/dist/components/FormBuilder/PaymentPreview.js.map +0 -1
  195. package/dist/components/FormBuilder/PreviewInput.d.ts +0 -10
  196. package/dist/components/FormBuilder/PreviewInput.js +0 -143
  197. package/dist/components/FormBuilder/PreviewInput.js.map +0 -1
  198. package/dist/components/FormBuilder/QuestionCard.js +0 -252
  199. package/dist/components/FormBuilder/QuestionCard.js.map +0 -1
  200. package/dist/components/FormBuilder/QuestionEditor.js +0 -166
  201. package/dist/components/FormBuilder/QuestionEditor.js.map +0 -1
  202. package/dist/components/FormBuilder/RequiredToggle.js +0 -43
  203. package/dist/components/FormBuilder/RequiredToggle.js.map +0 -1
  204. package/dist/components/FormBuilder/SortableQuestionList.js +0 -137
  205. package/dist/components/FormBuilder/SortableQuestionList.js.map +0 -1
  206. package/dist/components/FormBuilder/index.d.ts +0 -4
  207. package/dist/components/FormBuilder/utils.js +0 -229
  208. package/dist/components/FormBuilder/utils.js.map +0 -1
  209. package/dist/components/FormInput/FormInput.js +0 -126
  210. package/dist/components/FormInput/FormInput.js.map +0 -1
  211. package/dist/components/FormInput/FormInput.test.d.ts +0 -1
  212. package/dist/components/FormInput/index.d.ts +0 -2
  213. package/dist/components/ImageCropModal/index.js +0 -464
  214. package/dist/components/ImageCropModal/index.js.map +0 -1
  215. package/dist/components/InformationPopover/InformationPopover.d.ts +0 -7
  216. package/dist/components/InformationPopover/InformationPopover.js +0 -19
  217. package/dist/components/InformationPopover/InformationPopover.js.map +0 -1
  218. package/dist/components/InformationPopover.js +0 -19
  219. package/dist/components/InformationPopover.js.map +0 -1
  220. package/dist/components/InputErrorMessage/InputErrorMessage.js +0 -21
  221. package/dist/components/InputErrorMessage/InputErrorMessage.js.map +0 -1
  222. package/dist/components/Modal/Modal.d.ts +0 -15
  223. package/dist/components/Modal/Modal.js +0 -73
  224. package/dist/components/Modal/Modal.js.map +0 -1
  225. package/dist/components/Radio/Radio.js +0 -35
  226. package/dist/components/Radio/Radio.js.map +0 -1
  227. package/dist/components/Spinner/spinner.d.ts +0 -2
  228. package/dist/components/Spinner/spinner.js +0 -22
  229. package/dist/components/Spinner/spinner.js.map +0 -1
  230. package/dist/components/Toggle/Toggle.d.ts +0 -16
  231. package/dist/components/Toggle/index.d.ts +0 -2
  232. package/dist/components/Tooltip/Tooltip.d.ts +0 -12
  233. package/dist/components/Tooltip/Tooltip.js +0 -134
  234. package/dist/components/Tooltip/Tooltip.js.map +0 -1
  235. package/dist/components/common/FallbackImage.js +0 -47
  236. package/dist/components/common/FallbackImage.js.map +0 -1
  237. package/dist/components/ui/Calendar/calendar-utils.js +0 -51
  238. package/dist/components/ui/Calendar/calendar-utils.js.map +0 -1
  239. package/dist/components/ui/Calendar/index.js +0 -142
  240. package/dist/components/ui/Calendar/index.js.map +0 -1
  241. package/dist/components/ui/Checkbox.d.ts +0 -9
  242. package/dist/components/ui/Checkbox.js +0 -50
  243. package/dist/components/ui/Checkbox.js.map +0 -1
  244. package/dist/components/ui/DatePicker/index.js +0 -188
  245. package/dist/components/ui/DatePicker/index.js.map +0 -1
  246. package/dist/components/ui/FormInput.js +0 -129
  247. package/dist/components/ui/FormInput.js.map +0 -1
  248. package/dist/components/ui/InputErrorMessage.d.ts +0 -7
  249. package/dist/components/ui/InputErrorMessage.js +0 -21
  250. package/dist/components/ui/InputErrorMessage.js.map +0 -1
  251. package/dist/components/ui/Modal/index.js +0 -73
  252. package/dist/components/ui/Modal/index.js.map +0 -1
  253. package/dist/components/ui/Radio.d.ts +0 -6
  254. package/dist/components/ui/Radio.js +0 -35
  255. package/dist/components/ui/Radio.js.map +0 -1
  256. package/dist/components/ui/RichTextEditor.js +0 -242
  257. package/dist/components/ui/RichTextEditor.js.map +0 -1
  258. package/dist/components/ui/TimePicker/index.js +0 -215
  259. package/dist/components/ui/TimePicker/index.js.map +0 -1
  260. package/dist/components/ui/TimeSelector/index.js +0 -138
  261. package/dist/components/ui/TimeSelector/index.js.map +0 -1
  262. package/dist/components/ui/Tooltip.d.ts +0 -12
  263. package/dist/components/ui/Tooltip.js +0 -136
  264. package/dist/components/ui/Tooltip.js.map +0 -1
  265. package/dist/hooks/useDropdownPosition.d.ts +0 -11
  266. package/dist/hooks/useFirebaseAuthState.d.ts +0 -6
  267. package/dist/hooks/useFirebaseAuthState.js +0 -23
  268. package/dist/hooks/useFirebaseAuthState.js.map +0 -1
  269. package/dist/hooks/useTicketTierForm.d.ts +0 -61
  270. package/dist/lib/actions.js +0 -32
  271. package/dist/lib/actions.js.map +0 -1
  272. package/dist/lib/cropImage.js +0 -113
  273. package/dist/lib/cropImage.js.map +0 -1
  274. package/dist/lib/imageAnalysis.js +0 -58
  275. package/dist/lib/imageAnalysis.js.map +0 -1
  276. package/dist/lib/utils.js +0 -9
  277. package/dist/lib/utils.js.map +0 -1
  278. package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +0 -60
  279. package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js.map +0 -1
  280. package/dist/node_modules/@dnd-kit/core/dist/core.esm.js +0 -3458
  281. package/dist/node_modules/@dnd-kit/core/dist/core.esm.js.map +0 -1
  282. package/dist/node_modules/@dnd-kit/sortable/dist/sortable.esm.js +0 -593
  283. package/dist/node_modules/@dnd-kit/sortable/dist/sortable.esm.js.map +0 -1
  284. package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +0 -302
  285. package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.js.map +0 -1
  286. package/dist/node_modules/@firebase/app/dist/esm/index.esm.js +0 -768
  287. package/dist/node_modules/@firebase/app/dist/esm/index.esm.js.map +0 -1
  288. package/dist/node_modules/@firebase/component/dist/esm/index.esm.js +0 -340
  289. package/dist/node_modules/@firebase/component/dist/esm/index.esm.js.map +0 -1
  290. package/dist/node_modules/@firebase/logger/dist/esm/index.esm.js +0 -123
  291. package/dist/node_modules/@firebase/logger/dist/esm/index.esm.js.map +0 -1
  292. package/dist/node_modules/@firebase/storage/dist/index.esm.js +0 -2623
  293. package/dist/node_modules/@firebase/storage/dist/index.esm.js.map +0 -1
  294. package/dist/node_modules/@firebase/util/dist/index.esm.js +0 -658
  295. package/dist/node_modules/@firebase/util/dist/index.esm.js.map +0 -1
  296. package/dist/node_modules/@firebase/util/dist/postinstall.js +0 -5
  297. package/dist/node_modules/@firebase/util/dist/postinstall.js.map +0 -1
  298. package/dist/node_modules/@fortawesome/fontawesome-svg-core/index.js +0 -3179
  299. package/dist/node_modules/@fortawesome/fontawesome-svg-core/index.js.map +0 -1
  300. package/dist/node_modules/@fortawesome/free-solid-svg-icons/index.js +0 -60
  301. package/dist/node_modules/@fortawesome/free-solid-svg-icons/index.js.map +0 -1
  302. package/dist/node_modules/@fortawesome/react-fontawesome/dist/index.js +0 -400
  303. package/dist/node_modules/@fortawesome/react-fontawesome/dist/index.js.map +0 -1
  304. package/dist/node_modules/@heroicons/react/20/solid/esm/CheckIcon.js +0 -27
  305. package/dist/node_modules/@heroicons/react/20/solid/esm/CheckIcon.js.map +0 -1
  306. package/dist/node_modules/@heroicons/react/20/solid/esm/ChevronDownIcon.js +0 -27
  307. package/dist/node_modules/@heroicons/react/20/solid/esm/ChevronDownIcon.js.map +0 -1
  308. package/dist/node_modules/@heroicons/react/24/outline/esm/ArrowRightIcon.js +0 -29
  309. package/dist/node_modules/@heroicons/react/24/outline/esm/ArrowRightIcon.js.map +0 -1
  310. package/dist/node_modules/@heroicons/react/24/outline/esm/ClockIcon.js +0 -29
  311. package/dist/node_modules/@heroicons/react/24/outline/esm/ClockIcon.js.map +0 -1
  312. package/dist/node_modules/@heroicons/react/24/outline/esm/DocumentDuplicateIcon.js +0 -29
  313. package/dist/node_modules/@heroicons/react/24/outline/esm/DocumentDuplicateIcon.js.map +0 -1
  314. package/dist/node_modules/@heroicons/react/24/outline/esm/InformationCircleIcon.js +0 -29
  315. package/dist/node_modules/@heroicons/react/24/outline/esm/InformationCircleIcon.js.map +0 -1
  316. package/dist/node_modules/@heroicons/react/24/outline/esm/LinkIcon.js +0 -29
  317. package/dist/node_modules/@heroicons/react/24/outline/esm/LinkIcon.js.map +0 -1
  318. package/dist/node_modules/@heroicons/react/24/outline/esm/MagnifyingGlassIcon.js +0 -29
  319. package/dist/node_modules/@heroicons/react/24/outline/esm/MagnifyingGlassIcon.js.map +0 -1
  320. package/dist/node_modules/@heroicons/react/24/outline/esm/MapPinIcon.js +0 -33
  321. package/dist/node_modules/@heroicons/react/24/outline/esm/MapPinIcon.js.map +0 -1
  322. package/dist/node_modules/@heroicons/react/24/outline/esm/VideoCameraIcon.js +0 -29
  323. package/dist/node_modules/@heroicons/react/24/outline/esm/VideoCameraIcon.js.map +0 -1
  324. package/dist/node_modules/@heroicons/react/24/outline/esm/XMarkIcon.js +0 -29
  325. package/dist/node_modules/@heroicons/react/24/outline/esm/XMarkIcon.js.map +0 -1
  326. package/dist/node_modules/@tiptap/core/dist/index.js +0 -5446
  327. package/dist/node_modules/@tiptap/core/dist/index.js.map +0 -1
  328. package/dist/node_modules/@tiptap/core/dist/jsx-runtime/jsx-runtime.js +0 -21
  329. package/dist/node_modules/@tiptap/core/dist/jsx-runtime/jsx-runtime.js.map +0 -1
  330. package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js +0 -78
  331. package/dist/node_modules/@tiptap/extension-blockquote/dist/index.js.map +0 -1
  332. package/dist/node_modules/@tiptap/extension-bold/dist/index.js +0 -100
  333. package/dist/node_modules/@tiptap/extension-bold/dist/index.js.map +0 -1
  334. package/dist/node_modules/@tiptap/extension-code/dist/index.js +0 -70
  335. package/dist/node_modules/@tiptap/extension-code/dist/index.js.map +0 -1
  336. package/dist/node_modules/@tiptap/extension-code-block/dist/index.js +0 -317
  337. package/dist/node_modules/@tiptap/extension-code-block/dist/index.js.map +0 -1
  338. package/dist/node_modules/@tiptap/extension-document/dist/index.js +0 -16
  339. package/dist/node_modules/@tiptap/extension-document/dist/index.js.map +0 -1
  340. package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js +0 -66
  341. package/dist/node_modules/@tiptap/extension-hard-break/dist/index.js.map +0 -1
  342. package/dist/node_modules/@tiptap/extension-heading/dist/index.js +0 -86
  343. package/dist/node_modules/@tiptap/extension-heading/dist/index.js.map +0 -1
  344. package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js +0 -80
  345. package/dist/node_modules/@tiptap/extension-horizontal-rule/dist/index.js.map +0 -1
  346. package/dist/node_modules/@tiptap/extension-italic/dist/index.js +0 -98
  347. package/dist/node_modules/@tiptap/extension-italic/dist/index.js.map +0 -1
  348. package/dist/node_modules/@tiptap/extension-link/dist/index.js +0 -423
  349. package/dist/node_modules/@tiptap/extension-link/dist/index.js.map +0 -1
  350. package/dist/node_modules/@tiptap/extension-list/dist/index.js +0 -1039
  351. package/dist/node_modules/@tiptap/extension-list/dist/index.js.map +0 -1
  352. package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js +0 -61
  353. package/dist/node_modules/@tiptap/extension-paragraph/dist/index.js.map +0 -1
  354. package/dist/node_modules/@tiptap/extension-placeholder/dist/index.js +0 -7
  355. package/dist/node_modules/@tiptap/extension-placeholder/dist/index.js.map +0 -1
  356. package/dist/node_modules/@tiptap/extension-strike/dist/index.js +0 -79
  357. package/dist/node_modules/@tiptap/extension-strike/dist/index.js.map +0 -1
  358. package/dist/node_modules/@tiptap/extension-text/dist/index.js +0 -16
  359. package/dist/node_modules/@tiptap/extension-text/dist/index.js.map +0 -1
  360. package/dist/node_modules/@tiptap/extension-underline/dist/index.js +0 -76
  361. package/dist/node_modules/@tiptap/extension-underline/dist/index.js.map +0 -1
  362. package/dist/node_modules/@tiptap/extensions/dist/index.js +0 -376
  363. package/dist/node_modules/@tiptap/extensions/dist/index.js.map +0 -1
  364. package/dist/node_modules/@tiptap/react/dist/index.js +0 -650
  365. package/dist/node_modules/@tiptap/react/dist/index.js.map +0 -1
  366. package/dist/node_modules/@tiptap/starter-kit/dist/index.js +0 -97
  367. package/dist/node_modules/@tiptap/starter-kit/dist/index.js.map +0 -1
  368. package/dist/node_modules/dayjs/dayjs.min.js +0 -283
  369. package/dist/node_modules/dayjs/dayjs.min.js.map +0 -1
  370. package/dist/node_modules/dayjs/plugin/customParseFormat.js +0 -130
  371. package/dist/node_modules/dayjs/plugin/customParseFormat.js.map +0 -1
  372. package/dist/node_modules/dayjs/plugin/duration.js +0 -137
  373. package/dist/node_modules/dayjs/plugin/duration.js.map +0 -1
  374. package/dist/node_modules/dayjs/plugin/isBetween.js +0 -20
  375. package/dist/node_modules/dayjs/plugin/isBetween.js.map +0 -1
  376. package/dist/node_modules/dayjs/plugin/relativeTime.js +0 -49
  377. package/dist/node_modules/dayjs/plugin/relativeTime.js.map +0 -1
  378. package/dist/node_modules/fast-equals/dist/es/index.js +0 -442
  379. package/dist/node_modules/fast-equals/dist/es/index.js.map +0 -1
  380. package/dist/node_modules/idb/build/index.js +0 -70
  381. package/dist/node_modules/idb/build/index.js.map +0 -1
  382. package/dist/node_modules/idb/build/wrap-idb-value.js +0 -149
  383. package/dist/node_modules/idb/build/wrap-idb-value.js.map +0 -1
  384. package/dist/node_modules/linkifyjs/dist/linkify.js +0 -1159
  385. package/dist/node_modules/linkifyjs/dist/linkify.js.map +0 -1
  386. package/dist/node_modules/orderedmap/dist/index.js +0 -120
  387. package/dist/node_modules/orderedmap/dist/index.js.map +0 -1
  388. package/dist/node_modules/prosemirror-commands/dist/index.js +0 -527
  389. package/dist/node_modules/prosemirror-commands/dist/index.js.map +0 -1
  390. package/dist/node_modules/prosemirror-dropcursor/dist/index.js +0 -137
  391. package/dist/node_modules/prosemirror-dropcursor/dist/index.js.map +0 -1
  392. package/dist/node_modules/prosemirror-gapcursor/dist/index.js +0 -221
  393. package/dist/node_modules/prosemirror-gapcursor/dist/index.js.map +0 -1
  394. package/dist/node_modules/prosemirror-history/dist/index.js +0 -357
  395. package/dist/node_modules/prosemirror-history/dist/index.js.map +0 -1
  396. package/dist/node_modules/prosemirror-keymap/dist/index.js +0 -84
  397. package/dist/node_modules/prosemirror-keymap/dist/index.js.map +0 -1
  398. package/dist/node_modules/prosemirror-model/dist/index.js +0 -3209
  399. package/dist/node_modules/prosemirror-model/dist/index.js.map +0 -1
  400. package/dist/node_modules/prosemirror-schema-list/dist/index.js +0 -131
  401. package/dist/node_modules/prosemirror-schema-list/dist/index.js.map +0 -1
  402. package/dist/node_modules/prosemirror-state/dist/index.js +0 -936
  403. package/dist/node_modules/prosemirror-state/dist/index.js.map +0 -1
  404. package/dist/node_modules/prosemirror-transform/dist/index.js +0 -1881
  405. package/dist/node_modules/prosemirror-transform/dist/index.js.map +0 -1
  406. package/dist/node_modules/prosemirror-view/dist/index.js +0 -5232
  407. package/dist/node_modules/prosemirror-view/dist/index.js.map +0 -1
  408. package/dist/node_modules/rope-sequence/dist/index.js +0 -184
  409. package/dist/node_modules/rope-sequence/dist/index.js.map +0 -1
  410. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js +0 -82
  411. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js.map +0 -1
  412. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js +0 -78
  413. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js.map +0 -1
  414. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +0 -78
  415. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js.map +0 -1
  416. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +0 -63
  417. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js.map +0 -1
  418. package/dist/node_modules/use-sync-external-store/shim/index.js +0 -13
  419. package/dist/node_modules/use-sync-external-store/shim/index.js.map +0 -1
  420. package/dist/node_modules/use-sync-external-store/shim/with-selector.js +0 -13
  421. package/dist/node_modules/use-sync-external-store/shim/with-selector.js.map +0 -1
  422. package/dist/node_modules/w3c-keyname/index.js +0 -106
  423. package/dist/node_modules/w3c-keyname/index.js.map +0 -1
  424. package/dist/node_modules/zod/v4/classic/coerce.js +0 -10
  425. package/dist/node_modules/zod/v4/classic/coerce.js.map +0 -1
  426. package/dist/node_modules/zod/v4/classic/compat.js +0 -8
  427. package/dist/node_modules/zod/v4/classic/compat.js.map +0 -1
  428. package/dist/node_modules/zod/v4/classic/errors.js +0 -45
  429. package/dist/node_modules/zod/v4/classic/errors.js.map +0 -1
  430. package/dist/node_modules/zod/v4/classic/iso.js +0 -44
  431. package/dist/node_modules/zod/v4/classic/iso.js.map +0 -1
  432. package/dist/node_modules/zod/v4/classic/parse.js +0 -30
  433. package/dist/node_modules/zod/v4/classic/parse.js.map +0 -1
  434. package/dist/node_modules/zod/v4/classic/schemas.js +0 -711
  435. package/dist/node_modules/zod/v4/classic/schemas.js.map +0 -1
  436. package/dist/node_modules/zod/v4/core/api.js +0 -588
  437. package/dist/node_modules/zod/v4/core/api.js.map +0 -1
  438. package/dist/node_modules/zod/v4/core/checks.js +0 -411
  439. package/dist/node_modules/zod/v4/core/checks.js.map +0 -1
  440. package/dist/node_modules/zod/v4/core/core.js +0 -75
  441. package/dist/node_modules/zod/v4/core/core.js.map +0 -1
  442. package/dist/node_modules/zod/v4/core/doc.js +0 -38
  443. package/dist/node_modules/zod/v4/core/doc.js.map +0 -1
  444. package/dist/node_modules/zod/v4/core/errors.js +0 -73
  445. package/dist/node_modules/zod/v4/core/errors.js.map +0 -1
  446. package/dist/node_modules/zod/v4/core/json-schema-processors.js +0 -359
  447. package/dist/node_modules/zod/v4/core/json-schema-processors.js.map +0 -1
  448. package/dist/node_modules/zod/v4/core/parse.js +0 -96
  449. package/dist/node_modules/zod/v4/core/parse.js.map +0 -1
  450. package/dist/node_modules/zod/v4/core/regexes.js +0 -84
  451. package/dist/node_modules/zod/v4/core/regexes.js.map +0 -1
  452. package/dist/node_modules/zod/v4/core/registries.js +0 -52
  453. package/dist/node_modules/zod/v4/core/registries.js.map +0 -1
  454. package/dist/node_modules/zod/v4/core/schemas.js +0 -1391
  455. package/dist/node_modules/zod/v4/core/schemas.js.map +0 -1
  456. package/dist/node_modules/zod/v4/core/to-json-schema.js +0 -363
  457. package/dist/node_modules/zod/v4/core/to-json-schema.js.map +0 -1
  458. package/dist/node_modules/zod/v4/core/util.js +0 -431
  459. package/dist/node_modules/zod/v4/core/util.js.map +0 -1
  460. package/dist/node_modules/zod/v4/core/versions.js +0 -9
  461. package/dist/node_modules/zod/v4/core/versions.js.map +0 -1
  462. package/dist/redux/baseQuery.d.ts +0 -1
  463. package/dist/redux/baseQuery.js +0 -24
  464. package/dist/redux/baseQuery.js.map +0 -1
  465. package/dist/services/eventApi.js +0 -411
  466. package/dist/services/eventApi.js.map +0 -1
  467. package/dist/services/helpers.js +0 -115
  468. package/dist/services/helpers.js.map +0 -1
  469. package/dist/services/initialize-firebase.d.ts +0 -2
  470. package/dist/services/initialize-firebase.js +0 -20
  471. package/dist/services/initialize-firebase.js.map +0 -1
  472. package/dist/services/process-image-on-server.js +0 -30
  473. package/dist/services/process-image-on-server.js.map +0 -1
  474. package/dist/services/remote-config.d.ts +0 -5
  475. package/dist/services/remote-config.js +0 -9
  476. package/dist/services/remote-config.js.map +0 -1
  477. package/dist/services/single-event-api.js +0 -301
  478. package/dist/services/single-event-api.js.map +0 -1
  479. package/dist/services/utils.js +0 -107
  480. package/dist/services/utils.js.map +0 -1
  481. package/dist/setupTests.d.ts +0 -1
  482. package/dist/stories/Alert.stories.d.ts +0 -10
  483. package/dist/stories/Button.stories.d.ts +0 -13
  484. package/dist/types/redux-types.d.ts +0 -15
  485. package/dist/types/types.d.ts +0 -60
  486. package/dist/types/types.js +0 -10
  487. package/dist/types/types.js.map +0 -1
  488. package/dist/utils/cn.d.ts +0 -6
  489. package/dist/utils/cn.js +0 -9
  490. package/dist/utils/cn.js.map +0 -1
  491. package/dist/utils/date-range.d.ts +0 -4
  492. package/dist/utils/date-range.js +0 -13
  493. package/dist/utils/date-range.js.map +0 -1
  494. package/dist/utils/single-event-helpers.d.ts +0 -50
  495. package/dist/utils/single-event-helpers.js +0 -18
  496. package/dist/utils/single-event-helpers.js.map +0 -1
  497. package/dist/utils/social-validation.js +0 -42
  498. package/dist/utils/social-validation.js.map +0 -1
  499. package/dist/utils/utils.js +0 -20
  500. package/dist/utils/utils.js.map +0 -1
  501. /package/dist/{components/Alert/Alert.d.ts → src/components/Alert/index.d.ts} +0 -0
  502. /package/dist/{components → src/components}/FormBuilder/CategoryList.d.ts +0 -0
  503. /package/dist/{components → src/components}/FormBuilder/OptionList.d.ts +0 -0
  504. /package/dist/{components → src/components}/FormBuilder/RequiredToggle.d.ts +0 -0
  505. /package/dist/{components → src/components}/FormBuilder/types.d.ts +0 -0
  506. /package/dist/{components → src/components}/FormBuilder/utils.d.ts +0 -0
  507. /package/dist/{components → src/components}/ImageCropModal/index.d.ts +0 -0
  508. /package/dist/{components → src/components}/InformationPopover.d.ts +0 -0
  509. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/common/DescriptionModal.d.ts +0 -0
  510. /package/dist/{components/ui/FormInput.d.ts → src/components/NewAddEvent/components/AddEventFormInput.d.ts} +0 -0
  511. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/CheckboxGroup.d.ts +0 -0
  512. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/CustomMeetingForm.d.ts +0 -0
  513. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/DateTimeField.d.ts +0 -0
  514. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/FileUpload.d.ts +0 -0
  515. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/FormBuilderProceedModal.d.ts +0 -0
  516. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/GoogleMapsAutocompleteInput.d.ts +0 -0
  517. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/SingleDateTimeInput.d.ts +0 -0
  518. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/StepTwo/CustomFormSection.d.ts +0 -0
  519. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/components/TicketTypeSelection.d.ts +0 -0
  520. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/StepOne.d.ts +0 -0
  521. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/steps/StepTwo.d.ts +0 -0
  522. /package/dist/{components/EventAddForm → src/components/NewAddEvent}/types.d.ts +0 -0
  523. /package/dist/{components → src/components}/common/FallbackImage.d.ts +0 -0
  524. /package/dist/{components → src/components}/ui/Calendar/calendar-utils.d.ts +0 -0
  525. /package/dist/{components → src/components}/ui/Calendar/index.d.ts +0 -0
  526. /package/dist/{components/Checkbox → src/components/ui}/Checkbox.d.ts +0 -0
  527. /package/dist/{components/CustomSelect → src/components/ui}/CustomSelect.d.ts +0 -0
  528. /package/dist/{components → src/components}/ui/DatePicker/index.d.ts +0 -0
  529. /package/dist/{components/InputErrorMessage → src/components/ui}/InputErrorMessage.d.ts +0 -0
  530. /package/dist/{components → src/components}/ui/Modal/index.d.ts +0 -0
  531. /package/dist/{components/Radio → src/components/ui}/Radio.d.ts +0 -0
  532. /package/dist/{components → src/components}/ui/RichTextEditor.d.ts +0 -0
  533. /package/dist/{components → src/components}/ui/TimePicker/index.d.ts +0 -0
  534. /package/dist/{components → src/components}/ui/TimeSelector/index.d.ts +0 -0
  535. /package/dist/{components → src/components}/ui/Tooltip/index.d.ts +0 -0
  536. /package/dist/{lib → src/lib}/constants.d.ts +0 -0
  537. /package/dist/{lib → src/lib}/cropImage.d.ts +0 -0
  538. /package/dist/{lib → src/lib}/imageAnalysis.d.ts +0 -0
  539. /package/dist/{utils → src/lib}/social-validation.d.ts +0 -0
  540. /package/dist/{lib/utils.d.ts → src/lib/tailwind-merge.d.ts} +0 -0
  541. /package/dist/{utils → src/lib}/utils.d.ts +0 -0
  542. /package/dist/{services → src/redux/features/single-event}/helpers.d.ts +0 -0
  543. /package/dist/{services → src/services}/process-image-on-server.d.ts +0 -0
  544. /package/dist/{types → src/types}/events.d.ts +0 -0
  545. /package/dist/{types → src/types}/question.d.ts +0 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"loading_icon-n5H5dQBl.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,6 @@
1
+ interface ErrorAlertProps {
2
+ isVisible: boolean;
3
+ message: string;
4
+ }
5
+ declare const ErrorAlert: ({ isVisible, message }: ErrorAlertProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default ErrorAlert;
@@ -0,0 +1,6 @@
1
+ interface SuccessAlertProps {
2
+ isVisible: boolean;
3
+ message: string;
4
+ }
5
+ declare const SuccessAlert: ({ isVisible, message }: SuccessAlertProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default SuccessAlert;
@@ -3,19 +3,16 @@ import { QuestionDraft } from './types';
3
3
 
4
4
  interface DiscountInputProps {
5
5
  question: QuestionDraft;
6
+ formId: string;
6
7
  eventId: string;
7
- userUid?: string;
8
- event?: any;
9
- storageService?: {
10
- downloadFile: (path: string) => Promise<Blob>;
11
- };
12
8
  onUpdate: (questionId: string, updates: Partial<QuestionDraft>) => void;
13
9
  setDiscountFile: (file: File | null) => void;
14
10
  error?: string;
15
11
  scope?: 'INDIVIDUAL' | 'TEAM';
16
12
  participationType?: string;
13
+ isNew?: boolean;
17
14
  isSaving?: boolean;
18
15
  }
19
- declare function DiscountInput({ question, eventId, userUid, event, storageService, onUpdate, setDiscountFile, error: propError, scope, participationType, isSaving }: DiscountInputProps): import("react/jsx-runtime").JSX.Element;
16
+ declare function DiscountInput({ question, eventId, onUpdate, setDiscountFile, error: propError, scope, participationType, isNew, isSaving }: DiscountInputProps): import("react/jsx-runtime").JSX.Element;
20
17
  declare const _default: React.MemoExoticComponent<typeof DiscountInput>;
21
18
  export default _default;
@@ -1,4 +1,4 @@
1
- export interface FormBuilderProps {
1
+ interface FormBuilderProps {
2
2
  eventId: string;
3
3
  initialFields: any[];
4
4
  participationType?: string;
@@ -10,15 +10,6 @@ export interface FormBuilderProps {
10
10
  onPolluted?: () => void;
11
11
  discountFilePath?: string;
12
12
  individualDiscountFilePath?: string;
13
- userUid?: string;
14
- addQuestion?: (payload: any) => Promise<any>;
15
- editQuestion?: (payload: any) => Promise<any>;
16
- deleteQuestion?: (payload: any) => Promise<any>;
17
- updateOrder?: (payload: any) => Promise<any>;
18
- storageService?: {
19
- uploadFile: (path: string, file: File) => Promise<void>;
20
- downloadFile: (path: string) => Promise<Blob>;
21
- };
22
13
  }
23
14
  export interface FormBuilderRef {
24
15
  save: () => Promise<void>;
@@ -26,5 +17,5 @@ export interface FormBuilderRef {
26
17
  isSaving: () => boolean;
27
18
  isDirty: () => boolean;
28
19
  }
29
- declare const _default: import('react').NamedExoticComponent<FormBuilderProps & import('react').RefAttributes<FormBuilderRef>>;
20
+ declare const _default: import('react').MemoExoticComponent<import('react').ForwardRefExoticComponent<FormBuilderProps & import('react').RefAttributes<FormBuilderRef>>>;
30
21
  export default _default;
@@ -5,7 +5,6 @@ interface QuestionCardProps {
5
5
  question: QuestionDraft;
6
6
  formId: string;
7
7
  eventId: string;
8
- userUid?: string;
9
8
  isLocked: boolean;
10
9
  isOpen: boolean;
11
10
  onToggle: () => void;
@@ -25,10 +24,6 @@ interface QuestionCardProps {
25
24
  disableDiscountOption?: boolean;
26
25
  showValidationErrors?: boolean;
27
26
  scope?: "INDIVIDUAL" | "TEAM";
28
- storageService?: {
29
- uploadFile: (path: string, file: File) => Promise<void>;
30
- downloadFile: (path: string) => Promise<Blob>;
31
- };
32
27
  }
33
28
  declare const _default: React.NamedExoticComponent<QuestionCardProps>;
34
29
  export default _default;
@@ -5,11 +5,6 @@ interface QuestionEditorProps {
5
5
  question: QuestionDraft;
6
6
  formId: string;
7
7
  eventId: string;
8
- userUid?: string;
9
- event?: any;
10
- storageService?: {
11
- downloadFile: (path: string) => Promise<Blob>;
12
- };
13
8
  onClose: () => void;
14
9
  onUpdate: (questionId: string, updates: Partial<QuestionDraft>) => void;
15
10
  errorMessage?: string;
@@ -6,7 +6,6 @@ interface SortableQuestionListProps {
6
6
  questionOrder: string[];
7
7
  formId: string;
8
8
  eventId: string;
9
- userUid?: string;
10
9
  isLocked: boolean;
11
10
  activeQuestionId: string | null;
12
11
  onSetActiveQuestion: (id: string | null) => void;
@@ -27,10 +26,6 @@ interface SortableQuestionListProps {
27
26
  scope?: 'INDIVIDUAL' | 'TEAM';
28
27
  participationType?: string;
29
28
  disableDiscountOption?: boolean;
30
- storageService?: {
31
- uploadFile: (path: string, file: File) => Promise<void>;
32
- downloadFile: (path: string) => Promise<Blob>;
33
- };
34
29
  }
35
30
  export declare const SortableQuestionList: React.FC<SortableQuestionListProps>;
36
31
  export {};
@@ -0,0 +1,5 @@
1
+ import { LucideIcon } from 'lucide-react';
2
+ import { QuestionKind } from './types';
3
+
4
+ export declare const QUESTION_ICON_MAP: Record<string, LucideIcon>;
5
+ export declare const getQuestionIcon: (kind: QuestionKind | string) => LucideIcon;
@@ -53,6 +53,7 @@ interface AddEventLayoutProps {
53
53
  };
54
54
  eventData?: any;
55
55
  mode?: "questions" | "social" | null;
56
+ test?: boolean;
56
57
  }
57
- export declare const AddEventLayout: ({ steps, currentStep, maxStepReached, isNavigationBlocked, onJumpToStep, children, onBack, onNext, onSaveDraft, isProcessing, isSubmitting, isSyncingData, isNavigating, isChildBusy, edit, isFetchError, isFetching, onRetryFetch, alert, onCloseAlert, submissionModalProps, switchConfirmationModalProps, eventId, onRouteBack, exitConfirmationModalProps, eventData, mode, }: AddEventLayoutProps) => import("react/jsx-runtime").JSX.Element;
58
+ export declare const AddEventLayout: ({ steps, currentStep, maxStepReached, isNavigationBlocked, onJumpToStep, children, onBack, onNext, onSaveDraft, isProcessing, isSubmitting, isSyncingData, isNavigating, isChildBusy, edit, isFetchError, isFetching, onRetryFetch, alert, onCloseAlert, submissionModalProps, switchConfirmationModalProps, eventId, onRouteBack, exitConfirmationModalProps, eventData, mode, test, }: AddEventLayoutProps) => import("react/jsx-runtime").JSX.Element;
58
59
  export {};
@@ -7,9 +7,9 @@ interface AddEventStepperProps {
7
7
  SCOPED_ID_KEY?: string;
8
8
  SCOPED_FORM_KEY?: string;
9
9
  isSameQuestionTitleAllowed?: boolean;
10
- closed_loop_id?: string;
11
10
  initialStep?: number;
12
11
  mode?: "questions" | "social" | null;
12
+ test?: boolean;
13
13
  }
14
- declare const _default: import('react').MemoExoticComponent<({ edit, id, organizer_id, onEventCreated, isClearing, SCOPED_ID_KEY, SCOPED_FORM_KEY, isSameQuestionTitleAllowed, closed_loop_id, initialStep, mode }: AddEventStepperProps) => import("react/jsx-runtime").JSX.Element>;
14
+ declare const _default: import('react').MemoExoticComponent<({ edit, id, organizer_id, onEventCreated, isClearing, SCOPED_ID_KEY, SCOPED_FORM_KEY, isSameQuestionTitleAllowed, initialStep, mode, test, }: AddEventStepperProps) => import("react/jsx-runtime").JSX.Element>;
15
15
  export default _default;
@@ -1,6 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
 
3
- export default function ConfirmationModal({ open, title, description, onClose, onConfirm, confirmText, cancelText, children, isLoading, confirmationKeyword }: {
3
+ export default function ConfirmationModal({ open, title, description, onClose, onConfirm, confirmText, cancelText, children, isLoading, confirmationKeyword, }: {
4
4
  open: boolean;
5
5
  title: string;
6
6
  description?: string;
@@ -0,0 +1,14 @@
1
+ interface EventSubmissionConfirmationModalProps {
2
+ open: boolean;
3
+ edit?: boolean;
4
+ eventId?: string;
5
+ eventData?: any;
6
+ setOpen: (open: boolean) => void;
7
+ onSubmit: () => Promise<string>;
8
+ onSuccess: (type: "draft" | "submit" | "next") => void;
9
+ isFinalStep?: boolean;
10
+ showPreview?: boolean;
11
+ isPolluted?: boolean;
12
+ }
13
+ export default function EventSubmissionConfirmationModal({ open, eventId, edit, eventData, setOpen, onSubmit, onSuccess, isFinalStep, showPreview, isPolluted, }: EventSubmissionConfirmationModalProps): import("react/jsx-runtime").JSX.Element;
14
+ export {};
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { TicketTier } from '../../../../types/types';
2
+ import { TicketTier } from '../../../../lib/types';
3
3
 
4
4
  interface TicketTierSectionProps {
5
5
  tiers: TicketTier[];
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { TicketTier } from '../../../types/types';
2
+ import { TicketTier } from '../../../lib/types';
3
3
 
4
4
  interface TicketTierFormProps {
5
5
  initialData?: any;
@@ -11,35 +11,35 @@ interface UseStepperFormProps {
11
11
  export declare const useStepperForm: ({ initialData, storageKey, onSaveDraft, onSubmitFinal, enableLocalStorage, initialStep }: UseStepperFormProps) => {
12
12
  currentStep: any;
13
13
  formState: Partial<{
14
- name: string;
15
- image_url: string;
16
- description: string;
17
- event_type: string[];
18
- event_start_timestamp: {
19
- date: string;
20
- time: string;
14
+ name?: string;
15
+ image_url?: string;
16
+ thumbnail_url?: string;
17
+ description?: string;
18
+ event_type?: string[];
19
+ event_start_timestamp?: {
20
+ date?: string;
21
+ time?: string;
21
22
  };
22
- event_end_timestamp: {
23
- date: string;
24
- time: string;
23
+ event_end_timestamp?: {
24
+ date?: string;
25
+ time?: string;
25
26
  };
26
- registration_start_timestamp: {
27
- date: string;
28
- time: string;
27
+ registration_start_timestamp?: {
28
+ date?: string;
29
+ time?: string;
29
30
  };
30
- registration_end_timestamp: {
31
- date: string;
32
- time: string;
31
+ registration_end_timestamp?: {
32
+ date?: string;
33
+ time?: string;
33
34
  };
34
- venue: string;
35
- location_data: any;
36
- location_type: string;
37
- event_categories: string[];
38
- thumbnail_url?: string;
35
+ venue?: string;
39
36
  venue_place_id?: string;
37
+ location_data?: any;
38
+ location_type?: string;
39
+ event_categories?: string[];
40
40
  custom_category?: string;
41
41
  institution_name?: string;
42
- } & import('../schemas').Step2Data & {
42
+ } & import('../schemas/step2').Step2Data & {
43
43
  social_profiles: {
44
44
  instagram: string;
45
45
  facebook: string;
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- import { TicketTierAvailabilityType } from '../../../types/types';
2
+ import { TicketTierAvailabilityType } from '../../../lib/types';
3
3
 
4
4
  export declare const getTicketTierSchema: (eventStart?: {
5
5
  date: string;
@@ -13,19 +13,67 @@ export declare const getTicketTierSchema: (eventStart?: {
13
13
  }, registrationEnd?: {
14
14
  date: string;
15
15
  time: string;
16
- }, existingTierNames?: string[]) => z.ZodObject<{
16
+ }, existingTierNames?: string[]) => z.ZodEffects<z.ZodObject<{
17
17
  name: z.ZodString;
18
18
  description: z.ZodOptional<z.ZodString>;
19
- price: z.ZodPipe<z.ZodTransform<number, unknown>, z.ZodNumber> | z.ZodOptional<z.ZodPipe<z.ZodTransform<number, unknown>, z.ZodNumber>>;
20
- capacity: z.ZodPipe<z.ZodTransform<number, unknown>, z.ZodNumber> | z.ZodOptional<z.ZodPipe<z.ZodTransform<number, unknown>, z.ZodNumber>>;
21
- members: z.ZodPipe<z.ZodTransform<number, unknown>, z.ZodNumber> | z.ZodOptional<z.ZodPipe<z.ZodTransform<number, unknown>, z.ZodNumber>>;
22
- availability_type: z.ZodEnum<typeof TicketTierAvailabilityType>;
23
- availability_schedule: z.ZodArray<z.ZodString>;
19
+ price: z.ZodEffects<z.ZodNumber, number, unknown> | z.ZodOptional<z.ZodEffects<z.ZodNumber, number, unknown>>;
20
+ capacity: z.ZodEffects<z.ZodNumber, number, unknown> | z.ZodOptional<z.ZodEffects<z.ZodNumber, number, unknown>>;
21
+ members: z.ZodEffects<z.ZodNumber, number, unknown> | z.ZodOptional<z.ZodEffects<z.ZodNumber, number, unknown>>;
22
+ availability_type: z.ZodNativeEnum<typeof TicketTierAvailabilityType>;
23
+ availability_schedule: z.ZodArray<z.ZodString, "many">;
24
24
  has_discount: z.ZodOptional<z.ZodBoolean>;
25
- discounted_price: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
25
+ discounted_price: z.ZodOptional<z.ZodNumber>;
26
26
  discount_valid_till_date: z.ZodOptional<z.ZodString>;
27
27
  discount_valid_till_time: z.ZodOptional<z.ZodString>;
28
- }, z.core.$strip>;
28
+ }, "strip", z.ZodTypeAny, {
29
+ name?: string;
30
+ description?: string;
31
+ availability_schedule?: string[];
32
+ price?: number;
33
+ capacity?: number;
34
+ members?: number;
35
+ availability_type?: TicketTierAvailabilityType;
36
+ has_discount?: boolean;
37
+ discounted_price?: number;
38
+ discount_valid_till_date?: string;
39
+ discount_valid_till_time?: string;
40
+ }, {
41
+ name?: string;
42
+ description?: string;
43
+ availability_schedule?: string[];
44
+ price?: unknown;
45
+ capacity?: unknown;
46
+ members?: unknown;
47
+ availability_type?: TicketTierAvailabilityType;
48
+ has_discount?: boolean;
49
+ discounted_price?: number;
50
+ discount_valid_till_date?: string;
51
+ discount_valid_till_time?: string;
52
+ }>, {
53
+ name?: string;
54
+ description?: string;
55
+ availability_schedule?: string[];
56
+ price?: number;
57
+ capacity?: number;
58
+ members?: number;
59
+ availability_type?: TicketTierAvailabilityType;
60
+ has_discount?: boolean;
61
+ discounted_price?: number;
62
+ discount_valid_till_date?: string;
63
+ discount_valid_till_time?: string;
64
+ }, {
65
+ name?: string;
66
+ description?: string;
67
+ availability_schedule?: string[];
68
+ price?: unknown;
69
+ capacity?: unknown;
70
+ members?: unknown;
71
+ availability_type?: TicketTierAvailabilityType;
72
+ has_discount?: boolean;
73
+ discounted_price?: number;
74
+ discount_valid_till_date?: string;
75
+ discount_valid_till_time?: string;
76
+ }>;
29
77
  export type TicketTierFormState = z.infer<ReturnType<typeof getTicketTierSchema>>;
30
78
  interface UseTicketTierFormProps {
31
79
  initialData?: Partial<TicketTierFormState>;
@@ -50,13 +98,13 @@ interface UseTicketTierFormProps {
50
98
  }
51
99
  export declare const useTicketTierForm: ({ initialData, defaultState, eventStart, eventEnd, registrationStart, registrationEnd, existingTierNames }: UseTicketTierFormProps) => {
52
100
  formState: {
53
- name: string;
54
- availability_type: TicketTierAvailabilityType;
55
- availability_schedule: string[];
101
+ name?: string;
56
102
  description?: string;
103
+ availability_schedule?: string[];
57
104
  price?: number;
58
105
  capacity?: number;
59
106
  members?: number;
107
+ availability_type?: TicketTierAvailabilityType;
60
108
  has_discount?: boolean;
61
109
  discounted_price?: number;
62
110
  discount_valid_till_date?: string;
@@ -70,13 +118,13 @@ export declare const useTicketTierForm: ({ initialData, defaultState, eventStart
70
118
  setErrors: import('react').Dispatch<import('react').SetStateAction<Record<string, string>>>;
71
119
  isSubmitting: boolean;
72
120
  setFormState: import('react').Dispatch<import('react').SetStateAction<{
73
- name: string;
74
- availability_type: TicketTierAvailabilityType;
75
- availability_schedule: string[];
121
+ name?: string;
76
122
  description?: string;
123
+ availability_schedule?: string[];
77
124
  price?: number;
78
125
  capacity?: number;
79
126
  members?: number;
127
+ availability_type?: TicketTierAvailabilityType;
80
128
  has_discount?: boolean;
81
129
  discounted_price?: number;
82
130
  discount_valid_till_date?: string;
@@ -0,0 +1,211 @@
1
+ import { z } from 'zod';
2
+
3
+ export declare const validateEventDates: (data: Partial<Step1Data>) => Record<string, string>;
4
+ export interface LocationData {
5
+ placeId: string;
6
+ description?: string;
7
+ displayName?: string;
8
+ address?: string;
9
+ type?: 'in-person' | 'online';
10
+ coordinates?: {
11
+ lat: number;
12
+ lng: number;
13
+ };
14
+ platform?: string;
15
+ meetingUrl?: string;
16
+ }
17
+ export declare const step1Schema: z.ZodEffects<z.ZodObject<{
18
+ name: z.ZodString;
19
+ image_url: z.ZodString;
20
+ thumbnail_url: z.ZodOptional<z.ZodString>;
21
+ description: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
22
+ event_type: z.ZodArray<z.ZodString, "many">;
23
+ event_start_timestamp: z.ZodEffects<z.ZodObject<{
24
+ date: z.ZodString;
25
+ time: z.ZodString;
26
+ }, "strip", z.ZodTypeAny, {
27
+ date?: string;
28
+ time?: string;
29
+ }, {
30
+ date?: string;
31
+ time?: string;
32
+ }>, {
33
+ date?: string;
34
+ time?: string;
35
+ }, {
36
+ date?: string;
37
+ time?: string;
38
+ }>;
39
+ event_end_timestamp: z.ZodEffects<z.ZodObject<{
40
+ date: z.ZodString;
41
+ time: z.ZodString;
42
+ }, "strip", z.ZodTypeAny, {
43
+ date?: string;
44
+ time?: string;
45
+ }, {
46
+ date?: string;
47
+ time?: string;
48
+ }>, {
49
+ date?: string;
50
+ time?: string;
51
+ }, {
52
+ date?: string;
53
+ time?: string;
54
+ }>;
55
+ registration_start_timestamp: z.ZodEffects<z.ZodObject<{
56
+ date: z.ZodString;
57
+ time: z.ZodString;
58
+ }, "strip", z.ZodTypeAny, {
59
+ date?: string;
60
+ time?: string;
61
+ }, {
62
+ date?: string;
63
+ time?: string;
64
+ }>, {
65
+ date?: string;
66
+ time?: string;
67
+ }, {
68
+ date?: string;
69
+ time?: string;
70
+ }>;
71
+ registration_end_timestamp: z.ZodEffects<z.ZodObject<{
72
+ date: z.ZodString;
73
+ time: z.ZodString;
74
+ }, "strip", z.ZodTypeAny, {
75
+ date?: string;
76
+ time?: string;
77
+ }, {
78
+ date?: string;
79
+ time?: string;
80
+ }>, {
81
+ date?: string;
82
+ time?: string;
83
+ }, {
84
+ date?: string;
85
+ time?: string;
86
+ }>;
87
+ venue: z.ZodString;
88
+ venue_place_id: z.ZodOptional<z.ZodString>;
89
+ location_data: z.ZodAny;
90
+ location_type: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
91
+ event_categories: z.ZodArray<z.ZodString, "many">;
92
+ custom_category: z.ZodOptional<z.ZodString>;
93
+ institution_name: z.ZodOptional<z.ZodString>;
94
+ }, "strip", z.ZodTypeAny, {
95
+ name?: string;
96
+ image_url?: string;
97
+ thumbnail_url?: string;
98
+ description?: string;
99
+ event_type?: string[];
100
+ event_start_timestamp?: {
101
+ date?: string;
102
+ time?: string;
103
+ };
104
+ event_end_timestamp?: {
105
+ date?: string;
106
+ time?: string;
107
+ };
108
+ registration_start_timestamp?: {
109
+ date?: string;
110
+ time?: string;
111
+ };
112
+ registration_end_timestamp?: {
113
+ date?: string;
114
+ time?: string;
115
+ };
116
+ venue?: string;
117
+ venue_place_id?: string;
118
+ location_data?: any;
119
+ location_type?: string;
120
+ event_categories?: string[];
121
+ custom_category?: string;
122
+ institution_name?: string;
123
+ }, {
124
+ name?: string;
125
+ image_url?: string;
126
+ thumbnail_url?: string;
127
+ description?: string;
128
+ event_type?: string[];
129
+ event_start_timestamp?: {
130
+ date?: string;
131
+ time?: string;
132
+ };
133
+ event_end_timestamp?: {
134
+ date?: string;
135
+ time?: string;
136
+ };
137
+ registration_start_timestamp?: {
138
+ date?: string;
139
+ time?: string;
140
+ };
141
+ registration_end_timestamp?: {
142
+ date?: string;
143
+ time?: string;
144
+ };
145
+ venue?: string;
146
+ venue_place_id?: string;
147
+ location_data?: any;
148
+ location_type?: string;
149
+ event_categories?: string[];
150
+ custom_category?: string;
151
+ institution_name?: string;
152
+ }>, {
153
+ name?: string;
154
+ image_url?: string;
155
+ thumbnail_url?: string;
156
+ description?: string;
157
+ event_type?: string[];
158
+ event_start_timestamp?: {
159
+ date?: string;
160
+ time?: string;
161
+ };
162
+ event_end_timestamp?: {
163
+ date?: string;
164
+ time?: string;
165
+ };
166
+ registration_start_timestamp?: {
167
+ date?: string;
168
+ time?: string;
169
+ };
170
+ registration_end_timestamp?: {
171
+ date?: string;
172
+ time?: string;
173
+ };
174
+ venue?: string;
175
+ venue_place_id?: string;
176
+ location_data?: any;
177
+ location_type?: string;
178
+ event_categories?: string[];
179
+ custom_category?: string;
180
+ institution_name?: string;
181
+ }, {
182
+ name?: string;
183
+ image_url?: string;
184
+ thumbnail_url?: string;
185
+ description?: string;
186
+ event_type?: string[];
187
+ event_start_timestamp?: {
188
+ date?: string;
189
+ time?: string;
190
+ };
191
+ event_end_timestamp?: {
192
+ date?: string;
193
+ time?: string;
194
+ };
195
+ registration_start_timestamp?: {
196
+ date?: string;
197
+ time?: string;
198
+ };
199
+ registration_end_timestamp?: {
200
+ date?: string;
201
+ time?: string;
202
+ };
203
+ venue?: string;
204
+ venue_place_id?: string;
205
+ location_data?: any;
206
+ location_type?: string;
207
+ event_categories?: string[];
208
+ custom_category?: string;
209
+ institution_name?: string;
210
+ }>;
211
+ export type Step1Data = z.infer<typeof step1Schema>;