tf-checkout-react 1.0.99-beta.2 → 1.0.99-beta.22
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.
- package/dist/api/index.d.ts +6 -0
- package/dist/components/billing-info-container/index.d.ts +4 -2
- package/dist/components/billing-info-container/utils.d.ts +1 -0
- package/dist/components/common/CustomField.d.ts +1 -1
- package/dist/components/common/DatePickerField.d.ts +14 -0
- package/dist/components/common/Loader.d.ts +2 -0
- package/dist/components/common/RadioField.d.ts +11 -0
- package/dist/components/common/RedirectModal.d.ts +7 -0
- package/dist/components/common/index.d.ts +5 -0
- package/dist/components/confirmModal/index.d.ts +9 -0
- package/dist/components/confirmationContainer/index.d.ts +2 -1
- package/dist/components/countdown/index.d.ts +3 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/orderDetailsContainer/ticketsTable.d.ts +9 -2
- package/dist/components/rsvpContainer/index.d.ts +7 -0
- package/dist/components/ticketResale/index.d.ts +10 -0
- package/dist/components/ticketResaleModal/index.d.ts +18 -0
- package/dist/components/ticketsContainer/AccessCodeSection.d.ts +7 -0
- package/dist/components/ticketsContainer/PromoCodeSection.d.ts +6 -8
- package/dist/components/ticketsContainer/TicketsSection.d.ts +4 -3
- package/dist/components/ticketsContainer/index.d.ts +12 -2
- package/dist/components/timerWidget/index.d.ts +3 -3
- package/dist/env.d.ts +1 -0
- package/dist/images/cross.svg +44 -0
- package/dist/images/email.svg +1 -0
- package/dist/images/user.svg +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/tf-checkout-react.cjs.development.js +1627 -569
- package/dist/tf-checkout-react.cjs.development.js.map +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
- package/dist/tf-checkout-react.esm.js +1636 -581
- package/dist/tf-checkout-react.esm.js.map +1 -1
- package/dist/tf-checkout-styles.css +1 -1
- package/dist/utils/createCheckoutDataBodyWithDefaultHolder.d.ts +6 -1
- package/dist/utils/getDomain.d.ts +1 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +3 -2
- package/src/api/index.ts +49 -10
- package/src/assets/images/cross.svg +44 -0
- package/src/assets/images/email.svg +1 -0
- package/src/assets/images/user.svg +1 -0
- package/src/components/billing-info-container/index.tsx +92 -45
- package/src/components/billing-info-container/utils.ts +14 -4
- package/src/components/common/CustomField.tsx +7 -4
- package/src/components/common/DatePickerField.tsx +96 -0
- package/src/components/common/Loader.tsx +10 -0
- package/src/components/common/RadioField.tsx +35 -0
- package/src/components/common/RedirectModal.tsx +43 -0
- package/src/components/common/index.tsx +5 -0
- package/src/components/confirmModal/index.tsx +51 -0
- package/src/components/confirmModal/style.css +21 -0
- package/src/components/confirmationContainer/index.tsx +5 -2
- package/src/components/countdown/index.tsx +13 -4
- package/src/components/index.ts +1 -0
- package/src/components/myTicketsContainer/index.tsx +60 -1
- package/src/components/orderDetailsContainer/index.tsx +106 -4
- package/src/components/orderDetailsContainer/style.css +5 -4
- package/src/components/orderDetailsContainer/ticketsTable.tsx +38 -4
- package/src/components/paymentContainer/index.tsx +4 -9
- package/src/components/rsvpContainer/index.tsx +126 -0
- package/src/components/stripePayment/index.tsx +3 -2
- package/src/components/ticketResale/index.tsx +74 -0
- package/src/components/ticketResaleModal/index.tsx +210 -0
- package/src/components/ticketResaleModal/style.css +28 -0
- package/src/components/ticketsContainer/AccessCodeSection.tsx +50 -0
- package/src/components/ticketsContainer/PromoCodeSection.tsx +51 -58
- package/src/components/ticketsContainer/ReferralLogic.tsx +3 -5
- package/src/components/ticketsContainer/TicketsSection.tsx +9 -5
- package/src/components/ticketsContainer/index.tsx +165 -89
- package/src/components/timerWidget/index.tsx +19 -2
- package/src/components/timerWidget/style.css +8 -0
- package/src/components/waitingList/index.tsx +1 -1
- package/src/env.ts +2 -1
- package/src/index.ts +3 -0
- package/src/utils/cookies.ts +38 -29
- package/src/utils/createCheckoutDataBodyWithDefaultHolder.ts +16 -4
- package/src/utils/getDomain.ts +15 -0
- package/src/utils/index.ts +1 -0
package/dist/api/index.d.ts
CHANGED
|
@@ -30,5 +30,11 @@ export declare const getOrders: (page: number, limit: number, eventSlug: string)
|
|
|
30
30
|
export declare const getOrderDetails: (orderId: string) => Promise<AxiosResponse<any, any>>;
|
|
31
31
|
export declare const addToWaitingList: (id: number, data: any) => Promise<AxiosResponse<any, any>>;
|
|
32
32
|
export declare const getConditions: (eventId: string) => Promise<AxiosResponse<any, any>>;
|
|
33
|
+
export declare const resaleTicket: (data: any, hash: string) => Promise<AxiosResponse<any, any>>;
|
|
34
|
+
export declare const removeFromResale: (hash: string) => Promise<AxiosResponse<any, any>>;
|
|
33
35
|
export declare const postReferralVisits: (eventId: string, referralId: string) => Promise<AxiosResponse<any, any>>;
|
|
36
|
+
export declare const logout: () => Promise<AxiosResponse<any, any>>;
|
|
37
|
+
export declare const processTicket: (hash: string) => Promise<AxiosResponse<any, any>>;
|
|
38
|
+
export declare const declineInvitation: (hash: string) => Promise<AxiosResponse<any, any>>;
|
|
39
|
+
export declare const sendRSVPInfo: (eventId: number, data: any) => Promise<AxiosResponse<any, any>>;
|
|
34
40
|
export {};
|
|
@@ -9,7 +9,7 @@ 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?: () => void;
|
|
12
|
+
onRegisterSuccess?: (value: any) => void;
|
|
13
13
|
onRegisterError?: (e: AxiosError, email: string) => void;
|
|
14
14
|
onSubmitError?: (e: AxiosError) => void;
|
|
15
15
|
onGetCartSuccess?: (res: any) => void;
|
|
@@ -40,5 +40,7 @@ export interface IBillingInfoPage {
|
|
|
40
40
|
skipPage?: boolean;
|
|
41
41
|
canSkipHolderNames?: boolean;
|
|
42
42
|
shouldFetchCountries?: boolean;
|
|
43
|
+
onCountdownFinish?: () => void;
|
|
44
|
+
enableTimer?: 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, shouldFetchCountries, onCountdownFinish, enableTimer }: IBillingInfoPage) => JSX.Element;
|
|
@@ -16,5 +16,5 @@ export interface ICustomField {
|
|
|
16
16
|
interface IOtherProps {
|
|
17
17
|
[key: string]: any;
|
|
18
18
|
}
|
|
19
|
-
export declare const CustomField: ({ label, type, field, selectOptions, form: { touched, errors, submitCount }, theme, }: ICustomField & IOtherProps) => JSX.Element;
|
|
19
|
+
export declare const CustomField: ({ label, type, field, selectOptions, form: { touched, errors, submitCount }, theme, inputProps: pInputProps, InputProps, inputRef, }: ICustomField & IOtherProps) => JSX.Element;
|
|
20
20
|
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { FieldInputProps, FormikProps } from 'formik';
|
|
3
|
+
export interface IDatePickerFieldProps {
|
|
4
|
+
label: string;
|
|
5
|
+
field: FieldInputProps<any>;
|
|
6
|
+
form: FormikProps<any>;
|
|
7
|
+
theme: 'dark' | 'light';
|
|
8
|
+
useCompact?: boolean;
|
|
9
|
+
}
|
|
10
|
+
interface IOtherProps {
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}
|
|
13
|
+
export declare const DatePickerField: ({ label, field, form, theme, useCompact, }: IDatePickerFieldProps & IOtherProps) => JSX.Element;
|
|
14
|
+
export {};
|
|
@@ -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 {};
|
|
@@ -14,6 +14,7 @@ export interface IConfirmationPage {
|
|
|
14
14
|
shareButtons: IShareButton[];
|
|
15
15
|
onGetConfirmationDataSuccess: (res: any) => void;
|
|
16
16
|
onGetConfirmationDataError: (e: AxiosError) => void;
|
|
17
|
+
onLinkCopied: () => void;
|
|
17
18
|
orderHash?: string;
|
|
18
19
|
}
|
|
19
|
-
export declare const ConfirmationContainer: ({ isReferralEnabled, showDefaultShareButtons, messengerAppId, shareButtons, onGetConfirmationDataSuccess, onGetConfirmationDataError, orderHash, }: IConfirmationPage) => JSX.Element;
|
|
20
|
+
export declare const ConfirmationContainer: ({ isReferralEnabled, showDefaultShareButtons, messengerAppId, shareButtons, onGetConfirmationDataSuccess, onGetConfirmationDataError, orderHash, onLinkCopied }: IConfirmationPage) => JSX.Element;
|
|
@@ -6,7 +6,9 @@ interface CountdownTypes {
|
|
|
6
6
|
title?: string;
|
|
7
7
|
message?: string;
|
|
8
8
|
showMessage?: boolean;
|
|
9
|
+
disableLeadingZero?: boolean;
|
|
9
10
|
callback?: () => void;
|
|
11
|
+
isLoggedIn?: boolean;
|
|
10
12
|
}
|
|
11
|
-
declare function Countdown({ startDate, timezone, title, message, showMessage, callback }: CountdownTypes): JSX.Element;
|
|
13
|
+
declare function Countdown({ startDate, timezone, title, message, showMessage, disableLeadingZero, callback, isLoggedIn }: CountdownTypes): JSX.Element;
|
|
12
14
|
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,10 @@
|
|
|
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
|
+
}
|
|
10
|
+
export declare const TicketResaleContainer: ({ onProcessTicketSuccess, onProcessTicketError, onDeclineTicketPurchaseSuccess, onDeclineTicketPurchaseError, 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 {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export interface IAccessCodeSectionProps {
|
|
3
|
+
code: string;
|
|
4
|
+
setCode: (value: string) => void;
|
|
5
|
+
updateTickets: (value: boolean, type?: string) => void;
|
|
6
|
+
}
|
|
7
|
+
export declare const AccessCodeSection: ({ code, setCode, updateTickets }: IAccessCodeSectionProps) => JSX.Element;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export interface IPromoCodeSectionProps {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
code: string;
|
|
4
|
+
codeIsApplied: boolean;
|
|
5
5
|
showPromoInput: boolean;
|
|
6
|
-
|
|
7
|
-
isAllTicketsSoldOut: boolean;
|
|
8
|
-
isAccessCodeEnabled?: boolean;
|
|
9
|
-
setPromoCode: (value: string) => void;
|
|
10
|
-
setPromoCodeUpdated: (value: string) => void;
|
|
6
|
+
setCode: (value: string) => void;
|
|
11
7
|
setShowPromoInput: (value: boolean) => void;
|
|
8
|
+
updateTickets: (value: boolean, type: string) => void;
|
|
9
|
+
setCodeIsApplied: (value: boolean) => void;
|
|
12
10
|
}
|
|
13
|
-
export declare const PromoCodeSection: ({
|
|
11
|
+
export declare const PromoCodeSection: ({ code, codeIsApplied, showPromoInput, setCode, setShowPromoInput, updateTickets, setCodeIsApplied }: IPromoCodeSectionProps) => JSX.Element;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
2
|
import './style.css';
|
|
3
3
|
interface ITicketsSectionProps {
|
|
4
4
|
ticketsList: any;
|
|
5
5
|
selectedTickets: any;
|
|
6
6
|
handleTicketSelect: any;
|
|
7
|
-
|
|
7
|
+
sortBySoldOut: boolean;
|
|
8
|
+
ticketsHeaderComponent?: ReactNode;
|
|
8
9
|
}
|
|
9
|
-
export declare const TicketsSection: ({ ticketsList, selectedTickets, handleTicketSelect,
|
|
10
|
+
export declare const TicketsSection: ({ ticketsList, selectedTickets, handleTicketSelect, sortBySoldOut, ticketsHeaderComponent }: ITicketsSectionProps) => JSX.Element;
|
|
10
11
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { ReactNode } from 'react';
|
|
2
2
|
import { AxiosError } from 'axios';
|
|
3
3
|
import './style.css';
|
|
4
4
|
import { ThemeOptions } from '@mui/material';
|
|
@@ -7,8 +7,10 @@ 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;
|
|
13
|
+
total?: string;
|
|
12
14
|
}
|
|
13
15
|
export interface IGetTickets {
|
|
14
16
|
eventId: number;
|
|
@@ -18,6 +20,8 @@ export interface IGetTickets {
|
|
|
18
20
|
onAddToCartError: (e: AxiosError) => void;
|
|
19
21
|
onGetTicketsSuccess: (response: any) => void;
|
|
20
22
|
onGetTicketsError: (e: AxiosError) => void;
|
|
23
|
+
onLogoutSuccess: () => void;
|
|
24
|
+
onLogoutError: (e: AxiosError) => void;
|
|
21
25
|
onLoginSuccess: () => void;
|
|
22
26
|
theme?: 'light' | 'dark';
|
|
23
27
|
queryPromoCode?: string;
|
|
@@ -30,6 +34,12 @@ export interface IGetTickets {
|
|
|
30
34
|
hideSessionButtons?: boolean;
|
|
31
35
|
hideWaitingList?: boolean;
|
|
32
36
|
enableBillingInfoAutoCreate?: boolean;
|
|
37
|
+
isButtonScrollable?: boolean;
|
|
38
|
+
sortBySoldOut?: boolean;
|
|
39
|
+
disableCountdownLeadingZero?: boolean;
|
|
40
|
+
isLoggedIn?: boolean;
|
|
41
|
+
actionsSectionComponent?: any;
|
|
42
|
+
ticketsHeaderComponent?: ReactNode;
|
|
33
43
|
}
|
|
34
44
|
export interface ITicket {
|
|
35
45
|
id: string | number;
|
|
@@ -38,5 +48,5 @@ export interface ITicket {
|
|
|
38
48
|
export interface ISelectedTickets {
|
|
39
49
|
[key: string]: string | number;
|
|
40
50
|
}
|
|
41
|
-
export declare const TicketsContainer: ({ onLoginSuccess, getTicketsLabel, eventId, onAddToCartSuccess, contentStyle, onAddToCartError, onGetTicketsSuccess, onGetTicketsError, theme, queryPromoCode, isPromotionsEnabled, themeOptions, isAccessCodeEnabled, hideSessionButtons, hideWaitingList, enableBillingInfoAutoCreate, }: IGetTickets) => JSX.Element;
|
|
51
|
+
export declare const TicketsContainer: ({ onLoginSuccess, getTicketsLabel, eventId, onAddToCartSuccess, contentStyle, onAddToCartError, onGetTicketsSuccess, onGetTicketsError, onLogoutSuccess, onLogoutError, theme, queryPromoCode, isPromotionsEnabled, themeOptions, isAccessCodeEnabled, hideSessionButtons, hideWaitingList, enableBillingInfoAutoCreate, isButtonScrollable, sortBySoldOut, disableCountdownLeadingZero, isLoggedIn, actionsSectionComponent: ActionsSectionComponent, ticketsHeaderComponent }: IGetTickets) => JSX.Element;
|
|
42
52
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import './style.css';
|
|
3
3
|
export interface ITimerWidgetPage {
|
|
4
4
|
expires_at: number;
|
|
@@ -11,5 +11,5 @@ export interface IRenderer {
|
|
|
11
11
|
completed: number;
|
|
12
12
|
handleCountdownFinish: () => void;
|
|
13
13
|
}
|
|
14
|
-
declare const
|
|
15
|
-
export default
|
|
14
|
+
declare const _default: React.MemoExoticComponent<({ expires_at, buyLoading, onCountdownFinish, }: ITimerWidgetPage) => JSX.Element | null>;
|
|
15
|
+
export default _default;
|
package/dist/env.d.ts
CHANGED
|
@@ -0,0 +1,44 @@
|
|
|
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>
|
|
@@ -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,6 @@ 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';
|
|
11
|
+
export { RedirectModal } from './components/common/RedirectModal';
|
|
12
|
+
export { RsvpContainer } from './components/rsvpContainer';
|