@sunrise-upc/mobile-prod-card 4.1.5 → 4.1.7-beta.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,6 +7,7 @@ export interface LineCheckOverlaySchema {
7
7
  setAddressNotFilled: any;
8
8
  setIndivialOpen: any;
9
9
  indivialOpen: any;
10
+ isAvailable: boolean;
10
11
  }
11
- declare const LineCheckOverlay: ({ props, productName, handleModalClick, onSuccess, setAddressNotFilled, setIndivialOpen, indivialOpen }: LineCheckOverlaySchema) => JSX.Element;
12
+ declare const LineCheckOverlay: ({ props, productName, handleModalClick, onSuccess, setAddressNotFilled, setIndivialOpen, indivialOpen, isAvailable }: LineCheckOverlaySchema) => JSX.Element;
12
13
  export default LineCheckOverlay;
@@ -7,10 +7,11 @@ interface successInterface {
7
7
  eligibleBundle: any;
8
8
  tooltipcontent: string | JSX.Element;
9
9
  onSuccess?: any;
10
+ isAvailable: boolean;
10
11
  }
11
12
  interface MaxDownloadUploadSpeed {
12
13
  maxBandwidthDown: number;
13
14
  maxBandwidthUp: number;
14
15
  }
15
- declare const Success: ({ content, uploadDownload, textContent, eligibleBundle, tooltipcontent, onSuccess }: successInterface) => JSX.Element;
16
+ declare const Success: ({ content, uploadDownload, textContent, eligibleBundle, tooltipcontent, onSuccess, isAvailable }: successInterface) => JSX.Element;
16
17
  export default Success;
@@ -9,3 +9,4 @@ export declare const findHeight: (tabIndex: number, cardsLength: number) => void
9
9
  export declare const combineWithSmartPhone: (showPrice: any, storyContent: any, uniqueProductData: any, responseData?: any, product?: any) => void;
10
10
  export declare const fetchServiceOptions: (entitlement: any, isMobileFlow: boolean) => any;
11
11
  export declare const fetchPrice: (product: any, isMobileFlow: boolean, pageType?: string, isConfigurator?: boolean) => any;
12
+ export declare const fetchFilteredProducts: (productList: any, toggleState: any) => any[];