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

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/cjs/components/FalconButtonV2/FalconButtonV2.d.ts +3 -0
  2. package/dist/cjs/components/UltimateBundleLinetable/DpTableDeviceSection/DpTableDeviceSection.d.ts +3 -0
  3. package/dist/cjs/components/UltimateBundleLinetable/DpTableFlexSection/DpTableFlexSection.d.ts +3 -0
  4. package/dist/cjs/components/UltimateBundleLinetable/DpTableMobileSection/DpTableMobileSection.d.ts +3 -0
  5. package/dist/cjs/components/UltimateBundleLinetable/DpTableUtils.d.ts +43 -0
  6. package/dist/cjs/components/UltimateBundleLinetable/UbTabContainer.d.ts +3 -0
  7. package/dist/cjs/components/UltimateBundleLinetable/UltimateBundleLinetableContainer.d.ts +3 -0
  8. package/dist/cjs/components/UltimateBundleLinetable/UltimateBundleProduct.d.ts +3 -0
  9. package/dist/cjs/components/UltimateBundleLinetable/checkoutRedirectionPopup/checkoutRedirectionPopup.d.ts +13 -0
  10. package/dist/cjs/components/UltimateBundleLinetable/index.d.ts +1 -0
  11. package/dist/cjs/components/index.d.ts +1 -0
  12. package/dist/cjs/index.js +2 -2
  13. package/dist/cjs/services/LineTableService.d.ts +4 -2
  14. package/dist/cjs/services/api-constants.d.ts +2 -0
  15. package/dist/cjs/utils/constants.d.ts +4 -0
  16. package/dist/esm/components/FalconButtonV2/FalconButtonV2.d.ts +3 -0
  17. package/dist/esm/components/UltimateBundleLinetable/DpTableDeviceSection/DpTableDeviceSection.d.ts +3 -0
  18. package/dist/esm/components/UltimateBundleLinetable/DpTableFlexSection/DpTableFlexSection.d.ts +3 -0
  19. package/dist/esm/components/UltimateBundleLinetable/DpTableMobileSection/DpTableMobileSection.d.ts +3 -0
  20. package/dist/esm/components/UltimateBundleLinetable/DpTableUtils.d.ts +43 -0
  21. package/dist/esm/components/UltimateBundleLinetable/UbTabContainer.d.ts +3 -0
  22. package/dist/esm/components/UltimateBundleLinetable/UltimateBundleLinetableContainer.d.ts +3 -0
  23. package/dist/esm/components/UltimateBundleLinetable/UltimateBundleProduct.d.ts +3 -0
  24. package/dist/esm/components/UltimateBundleLinetable/checkoutRedirectionPopup/checkoutRedirectionPopup.d.ts +13 -0
  25. package/dist/esm/components/UltimateBundleLinetable/index.d.ts +1 -0
  26. package/dist/esm/components/index.d.ts +1 -0
  27. package/dist/esm/index.js +2 -2
  28. package/dist/esm/services/LineTableService.d.ts +4 -2
  29. package/dist/esm/services/api-constants.d.ts +2 -0
  30. package/dist/esm/utils/constants.d.ts +4 -0
  31. package/dist/index.d.ts +3 -1
  32. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const FalconButtonV2: ({ content, className, ...restProps }: any) => JSX.Element;
3
+ export default FalconButtonV2;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const DpTableDeviceSection: ({ productData, mainContent, activeTab, tabIndex, deviceModelsList, deviceDetailsList, setDeviceDetails, fetchDeviceDetails }: any) => JSX.Element;
3
+ export default DpTableDeviceSection;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const DpTableFlexSection: ({ productData, mainContent, deviceDetailsList, selectedDeviceDetails }: any) => JSX.Element;
3
+ export default DpTableFlexSection;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const DpTableMobileSection: ({ productData, mainContent, offerDataList }: any) => JSX.Element;
3
+ export default DpTableMobileSection;
@@ -0,0 +1,43 @@
1
+ export interface hardwareSessionSchema {
2
+ id: string;
3
+ note: any;
4
+ hardwarePrices: any;
5
+ selectedContractType: string;
6
+ deviceRedirectUrl: string;
7
+ buyBackPrice: any;
8
+ itemType: string;
9
+ insuranceName?: string;
10
+ insurancePrice?: string;
11
+ }
12
+ export interface hardwareSessionObj {
13
+ hardwareVariant: hardwareSessionSchema;
14
+ }
15
+ export interface checkSubscriptionsSchema {
16
+ mbbSupportedSubscription: boolean;
17
+ simSelectedType: string;
18
+ enableV2Layout: boolean;
19
+ enableNoSubscriptionFlow: boolean;
20
+ dpSubsidyRatePlanPromoId: string;
21
+ }
22
+ export interface hardwareSessionObjV2 {
23
+ hardwareVariant: hardwareSessionSchema;
24
+ checkSubscriptions: checkSubscriptionsSchema;
25
+ }
26
+ export declare const getDeviceWithVarients: (deviceData: any) => {
27
+ deviceVarientsList: any;
28
+ colorsList: any[];
29
+ memoryList: any[];
30
+ defaultColorSelected: undefined;
31
+ defaultMemorySelected: undefined;
32
+ };
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) => {
36
+ itemType: string;
37
+ id: any;
38
+ }[] | null;
39
+ export declare const setDeviceSessionObject: (productData: any, offerDataList: any, deviceDetails: any, redirectionUrl: any) => void;
40
+ export declare const getDeviceNotes: (deviceDetails: any, upFrontValue: string) => {
41
+ author: string;
42
+ text: any;
43
+ }[];
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const UbTabContainer: ({ tabData, tabIndex, mainContent, activeTab, metadata }: any) => JSX.Element;
3
+ export default UbTabContainer;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const UltimateBundleLinetableContainer: ({ content, metadata }: any) => JSX.Element;
3
+ export default UltimateBundleLinetableContainer;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ declare const UltimateBundleProduct: ({ productData, mainContent, tabIndex, offerDataList, activeTab, deviceModelsList, deviceDetailsList, fetchDeviceDetails, metadata }: any) => JSX.Element;
3
+ export default UltimateBundleProduct;
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ interface LoginPopupSchema {
3
+ content: any;
4
+ customerSection?: any;
5
+ metadata: any;
6
+ togglePopup?: any;
7
+ isOpen?: any;
8
+ validation?: any;
9
+ noNewSubscriptionCheck?: any;
10
+ onLoginSuccessRedirection?: any;
11
+ }
12
+ declare const checkoutRedirectionPopup: ({ content, metadata, togglePopup, isOpen, validation, noNewSubscriptionCheck, onLoginSuccessRedirection, customerSection }: LoginPopupSchema) => JSX.Element;
13
+ export default checkoutRedirectionPopup;
@@ -0,0 +1 @@
1
+ export { default } from './UltimateBundleLinetableContainer';
@@ -13,3 +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';