@sunrise-upc/mobile-prod-card 4.4.1-beta.0 → 4.4.1-beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. package/dist/{esm/components/UltimateBundleLinetable/checkoutRedirectionPopup → cjs/components/UltimateBundleLinetable/CheckoutRedirectionPopup}/checkoutRedirectionPopup.d.ts +1 -3
  2. package/dist/cjs/components/UltimateBundleLinetable/DpLinetableContainer.d.ts +3 -0
  3. package/dist/cjs/components/UltimateBundleLinetable/DpProduct.d.ts +3 -0
  4. package/dist/cjs/components/UltimateBundleLinetable/DpTabContainer.d.ts +3 -0
  5. package/dist/cjs/components/UltimateBundleLinetable/DpTableDeviceSection/DpTableDeviceSection.d.ts +1 -1
  6. package/dist/cjs/components/UltimateBundleLinetable/DpTableFlexSection/DpTableFlexSection.d.ts +1 -1
  7. package/dist/cjs/components/UltimateBundleLinetable/DpTableMobileSection/DpTableMobileSection.d.ts +1 -1
  8. package/dist/cjs/components/UltimateBundleLinetable/DpTableUtils.d.ts +4 -3
  9. package/dist/cjs/components/UltimateBundleLinetable/index.d.ts +1 -1
  10. package/dist/cjs/components/index.d.ts +1 -1
  11. package/dist/cjs/index.js +2 -2
  12. package/dist/cjs/utils/constants.d.ts +9 -0
  13. package/dist/{cjs/components/UltimateBundleLinetable/checkoutRedirectionPopup → esm/components/UltimateBundleLinetable/CheckoutRedirectionPopup}/checkoutRedirectionPopup.d.ts +1 -3
  14. package/dist/esm/components/UltimateBundleLinetable/DpLinetableContainer.d.ts +3 -0
  15. package/dist/esm/components/UltimateBundleLinetable/DpProduct.d.ts +3 -0
  16. package/dist/esm/components/UltimateBundleLinetable/DpTabContainer.d.ts +3 -0
  17. package/dist/esm/components/UltimateBundleLinetable/DpTableDeviceSection/DpTableDeviceSection.d.ts +1 -1
  18. package/dist/esm/components/UltimateBundleLinetable/DpTableFlexSection/DpTableFlexSection.d.ts +1 -1
  19. package/dist/esm/components/UltimateBundleLinetable/DpTableMobileSection/DpTableMobileSection.d.ts +1 -1
  20. package/dist/esm/components/UltimateBundleLinetable/DpTableUtils.d.ts +4 -3
  21. package/dist/esm/components/UltimateBundleLinetable/index.d.ts +1 -1
  22. package/dist/esm/components/index.d.ts +1 -1
  23. package/dist/esm/index.js +2 -2
  24. package/dist/esm/utils/constants.d.ts +9 -0
  25. package/dist/index.d.ts +2 -2
  26. package/package.json +1 -1
  27. package/dist/cjs/components/UltimateBundleLinetable/UbTabContainer.d.ts +0 -3
  28. package/dist/cjs/components/UltimateBundleLinetable/UltimateBundleLinetableContainer.d.ts +0 -3
  29. package/dist/cjs/components/UltimateBundleLinetable/UltimateBundleProduct.d.ts +0 -3
  30. package/dist/esm/components/UltimateBundleLinetable/UbTabContainer.d.ts +0 -3
  31. package/dist/esm/components/UltimateBundleLinetable/UltimateBundleLinetableContainer.d.ts +0 -3
  32. package/dist/esm/components/UltimateBundleLinetable/UltimateBundleProduct.d.ts +0 -3
@@ -21,6 +21,15 @@ 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";
32
+ export declare const NOT_AVAILABLE = "NOT_AVAILABLE";
24
33
  export declare const MOBILE = "mobile";
25
34
  export declare const DESKTOP = "desktop";
26
35
  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, noNewSubscriptionCheck, onLoginSuccessRedirection, customerSection }: LoginPopupSchema) => JSX.Element;
10
+ declare const checkoutRedirectionPopup: ({ content, metadata, togglePopup, isOpen, validation, onLoginSuccessRedirection }: LoginPopupSchema) => JSX.Element;
13
11
  export default checkoutRedirectionPopup;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const DpLinetableContainer: ({ content, metadata }: any) => JSX.Element;
3
+ export default DpLinetableContainer;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const DpProduct: ({ productData, mainContent, tabIndex, indexKey, cardsLength, offerDataList, activeTab, deviceModelsList, deviceDetailsList, fetchDeviceDetails, metadata }: any) => JSX.Element;
3
+ export default DpProduct;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const DpTabContainer: ({ tabData, tabIndex, mainContent, activeTab, metadata }: any) => JSX.Element;
3
+ export default DpTabContainer;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- declare const DpTableDeviceSection: ({ productData, mainContent, activeTab, tabIndex, deviceModelsList, deviceDetailsList, setDeviceDetails, fetchDeviceDetails }: any) => JSX.Element;
2
+ declare const DpTableDeviceSection: ({ productData, mainContent, activeTab, tabIndex, indexKey, cardsLength, deviceModelsList, deviceDetailsList, setDeviceDetails, fetchDeviceDetails }: any) => JSX.Element;
3
3
  export default DpTableDeviceSection;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- declare const DpTableFlexSection: ({ productData, mainContent, deviceDetailsList, selectedDeviceDetails }: any) => JSX.Element;
2
+ declare const DpTableFlexSection: ({ productData, mainContent, selectedDeviceDetails, tabIndex, indexKey, cardsLength }: any) => JSX.Element;
3
3
  export default DpTableFlexSection;
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
- declare const DpTableMobileSection: ({ productData, mainContent, offerDataList }: any) => JSX.Element;
2
+ declare const DpTableMobileSection: ({ productData, mainContent, offerDataList, tabIndex, indexKey, cardsLength }: any) => JSX.Element;
3
3
  export default DpTableMobileSection;
@@ -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, mobileData: any, deviceData: any, cartEndPoint: any, redirectionUrl: any, productData: any) => void;
35
- export declare const getDeviceCartItem: (deviceDetails: any, productData?: 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, priceValues: 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;
@@ -1 +1 @@
1
- export { default } from './UltimateBundleLinetableContainer';
1
+ export { default } from './DpLinetableContainer';
@@ -13,4 +13,4 @@ export { default as Breadcrumb } from './Breadcrumb';
13
13
  export { default as PretoPostSubsPopup } from './PretoPost';
14
14
  export { default as HeroLogin } from './HeroLogin';
15
15
  export { default as CheckCoverage } from './NewLineCheck';
16
- export { default as UltimateBundleLinetable } from './UltimateBundleLinetable';
16
+ export { default as DpLinetable } from './UltimateBundleLinetable';