tf-checkout-react 1.4.26 → 1.5.0

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 (76) hide show
  1. package/dist/api/index.d.ts +1 -0
  2. package/dist/api/preRegistrationComplete.d.ts +3 -0
  3. package/dist/components/billing-info-container/index.d.ts +1 -3
  4. package/dist/components/common/CopyField.d.ts +12 -0
  5. package/dist/components/common/CopyMessageModal.d.ts +7 -0
  6. package/dist/components/common/index.d.ts +1 -0
  7. package/dist/components/common/socials.d.ts +10 -0
  8. package/dist/components/confirmationContainer/index.d.ts +7 -7
  9. package/dist/components/confirmationContainer/social-buttons.d.ts +5 -2
  10. package/dist/components/forgotPasswordModal/index.d.ts +2 -3
  11. package/dist/components/loginForm/index.d.ts +1 -0
  12. package/dist/components/loginModal/index.d.ts +2 -3
  13. package/dist/components/preRegistration/FieldsSection.d.ts +13 -0
  14. package/dist/components/preRegistration/Influancers.d.ts +2 -0
  15. package/dist/components/preRegistration/PreRegistrationComplete.d.ts +5 -0
  16. package/dist/components/preRegistration/PreRegistrationInformations.d.ts +2 -0
  17. package/dist/components/preRegistration/Prewards.d.ts +2 -0
  18. package/dist/components/preRegistration/ShareOptions.d.ts +2 -0
  19. package/dist/components/preRegistration/constants.d.ts +2 -0
  20. package/dist/components/preRegistration/index.d.ts +17 -0
  21. package/dist/components/preRegistration/utils.d.ts +12 -0
  22. package/dist/components/ticketsContainer/TicketRow.d.ts +3 -2
  23. package/dist/components/ticketsContainer/utils.d.ts +9 -0
  24. package/dist/hooks/index.d.ts +1 -0
  25. package/dist/hooks/useEventListener.d.ts +1 -0
  26. package/dist/hooks/useLocalStorageListener.d.ts +1 -0
  27. package/dist/images/instagram.svg +5 -0
  28. package/dist/images/spotify.svg +6 -0
  29. package/dist/index.d.ts +4 -1
  30. package/dist/tf-checkout-react.cjs.development.js +1508 -157
  31. package/dist/tf-checkout-react.cjs.development.js.map +1 -1
  32. package/dist/tf-checkout-react.cjs.production.min.js +1 -1
  33. package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
  34. package/dist/tf-checkout-react.esm.js +1509 -157
  35. package/dist/tf-checkout-react.esm.js.map +1 -1
  36. package/dist/utils/isValidNumber.d.ts +1 -0
  37. package/package.json +1 -1
  38. package/src/api/index.ts +28 -0
  39. package/src/api/preRegistrationComplete.ts +37 -0
  40. package/src/assets/images/instagram.svg +5 -0
  41. package/src/assets/images/spotify.svg +6 -0
  42. package/src/components/billing-info-container/index.tsx +1 -7
  43. package/src/components/common/CopyField.tsx +53 -0
  44. package/src/components/common/CopyMessageModal.tsx +34 -0
  45. package/src/components/common/NativeSelectFeild/index.tsx +1 -1
  46. package/src/components/common/index.tsx +1 -0
  47. package/src/components/common/socials.tsx +33 -0
  48. package/src/components/confirmationContainer/config.ts +62 -55
  49. package/src/components/confirmationContainer/index.tsx +11 -31
  50. package/src/components/confirmationContainer/social-buttons.tsx +43 -20
  51. package/src/components/forgotPasswordModal/index.tsx +4 -4
  52. package/src/components/loginForm/index.tsx +4 -0
  53. package/src/components/loginModal/index.tsx +5 -4
  54. package/src/components/preRegistration/FieldsSection.tsx +142 -0
  55. package/src/components/preRegistration/Influancers.tsx +34 -0
  56. package/src/components/preRegistration/PreRegistrationComplete.tsx +164 -0
  57. package/src/components/preRegistration/PreRegistrationInformations.tsx +54 -0
  58. package/src/components/preRegistration/Prewards.tsx +41 -0
  59. package/src/components/preRegistration/ShareOptions.tsx +77 -0
  60. package/src/components/preRegistration/constants.tsx +161 -0
  61. package/src/components/preRegistration/index.tsx +274 -0
  62. package/src/components/preRegistration/utils.ts +155 -0
  63. package/src/components/ticketsContainer/ReferralLogic.tsx +1 -1
  64. package/src/components/ticketsContainer/TicketRow.tsx +17 -14
  65. package/src/components/ticketsContainer/TicketsSection.tsx +2 -0
  66. package/src/components/ticketsContainer/index.tsx +77 -8
  67. package/src/components/ticketsContainer/utils.ts +30 -6
  68. package/src/hooks/index.ts +1 -0
  69. package/src/hooks/useEventListener.ts +32 -0
  70. package/src/hooks/useLocalStorageListener.ts +27 -0
  71. package/src/index.ts +6 -2
  72. package/src/types/api/preRegistration.d.ts +11 -0
  73. package/src/types/api/preRegistrationComplete.d.ts +95 -0
  74. package/src/types/pre-registration-complete.d.ts +42 -0
  75. package/src/utils/cookies.ts +7 -7
  76. package/src/utils/isValidNumber.ts +8 -0
@@ -58,6 +58,7 @@ export interface ResponseConfigs {
58
58
  status: number;
59
59
  }
60
60
  export declare const getCheckoutPageConfigs: () => Promise<ResponseConfigs>;
61
+ export declare const confirmPreRegistration: (eventId: string | number, data: IConfirmPreRegistrationRequestData) => Promise<any>;
61
62
  export declare const getSeatMapData: (eventId: string | number) => Promise<SeatMapDataResponse>;
62
63
  export declare const getSeatMapStatuses: (eventId: string | number) => Promise<SeatMapStatusesResponse>;
63
64
  export declare const reserveSeat: (eventId: string | number, tierId: string, seatId: string) => Promise<any>;
@@ -0,0 +1,3 @@
1
+ export declare const getPreRegistrationInfluancers: (data: IInfluancersRequestData) => Promise<IInfluancersResponseData>;
2
+ export declare const getPreRegistrationShareOptions: (data: IShareOptionsRequestData) => Promise<IShareOptionsResponseData>;
3
+ export declare const submitShareAction: (data: ISubmitShareActionRequestData) => Promise<ISubmitShareActionResponseData>;
@@ -20,8 +20,6 @@ export interface IBillingInfoPage {
20
20
  onGetStatesError?: (e: AxiosError) => void;
21
21
  onGetProfileDataSuccess?: (res: any) => void;
22
22
  onGetProfileDataError?: (e: AxiosError) => void;
23
- onAuthorizeSuccess?: () => void;
24
- onAuthorizeError?: (e: AxiosError) => void;
25
23
  onLogin?: () => void;
26
24
  onLoginSuccess?: () => void;
27
25
  onErrorClose?: () => void;
@@ -52,4 +50,4 @@ export interface IBillingInfoPage {
52
50
  isCountryCodeEditable?: boolean;
53
51
  onPendingVerification?: () => void;
54
52
  }
55
- export declare const BillingInfoContainer: React.MemoExoticComponent<({ 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, onForgotPasswordSuccess, onForgotPasswordError, shouldFetchCountries, onCountdownFinish, enableTimer, logo, showForgotPasswordButton, showSignUpButton, brandOptIn, showPoweredByImage, isCountryCodeEditable, onPendingVerification, }: IBillingInfoPage) => JSX.Element>;
53
+ export declare const BillingInfoContainer: React.MemoExoticComponent<({ data, ticketHoldersFields, initialValues, buttonName, handleSubmit, theme, onRegisterSuccess, onRegisterError, onSubmitError, onGetCartSuccess, onGetCartError, onGetCountriesSuccess, onGetCountriesError, onGetStatesSuccess, onGetStatesError, onGetProfileDataSuccess, onGetProfileDataError, onLogin, onLoginSuccess, isLoggedIn: pIsLoggedIn, accountInfoTitle, hideLogo, themeOptions, onErrorClose, hideErrorsAlertSection, onSkipBillingPage, skipPage, canSkipHolderNames, onForgotPasswordSuccess, onForgotPasswordError, shouldFetchCountries, onCountdownFinish, enableTimer, logo, showForgotPasswordButton, showSignUpButton, brandOptIn, showPoweredByImage, isCountryCodeEditable, onPendingVerification, }: IBillingInfoPage) => JSX.Element>;
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ interface ICopyFieldProps {
3
+ copyValue: string;
4
+ onLinkCopied?: () => void;
5
+ copyIconSrc?: string;
6
+ copyTitle?: string;
7
+ hasCopyIcon: boolean;
8
+ classNamePrefix?: string;
9
+ messageText?: string;
10
+ }
11
+ export declare const CopyField: (props: ICopyFieldProps) => JSX.Element;
12
+ export {};
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ interface ICopyMessageModalProps {
3
+ showCopyModal: boolean;
4
+ onClose: () => void;
5
+ }
6
+ export declare const CopyMessageModal: (props: ICopyMessageModalProps) => JSX.Element;
7
+ export {};
@@ -4,6 +4,7 @@ export { FormikPhoneNumberField } from './FormikPhoneNumberField';
4
4
  export { PhoneNumberField } from './PhoneNumberField';
5
5
  export { Loader } from './Loader';
6
6
  export { SelectField } from './SelectField';
7
+ export { CopyMessageModal } from './CopyMessageModal';
7
8
  export { DatePickerField } from './DatePickerField';
8
9
  export { NativeSelectField } from './NativeSelectFeild';
9
10
  export { RadioGroupField } from './RadioGroupField';
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ interface IShareButtonProps {
3
+ url: string;
4
+ disabled: boolean;
5
+ children: Node;
6
+ }
7
+ export declare const SpotifyIcon: () => JSX.Element;
8
+ export declare const InstagramIcon: () => JSX.Element;
9
+ export declare const SocialButton: (props: IShareButtonProps) => JSX.Element;
10
+ export {};
@@ -1,16 +1,16 @@
1
- /// <reference types="react" />
2
1
  import './style.css';
3
2
  import { AxiosError } from 'axios';
3
+ import { SyntheticEvent } from 'react';
4
4
  export interface IShareButton {
5
5
  mainLabel: string;
6
6
  subLabel: string;
7
7
  platform: string;
8
- shareData: {
9
- quote?: string;
10
- url?: string;
11
- title?: string;
12
- appId?: string;
13
- };
8
+ shareData: any;
9
+ points?: number | string;
10
+ onAfterShare?: (event: SyntheticEvent) => void;
11
+ eventActionId?: string;
12
+ oneTimeAction?: boolean;
13
+ alreadyApplied?: boolean;
14
14
  }
15
15
  export interface IConfirmationLabels {
16
16
  confirmationTitle?: string;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import { ReactElement } from 'react';
2
2
  import { IShareButton } from './index';
3
3
  interface SocialButtonsTypes {
4
4
  shareLink: string;
@@ -6,8 +6,11 @@ interface SocialButtonsTypes {
6
6
  appId: string;
7
7
  showDefaultShareButtons: boolean;
8
8
  shareButtons: IShareButton[];
9
+ titleText?: string;
10
+ footerText?: string | ReactElement;
9
11
  clientLabel?: string;
10
12
  showReferralsInfoText?: boolean;
13
+ onAfterShare?: (eventActionId: string | undefined) => void;
11
14
  }
12
- declare const SocialButtons: ({ showDefaultShareButtons, shareLink, name, appId, shareButtons, clientLabel, showReferralsInfoText, }: SocialButtonsTypes) => JSX.Element;
15
+ declare const SocialButtons: ({ showDefaultShareButtons, shareLink, name, appId, shareButtons, titleText, footerText, clientLabel, onAfterShare, showReferralsInfoText, }: SocialButtonsTypes) => JSX.Element;
13
16
  export default SocialButtons;
@@ -1,12 +1,11 @@
1
1
  import './style.css';
2
2
  import { AxiosError } from 'axios';
3
3
  import { FC } from 'react';
4
- interface IForgotPasswordProps {
4
+ export interface IForgotPasswordProps {
5
5
  onClose: () => void;
6
- onLogin: () => void;
6
+ onLoginButtonClick: () => void;
7
7
  onForgotPasswordSuccess: (res: any) => void;
8
8
  onForgotPasswordError: (e: AxiosError) => void;
9
9
  showPoweredByImage?: boolean;
10
10
  }
11
11
  export declare const ForgotPasswordModal: FC<IForgotPasswordProps>;
12
- export {};
@@ -12,6 +12,7 @@ export interface ILoginFormProps {
12
12
  logo?: string;
13
13
  showForgotPasswordButton?: boolean;
14
14
  showSignUpButton?: boolean;
15
+ showPoweredByImage?: boolean;
15
16
  }
16
17
  export declare const setLoggedUserData: (data: IProfileData) => {
17
18
  id: React.ReactText;
@@ -1,9 +1,9 @@
1
1
  import './style.css';
2
2
  import { AxiosError } from 'axios';
3
3
  import { FC } from 'react';
4
- interface Props {
4
+ export interface Props {
5
5
  onClose: () => void;
6
- onLogin: () => void;
6
+ onLogin: (res: IProfileData) => void;
7
7
  alreadyHasUser?: boolean;
8
8
  userExpired?: boolean;
9
9
  onAuthorizeSuccess?: (res: any) => void;
@@ -19,4 +19,3 @@ interface Props {
19
19
  showPoweredByImage?: boolean;
20
20
  }
21
21
  export declare const LoginModal: FC<Props>;
22
- export {};
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ import { FormikValues } from 'formik';
3
+ export interface IFieldsSectionProps {
4
+ formFields?: IFormFieldsSection[];
5
+ values: FormikValues;
6
+ setFieldValue: (field: string, value: FormikValues, shouldValidate?: boolean | undefined) => void;
7
+ countries?: {
8
+ [key: string]: string | number;
9
+ }[];
10
+ theme?: 'dark' | 'light';
11
+ containerClass?: string;
12
+ }
13
+ export declare const FieldsSection: ({ formFields, countries, values, setFieldValue, theme, containerClass, }: IFieldsSectionProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const Influancers: (props: IInfluancersProps) => JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { AxiosError } from 'axios';
2
+ import { FC } from 'react';
3
+ export declare const PreRegistrationComplete: FC<IPreRegistrationCompleteProps & {
4
+ onGetConfirmationDataError?: (error: AxiosError) => void;
5
+ }>;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const PreRegistrationInformations: (props: IPreRegistrationInformationProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const Prewards: (props: IPrewardsProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const ShareOptions: (props: IShareOptionsProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ export declare const formFieldsNotLoggedIn: IFormFieldsSection[];
2
+ export declare const formFieldsLoggedIn: IFormFieldsSection[];
@@ -0,0 +1,17 @@
1
+ import { AxiosError } from 'axios';
2
+ import { FC } from 'react';
3
+ import { IForgotPasswordProps } from '../forgotPasswordModal';
4
+ import { Props } from '../loginModal';
5
+ interface IPreRegistrationProps extends Props, IForgotPasswordProps {
6
+ eventId: string | number;
7
+ formFields?: IFormFieldsSection[];
8
+ additionalFieldAttribute?: IFieldAttribute;
9
+ isPreregistrationStarted: boolean;
10
+ onGetCountriesSuccess?: (res: any) => void;
11
+ onGetCountriesError?: (e: AxiosError) => void;
12
+ onConfirmationSuccess?: (res: any) => void;
13
+ onConfirmationError?: (e: AxiosError) => void;
14
+ onLoginSuccess?: (res: any) => void;
15
+ }
16
+ export declare const PreRegistration: FC<IPreRegistrationProps>;
17
+ export {};
@@ -0,0 +1,12 @@
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;
@@ -5,8 +5,9 @@ interface ITicketRowProps {
5
5
  prevTicketTier: any;
6
6
  selectedTickets: any;
7
7
  handleTicketSelect: any;
8
- isSeatMapAllowed?: any;
8
+ event: any;
9
+ isSeatMapAllowed?: boolean;
9
10
  tableType?: boolean;
10
11
  }
11
- export declare const TicketRow: ({ ticketTier, prevTicketTier, selectedTickets, handleTicketSelect, isSeatMapAllowed, tableType, }: ITicketRowProps) => JSX.Element;
12
+ export declare const TicketRow: ({ ticketTier, prevTicketTier, selectedTickets, handleTicketSelect, event, isSeatMapAllowed, tableType, }: ITicketRowProps) => JSX.Element;
12
13
  export {};
@@ -2,3 +2,12 @@ export declare const getTicketSelectOptions: (maxCount?: number, minCount?: numb
2
2
  label: number;
3
3
  value: number;
4
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 {};
@@ -0,0 +1 @@
1
+ export { useCookieListener } from './useCookieListener';
@@ -0,0 +1 @@
1
+ export declare const useEventListener: (eventName: string, handler: () => void, element?: Window & typeof globalThis) => void;
@@ -0,0 +1 @@
1
+ export declare function useLocalStorageListener(key: string, callback: (value: string | null) => void): string | null;
@@ -0,0 +1,5 @@
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>
@@ -0,0 +1,6 @@
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>
package/dist/index.d.ts CHANGED
@@ -13,9 +13,12 @@ export { RsvpContainer } from './components/rsvpContainer';
13
13
  export { ResetPasswordContainer } from './components/resetPasswordContainer';
14
14
  export { ForgotPasswordModal } from './components/forgotPasswordModal';
15
15
  export { AddonsContainter } from './components/addonsContainer';
16
+ export { PreRegistration } from './components/preRegistration';
17
+ export { PreRegistrationComplete } from './components/preRegistration/PreRegistrationComplete';
18
+ export { PreRegistrationInformations } from './components/preRegistration/PreRegistrationInformations';
19
+ export { useCookieListener } from './hooks';
16
20
  export { DelegationsContainer } from './components/delegationsContainer';
17
21
  export { PoweredBy } from './components/common/PoweredBy';
18
22
  export { SeatMapContainer } from './components/seatMapContainer';
19
23
  export { IDVerification } from './components/idVerificationContainer';
20
24
  export { VERIFICATION_STATUSES } from './components/idVerificationContainer/constants';
21
- export { useCookieListener } from './hooks/useCookieListener';