tf-checkout-react 1.0.99-beta.6 → 1.0.99

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 (98) hide show
  1. package/dist/api/index.d.ts +26 -26
  2. package/dist/components/billing-info-container/index.d.ts +5 -3
  3. package/dist/components/common/Loader.d.ts +2 -0
  4. package/dist/components/common/RadioField.d.ts +11 -0
  5. package/dist/components/common/index.d.ts +5 -0
  6. package/dist/components/confirmModal/index.d.ts +9 -0
  7. package/dist/components/countdown/index.d.ts +1 -2
  8. package/dist/components/index.d.ts +1 -0
  9. package/dist/components/orderDetailsContainer/ticketsTable.d.ts +9 -2
  10. package/dist/components/ticketResale/index.d.ts +8 -0
  11. package/dist/components/ticketResaleModal/index.d.ts +18 -0
  12. package/dist/components/ticketsContainer/PromoCodeSection.d.ts +2 -1
  13. package/dist/components/ticketsContainer/index.d.ts +2 -4
  14. package/dist/images/done.svg +3 -3
  15. package/dist/images/email.svg +1 -0
  16. package/dist/images/user.svg +1 -0
  17. package/dist/index.d.ts +1 -0
  18. package/dist/tf-checkout-react.cjs.development.js +831 -579
  19. package/dist/tf-checkout-react.cjs.development.js.map +1 -1
  20. package/dist/tf-checkout-react.cjs.production.min.js +1 -1
  21. package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
  22. package/dist/tf-checkout-react.esm.js +840 -589
  23. package/dist/tf-checkout-react.esm.js.map +1 -1
  24. package/dist/tf-checkout-styles.css +1 -1
  25. package/dist/utils/createCheckoutDataBodyWithDefaultHolder.d.ts +1 -6
  26. package/dist/utils/downloadPDF.d.ts +1 -1
  27. package/dist/utils/index.d.ts +0 -1
  28. package/package.json +89 -88
  29. package/src/.d.ts +2 -2
  30. package/src/api/index.ts +278 -278
  31. package/src/assets/images/done.svg +3 -3
  32. package/src/assets/images/email.svg +1 -0
  33. package/src/assets/images/user.svg +1 -0
  34. package/src/components/billing-info-container/index.tsx +777 -782
  35. package/src/components/billing-info-container/style.css +105 -105
  36. package/src/components/billing-info-container/utils.ts +223 -231
  37. package/src/components/common/CheckboxField.tsx +41 -41
  38. package/src/components/common/CustomField.tsx +84 -87
  39. package/src/components/common/FormikPhoneNumberField.tsx +51 -51
  40. package/src/components/common/Loader.tsx +10 -0
  41. package/src/components/common/RadioField.tsx +35 -0
  42. package/src/components/common/SelectField.tsx +80 -80
  43. package/src/components/common/index.tsx +5 -0
  44. package/src/components/confirmModal/index.tsx +51 -0
  45. package/src/components/confirmModal/style.css +21 -0
  46. package/src/components/confirmationContainer/config.ts +72 -72
  47. package/src/components/confirmationContainer/index.tsx +194 -194
  48. package/src/components/confirmationContainer/social-buttons.tsx +94 -94
  49. package/src/components/confirmationContainer/style.css +202 -202
  50. package/src/components/countdown/index.tsx +89 -91
  51. package/src/components/countdown/style.css +9 -9
  52. package/src/components/index.ts +7 -6
  53. package/src/components/loginModal/index.tsx +209 -171
  54. package/src/components/loginModal/style.css +71 -71
  55. package/src/components/myTicketsContainer/index.tsx +137 -137
  56. package/src/components/myTicketsContainer/row.tsx +41 -41
  57. package/src/components/myTicketsContainer/style.css +39 -39
  58. package/src/components/myTicketsContainer/tableConfig.tsx +34 -34
  59. package/src/components/orderDetailsContainer/index.tsx +249 -154
  60. package/src/components/orderDetailsContainer/style.css +72 -71
  61. package/src/components/orderDetailsContainer/ticketsTable.tsx +124 -115
  62. package/src/components/paymentContainer/index.tsx +284 -290
  63. package/src/components/registerModal/index.tsx +190 -183
  64. package/src/components/stripePayment/index.tsx +253 -253
  65. package/src/components/stripePayment/style.css +59 -59
  66. package/src/components/ticketResale/index.tsx +56 -0
  67. package/src/components/ticketResaleModal/index.tsx +210 -0
  68. package/src/components/ticketResaleModal/style.css +28 -0
  69. package/src/components/ticketsContainer/PromoCodeSection.tsx +99 -96
  70. package/src/components/ticketsContainer/ReferralLogic.tsx +33 -33
  71. package/src/components/ticketsContainer/TicketRow.tsx +83 -89
  72. package/src/components/ticketsContainer/TicketsSection.tsx +81 -81
  73. package/src/components/ticketsContainer/index.tsx +409 -438
  74. package/src/components/ticketsContainer/style.css +181 -181
  75. package/src/components/ticketsContainer/utils.ts +11 -11
  76. package/src/components/timerWidget/index.tsx +70 -70
  77. package/src/components/timerWidget/style.css +26 -26
  78. package/src/components/waitingList/index.tsx +178 -178
  79. package/src/components/waitingList/style.css +26 -26
  80. package/src/env.ts +19 -19
  81. package/src/index.ts +13 -12
  82. package/src/normalizers/index.ts +45 -45
  83. package/src/types/billing-info-data.ts +37 -37
  84. package/src/types/payment-field.ts +7 -7
  85. package/src/types/referral-promotion.ts +7 -7
  86. package/src/utils/createCheckoutDataBodyWithDefaultHolder.ts +59 -71
  87. package/src/utils/downloadPDF.tsx +30 -52
  88. package/src/utils/formikErrorFocus.ts +24 -24
  89. package/src/utils/getImage.ts +14 -14
  90. package/src/utils/getQueryVariable.ts +13 -13
  91. package/src/utils/index.ts +5 -6
  92. package/src/utils/setConfigs.ts +26 -26
  93. package/src/utils/showZero.tsx +10 -10
  94. package/src/validators/index.ts +20 -20
  95. package/dist/components/common/SnackbarAlert.d.ts +0 -13
  96. package/dist/utils/cookies.d.ts +0 -3
  97. package/src/components/common/SnackbarAlert.tsx +0 -54
  98. package/src/utils/cookies.ts +0 -33
@@ -1,4 +1,4 @@
1
- import { AxiosInstance, AxiosResponse } from 'axios';
1
+ import { AxiosInstance } from 'axios';
2
2
  interface IPublicRequest extends AxiosInstance {
3
3
  setGuestToken: (token: string) => void;
4
4
  setAccessToken: (token: string) => void;
@@ -7,29 +7,29 @@ interface IPublicRequest extends AxiosInstance {
7
7
  export declare const publicRequest: IPublicRequest;
8
8
  export declare const setXSourceOrigin: (sourceOrigin: string) => void;
9
9
  export declare const setCustomHeader: (response: any) => void;
10
- export declare function getEvent(id: string | number): Promise<AxiosResponse<any, any>>;
11
- export declare function getTickets(id: string | number, promoCode: string): Promise<AxiosResponse<any, any>>;
12
- export declare const addToCart: (id: string | number, data: any) => Promise<AxiosResponse<any, any>>;
13
- export declare const getCart: () => Promise<AxiosResponse<any, any>>;
14
- export declare const postOnCheckout: (data: any, accessToken?: string | undefined) => Promise<AxiosResponse<any, any>>;
15
- export declare const authorize: (data: {
16
- email: string;
17
- password: string;
18
- }) => Promise<AxiosResponse<any, any>>;
19
- export declare const register: (data: FormData) => Promise<AxiosResponse<any, any>>;
20
- export declare const getAccessToken: (data: FormData) => Promise<AxiosResponse<any, any>>;
21
- export declare const getPaymentData: (hash: string) => Promise<AxiosResponse<any, any>>;
22
- export declare const handlePaymentData: (orderHash: string, data: any) => Promise<AxiosResponse<any, any>>;
23
- export declare const handlePaymentSuccess: (orderHash: string) => Promise<AxiosResponse<any, any>>;
24
- export declare const handleFreeSuccess: (orderHash: string) => Promise<AxiosResponse<any, any>>;
25
- export declare const getProfileData: (accessToken?: string | undefined) => Promise<any>;
26
- export declare const getCountries: () => Promise<AxiosResponse<any, any>>;
27
- export declare const getConfirmationData: (orderHash: string) => Promise<AxiosResponse<any, any>>;
28
- export declare const getStates: (countryId: string) => Promise<AxiosResponse<any, any>>;
29
- export declare const getOrders: (page: number, limit: number, eventSlug: string) => Promise<AxiosResponse<any, any>>;
30
- export declare const getOrderDetails: (orderId: string) => Promise<AxiosResponse<any, any>>;
31
- export declare const addToWaitingList: (id: number, data: any) => Promise<AxiosResponse<any, any>>;
32
- export declare const getConditions: (eventId: string) => Promise<AxiosResponse<any, any>>;
33
- export declare const postReferralVisits: (eventId: string, referralId: string) => Promise<AxiosResponse<any, any>>;
34
- export declare const logout: () => void;
10
+ export declare const handleSetAccessToken: (token: any) => void;
11
+ export declare function getEvent(id: string | number): Promise<import("axios").AxiosResponse<any, any>>;
12
+ export declare function getTickets(id: string | number, promoCode: string): Promise<import("axios").AxiosResponse<any, any>>;
13
+ export declare const addToCart: (id: string | number, data: any) => Promise<import("axios").AxiosResponse<any, any>>;
14
+ export declare const getCart: () => Promise<import("axios").AxiosResponse<any, any>>;
15
+ export declare const postOnCheckout: (data: any, accessToken: string) => Promise<import("axios").AxiosResponse<any, any>>;
16
+ export declare const authorize: (data: FormData) => Promise<import("axios").AxiosResponse<any, any>>;
17
+ export declare const register: (data: FormData) => Promise<import("axios").AxiosResponse<any, any>>;
18
+ export declare const getAccessToken: (data: FormData) => Promise<import("axios").AxiosResponse<any, any>>;
19
+ export declare const getPaymentData: (hash: string) => Promise<import("axios").AxiosResponse<any, any>>;
20
+ export declare const handlePaymentData: (orderHash: string, data: any) => Promise<import("axios").AxiosResponse<any, any>>;
21
+ export declare const handlePaymentSuccess: (orderHash: string) => Promise<import("axios").AxiosResponse<any, any>>;
22
+ export declare const handleFreeSuccess: (orderHash: string) => Promise<import("axios").AxiosResponse<any, any>>;
23
+ export declare const getProfileData: (accessToken: any) => Promise<any>;
24
+ export declare const getCountries: () => Promise<import("axios").AxiosResponse<any, any>>;
25
+ export declare const getConfirmationData: (orderHash: string) => Promise<import("axios").AxiosResponse<any, any>>;
26
+ export declare const getStates: (countryId: string) => Promise<import("axios").AxiosResponse<any, any>>;
27
+ export declare const getOrders: (page: number, limit: number, eventSlug: string) => Promise<import("axios").AxiosResponse<any, any>>;
28
+ export declare const getOrderDetails: (orderId: string) => Promise<import("axios").AxiosResponse<any, any>>;
29
+ export declare const addToWaitingList: (id: number, data: any) => Promise<import("axios").AxiosResponse<any, any>>;
30
+ export declare const getConditions: (eventId: string) => Promise<import("axios").AxiosResponse<any, any>>;
31
+ export declare const resaleTicket: (data: any, hash: string) => Promise<import("axios").AxiosResponse<any, any>>;
32
+ export declare const removeFromResale: (hash: string) => Promise<import("axios").AxiosResponse<any, any>>;
33
+ export declare const postReferralVisits: (eventId: string, referralId: string) => Promise<import("axios").AxiosResponse<any, any>>;
34
+ export declare const checkTicketStatus: (hash: string) => Promise<import("axios").AxiosResponse<any, any>>;
35
35
  export {};
@@ -9,7 +9,10 @@ export interface IBillingInfoPage {
9
9
  data?: IBillingInfoData[];
10
10
  ticketHoldersFields?: IBillingInfoData;
11
11
  handleSubmit?: (values: FormikValues, formikHelpers: FormikHelpers<FormikValues>, eventId: any, res: any) => void;
12
- onRegisterSuccess?: (value: any) => void;
12
+ onRegisterSuccess?: (value: {
13
+ accessToken: string;
14
+ refreshToken: string;
15
+ }) => void;
13
16
  onRegisterError?: (e: AxiosError, email: string) => void;
14
17
  onSubmitError?: (e: AxiosError) => void;
15
18
  onGetCartSuccess?: (res: any) => void;
@@ -39,6 +42,5 @@ export interface IBillingInfoPage {
39
42
  onSkipBillingPage: (data: any) => void;
40
43
  skipPage?: boolean;
41
44
  canSkipHolderNames?: boolean;
42
- shouldFetchCountries?: boolean;
43
45
  }
44
- export declare const BillingInfoContainer: ({ data, ticketHoldersFields, initialValues, buttonName, handleSubmit, theme, onRegisterSuccess, onRegisterError, onSubmitError, onGetCartSuccess, onGetCartError, onGetCountriesSuccess, onGetCountriesError, onGetStatesSuccess, onGetStatesError, onGetProfileDataSuccess, onGetProfileDataError, onAuthorizeSuccess, onAuthorizeError, onLogin, onLoginSuccess, isLoggedIn: pIsLoggedIn, accountInfoTitle, hideLogo, themeOptions, onErrorClose, hideErrorsAlertSection, onSkipBillingPage, skipPage, canSkipHolderNames, shouldFetchCountries, }: IBillingInfoPage) => JSX.Element;
46
+ export declare const BillingInfoContainer: ({ data, ticketHoldersFields, initialValues, buttonName, handleSubmit, theme, onRegisterSuccess, onRegisterError, onSubmitError, onGetCartSuccess, onGetCartError, onGetCountriesSuccess, onGetCountriesError, onGetStatesSuccess, onGetStatesError, onGetProfileDataSuccess, onGetProfileDataError, onAuthorizeSuccess, onAuthorizeError, onLogin, onLoginSuccess, isLoggedIn: pIsLoggedIn, accountInfoTitle, hideLogo, themeOptions, onErrorClose, hideErrorsAlertSection, onSkipBillingPage, skipPage, canSkipHolderNames }: IBillingInfoPage) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function Loader(): JSX.Element;
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import { FieldInputProps } from 'formik';
3
+ export interface IRadioField {
4
+ label: string | number | JSX.Element;
5
+ field?: FieldInputProps<any>;
6
+ }
7
+ interface IOtherProps {
8
+ [key: string]: any;
9
+ }
10
+ export declare const RadioField: ({ label, field, theme, ...rest }: IRadioField & IOtherProps) => JSX.Element;
11
+ export {};
@@ -0,0 +1,5 @@
1
+ export { CheckboxField } from './CheckboxField';
2
+ export { CustomField } from './CustomField';
3
+ export { FormikPhoneNumberField } from './FormikPhoneNumberField';
4
+ export { Loader } from './Loader';
5
+ export { SelectField } from './SelectField';
@@ -0,0 +1,9 @@
1
+ import { FC } from 'react';
2
+ import './style.css';
3
+ interface Props {
4
+ message: string;
5
+ onClose: () => void;
6
+ onConfirm: () => void;
7
+ }
8
+ declare const ConfirmModal: FC<Props>;
9
+ export default ConfirmModal;
@@ -5,8 +5,7 @@ interface CountdownTypes {
5
5
  timezone?: string;
6
6
  title?: string;
7
7
  message?: string;
8
- showMessage?: boolean;
9
8
  callback?: () => void;
10
9
  }
11
- declare function Countdown({ startDate, timezone, title, message, showMessage, callback }: CountdownTypes): JSX.Element;
10
+ declare function Countdown({ startDate, timezone, title, message, callback }: CountdownTypes): JSX.Element;
12
11
  export default Countdown;
@@ -4,3 +4,4 @@ export { PaymentContainer } from './paymentContainer';
4
4
  export { TicketsContainer } from './ticketsContainer';
5
5
  export { MyTicketsContainer } from './myTicketsContainer';
6
6
  export { OrderDetailsContainer } from './orderDetailsContainer';
7
+ export { TicketResaleContainer } from './ticketResale';
@@ -3,16 +3,23 @@ interface IAddOnTypes {
3
3
  name: string;
4
4
  status: string;
5
5
  }
6
- interface ITicketTypes {
6
+ export interface ITicketTypes {
7
7
  add_ons?: IAddOnTypes[];
8
8
  hash: string;
9
9
  ticket_type: string;
10
10
  holder_name: string;
11
11
  status: string;
12
12
  pdf_link: string;
13
+ is_sellable: boolean;
14
+ is_on_sale?: boolean;
15
+ event_name: string;
16
+ currency: string;
17
+ resale_fee_amount: number | string;
13
18
  }
14
19
  interface TicketsTableTypes {
15
20
  tickets: ITicketTypes[];
21
+ handleSellTicket: (ticket: ITicketTypes) => void;
22
+ handleRemoveFromResale: (ticket: ITicketTypes) => void;
16
23
  }
17
- declare const TicketsTable: ({ tickets }: TicketsTableTypes) => JSX.Element;
24
+ declare const TicketsTable: ({ tickets, handleSellTicket, handleRemoveFromResale }: TicketsTableTypes) => JSX.Element;
18
25
  export default TicketsTable;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { AxiosError } from 'axios';
3
+ export interface ITicketResaleContainer {
4
+ onCheckTicketStatusSuccess: (res: any) => void;
5
+ onCheckTicketStatusError: (e: AxiosError) => void;
6
+ orderHash?: string;
7
+ }
8
+ export declare const TicketResaleContainer: ({ onCheckTicketStatusSuccess, onCheckTicketStatusError, orderHash, }: ITicketResaleContainer) => JSX.Element;
@@ -0,0 +1,18 @@
1
+ /// <reference types="react" />
2
+ import { ITicketTypes } from '../orderDetailsContainer/ticketsTable';
3
+ import './style.css';
4
+ interface Props {
5
+ ticket: ITicketTypes;
6
+ onClose: () => void;
7
+ onSubmit: (values: InitialValuesTypes) => void;
8
+ }
9
+ export interface InitialValuesTypes {
10
+ to: string;
11
+ first_name: string;
12
+ last_name: string;
13
+ email: string;
14
+ confirm_email: string;
15
+ confirm: boolean;
16
+ }
17
+ export declare const TicketResaleModal: ({ ticket, onClose, onSubmit, }: Props) => JSX.Element;
18
+ export {};
@@ -6,8 +6,9 @@ export interface IPromoCodeSectionProps {
6
6
  isPromotionsEnabled: boolean;
7
7
  isAllTicketsSoldOut: boolean;
8
8
  isAccessCodeEnabled?: boolean;
9
+ isPromoLoading?: boolean;
9
10
  setPromoCode: (value: string) => void;
10
11
  setPromoCodeUpdated: (value: string) => void;
11
12
  setShowPromoInput: (value: boolean) => void;
12
13
  }
13
- export declare const PromoCodeSection: ({ promoCode, promoCodeIsApplied, showPromoInput, isPromotionsEnabled, setPromoCode, setPromoCodeUpdated, setShowPromoInput, isAccessCodeEnabled, }: IPromoCodeSectionProps) => JSX.Element;
14
+ export declare const PromoCodeSection: ({ promoCode, promoCodeIsApplied, showPromoInput, isPromotionsEnabled, setPromoCode, setPromoCodeUpdated, setShowPromoInput, isAccessCodeEnabled, isPromoLoading, }: IPromoCodeSectionProps) => JSX.Element;
@@ -7,6 +7,7 @@ interface CartSuccess {
7
7
  skip_billing_page: boolean;
8
8
  names_required: boolean;
9
9
  age_required: boolean;
10
+ phone_required: boolean;
10
11
  event_id: string;
11
12
  hash?: string;
12
13
  }
@@ -18,8 +19,6 @@ export interface IGetTickets {
18
19
  onAddToCartError: (e: AxiosError) => void;
19
20
  onGetTicketsSuccess: (response: any) => void;
20
21
  onGetTicketsError: (e: AxiosError) => void;
21
- onLogoutSuccess: () => void;
22
- onLogoutError: (e: AxiosError) => void;
23
22
  onLoginSuccess: () => void;
24
23
  theme?: 'light' | 'dark';
25
24
  queryPromoCode?: string;
@@ -31,7 +30,6 @@ export interface IGetTickets {
31
30
  isAccessCodeEnabled?: boolean;
32
31
  hideSessionButtons?: boolean;
33
32
  hideWaitingList?: boolean;
34
- enableBillingInfoAutoCreate?: boolean;
35
33
  }
36
34
  export interface ITicket {
37
35
  id: string | number;
@@ -40,5 +38,5 @@ export interface ITicket {
40
38
  export interface ISelectedTickets {
41
39
  [key: string]: string | number;
42
40
  }
43
- export declare const TicketsContainer: ({ onLoginSuccess, getTicketsLabel, eventId, onAddToCartSuccess, contentStyle, onAddToCartError, onGetTicketsSuccess, onGetTicketsError, onLogoutSuccess, onLogoutError, theme, queryPromoCode, isPromotionsEnabled, themeOptions, isAccessCodeEnabled, hideSessionButtons, hideWaitingList, enableBillingInfoAutoCreate, }: IGetTickets) => JSX.Element;
41
+ export declare const TicketsContainer: ({ onLoginSuccess, getTicketsLabel, eventId, onAddToCartSuccess, contentStyle, onAddToCartError, onGetTicketsSuccess, onGetTicketsError, theme, queryPromoCode, isPromotionsEnabled, themeOptions, isAccessCodeEnabled, hideSessionButtons, hideWaitingList }: IGetTickets) => JSX.Element;
44
42
  export {};
@@ -1,3 +1,3 @@
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
+ <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>
@@ -0,0 +1 @@
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>
@@ -0,0 +1 @@
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>
package/dist/index.d.ts CHANGED
@@ -7,3 +7,4 @@ export { LoginModal } from './components/loginModal';
7
7
  export { MyTicketsContainer } from './components/myTicketsContainer';
8
8
  export { OrderDetailsContainer } from './components/orderDetailsContainer';
9
9
  export { setConfigs } from './utils/setConfigs';
10
+ export { TicketResaleContainer } from './components';