@sunrise-upc/mobile-prod-card 4.6.1-beta.1 → 4.6.1-beta.11
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/NewLineCheck/CoverageCheckModal.d.ts +3 -0
- package/dist/cjs/components/NewLineCheck/CoverageCheckUtils.d.ts +7 -1
- package/dist/cjs/components/NewLineCheck/GenericModal.d.ts +19 -0
- package/dist/cjs/components/NewLineCheck/SuccessCoverage.d.ts +1 -1
- package/dist/cjs/components/NewLineCheck/index.d.ts +2 -1
- package/dist/cjs/components/StaticLineTable/OttServiceOptions/OttServiceOptionsModal.d.ts +15 -0
- package/dist/cjs/components/StaticLineTable/OttServiceOptions/OttServiceOptionsPopup.d.ts +3 -0
- package/dist/cjs/components/StaticLineTable/Product.utils.d.ts +3 -3
- package/dist/cjs/components/StaticLineTable/TvOptionsContainer.d.ts +3 -0
- package/dist/cjs/components/index.d.ts +2 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/services/LineTableService.d.ts +1 -1
- package/dist/cjs/services/api-constants.d.ts +1 -0
- package/dist/cjs/utils/constants.d.ts +1 -0
- package/dist/cjs/utils/utils.d.ts +1 -0
- package/dist/esm/components/NewLineCheck/CoverageCheckModal.d.ts +3 -0
- package/dist/esm/components/NewLineCheck/CoverageCheckUtils.d.ts +7 -1
- package/dist/esm/components/NewLineCheck/GenericModal.d.ts +19 -0
- package/dist/esm/components/NewLineCheck/SuccessCoverage.d.ts +1 -1
- package/dist/esm/components/NewLineCheck/index.d.ts +2 -1
- package/dist/esm/components/StaticLineTable/OttServiceOptions/OttServiceOptionsModal.d.ts +15 -0
- package/dist/esm/components/StaticLineTable/OttServiceOptions/OttServiceOptionsPopup.d.ts +3 -0
- package/dist/esm/components/StaticLineTable/Product.utils.d.ts +3 -3
- package/dist/esm/components/StaticLineTable/TvOptionsContainer.d.ts +3 -0
- package/dist/esm/components/index.d.ts +2 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/services/LineTableService.d.ts +1 -1
- package/dist/esm/services/api-constants.d.ts +1 -0
- package/dist/esm/utils/constants.d.ts +1 -0
- package/dist/esm/utils/utils.d.ts +1 -0
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
@@ -1,4 +1,10 @@
|
|
1
|
-
export declare const fetchAddress: (address: any, controllerRef: any, setAddErr: any, count?: number) => Promise<any[] |
|
1
|
+
export declare const fetchAddress: (address: any, controllerRef: any, setAddErr: any, count?: number) => Promise<any[] | {
|
2
|
+
abortError: boolean;
|
3
|
+
error?: undefined;
|
4
|
+
} | {
|
5
|
+
error: boolean;
|
6
|
+
abortError?: undefined;
|
7
|
+
} | undefined>;
|
2
8
|
export declare const getLineCheckService: (selectedAdd: any, setLcData: any, lcData: any) => unknown;
|
3
9
|
export declare const fetchLineCheck: (payload: any, setLcData: any, lcData: any) => Promise<{
|
4
10
|
corelationaId: any;
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
interface GenericModalSchema {
|
3
|
+
modalState: boolean;
|
4
|
+
handler: () => void;
|
5
|
+
children: React.ReactNode;
|
6
|
+
showFooter: boolean;
|
7
|
+
footerNode?: React.ReactNode;
|
8
|
+
height?: string;
|
9
|
+
width?: string;
|
10
|
+
noCloseButton?: boolean;
|
11
|
+
backDrop?: boolean;
|
12
|
+
fixedWidth?: string;
|
13
|
+
backgroundColor?: string;
|
14
|
+
bodyPadding?: string;
|
15
|
+
id?: string;
|
16
|
+
isMobile?: boolean;
|
17
|
+
}
|
18
|
+
declare const GenericModal: ({ modalState, handler, showFooter, footerNode, children, width, height, noCloseButton, backDrop, fixedWidth, backgroundColor, bodyPadding, id, isMobile }: GenericModalSchema) => JSX.Element;
|
19
|
+
export default GenericModal;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
declare const SuccessCoverage: ({ content, data, lcData, setLcData, advData, desktopOverlay, mobileOverlay, handleModal, setAdvData }: any) => JSX.Element;
|
2
|
+
declare const SuccessCoverage: ({ content, data, lcData, setLcData, advData, desktopOverlay, mobileOverlay, handleModal, setAdvData, productName, onClear, onCreateCart, isModal, setShowModal }: any) => JSX.Element;
|
3
3
|
export default SuccessCoverage;
|
@@ -1 +1,2 @@
|
|
1
|
-
export { default } from './CovercheckWrapper';
|
1
|
+
export { default as CheckCoverage } from './CovercheckWrapper';
|
2
|
+
export { default as CoverageCheckModal } from './CoverageCheckModal';
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
interface GenericModalSchema {
|
3
|
+
modalState: boolean;
|
4
|
+
handler: () => void;
|
5
|
+
children: React.ReactNode;
|
6
|
+
showFooter: boolean;
|
7
|
+
content?: any;
|
8
|
+
footerNode?: any;
|
9
|
+
height?: string;
|
10
|
+
width?: string;
|
11
|
+
backDrop?: boolean;
|
12
|
+
backButton?: string;
|
13
|
+
}
|
14
|
+
declare const OttServiceOptionsModal: ({ modalState, handler, content, showFooter, footerNode, children, height }: GenericModalSchema) => any;
|
15
|
+
export default OttServiceOptionsModal;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { SetStateAction } from 'react';
|
2
|
-
export declare const fetchStaticProductIds: (productList: any, productId: any, bundle4PProduct?: boolean) => any;
|
2
|
+
export declare const fetchStaticProductIds: (productList: any, productId: any, bundle4PProduct?: boolean, tvOptionIds?: any) => any;
|
3
3
|
export declare const checkGiftOrCashback: (data: any) => any;
|
4
4
|
export declare const staticCreateCart: (setShowLoader: {
|
5
5
|
(value: SetStateAction<boolean>): void;
|
6
6
|
(arg0: boolean): void;
|
7
|
-
}, cartEndPoint: string, giftItem: any, uniqueProductData: any, mainContent: any, showPrice: any, isMobileFlow: boolean, radioValue: any, eligibleBundle: any, address: any, setShowLinecheck: any, showLinecheck: any, lineCheckCallBack: any, enableP2P: any, P2PData: any, content: any) => any;
|
7
|
+
}, cartEndPoint: string, giftItem: any, uniqueProductData: any, mainContent: any, showPrice: any, isMobileFlow: boolean, radioValue: any, eligibleBundle: any, address: any, setShowLinecheck: any, showLinecheck: any, lineCheckCallBack: any, enableP2P: any, P2PData: any, content: any, tvOptions?: any) => any;
|
8
8
|
export declare const findHeight: (tabIndex: number, cardsLength: number) => void;
|
9
9
|
export declare const combineWithSmartPhone: (showPrice: any, storyContent: any, uniqueProductData: any, responseData?: any, product?: any) => void;
|
10
10
|
export declare const fetchServiceOptions: (entitlement: any, isMobileFlow: boolean) => any;
|
11
|
-
export declare const fetchPrice: (product: any, isMobileFlow: boolean, pageType?: string, isConfigurator?: boolean) => any;
|
11
|
+
export declare const fetchPrice: (product: any, isMobileFlow: boolean, pageType?: string, isConfigurator?: boolean, tvOptionsPrice?: number) => any;
|
12
12
|
export declare const fetchFilteredProducts: (productList: any, toggleState: any) => any[];
|
@@ -12,5 +12,6 @@ export { default as BenefitWrapper } from './BenefitWrapper';
|
|
12
12
|
export { default as Breadcrumb } from './Breadcrumb';
|
13
13
|
export { default as PretoPostSubsPopup } from './PretoPost';
|
14
14
|
export { default as HeroLogin } from './HeroLogin';
|
15
|
-
export { default as CheckCoverage } from './NewLineCheck';
|
15
|
+
export { default as CheckCoverage } from './NewLineCheck/CovercheckWrapper';
|
16
16
|
export { default as DpLinetable } from './UltimateBundleLinetable';
|
17
|
+
export { default as CoverageCheckModal } from './NewLineCheck/CoverageCheckModal';
|