tf-checkout-react 1.2.0 → 1.2.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.
@@ -1,10 +1,10 @@
1
1
  /// <reference types="react" />
2
- import { AxiosError } from 'axios';
3
- import { FormikHelpers, FormikValues } from 'formik';
4
2
  import './style.css';
5
- import { IBillingInfoData } from '../../types';
6
3
  import { ThemeOptions } from '@mui/material';
7
4
  import { CSSProperties } from '@mui/styles';
5
+ import { AxiosError } from 'axios';
6
+ import { FormikHelpers, FormikValues } from 'formik';
7
+ import { IBillingInfoData } from '../../types';
8
8
  export interface IBillingInfoPage {
9
9
  data?: IBillingInfoData[];
10
10
  ticketHoldersFields?: IBillingInfoData;
@@ -1,8 +1,8 @@
1
- import React, { ReactNode } from 'react';
2
- import { AxiosError } from 'axios';
3
1
  import './style.css';
4
2
  import { ThemeOptions } from '@mui/material';
5
3
  import { CSSProperties } from '@mui/styles';
4
+ import { AxiosError } from 'axios';
5
+ import React, { ReactNode } from 'react';
6
6
  interface CartSuccess {
7
7
  skip_billing_page: boolean;
8
8
  names_required: boolean;
@@ -41,6 +41,7 @@ export interface IGetTickets {
41
41
  actionsSectionComponent?: any;
42
42
  ticketsHeaderComponent?: ReactNode;
43
43
  hideTicketsHeader?: boolean;
44
+ enableInfluencersSection?: boolean;
44
45
  }
45
46
  export interface ITicket {
46
47
  id: string | number;
@@ -49,5 +50,5 @@ export interface ITicket {
49
50
  export interface ISelectedTickets {
50
51
  [key: string]: string | number;
51
52
  }
52
- 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, hideTicketsHeader }: IGetTickets) => JSX.Element;
53
+ 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, hideTicketsHeader, enableInfluencersSection }: IGetTickets) => JSX.Element;
53
54
  export {};