@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.
- package/dist/cjs/Analytics/AnalyticsConstants.d.ts +2 -0
- package/dist/cjs/Analytics/items.d.ts +2 -0
- package/dist/cjs/components/ProductDetailsV3/CashBackV2/CashbackV2.d.ts +3 -0
- package/dist/cjs/components/ResponsiveRow/row.d.ts +1 -0
- package/dist/cjs/components/lineTable/OrderButton.d.ts +1 -1
- package/dist/cjs/components/lineTable/lineTable.types.d.ts +1 -0
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/services/LineTableService.d.ts +1 -1
- package/dist/esm/Analytics/AnalyticsConstants.d.ts +2 -0
- package/dist/esm/Analytics/items.d.ts +2 -0
- package/dist/esm/components/ProductDetailsV3/CashBackV2/CashbackV2.d.ts +3 -0
- package/dist/esm/components/ResponsiveRow/row.d.ts +1 -0
- package/dist/esm/components/lineTable/OrderButton.d.ts +1 -1
- package/dist/esm/components/lineTable/lineTable.types.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/services/LineTableService.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/dist/cjs/components/ProductDetailsV3/BundleEntitlementValueV3.d.ts +0 -3
- package/dist/esm/components/ProductDetailsV3/BundleEntitlementValueV3.d.ts +0 -3
@@ -1,6 +1,6 @@
|
|
1
1
|
export declare const fetchCountryList: (name: string, lang: string, url: string, TTL: number) => Promise<any>;
|
2
2
|
export declare const fetchOfferingDataV2: (params: any, url: any) => Promise<any>;
|
3
|
-
export declare const createCartV2: (productData: any, radioValue: string, defaultPromo: string, cartUrl: string, productType: string,
|
3
|
+
export declare const createCartV2: (productData: any, radioValue: string, defaultPromo: string, cartUrl: string, productType: string, chooseGift?: any) => Promise<any>;
|
4
4
|
export declare const fetchLinetableContent: (slugurl: string, params: any) => Promise<any>;
|
5
5
|
export declare const getStaticContent: (language: any, endPoints: any) => Promise<any>;
|
6
6
|
export declare const fetchOfferingDataLineTableV2: (params: any, uniqueId: any, endpoint: any) => Promise<any>;
|
@@ -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;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
declare const OrderButton: ({ content, isMobileFlow, sbStaticConstants, address, isAvailable, showPrice,
|
2
|
+
declare const OrderButton: ({ content, isMobileFlow, sbStaticConstants, address, isAvailable, showPrice, createCartCall }: any) => JSX.Element;
|
3
3
|
export default OrderButton;
|