tf-checkout-react 1.4.23-beta.1 → 1.4.23-beta.10

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 (99) hide show
  1. package/dist/api/auth.d.ts +5 -0
  2. package/dist/api/cart.d.ts +2 -0
  3. package/dist/api/checkout.d.ts +1 -0
  4. package/dist/api/common.d.ts +10 -0
  5. package/dist/api/index.d.ts +12 -32
  6. package/dist/api/interceptors.d.ts +1 -0
  7. package/dist/api/orders.d.ts +2 -0
  8. package/dist/api/payment.d.ts +5 -0
  9. package/dist/api/publicRequest.d.ts +10 -0
  10. package/dist/api/resale.d.ts +5 -0
  11. package/dist/components/billing-info-container/utils.d.ts +0 -28
  12. package/dist/components/common/CheckboxField.d.ts +1 -1
  13. package/dist/components/confirmationContainer/index.d.ts +1 -1
  14. package/dist/components/loginForm/index.d.ts +6 -22
  15. package/dist/components/loginModal/index.d.ts +15 -5
  16. package/dist/components/preRegistration/index.d.ts +4 -2
  17. package/dist/components/seatMapContainer/addToCart.d.ts +2 -2
  18. package/dist/components/seatMapContainer/utils.d.ts +1 -9
  19. package/dist/components/stripePayment/index.d.ts +1 -1
  20. package/dist/components/ticketsContainer/index.d.ts +2 -2
  21. package/dist/components/ticketsContainer/utils.d.ts +9 -0
  22. package/dist/components/waitingList/index.d.ts +1 -1
  23. package/dist/hooks/useLocalStorageListener.d.ts +1 -0
  24. package/dist/hooks/useOnline.d.ts +1 -0
  25. package/dist/tf-checkout-react.cjs.development.js +2532 -1818
  26. package/dist/tf-checkout-react.cjs.development.js.map +1 -1
  27. package/dist/tf-checkout-react.cjs.production.min.js +1 -1
  28. package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
  29. package/dist/tf-checkout-react.esm.js +2534 -1820
  30. package/dist/tf-checkout-react.esm.js.map +1 -1
  31. package/dist/types/order-data.d.ts +5 -5
  32. package/dist/utils/auth.d.ts +5 -5
  33. package/dist/utils/setConfigs.d.ts +0 -12
  34. package/package.json +1 -1
  35. package/src/api/auth.ts +44 -0
  36. package/src/api/cart.ts +28 -0
  37. package/src/api/checkout.ts +30 -0
  38. package/src/api/common.ts +129 -0
  39. package/src/api/guestTicketDelegation.ts +1 -1
  40. package/src/api/index.ts +83 -363
  41. package/src/api/interceptors.ts +104 -0
  42. package/src/api/orders.ts +30 -0
  43. package/src/api/payment.ts +77 -0
  44. package/src/api/preRegistrationComplete.ts +1 -1
  45. package/src/api/publicRequest.ts +40 -0
  46. package/src/api/resale.ts +28 -0
  47. package/src/components/addonsContainer/adapters/index.tsx +2 -4
  48. package/src/components/addonsContainer/index.tsx +23 -57
  49. package/src/components/billing-info-container/index.tsx +144 -214
  50. package/src/components/billing-info-container/utils.ts +9 -59
  51. package/src/components/common/CheckboxField.tsx +3 -4
  52. package/src/components/common/CustomField.tsx +1 -5
  53. package/src/components/common/NativeSelectFeild/index.tsx +1 -5
  54. package/src/components/common/socials.tsx +1 -1
  55. package/src/components/confirmationContainer/index.tsx +14 -12
  56. package/src/components/confirmationContainer/social-buttons.tsx +1 -1
  57. package/src/components/idVerificationContainer/index.tsx +7 -19
  58. package/src/components/loginForm/index.tsx +28 -41
  59. package/src/components/loginModal/index.tsx +161 -39
  60. package/src/components/myTicketsContainer/index.tsx +1 -1
  61. package/src/components/orderDetailsContainer/index.tsx +3 -3
  62. package/src/components/paymentContainer/index.tsx +23 -16
  63. package/src/components/preRegistration/Influancers.tsx +17 -14
  64. package/src/components/preRegistration/PreRegistrationComplete.tsx +23 -14
  65. package/src/components/preRegistration/PreRegistrationInformations.tsx +15 -6
  66. package/src/components/preRegistration/Prewards.tsx +15 -12
  67. package/src/components/preRegistration/ShareOptions.tsx +37 -23
  68. package/src/components/preRegistration/constants.tsx +10 -4
  69. package/src/components/preRegistration/index.tsx +50 -26
  70. package/src/components/registerForm/index.tsx +3 -6
  71. package/src/components/registerModal/index.tsx +4 -14
  72. package/src/components/rsvpContainer/index.tsx +18 -18
  73. package/src/components/seatMapContainer/addToCart.ts +9 -12
  74. package/src/components/seatMapContainer/index.tsx +74 -52
  75. package/src/components/seatMapContainer/utils.ts +3 -8
  76. package/src/components/signupModal/index.tsx +9 -30
  77. package/src/components/stripePayment/index.tsx +5 -2
  78. package/src/components/ticketResale/index.tsx +7 -6
  79. package/src/components/ticketsContainer/ReferralLogic.tsx +1 -1
  80. package/src/components/ticketsContainer/TicketRow.tsx +12 -5
  81. package/src/components/ticketsContainer/index.tsx +42 -29
  82. package/src/components/ticketsContainer/utils.ts +29 -5
  83. package/src/components/timerWidget/index.tsx +7 -11
  84. package/src/components/waitingList/index.tsx +18 -30
  85. package/src/hooks/useLocalStorageListener.ts +27 -0
  86. package/src/hooks/useOnline.ts +21 -0
  87. package/src/types/api/auth.d.ts +20 -12
  88. package/src/types/api/axiosResponse.d.ts +5 -5
  89. package/src/types/api/cart.d.ts +65 -0
  90. package/src/types/api/checkout.d.ts +41 -0
  91. package/src/types/api/common.d.ts +117 -0
  92. package/src/types/api/orders.d.ts +100 -0
  93. package/src/types/api/payment.d.ts +168 -0
  94. package/src/types/api/ticketResale.d.ts +13 -0
  95. package/src/types/order-data.ts +5 -5
  96. package/src/types/pre-registration-complete.d.ts +8 -5
  97. package/src/utils/auth.ts +3 -3
  98. package/src/utils/setConfigs.ts +2 -25
  99. package/src/types/auth.d.ts +0 -15

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.