tf-checkout-react 1.7.31 → 2.0.0-beta.1

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 (454) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +141 -1033
  3. package/dist/checkout.css +17 -0
  4. package/dist/index.d.mts +3946 -0
  5. package/dist/index.d.ts +3946 -30
  6. package/dist/index.esm.js +9176 -0
  7. package/dist/index.esm.js.map +1 -0
  8. package/dist/index.js +9330 -6
  9. package/dist/index.js.map +1 -0
  10. package/dist/styles/addons.css +75 -0
  11. package/dist/styles/auth.css +294 -0
  12. package/dist/styles/billing.css +98 -0
  13. package/dist/styles/confirmation.css +51 -0
  14. package/dist/styles/foundation.css +146 -0
  15. package/dist/styles/payment.css +179 -0
  16. package/dist/styles/primitives.css +356 -0
  17. package/dist/styles/seat-map.css +46 -0
  18. package/dist/styles/tickets.css +285 -0
  19. package/dist/styles/verification-confirmation.css +258 -0
  20. package/package.json +93 -78
  21. package/src/.d.ts +1 -1
  22. package/src/CardInput.tsx +374 -0
  23. package/src/EmbeddedCheckout.tsx +400 -0
  24. package/src/ResumedCheckout.tsx +132 -0
  25. package/src/auth/AuthModal.tsx +238 -0
  26. package/src/auth/ForgotPasswordForm.tsx +93 -0
  27. package/src/auth/LoginForm.tsx +104 -0
  28. package/src/auth/PasswordInput.tsx +33 -0
  29. package/src/auth/RegisterForm.tsx +333 -0
  30. package/src/auth/ResetPasswordForm.tsx +112 -0
  31. package/src/auth/index.ts +5 -0
  32. package/src/checkout.css +17 -0
  33. package/src/configure.ts +29 -0
  34. package/src/confirmer.ts +439 -0
  35. package/src/index.ts +41 -30
  36. package/src/instance.ts +21 -0
  37. package/src/sections/AddOns.tsx +241 -0
  38. package/src/sections/BillingInfo.tsx +790 -0
  39. package/src/sections/Confirmation.tsx +146 -0
  40. package/src/sections/IDVerification.tsx +76 -0
  41. package/src/sections/OrderConfirmation.tsx +277 -0
  42. package/src/sections/OrderIDVerification.tsx +117 -0
  43. package/src/sections/OrderSummary.tsx +84 -0
  44. package/src/sections/Payment.tsx +557 -0
  45. package/src/sections/SeatMap.tsx +512 -0
  46. package/src/sections/Tickets.tsx +573 -0
  47. package/src/sections/billing/BillingAddressFields.tsx +138 -0
  48. package/src/sections/billing/BuyerField.tsx +75 -0
  49. package/src/sections/billing/TicketHoldersCard.tsx +124 -0
  50. package/src/sections/billing/fieldRules.ts +43 -0
  51. package/src/sections/billing/types.ts +10 -0
  52. package/src/sections/index.ts +15 -0
  53. package/src/sections/seatMap.utils.ts +105 -0
  54. package/src/styles/addons.css +75 -0
  55. package/src/styles/auth.css +294 -0
  56. package/src/styles/billing.css +98 -0
  57. package/src/styles/confirmation.css +51 -0
  58. package/src/styles/foundation.css +146 -0
  59. package/src/styles/payment.css +179 -0
  60. package/src/styles/primitives.css +356 -0
  61. package/src/styles/seat-map.css +46 -0
  62. package/src/styles/tickets.css +285 -0
  63. package/src/styles/verification-confirmation.css +258 -0
  64. package/src/typings.d.ts +2 -2
  65. package/src/ui/Button.tsx +38 -0
  66. package/src/ui/Card.tsx +54 -0
  67. package/src/ui/CheckoutProvider.tsx +172 -0
  68. package/src/ui/CustomFields.tsx +195 -0
  69. package/src/ui/Field.tsx +114 -0
  70. package/src/ui/I18nProvider.tsx +36 -0
  71. package/src/ui/InstallmentPicker.tsx +69 -0
  72. package/src/ui/Loader.tsx +12 -0
  73. package/src/ui/PaymentMethods.tsx +133 -0
  74. package/src/ui/PriceLine.tsx +24 -0
  75. package/src/ui/QuantitySelect.tsx +50 -0
  76. package/src/ui/Stepper.tsx +36 -0
  77. package/src/ui/Timer.tsx +34 -0
  78. package/src/ui/TimerBanner.tsx +55 -0
  79. package/src/ui/cx.ts +3 -0
  80. package/src/ui/index.ts +54 -0
  81. package/src/ui/theme.ts +83 -0
  82. package/src/useCheckout.ts +35 -0
  83. package/src/xendit.ts +438 -0
  84. package/dist/adapters/customFields.d.ts +0 -12
  85. package/dist/adapters/index.d.ts +0 -1
  86. package/dist/api/auth.d.ts +0 -27
  87. package/dist/api/cart.d.ts +0 -2
  88. package/dist/api/checkout.d.ts +0 -3
  89. package/dist/api/common.d.ts +0 -11
  90. package/dist/api/guestTicketDelegation.d.ts +0 -47
  91. package/dist/api/index.d.ts +0 -82
  92. package/dist/api/interceptors.d.ts +0 -1
  93. package/dist/api/orders.d.ts +0 -2
  94. package/dist/api/payment.d.ts +0 -5
  95. package/dist/api/preRegistrationComplete.d.ts +0 -3
  96. package/dist/api/publicRequest.d.ts +0 -9
  97. package/dist/api/resale.d.ts +0 -5
  98. package/dist/components/account-settings/index.d.ts +0 -3
  99. package/dist/components/addonsContainer/AddonComponent.d.ts +0 -18
  100. package/dist/components/addonsContainer/SimpleAddonsContainer.d.ts +0 -20
  101. package/dist/components/addonsContainer/adapters/index.d.ts +0 -12
  102. package/dist/components/addonsContainer/index.d.ts +0 -22
  103. package/dist/components/addonsContainer/normalizers/index.d.ts +0 -1
  104. package/dist/components/addonsContainer/useAddons.d.ts +0 -23
  105. package/dist/components/addonsContainer/utils/index.d.ts +0 -16
  106. package/dist/components/billing-info-container/hooks/index.d.ts +0 -3
  107. package/dist/components/billing-info-container/hooks/usePaymentContext.d.ts +0 -5
  108. package/dist/components/billing-info-container/hooks/usePaymentRedirect.d.ts +0 -14
  109. package/dist/components/billing-info-container/hooks/useStripePayment.d.ts +0 -18
  110. package/dist/components/billing-info-container/index.d.ts +0 -69
  111. package/dist/components/billing-info-container/utils.d.ts +0 -59
  112. package/dist/components/common/Checkbox.d.ts +0 -11
  113. package/dist/components/common/CheckboxField/index.d.ts +0 -9
  114. package/dist/components/common/CopyField.d.ts +0 -12
  115. package/dist/components/common/CopyMessageModal.d.ts +0 -7
  116. package/dist/components/common/CustomField.d.ts +0 -26
  117. package/dist/components/common/DatePickerField.d.ts +0 -20
  118. package/dist/components/common/FieldSection/index.d.ts +0 -19
  119. package/dist/components/common/FieldSection/utils/index.d.ts +0 -8
  120. package/dist/components/common/FormikPhoneNumberField.d.ts +0 -11
  121. package/dist/components/common/Loader.d.ts +0 -2
  122. package/dist/components/common/ModalComponent/index.d.ts +0 -16
  123. package/dist/components/common/NativeSelectFeild/index.d.ts +0 -21
  124. package/dist/components/common/PhoneNumberField.d.ts +0 -14
  125. package/dist/components/common/PoweredBy.d.ts +0 -2
  126. package/dist/components/common/RadioField.d.ts +0 -11
  127. package/dist/components/common/RadioGroupField/index.d.ts +0 -17
  128. package/dist/components/common/RedirectModal.d.ts +0 -7
  129. package/dist/components/common/SelectField/index.d.ts +0 -19
  130. package/dist/components/common/SnackbarAlert.d.ts +0 -13
  131. package/dist/components/common/index.d.ts +0 -11
  132. package/dist/components/common/socials.d.ts +0 -10
  133. package/dist/components/confirmModal/index.d.ts +0 -10
  134. package/dist/components/confirmationContainer/config.d.ts +0 -1
  135. package/dist/components/confirmationContainer/index.d.ts +0 -46
  136. package/dist/components/confirmationContainer/social-buttons.d.ts +0 -16
  137. package/dist/components/countdown/index.d.ts +0 -14
  138. package/dist/components/delegationsContainer/IssueComponent.d.ts +0 -10
  139. package/dist/components/delegationsContainer/IssueTicketForm.d.ts +0 -9
  140. package/dist/components/delegationsContainer/TicketsAssignedTable.d.ts +0 -11
  141. package/dist/components/delegationsContainer/TicketsAvailableTable.d.ts +0 -11
  142. package/dist/components/delegationsContainer/index.d.ts +0 -10
  143. package/dist/components/forgotPasswordModal/index.d.ts +0 -12
  144. package/dist/components/idVerificationContainer/VerificationPendingModal.d.ts +0 -10
  145. package/dist/components/idVerificationContainer/constants.d.ts +0 -21
  146. package/dist/components/idVerificationContainer/index.d.ts +0 -16
  147. package/dist/components/index.d.ts +0 -12
  148. package/dist/components/loginForm/index.d.ts +0 -31
  149. package/dist/components/loginModal/SignUpForm.d.ts +0 -10
  150. package/dist/components/loginModal/constants.d.ts +0 -39
  151. package/dist/components/loginModal/index.d.ts +0 -22
  152. package/dist/components/myTicketsContainer/index.d.ts +0 -16
  153. package/dist/components/myTicketsContainer/row.d.ts +0 -3
  154. package/dist/components/myTicketsContainer/tableConfig.d.ts +0 -5
  155. package/dist/components/orderDetailsContainer/CustomFieldsForm.d.ts +0 -12
  156. package/dist/components/orderDetailsContainer/TicketHolderCustomFields.d.ts +0 -10
  157. package/dist/components/orderDetailsContainer/index.d.ts +0 -66
  158. package/dist/components/orderDetailsContainer/ticketsTable.d.ts +0 -46
  159. package/dist/components/orderDetailsContainer/utils/index.d.ts +0 -6
  160. package/dist/components/paymentContainer/OrderDetails.d.ts +0 -9
  161. package/dist/components/paymentContainer/PaymentPlanSection.d.ts +0 -10
  162. package/dist/components/paymentContainer/handlePayment.d.ts +0 -15
  163. package/dist/components/paymentContainer/index.d.ts +0 -39
  164. package/dist/components/preRegistration/FieldsSection.d.ts +0 -19
  165. package/dist/components/preRegistration/Influancers.d.ts +0 -2
  166. package/dist/components/preRegistration/PreRegistrationComplete.d.ts +0 -13
  167. package/dist/components/preRegistration/PreRegistrationInformations.d.ts +0 -2
  168. package/dist/components/preRegistration/Prewards.d.ts +0 -2
  169. package/dist/components/preRegistration/ShareOptions.d.ts +0 -2
  170. package/dist/components/preRegistration/constants.d.ts +0 -2
  171. package/dist/components/preRegistration/index.d.ts +0 -23
  172. package/dist/components/preRegistration/utils.d.ts +0 -12
  173. package/dist/components/registerForm/adapters/index.d.ts +0 -4
  174. package/dist/components/registerForm/constants.d.ts +0 -1
  175. package/dist/components/registerForm/index.d.ts +0 -16
  176. package/dist/components/registerModal/index.d.ts +0 -12
  177. package/dist/components/resetPasswordContainer/index.d.ts +0 -10
  178. package/dist/components/rsvpContainer/index.d.ts +0 -7
  179. package/dist/components/seatMapContainer/SeatMapComponent.d.ts +0 -8
  180. package/dist/components/seatMapContainer/TicketsSection.d.ts +0 -9
  181. package/dist/components/seatMapContainer/addToCart.d.ts +0 -14
  182. package/dist/components/seatMapContainer/index.d.ts +0 -2
  183. package/dist/components/seatMapContainer/utils.d.ts +0 -6
  184. package/dist/components/signupModal/index.d.ts +0 -12
  185. package/dist/components/ticketResale/index.d.ts +0 -12
  186. package/dist/components/ticketResaleModal/index.d.ts +0 -19
  187. package/dist/components/ticketsContainer/AccessCodeSection.d.ts +0 -7
  188. package/dist/components/ticketsContainer/InfoIcon.d.ts +0 -5
  189. package/dist/components/ticketsContainer/PromoCodeSection.d.ts +0 -15
  190. package/dist/components/ticketsContainer/ReferralLogic.d.ts +0 -5
  191. package/dist/components/ticketsContainer/TicketRow.d.ts +0 -13
  192. package/dist/components/ticketsContainer/TicketsSection.d.ts +0 -20
  193. package/dist/components/ticketsContainer/TimeSlotTicketRow.d.ts +0 -19
  194. package/dist/components/ticketsContainer/TimeSlotsSection.d.ts +0 -25
  195. package/dist/components/ticketsContainer/index.d.ts +0 -93
  196. package/dist/components/ticketsContainer/utils.d.ts +0 -13
  197. package/dist/components/timerWidget/index.d.ts +0 -16
  198. package/dist/components/waitingList/index.d.ts +0 -9
  199. package/dist/constants/index.d.ts +0 -7
  200. package/dist/env.d.ts +0 -16
  201. package/dist/hoc/CustomFields/index.d.ts +0 -3
  202. package/dist/hoc/index.d.ts +0 -1
  203. package/dist/hooks/index.d.ts +0 -1
  204. package/dist/hooks/useCookieListener.d.ts +0 -1
  205. package/dist/hooks/useEventListener.d.ts +0 -1
  206. package/dist/hooks/useLocalStorageListener.d.ts +0 -1
  207. package/dist/hooks/useOnline.d.ts +0 -1
  208. package/dist/hooks/usePixel.d.ts +0 -6
  209. package/dist/images/Polygon.png +0 -0
  210. package/dist/images/cross.svg +0 -44
  211. package/dist/images/done.svg +0 -3
  212. package/dist/images/edit.svg +0 -10
  213. package/dist/images/email.svg +0 -1
  214. package/dist/images/instagram.svg +0 -5
  215. package/dist/images/logo-ttf.png +0 -0
  216. package/dist/images/spotify.svg +0 -6
  217. package/dist/images/user.svg +0 -1
  218. package/dist/images/xmark.svg +0 -92
  219. package/dist/normalizers/index.d.ts +0 -4
  220. package/dist/tf-checkout-react.cjs.development.js +0 -16149
  221. package/dist/tf-checkout-react.cjs.development.js.map +0 -1
  222. package/dist/tf-checkout-react.cjs.production.min.js +0 -2
  223. package/dist/tf-checkout-react.cjs.production.min.js.map +0 -1
  224. package/dist/tf-checkout-react.esm.js +0 -16116
  225. package/dist/tf-checkout-react.esm.js.map +0 -1
  226. package/dist/tf-checkout-styles.css +0 -1
  227. package/dist/types/add_on.d.ts +0 -8
  228. package/dist/types/billing-info-data.d.ts +0 -27
  229. package/dist/types/checkoutPageConfigs.d.ts +0 -13
  230. package/dist/types/index.d.ts +0 -6
  231. package/dist/types/order-data.d.ts +0 -15
  232. package/dist/types/payment-field.d.ts +0 -6
  233. package/dist/types/payment-plan-configuration.d.ts +0 -18
  234. package/dist/types/referral-promotion.d.ts +0 -6
  235. package/dist/types/verification.d.ts +0 -12
  236. package/dist/utils/adaptStripeErrors.d.ts +0 -8
  237. package/dist/utils/auth.d.ts +0 -21
  238. package/dist/utils/cookies.d.ts +0 -3
  239. package/dist/utils/createCheckoutDataBodyWithDefaultHolder.d.ts +0 -23
  240. package/dist/utils/createMarkup.d.ts +0 -3
  241. package/dist/utils/customFields.d.ts +0 -35
  242. package/dist/utils/downloadPDF.d.ts +0 -1
  243. package/dist/utils/form.d.ts +0 -3
  244. package/dist/utils/formikErrorFocus.d.ts +0 -2
  245. package/dist/utils/getDomain.d.ts +0 -1
  246. package/dist/utils/getImage.d.ts +0 -1
  247. package/dist/utils/getQueryVariable.d.ts +0 -1
  248. package/dist/utils/htmlNodeFromString.d.ts +0 -1
  249. package/dist/utils/index.d.ts +0 -15
  250. package/dist/utils/isBrowser.d.ts +0 -1
  251. package/dist/utils/isValidNumber.d.ts +0 -1
  252. package/dist/utils/jsonUtils.d.ts +0 -1
  253. package/dist/utils/replaceVarInString.d.ts +0 -1
  254. package/dist/utils/setConfigs.d.ts +0 -11
  255. package/dist/utils/showZero.d.ts +0 -1
  256. package/dist/validators/index.d.ts +0 -8
  257. package/src/adapters/customFields.ts +0 -85
  258. package/src/adapters/index.ts +0 -1
  259. package/src/api/auth.ts +0 -88
  260. package/src/api/cart.ts +0 -28
  261. package/src/api/checkout.ts +0 -28
  262. package/src/api/common.ts +0 -190
  263. package/src/api/guestTicketDelegation.ts +0 -79
  264. package/src/api/index.ts +0 -346
  265. package/src/api/interceptors.ts +0 -77
  266. package/src/api/orders.ts +0 -30
  267. package/src/api/payment.ts +0 -77
  268. package/src/api/preRegistrationComplete.ts +0 -37
  269. package/src/api/publicRequest.ts +0 -47
  270. package/src/api/resale.ts +0 -28
  271. package/src/assets/images/Polygon.png +0 -0
  272. package/src/assets/images/cross.svg +0 -44
  273. package/src/assets/images/done.svg +0 -3
  274. package/src/assets/images/edit.svg +0 -10
  275. package/src/assets/images/email.svg +0 -1
  276. package/src/assets/images/instagram.svg +0 -5
  277. package/src/assets/images/logo-ttf.png +0 -0
  278. package/src/assets/images/spotify.svg +0 -6
  279. package/src/assets/images/user.svg +0 -1
  280. package/src/assets/images/xmark.svg +0 -92
  281. package/src/components/account-settings/index.tsx +0 -161
  282. package/src/components/account-settings/style.css +0 -200
  283. package/src/components/addonsContainer/AddonComponent.tsx +0 -204
  284. package/src/components/addonsContainer/SimpleAddonsContainer.tsx +0 -459
  285. package/src/components/addonsContainer/adapters/index.tsx +0 -62
  286. package/src/components/addonsContainer/index.tsx +0 -353
  287. package/src/components/addonsContainer/normalizers/index.ts +0 -5
  288. package/src/components/addonsContainer/useAddons.ts +0 -248
  289. package/src/components/addonsContainer/utils/index.tsx +0 -231
  290. package/src/components/billing-info-container/hooks/index.ts +0 -3
  291. package/src/components/billing-info-container/hooks/usePaymentContext.ts +0 -22
  292. package/src/components/billing-info-container/hooks/usePaymentRedirect.ts +0 -145
  293. package/src/components/billing-info-container/hooks/useStripePayment.ts +0 -119
  294. package/src/components/billing-info-container/index.tsx +0 -1695
  295. package/src/components/billing-info-container/style.css +0 -150
  296. package/src/components/billing-info-container/utils.tsx +0 -413
  297. package/src/components/common/Checkbox.tsx +0 -51
  298. package/src/components/common/CheckboxField/index.tsx +0 -41
  299. package/src/components/common/CopyField.tsx +0 -53
  300. package/src/components/common/CopyMessageModal.tsx +0 -34
  301. package/src/components/common/CustomField.tsx +0 -168
  302. package/src/components/common/DatePickerField.tsx +0 -126
  303. package/src/components/common/FieldSection/index.tsx +0 -141
  304. package/src/components/common/FieldSection/utils/index.tsx +0 -92
  305. package/src/components/common/FormikPhoneNumberField.tsx +0 -51
  306. package/src/components/common/Loader.tsx +0 -8
  307. package/src/components/common/ModalComponent/index.tsx +0 -68
  308. package/src/components/common/NativeSelectFeild/index.tsx +0 -86
  309. package/src/components/common/PhoneNumberField.tsx +0 -117
  310. package/src/components/common/PoweredBy.tsx +0 -15
  311. package/src/components/common/RadioField.tsx +0 -36
  312. package/src/components/common/RadioGroupField/index.tsx +0 -76
  313. package/src/components/common/RedirectModal.tsx +0 -43
  314. package/src/components/common/SelectField/index.tsx +0 -104
  315. package/src/components/common/SnackbarAlert.tsx +0 -52
  316. package/src/components/common/index.tsx +0 -11
  317. package/src/components/common/socials.tsx +0 -33
  318. package/src/components/confirmModal/index.tsx +0 -60
  319. package/src/components/confirmationContainer/config.ts +0 -79
  320. package/src/components/confirmationContainer/index.tsx +0 -349
  321. package/src/components/confirmationContainer/social-buttons.tsx +0 -149
  322. package/src/components/confirmationContainer/style.css +0 -206
  323. package/src/components/countdown/index.tsx +0 -100
  324. package/src/components/countdown/style.css +0 -10
  325. package/src/components/delegationsContainer/IssueComponent.tsx +0 -156
  326. package/src/components/delegationsContainer/IssueTicketForm.tsx +0 -109
  327. package/src/components/delegationsContainer/TicketsAssignedTable.tsx +0 -55
  328. package/src/components/delegationsContainer/TicketsAvailableTable.tsx +0 -54
  329. package/src/components/delegationsContainer/index.tsx +0 -83
  330. package/src/components/forgotPasswordModal/index.tsx +0 -138
  331. package/src/components/forgotPasswordModal/style.css +0 -47
  332. package/src/components/idVerificationContainer/VerificationPendingModal.tsx +0 -47
  333. package/src/components/idVerificationContainer/constants.ts +0 -27
  334. package/src/components/idVerificationContainer/index.tsx +0 -323
  335. package/src/components/index.ts +0 -12
  336. package/src/components/loginForm/index.tsx +0 -202
  337. package/src/components/loginModal/SignUpForm.tsx +0 -329
  338. package/src/components/loginModal/constants.ts +0 -46
  339. package/src/components/loginModal/index.tsx +0 -263
  340. package/src/components/loginModal/style.css +0 -116
  341. package/src/components/myTicketsContainer/index.tsx +0 -228
  342. package/src/components/myTicketsContainer/row.tsx +0 -46
  343. package/src/components/myTicketsContainer/style.css +0 -40
  344. package/src/components/myTicketsContainer/tableConfig.tsx +0 -80
  345. package/src/components/myTicketsContainer/types.d.ts +0 -41
  346. package/src/components/orderDetailsContainer/CustomFieldsForm.tsx +0 -75
  347. package/src/components/orderDetailsContainer/TicketHolderCustomFields.tsx +0 -100
  348. package/src/components/orderDetailsContainer/index.tsx +0 -586
  349. package/src/components/orderDetailsContainer/style.css +0 -77
  350. package/src/components/orderDetailsContainer/ticketsTable.tsx +0 -246
  351. package/src/components/orderDetailsContainer/utils/index.tsx +0 -55
  352. package/src/components/paymentContainer/OrderDetails.tsx +0 -277
  353. package/src/components/paymentContainer/PaymentPlanSection.tsx +0 -169
  354. package/src/components/paymentContainer/handlePayment.ts +0 -86
  355. package/src/components/paymentContainer/index.tsx +0 -643
  356. package/src/components/paymentContainer/style.css +0 -196
  357. package/src/components/preRegistration/FieldsSection.tsx +0 -150
  358. package/src/components/preRegistration/Influancers.tsx +0 -34
  359. package/src/components/preRegistration/PreRegistrationComplete.tsx +0 -186
  360. package/src/components/preRegistration/PreRegistrationInformations.tsx +0 -60
  361. package/src/components/preRegistration/Prewards.tsx +0 -41
  362. package/src/components/preRegistration/ShareOptions.tsx +0 -77
  363. package/src/components/preRegistration/constants.tsx +0 -169
  364. package/src/components/preRegistration/index.tsx +0 -330
  365. package/src/components/preRegistration/style.css +0 -3
  366. package/src/components/preRegistration/utils.ts +0 -163
  367. package/src/components/registerForm/adapters/index.tsx +0 -10
  368. package/src/components/registerForm/constants.tsx +0 -98
  369. package/src/components/registerForm/index.tsx +0 -188
  370. package/src/components/registerModal/index.tsx +0 -154
  371. package/src/components/registerModal/style.css +0 -18
  372. package/src/components/resetPasswordContainer/index.tsx +0 -102
  373. package/src/components/resetPasswordContainer/style.css +0 -36
  374. package/src/components/rsvpContainer/index.tsx +0 -126
  375. package/src/components/seatMapContainer/SeatMapComponent.tsx +0 -77
  376. package/src/components/seatMapContainer/TicketsSection.tsx +0 -286
  377. package/src/components/seatMapContainer/addToCart.ts +0 -66
  378. package/src/components/seatMapContainer/index.tsx +0 -443
  379. package/src/components/seatMapContainer/utils.ts +0 -133
  380. package/src/components/signupModal/index.tsx +0 -178
  381. package/src/components/signupModal/style.css +0 -58
  382. package/src/components/ticketResale/index.tsx +0 -86
  383. package/src/components/ticketResaleModal/index.tsx +0 -224
  384. package/src/components/ticketResaleModal/style.css +0 -28
  385. package/src/components/ticketsContainer/AccessCodeSection.tsx +0 -50
  386. package/src/components/ticketsContainer/InfoIcon.tsx +0 -35
  387. package/src/components/ticketsContainer/PromoCodeSection.tsx +0 -116
  388. package/src/components/ticketsContainer/ReferralLogic.tsx +0 -33
  389. package/src/components/ticketsContainer/TicketRow.tsx +0 -107
  390. package/src/components/ticketsContainer/TicketsSection.tsx +0 -350
  391. package/src/components/ticketsContainer/TimeSlotTicketRow.tsx +0 -243
  392. package/src/components/ticketsContainer/TimeSlotsSection.tsx +0 -194
  393. package/src/components/ticketsContainer/index.tsx +0 -986
  394. package/src/components/ticketsContainer/style.css +0 -178
  395. package/src/components/ticketsContainer/utils.ts +0 -35
  396. package/src/components/timerWidget/index.tsx +0 -97
  397. package/src/components/timerWidget/style.css +0 -35
  398. package/src/components/waitingList/index.tsx +0 -190
  399. package/src/components/waitingList/style.css +0 -27
  400. package/src/constants/index.ts +0 -3
  401. package/src/env.ts +0 -29
  402. package/src/hoc/CustomFields/index.tsx +0 -85
  403. package/src/hoc/index.ts +0 -1
  404. package/src/hooks/index.ts +0 -1
  405. package/src/hooks/useCookieListener.ts +0 -32
  406. package/src/hooks/useEventListener.ts +0 -32
  407. package/src/hooks/useLocalStorageListener.ts +0 -32
  408. package/src/hooks/useOnline.ts +0 -21
  409. package/src/hooks/usePixel.ts +0 -88
  410. package/src/normalizers/index.ts +0 -49
  411. package/src/types/add_on.ts +0 -8
  412. package/src/types/api/auth.d.ts +0 -63
  413. package/src/types/api/axiosResponse.d.ts +0 -6
  414. package/src/types/api/cart.d.ts +0 -73
  415. package/src/types/api/checkout.d.ts +0 -92
  416. package/src/types/api/common.d.ts +0 -153
  417. package/src/types/api/guestTicketDelegation.d.ts +0 -18
  418. package/src/types/api/orders.d.ts +0 -116
  419. package/src/types/api/payment.d.ts +0 -180
  420. package/src/types/api/preRegistration.d.ts +0 -11
  421. package/src/types/api/preRegistrationComplete.d.ts +0 -95
  422. package/src/types/api/ticketResale.d.ts +0 -13
  423. package/src/types/billing-info-data.ts +0 -37
  424. package/src/types/checkoutPageConfigs.ts +0 -13
  425. package/src/types/formFields.d.ts +0 -29
  426. package/src/types/index.ts +0 -6
  427. package/src/types/order-data.ts +0 -16
  428. package/src/types/payment-field.ts +0 -7
  429. package/src/types/payment-plan-configuration.ts +0 -19
  430. package/src/types/pre-registration-complete.d.ts +0 -47
  431. package/src/types/referral-promotion.ts +0 -7
  432. package/src/types/seatMap.d.ts +0 -159
  433. package/src/types/verification.ts +0 -12
  434. package/src/utils/adaptStripeErrors.ts +0 -26
  435. package/src/utils/auth.ts +0 -45
  436. package/src/utils/cookies.ts +0 -73
  437. package/src/utils/createCheckoutDataBodyWithDefaultHolder.ts +0 -81
  438. package/src/utils/createMarkup.ts +0 -1
  439. package/src/utils/customFields.ts +0 -80
  440. package/src/utils/downloadPDF.tsx +0 -42
  441. package/src/utils/form.ts +0 -34
  442. package/src/utils/formikErrorFocus.ts +0 -24
  443. package/src/utils/getDomain.ts +0 -21
  444. package/src/utils/getImage.ts +0 -14
  445. package/src/utils/getQueryVariable.ts +0 -13
  446. package/src/utils/htmlNodeFromString.ts +0 -6
  447. package/src/utils/index.ts +0 -15
  448. package/src/utils/isBrowser.ts +0 -2
  449. package/src/utils/isValidNumber.ts +0 -8
  450. package/src/utils/jsonUtils.ts +0 -8
  451. package/src/utils/replaceVarInString.ts +0 -9
  452. package/src/utils/setConfigs.ts +0 -24
  453. package/src/utils/showZero.tsx +0 -10
  454. package/src/validators/index.ts +0 -61
@@ -1,23 +0,0 @@
1
- import { ThemeOptions } from '@mui/material';
2
- import { CSSProperties } from '@mui/styles';
3
- import { AxiosError } from 'axios';
4
- import { FC } from 'react';
5
- import { IForgotPasswordProps } from '../forgotPasswordModal';
6
- import { Props } from '../loginModal';
7
- interface IPreRegistrationProps extends Props, IForgotPasswordProps {
8
- eventId: string | number;
9
- formFields?: IFormFieldsSection[];
10
- additionalFieldAttribute?: IFieldAttribute;
11
- isPreregistrationStarted: boolean;
12
- onGetCountriesSuccess?: (res: any) => void;
13
- onGetCountriesError?: (e: AxiosError) => void;
14
- onConfirmationSuccess?: (res: any) => void;
15
- onConfirmationError?: (e: AxiosError) => void;
16
- onLoginSuccess?: (res: any) => void;
17
- themeOptions?: ThemeOptions & {
18
- input?: CSSProperties;
19
- checkbox?: CSSProperties;
20
- };
21
- }
22
- export declare const PreRegistration: FC<IPreRegistrationProps>;
23
- export {};
@@ -1,12 +0,0 @@
1
- import { FormikValues } from 'formik';
2
- import { IShareButton } from '../confirmationContainer';
3
- export declare const getValidateFunctions: ({ element, values, }: {
4
- element: IFormField;
5
- values: FormikValues;
6
- }) => (...value: any) => any;
7
- export declare const getFormInitialValues: (fieldsSections: IFormFieldsSection[]) => {
8
- [key: string]: string | number | boolean;
9
- };
10
- export declare const updateFormFieldsAttributes: (formFields: IFormFieldsSection[], attributes?: IFieldAttribute | undefined) => IFormFieldsSection[];
11
- export declare const shareOptionsAdapter: (data: Array<IShareOptionsActionData>, shareUrl: string) => IShareButton[];
12
- export declare const getShuffleMethodByName: (tokenShuffleMethod: string) => (value: string) => string;
@@ -1,4 +0,0 @@
1
- export declare const collectStates: (states: any) => {
2
- label: any;
3
- value: string;
4
- }[];
@@ -1 +0,0 @@
1
- export declare const formDefaultFields: IFormFieldsSection[];
@@ -1,16 +0,0 @@
1
- import { AxiosError } from 'axios';
2
- import { FC } from 'react';
3
- interface IRegistrationProps {
4
- formFields?: Array<IFormFieldsSection>;
5
- additionalFieldAttribute?: IFieldAttribute;
6
- registrationType: string;
7
- onGetCountriesSuccess?: (res: any) => void;
8
- onGetCountriesError?: (e: AxiosError) => void;
9
- onRegisterAccountSuccess?: (res: any) => void;
10
- onRegisterAccountError?: (e: AxiosError) => void;
11
- onGetStatesSuccess?: (res: any) => void;
12
- onGetStatesError?: (e: AxiosError) => void;
13
- customerEmail: string;
14
- }
15
- export declare const RegistrationForm: FC<IRegistrationProps>;
16
- export {};
@@ -1,12 +0,0 @@
1
- import './style.css';
2
- import { AxiosError } from 'axios';
3
- import { FC } from 'react';
4
- interface Props {
5
- onClose: () => void;
6
- onRegister: () => void;
7
- onGetProfileDataSuccess: (res: any) => void;
8
- onGetProfileDataError: (e: AxiosError) => void;
9
- showPoweredByImage?: boolean;
10
- }
11
- export declare const RegisterModal: FC<Props>;
12
- export {};
@@ -1,10 +0,0 @@
1
- import './style.css';
2
- import { AxiosError } from 'axios';
3
- import { FC } from 'react';
4
- interface IResetPasswordProps {
5
- token?: string;
6
- onResetPasswordSuccess?: (res: any) => void;
7
- onResetPasswordError?: (e: AxiosError) => void;
8
- }
9
- export declare const ResetPasswordContainer: FC<IResetPasswordProps>;
10
- export {};
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- interface IRsvpContainerPage {
3
- showSection?: boolean;
4
- eventId: number;
5
- }
6
- export declare const RsvpContainer: ({ showSection, eventId }: IRsvpContainerPage) => JSX.Element | null;
7
- export {};
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- import 'tf-seat-map-view/dist/index.css';
3
- declare global {
4
- interface Window {
5
- tierPrices: any;
6
- }
7
- }
8
- export declare const SeatMapComponent: (props: ISeatMapContainerProps) => JSX.Element;
@@ -1,9 +0,0 @@
1
- /// <reference types="react" />
2
- import { CSSProperties } from '@emotion/serialize';
3
- import { ThemeOptions } from '@mui/material';
4
- export declare const TicketsSection: (props: ITicketsSectionProps & {
5
- themeOptions?: ThemeOptions & {
6
- input?: CSSProperties;
7
- checkbox?: CSSProperties;
8
- };
9
- }) => JSX.Element;
@@ -1,14 +0,0 @@
1
- interface IAddToCartFuncProps {
2
- eventId: string | number;
3
- data: any;
4
- ticketQuantity: number;
5
- enableBillingInfoAutoCreate?: boolean;
6
- }
7
- export declare const addToCartFunc: ({ eventId, data, ticketQuantity, enableBillingInfoAutoCreate, }: IAddToCartFuncProps) => Promise<{
8
- skip_billing_page: any;
9
- event_id: string;
10
- hash: string;
11
- total: string;
12
- hasAddOn: any;
13
- } | null>;
14
- export {};
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const SeatMapContainer: (props: IMapContainerProps) => JSX.Element;
@@ -1,6 +0,0 @@
1
- export declare const getTierIdBasedOnSeatId: (seatId: string, eventSeats: Array<EventSeat>) => string;
2
- export declare const getButtonLabel: (count: number, tableMapEnabled: boolean) => string;
3
- export declare const getOwnReservationsBasedOnStatuses: (statuses: any) => string[];
4
- export declare const getTicketDropdownData: (reservationData: Array<SeatReservationData>, tierReleations: TicketTypeTierRelations) => ITicketsDropdownsData[];
5
- export declare const getAddToCartRequestData: ({ eventId, reservations, selectedSeats, selectedTickets, guestCounts, }: any) => ICartRequestData;
6
- export declare const getTierRelationsArray: (data: Array<TicketTypeTierRelationsData>) => (string | number | null)[];
@@ -1,12 +0,0 @@
1
- import './style.css';
2
- import { AxiosError } from 'axios';
3
- import { FC } from 'react';
4
- interface ISignupProps {
5
- onClose: () => void;
6
- onLogin: () => void;
7
- onRegisterSuccess: (res: any) => void;
8
- onRegisterError: (e: AxiosError, email: string) => void;
9
- showPoweredByImage?: boolean;
10
- }
11
- export declare const SignupModal: FC<ISignupProps>;
12
- export {};
@@ -1,12 +0,0 @@
1
- /// <reference types="react" />
2
- import { AxiosError } from 'axios';
3
- export interface ITicketResaleContainer {
4
- onProcessTicketSuccess: (res: any) => void;
5
- onProcessTicketError: (e: AxiosError) => void;
6
- onDeclineTicketPurchaseSuccess: (res: any) => void;
7
- onDeclineTicketPurchaseError: (e: AxiosError) => void;
8
- orderHash?: string;
9
- billingPath?: string;
10
- defaultRedirection?: boolean;
11
- }
12
- export declare const TicketResaleContainer: ({ onProcessTicketSuccess, onProcessTicketError, onDeclineTicketPurchaseSuccess, onDeclineTicketPurchaseError, orderHash, billingPath, defaultRedirection, }: ITicketResaleContainer) => JSX.Element;
@@ -1,19 +0,0 @@
1
- /// <reference types="react" />
2
- import './style.css';
3
- import { ITicketTypes } from '../orderDetailsContainer/ticketsTable';
4
- interface Props {
5
- ticket: ITicketTypes;
6
- onClose: () => void;
7
- onSubmit: (values: InitialValuesTypes) => void;
8
- loading?: boolean;
9
- }
10
- export interface InitialValuesTypes {
11
- to: string;
12
- first_name: string;
13
- last_name: string;
14
- email: string;
15
- confirm_email: string;
16
- confirm: boolean;
17
- }
18
- export declare const TicketResaleModal: ({ ticket, onClose, onSubmit, loading }: Props) => JSX.Element;
19
- export {};
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- export interface IAccessCodeSectionProps {
3
- code: string;
4
- setCode: (value: string) => void;
5
- updateTickets: (value: boolean) => void;
6
- }
7
- export declare const AccessCodeSection: ({ code, setCode, updateTickets }: IAccessCodeSectionProps) => JSX.Element;
@@ -1,5 +0,0 @@
1
- /// <reference types="react" />
2
- declare const InfoIcon: ({ size }: {
3
- size?: number | undefined;
4
- }) => JSX.Element;
5
- export default InfoIcon;
@@ -1,15 +0,0 @@
1
- /// <reference types="react" />
2
- export interface IPromoCodeSectionProps {
3
- code: string;
4
- codeIsApplied: boolean;
5
- showPromoInput: boolean;
6
- setCode: (value: string) => void;
7
- setShowPromoInput: (value: boolean) => void;
8
- updateTickets: (value: boolean, type: string) => void;
9
- setCodeIsApplied: (value: boolean) => void;
10
- codeIsInvalid: boolean;
11
- setCodeIsInvalid: (value: boolean) => void;
12
- promoText?: string;
13
- showAlertIcons?: boolean;
14
- }
15
- export declare const PromoCodeSection: ({ code, codeIsApplied, showPromoInput, setCode, setShowPromoInput, updateTickets, setCodeIsApplied, codeIsInvalid, setCodeIsInvalid, promoText, showAlertIcons }: IPromoCodeSectionProps) => JSX.Element;
@@ -1,5 +0,0 @@
1
- interface IReferralLogicProps {
2
- eventId: string | number;
3
- }
4
- export declare const ReferralLogic: (props: IReferralLogicProps) => null;
5
- export {};
@@ -1,13 +0,0 @@
1
- /// <reference types="react" />
2
- import './style.css';
3
- interface ITicketRowProps {
4
- ticketTier: any;
5
- prevTicketTier: any;
6
- selectedTickets: any;
7
- handleTicketSelect: any;
8
- event: any;
9
- isSeatMapAllowed?: boolean;
10
- tableType?: boolean;
11
- }
12
- export declare const TicketRow: ({ ticketTier, prevTicketTier, selectedTickets, handleTicketSelect, event, isSeatMapAllowed, tableType, }: ITicketRowProps) => JSX.Element;
13
- export {};
@@ -1,20 +0,0 @@
1
- import './style.css';
2
- import { ReactNode } from 'react';
3
- interface ITicketsSectionProps {
4
- event: any;
5
- ticketsList: any;
6
- selectedTickets: any;
7
- handleTicketSelect: any;
8
- sortBySoldOut: boolean;
9
- hideTicketsHeader: boolean;
10
- hideTableTicketsHeader: boolean;
11
- tableTickets: any;
12
- ticketsHeaderComponent?: ReactNode;
13
- tableTicketsHeaderComponent?: ReactNode;
14
- showGroupNameBlock?: boolean;
15
- currencySymbol?: string;
16
- isSeatMapAllowed?: boolean;
17
- descriptionTrigger?: 'click' | 'hover';
18
- }
19
- export declare const TicketsSection: ({ event, ticketsList, selectedTickets, handleTicketSelect, sortBySoldOut, ticketsHeaderComponent, tableTicketsHeaderComponent, hideTicketsHeader, hideTableTicketsHeader, showGroupNameBlock, currencySymbol, isSeatMapAllowed, tableTickets, descriptionTrigger, }: ITicketsSectionProps) => JSX.Element;
20
- export {};
@@ -1,19 +0,0 @@
1
- /// <reference types="react" />
2
- import './style.css';
3
- interface TimeSlotOption {
4
- timeKey: string;
5
- ticketInstance: any;
6
- }
7
- interface ITimeSlotTicketRowProps {
8
- ticketKey: string;
9
- ticket: any;
10
- availableTimeSlots: TimeSlotOption[];
11
- selectedTickets: any;
12
- selectedTimeSlots: any;
13
- handleTicketSelect: (ticketKey: string, quantity: number, ticketInstance: any) => void;
14
- handleTimeSlotSelect: (ticketKey: string, timeKey: string, ticketInstance: any) => void;
15
- priceSymbol: string;
16
- isSoldOut: boolean;
17
- }
18
- export declare const TimeSlotTicketRow: ({ ticketKey, ticket, availableTimeSlots, selectedTickets, selectedTimeSlots, handleTicketSelect, handleTimeSlotSelect, priceSymbol, isSoldOut, }: ITimeSlotTicketRowProps) => JSX.Element;
19
- export {};
@@ -1,25 +0,0 @@
1
- import React, { ReactNode } from 'react';
2
- interface Props {
3
- event: any;
4
- eventId: number;
5
- availableDates: string[];
6
- selectedDate: string | null;
7
- timeSlotGroups: {
8
- [key: string]: any[];
9
- };
10
- setTimeSlotGroups: (value: {
11
- [key: string]: any[];
12
- }) => void;
13
- setSelectedDate: (value: string | null) => void;
14
- getTimeSlots: (date: string | null, type?: string) => Promise<void>;
15
- selectedTickets: any;
16
- handleTicketSelect: any;
17
- sortBySoldOut: boolean;
18
- hideTicketsHeader: boolean;
19
- ticketsHeaderComponent?: ReactNode;
20
- showGroupNameBlock?: boolean;
21
- currencySymbol?: string;
22
- isSeatMapAllowed?: boolean;
23
- }
24
- declare const TimeSlotsSection: React.FC<Props>;
25
- export default TimeSlotsSection;
@@ -1,93 +0,0 @@
1
- import './style.css';
2
- import { ThemeOptions } from '@mui/material';
3
- import { CSSProperties } from '@mui/styles';
4
- import { AxiosError } from 'axios';
5
- import React, { ReactNode } from 'react';
6
- interface CartSuccess {
7
- skip_billing_page: boolean;
8
- event_id: string;
9
- hash?: string | number;
10
- total?: string | number;
11
- hasAddOn?: boolean;
12
- eventSlug?: string;
13
- cart?: ICart[];
14
- currencySymbol?: string;
15
- }
16
- export interface IGetTickets {
17
- eventId: number;
18
- onAddToCartSuccess: (response: CartSuccess) => void;
19
- getTicketsLabel?: string;
20
- contentStyle?: React.CSSProperties;
21
- onAddToCartError: (e: AxiosError) => void;
22
- onGetTicketsSuccess: (response: {
23
- data: {
24
- attributes: {
25
- tickets: ITicketData[];
26
- };
27
- };
28
- }) => void;
29
- onGetTicketsPress: () => void;
30
- onGetTicketsError: (e: AxiosError) => void;
31
- onLogoutSuccess: () => void;
32
- onLogoutError: (e: AxiosError) => void;
33
- onGetProfileDataSuccess: (response: {
34
- data: {
35
- attributes: {
36
- [key: string]: string | number | boolean | null;
37
- };
38
- };
39
- }) => void;
40
- onGetProfileDataError: (e: AxiosError) => void;
41
- onLoginSuccess: () => void;
42
- handleNotInvitedModalClose: () => void;
43
- handleInvalidLinkModalClose: () => void;
44
- theme?: 'light' | 'dark';
45
- queryPromoCode?: string;
46
- isPromotionsEnabled?: boolean;
47
- themeOptions?: ThemeOptions & {
48
- input?: CSSProperties;
49
- checkbox?: CSSProperties;
50
- };
51
- isAccessCodeEnabled?: boolean;
52
- hideSessionButtons?: boolean;
53
- hideWaitingList?: boolean;
54
- enableBillingInfoAutoCreate?: boolean;
55
- isButtonScrollable?: boolean;
56
- sortBySoldOut?: boolean;
57
- disableCountdownLeadingZero?: boolean;
58
- isLoggedIn?: boolean;
59
- actionsSectionComponent?: ReactNode;
60
- ticketsHeaderComponent?: ReactNode;
61
- hideTicketsHeader?: boolean;
62
- tableTicketsHeaderComponent?: ReactNode;
63
- hideTableTicketsHeader?: boolean;
64
- enableInfluencersSection?: boolean;
65
- enableAddOns?: boolean;
66
- ordersPath?: string;
67
- showPoweredByImage?: boolean;
68
- promoText?: string;
69
- showGroupNameBlock?: boolean;
70
- currencySymbol?: string;
71
- onReserveButtonClick?: () => void;
72
- onPendingVerification?: () => void;
73
- showAlertIcons?: boolean;
74
- submitMode?: 'auto' | 'click';
75
- onPreRegistrationSuccess?: (response: any) => void;
76
- onPreRegistrationError?: (e: AxiosError) => void;
77
- onPreRegistrationGetCountriesSuccess?: (res: any) => void;
78
- onPreRegistrationGetCountriesError?: (e: AxiosError) => void;
79
- onForgotPasswordSuccess?: (res: any) => void;
80
- onForgotPasswordError?: (e: AxiosError) => void;
81
- showForgotPasswordButton?: boolean;
82
- logo?: string;
83
- }
84
- export interface ITicket {
85
- id: string | number;
86
- [key: string]: string | number;
87
- }
88
- export interface ISelectedTickets {
89
- isTable: boolean;
90
- [key: string]: string | number | boolean;
91
- }
92
- export declare const TicketsContainer: ({ onLoginSuccess, getTicketsLabel, eventId, onAddToCartSuccess, contentStyle, onAddToCartError, onGetTicketsSuccess, onGetTicketsError, onLogoutSuccess, onLogoutError, onGetProfileDataSuccess, onGetProfileDataError, onGetTicketsPress, theme, queryPromoCode, isPromotionsEnabled, themeOptions, isAccessCodeEnabled, hideSessionButtons, hideWaitingList, enableBillingInfoAutoCreate, isButtonScrollable, sortBySoldOut, disableCountdownLeadingZero, isLoggedIn, actionsSectionComponent: ActionsSectionComponent, ticketsHeaderComponent, hideTicketsHeader, tableTicketsHeaderComponent, hideTableTicketsHeader, enableInfluencersSection, enableAddOns, handleNotInvitedModalClose, handleInvalidLinkModalClose, ordersPath, showPoweredByImage, promoText, showGroupNameBlock, currencySymbol, onReserveButtonClick, onPendingVerification, showAlertIcons, onPreRegistrationSuccess, onPreRegistrationError, onPreRegistrationGetCountriesSuccess, onPreRegistrationGetCountriesError, onForgotPasswordSuccess, onForgotPasswordError, showForgotPasswordButton, logo, }: IGetTickets) => JSX.Element;
93
- export {};
@@ -1,13 +0,0 @@
1
- export declare const getTicketSelectOptions: (maxCount?: number, minCount?: number, multiplier?: number) => {
2
- label: number;
3
- value: number;
4
- }[];
5
- interface eventDatesInfo {
6
- salesStarted: boolean;
7
- salesEnded: boolean;
8
- presalesStarted: boolean;
9
- presalesEnded: boolean;
10
- presalesEnabled: boolean;
11
- }
12
- export declare const defineIsSalesClosed: (eventDatesInfo: eventDatesInfo) => boolean;
13
- export {};
@@ -1,16 +0,0 @@
1
- import './style.css';
2
- import React from 'react';
3
- export interface ITimerWidgetPage {
4
- expires_at: number;
5
- buyLoading?: boolean;
6
- onCountdownFinish?: () => void;
7
- container?: string;
8
- }
9
- export interface IRenderer {
10
- minutes: number;
11
- seconds: number;
12
- completed: number;
13
- handleCountdownFinish: () => void;
14
- }
15
- declare const _default: React.MemoExoticComponent<({ expires_at, buyLoading, onCountdownFinish, container, }: ITimerWidgetPage) => JSX.Element | null>;
16
- export default _default;
@@ -1,9 +0,0 @@
1
- /// <reference types="react" />
2
- import './style.css';
3
- interface WaitingListProps {
4
- tickets: any;
5
- eventId: number;
6
- defaultMaxQuantity: number;
7
- }
8
- declare const WaitingList: ({ tickets, eventId, defaultMaxQuantity, }: WaitingListProps) => JSX.Element;
9
- export default WaitingList;
@@ -1,7 +0,0 @@
1
- export declare const X_TF_ECOMMERCE = "X-TF-ECOMMERCE";
2
- export declare const FEES_STYLES: {
3
- TRADITIONAL: string;
4
- DISPLAY_BOTH: string;
5
- FINAL_WITH_BREAKDOWN: string;
6
- };
7
- export declare const DEFAULT_FEES_STYLE: string;
package/dist/env.d.ts DELETED
@@ -1,16 +0,0 @@
1
- export declare const ENV: {
2
- EVENT_ID: number;
3
- BASE_URL: string;
4
- CLIENT_ID: string;
5
- CLIENT_SECRET: string;
6
- STRIPE_PUBLISHABLE_KEY: string;
7
- BRAND_SLUG: string;
8
- X_SOURCE_ORIGIN: string;
9
- };
10
- export declare const ENV_PROD: {
11
- EVENT_ID: number;
12
- BASE_URL: string;
13
- CLIENT_ID: string;
14
- CLIENT_SECRET: string;
15
- STRIPE_PUBLISHABLE_KEY: string;
16
- };
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- declare const withCustomFields: (Children: any) => (props: any) => JSX.Element;
3
- export { withCustomFields };
@@ -1 +0,0 @@
1
- export { withCustomFields } from './CustomFields';
@@ -1 +0,0 @@
1
- export { useCookieListener } from './useCookieListener';
@@ -1 +0,0 @@
1
- export declare const useCookieListener: (key: string, handler: (value: string | null) => void) => void;
@@ -1 +0,0 @@
1
- export declare const useEventListener: (eventName: string, handler: () => void, element?: Window & typeof globalThis) => void;
@@ -1 +0,0 @@
1
- export declare function useLocalStorageListener(key: string, callback: (value: string | null) => void): string | null;
@@ -1 +0,0 @@
1
- export declare const useOnline: (handler: (value: boolean) => void) => void;
@@ -1,6 +0,0 @@
1
- export interface pageOptions {
2
- pageUrl: string;
3
- page?: string;
4
- orderHash?: string;
5
- }
6
- export declare const usePixel: (eventId: string | number, options: pageOptions) => Promise<void>;
Binary file
@@ -1,44 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="94.926px" height="94.926px" viewBox="0 0 94.926 94.926" style="enable-background:new 0 0 94.926 94.926;"
6
- xml:space="preserve">
7
- <g>
8
- <path d="M55.931,47.463L94.306,9.09c0.826-0.827,0.826-2.167,0-2.994L88.833,0.62C88.436,0.224,87.896,0,87.335,0
9
- c-0.562,0-1.101,0.224-1.498,0.62L47.463,38.994L9.089,0.62c-0.795-0.795-2.202-0.794-2.995,0L0.622,6.096
10
- c-0.827,0.827-0.827,2.167,0,2.994l38.374,38.373L0.622,85.836c-0.827,0.827-0.827,2.167,0,2.994l5.473,5.476
11
- c0.397,0.396,0.936,0.62,1.498,0.62s1.1-0.224,1.497-0.62l38.374-38.374l38.374,38.374c0.397,0.396,0.937,0.62,1.498,0.62
12
- s1.101-0.224,1.498-0.62l5.473-5.476c0.826-0.827,0.826-2.167,0-2.994L55.931,47.463z"/>
13
- </g>
14
- <g>
15
- </g>
16
- <g>
17
- </g>
18
- <g>
19
- </g>
20
- <g>
21
- </g>
22
- <g>
23
- </g>
24
- <g>
25
- </g>
26
- <g>
27
- </g>
28
- <g>
29
- </g>
30
- <g>
31
- </g>
32
- <g>
33
- </g>
34
- <g>
35
- </g>
36
- <g>
37
- </g>
38
- <g>
39
- </g>
40
- <g>
41
- </g>
42
- <g>
43
- </g>
44
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10 20C15.5228 20 20 15.5228 20 10C20 4.47717 15.5228 0 10 0C4.47717 0 0 4.47717 0 10C0 15.5228 4.47717 20 10 20ZM8.14661 15.8678L16.8782 6.39722C16.9561 6.31335 17 6.19922 17 6.08008C17 5.96094 16.9561 5.8468 16.8782 5.76282L16.3016 5.12854C16.1386 4.95715 15.8796 4.95715 15.7167 5.12854L7.85004 13.661L4.28326 9.79236C4.20593 9.70776 4.10071 9.66016 3.99084 9.66016C3.9353 9.66016 3.88086 9.67236 3.83069 9.69531C3.78168 9.71777 3.73663 9.75061 3.69843 9.79236L3.12183 10.4177C3.07635 10.4667 3.04248 10.5259 3.02216 10.5905C3.00763 10.6365 3 10.6853 3 10.735C3 10.8541 3.04388 10.9683 3.12183 11.0521L7.56177 15.8678C7.6391 15.9524 7.74438 16 7.85419 16C7.96399 16 8.06927 15.9524 8.14661 15.8678Z" fill="#569F44"/>
3
- </svg>
@@ -1,10 +0,0 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_996_11495)">
3
- <path d="M6.162 12.6667L5 13.6667L2 14.0001V11.1714L8.6 4.57139L11.428 7.40072L6.16133 12.6667H6.162ZM9.542 3.62939L10.9567 2.21472C11.0817 2.08974 11.2512 2.01953 11.428 2.01953C11.6048 2.01953 11.7743 2.08974 11.8993 2.21472L13.7853 4.10072C13.9103 4.22574 13.9805 4.39528 13.9805 4.57206C13.9805 4.74883 13.9103 4.91837 13.7853 5.04339L12.3707 6.45739L9.54267 3.62939H9.542Z" fill="#03053D"/>
4
- </g>
5
- <defs>
6
- <clipPath id="clip0_996_11495">
7
- <rect width="16" height="16" fill="white"/>
8
- </clipPath>
9
- </defs>
10
- </svg>
@@ -1 +0,0 @@
1
- <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="envelope" class="svg-inline--fa fa-envelope fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg>
@@ -1,5 +0,0 @@
1
- <svg fill="#ffffff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="32px" height="32px">
2
- <circle cx="32" cy="32" r="31" fill='#A01173' />
3
- <path
4
- d="M 23.8513 12.0905 C 17.3957 12.0905 12.0905 17.3886 12.0905 23.8513 L 12.0905 40.3279 C 12.0905 46.7835 17.3886 52.0887 23.8513 52.0887 L 40.3279 52.0887 C 46.7835 52.0887 52.0887 46.7906 52.0887 40.3279 L 52.0887 23.8513 C 52.0887 17.3957 46.7906 12.0905 40.3279 12.0905 Z M 23.8513 15.7267 L 40.3279 15.7267 C 44.8234 15.7267 48.4525 19.3558 48.4525 23.8513 L 48.4525 40.3279 C 48.4525 44.8234 44.8234 48.4525 40.3279 48.4525 L 23.8513 48.4525 C 19.3558 48.4525 15.7267 44.8234 15.7267 40.3279 L 15.7267 23.8513 C 15.7267 19.3558 19.3558 15.7267 23.8513 15.7267 Z M 42.8278 19.7038 C 41.9116 19.7038 41.1801 20.4353 41.1801 21.3514 C 41.1801 22.2676 41.9116 22.9991 42.8278 22.9991 C 43.7439 22.9991 44.4754 22.2676 44.4754 21.3514 C 44.4754 20.4353 43.7439 19.7038 42.8278 19.7038 Z M 32.0896 21.181 C 26.0885 21.181 21.181 26.0885 21.181 32.0896 C 21.181 38.0907 26.0885 42.9982 32.0896 42.9982 C 38.0907 42.9982 42.9982 38.0907 42.9982 32.0896 C 42.9982 26.0885 38.0907 21.181 32.0896 21.181 Z M 32.0896 24.8172 C 36.1306 24.8172 39.362 28.0486 39.362 32.0896 C 39.362 36.1306 36.1306 39.362 32.0896 39.362 C 28.0486 39.362 24.8172 36.1306 24.8172 32.0896 C 24.8172 28.0486 28.0486 24.8172 32.0896 24.8172 Z" />
5
- </svg>
Binary file
@@ -1,6 +0,0 @@
1
- <?xml version="1.0"?><svg fill="#ffffff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="32px"
2
- height="32px">
3
- <circle cx="32" cy="32" r="31" fill='#60BD82' />
4
- <path
5
- d="M 11 25 z M 45.3205 48.134 c -0.4019 0.6035 -1.0638 0.9289 -1.7382 0.9289 c -0.3977 0 -0.7996 -0.1126 -1.1556 -0.3504 C 38.9877 46.4194 33.1556 44.8897 28.2885 44.8911 c -5.1647 0.0028 -9.0361 1.271 -9.075 1.2835 c -1.0902 0.3699 -2.2736 -0.2253 -2.638 -1.3183 s 0.2267 -2.275 1.3197 -2.638 c 0.1836 -0.0612 4.5598 -1.4949 10.3933 -1.4977 C 33.1556 40.718 39.925 42.0307 44.742 45.2416 C 45.7015 45.8812 45.9602 47.1759 45.3205 48.134 z M 49.4812 39.5957 c -0.4519 0.7259 -1.2321 1.125 -2.0289 1.125 c -0.4311 0 -0.8677 -0.1154 -1.2599 -0.3616 c -6.2354 -3.8853 -12.6433 -4.7072 -18.164 -4.6585 c -6.2327 0.0556 -11.2166 1.2446 -11.3014 1.2696 c -1.2613 0.3588 -2.5879 -0.3782 -2.9481 -1.6451 c -0.3602 -1.2696 0.3782 -2.5893 1.6465 -2.9481 c 0.3852 -0.1099 5.3594 -1.3336 12.1691 -1.3906 c 6.209 -0.0515 13.9463 0.8483 21.1246 5.3204 C 49.8358 37.0023 50.1793 38.4763 49.4812 39.5957 z M 53.6321 29.6112 C 53.1134 30.4929 52.1845 30.9838 51.2306 30.9838 c -0.4784 0 -0.9623 -0.1238 -1.4059 -0.3824 c -7.2673 -4.2664 -16.1031 -5.1716 -22.2357 -5.18 c -0.0292 0 -0.0584 0 -0.0876 0 c -7.4161 0 -13.1272 1.3044 -13.1843 1.3183 c -1.4991 0.3435 -2.9912 -0.5827 -3.3388 -2.0789 c -0.3476 -1.4949 0.5799 -2.9884 2.0748 -3.3374 C 13.3103 21.2635 19.4123 19.859 27.5014 19.859 c 0.032 0 0.064 0 0.096 0 c 6.8209 0.0097 16.7025 1.0471 25.0447 5.9448 C 53.9659 26.5825 54.4095 28.2874 53.6321 29.6112 z" />
6
- </svg>
@@ -1 +0,0 @@
1
- <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="user" class="svg-inline--fa fa-user fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>