@sunrise-upc/mobile-prod-card 4.4.1-beta.0 → 4.4.1-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/UltimateBundleLinetable/{checkoutRedirectionPopup → CheckoutRedirectionPopup}/checkoutRedirectionPopup.d.ts +1 -3
- package/dist/cjs/components/UltimateBundleLinetable/DpTableUtils.d.ts +4 -3
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/utils/constants.d.ts +8 -0
- package/dist/esm/components/UltimateBundleLinetable/{checkoutRedirectionPopup → CheckoutRedirectionPopup}/checkoutRedirectionPopup.d.ts +1 -3
- package/dist/esm/components/UltimateBundleLinetable/DpTableUtils.d.ts +4 -3
- package/dist/esm/index.js +2 -2
- package/dist/esm/utils/constants.d.ts +8 -0
- package/package.json +1 -1
@@ -21,6 +21,14 @@ export declare const AFTER = "after";
|
|
21
21
|
export declare const BEFORE = "before";
|
22
22
|
export declare const SMARTPHONEDEVICE = "smartphone";
|
23
23
|
export declare const ONE_ECOMMERCE_HARDWARE_SUMMARY = "one-ecommerce-hardwareSummary";
|
24
|
+
export declare const BASE_PRICE = "basePrice";
|
25
|
+
export declare const INSTALLMENTS = "installments";
|
26
|
+
export declare const SMARTUPGRADEINSTALLMENTS = "smartUpgradeInstallments";
|
27
|
+
export declare const BASE = "BASE";
|
28
|
+
export declare const CONTRACT = "CONTRACT";
|
29
|
+
export declare const HARDWARE = "HARDWARE";
|
30
|
+
export declare const DEFAULT_AVAILABILITY_TEXT = "dd_delivery_details";
|
31
|
+
export declare const DEVICE_INSURANCE = "DEVICE_INSURANCE";
|
24
32
|
export declare const MOBILE = "mobile";
|
25
33
|
export declare const DESKTOP = "desktop";
|
26
34
|
export declare const LARGE_DESKTOP = "large-desktop";
|
@@ -1,13 +1,11 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
interface LoginPopupSchema {
|
3
3
|
content: any;
|
4
|
-
customerSection?: any;
|
5
4
|
metadata: any;
|
6
5
|
togglePopup?: any;
|
7
6
|
isOpen?: any;
|
8
7
|
validation?: any;
|
9
|
-
noNewSubscriptionCheck?: any;
|
10
8
|
onLoginSuccessRedirection?: any;
|
11
9
|
}
|
12
|
-
declare const checkoutRedirectionPopup: ({ content, metadata, togglePopup, isOpen, validation,
|
10
|
+
declare const checkoutRedirectionPopup: ({ content, metadata, togglePopup, isOpen, validation, onLoginSuccessRedirection, }: LoginPopupSchema) => JSX.Element;
|
13
11
|
export default checkoutRedirectionPopup;
|
@@ -31,13 +31,14 @@ export declare const getDeviceWithVarients: (deviceData: any) => {
|
|
31
31
|
defaultMemorySelected: undefined;
|
32
32
|
};
|
33
33
|
export declare const getOptionsList: (options: string[]) => any[];
|
34
|
-
export declare const dpTableCreateCart: (setShowLoader: any,
|
35
|
-
export declare const getDeviceCartItem: (deviceDetails: any
|
34
|
+
export declare const dpTableCreateCart: (setShowLoader: any, mainContent: any, mobileData: any, deviceData: any, cartEndPoint: any, redirectionUrl: any) => void;
|
35
|
+
export declare const getDeviceCartItem: (deviceDetails: any) => {
|
36
36
|
itemType: string;
|
37
37
|
id: any;
|
38
38
|
}[] | null;
|
39
|
-
export declare const setDeviceSessionObject: (productData: any, offerDataList: any, deviceDetails: any, redirectionUrl: any) => void;
|
39
|
+
export declare const setDeviceSessionObject: (mainContent: any, productData: any, offerDataList: any, deviceDetails: any, redirectionUrl: any) => void;
|
40
40
|
export declare const getDeviceNotes: (deviceDetails: any, upFrontValue: string) => {
|
41
41
|
author: string;
|
42
42
|
text: any;
|
43
43
|
}[];
|
44
|
+
export declare const alterHardwarePriceFormatDeviceDetail: (hardwarePrices: any[]) => void;
|