@sunrise-upc/mobile-prod-card 1.0.26-beta.9 → 1.0.27-beta.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,3 +11,5 @@ export declare const STAGETEASER = "Stage Teaser";
11
11
  export declare const LINETABLE = "Line Table";
12
12
  export declare const COMBINEDEVICE = "combine_with_device";
13
13
  export declare const TABCLICK = "tab_click";
14
+ export declare const TOGGLE_ON_CONFIGURATOR = "toggle_on_configurator";
15
+ export declare const TOGGLE_OFF_CONFIGURATOR = "toggle_off_configurator";
@@ -28,3 +28,5 @@ export declare const getItemData: (item: any, data?: any) => itemInfoEvent;
28
28
  export declare const getEcomInfo: (items: any, category?: any, location?: any) => any;
29
29
  export declare const getEcomCartInfo: (items: any, category: any, location: any) => ecomAddCartInfo;
30
30
  export declare const trackEligibleItem: (type: string, prodData?: any, category?: any, location?: any) => void;
31
+ export declare const clickEvent: (eventName: string, text: string) => void;
32
+ export declare const toggleEvent: (eventName: string, headline: string, selection: string) => void;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const CashbackV2: ({ content }: any) => JSX.Element;
3
+ export default CashbackV2;
@@ -2,6 +2,7 @@ import { FC } from 'react';
2
2
  import './row.css';
3
3
  interface RowInterface {
4
4
  children: JSX.Element;
5
+ resuablelineTable?: boolean;
5
6
  }
6
7
  declare const Row: FC<RowInterface>;
7
8
  export default Row;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- declare const OrderButton: ({ content, isMobileFlow, sbStaticConstants, address, isAvailable, showPrice, isSkeletonLoading, createCartCall }: any) => JSX.Element;
2
+ declare const OrderButton: ({ content, isMobileFlow, sbStaticConstants, address, isAvailable, showPrice, createCartCall }: any) => JSX.Element;
3
3
  export default OrderButton;
@@ -1,6 +1,7 @@
1
1
  export interface ProductTableSchema {
2
2
  content: any;
3
3
  metadata: any;
4
+ setGenericErrorModalDetails: any;
4
5
  lineCheckCallBack?: () => void;
5
6
  changeAddressClicked?: any;
6
7
  }