@sunrise-upc/mobile-prod-card 4.6.1-beta.9 → 4.7.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/NewLineCheck/SuccessCoverage.d.ts +1 -1
- package/dist/cjs/components/ProductTeaser/ProductTeaser.d.ts +1 -0
- package/dist/cjs/components/ProductTeaser/ProductTeaserSlides.d.ts +1 -0
- package/dist/cjs/components/StaticLineTable/OttServiceOptions/OttServiceOptionsLoader/OttServiceOptionsLoader.d.ts +2 -0
- package/dist/cjs/components/StaticLineTable/OttServiceOptions/OttServiceOptionsPopup.d.ts +1 -1
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +4 -0
- package/dist/cjs/index.js +2 -2
- package/dist/esm/components/NewLineCheck/SuccessCoverage.d.ts +1 -1
- package/dist/esm/components/ProductTeaser/ProductTeaser.d.ts +1 -0
- package/dist/esm/components/ProductTeaser/ProductTeaserSlides.d.ts +1 -0
- package/dist/esm/components/StaticLineTable/OttServiceOptions/OttServiceOptionsLoader/OttServiceOptionsLoader.d.ts +2 -0
- package/dist/esm/components/StaticLineTable/OttServiceOptions/OttServiceOptionsPopup.d.ts +1 -1
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +4 -0
- package/dist/esm/index.js +2 -2
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
@@ -1,3 +1,3 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
declare const SuccessCoverage: ({ content, data, lcData, setLcData, advData, desktopOverlay, mobileOverlay, handleModal, setAdvData, productName,
|
2
|
+
declare const SuccessCoverage: ({ content, data, lcData, setLcData, advData, desktopOverlay, mobileOverlay, handleModal, setAdvData, productName, lineCheckOnClear, onCreateCart, isModal, setShowModal, productId }: any) => JSX.Element;
|
3
3
|
export default SuccessCoverage;
|
@@ -44,6 +44,7 @@ export interface ProductTeaserSchema {
|
|
44
44
|
offerDataCallBack?: (a: any, b: any, c?: string) => void;
|
45
45
|
productCallBack?: (a: string) => void;
|
46
46
|
tableSelectedTab?: string;
|
47
|
+
lineCheckOnClear?: () => void;
|
47
48
|
}
|
48
49
|
declare const ProductTeaser: FC<ProductTeaserSchema>;
|
49
50
|
export default ProductTeaser;
|
@@ -9,6 +9,7 @@ export interface ProductTeaserSlidesSchema {
|
|
9
9
|
linecheckSuccessCallBack?: () => void;
|
10
10
|
setEnableToggle?: any;
|
11
11
|
tableSelectedTab?: string;
|
12
|
+
lineCheckOnClear?: () => void;
|
12
13
|
}
|
13
14
|
declare const ProductTeaserSlides: FC<ProductTeaserSlidesSchema>;
|
14
15
|
export default ProductTeaserSlides;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
declare const OttServiceOptionsPopup: ({ content, showPopup, setShowPopup, addOptionsCallBack, metadata, constants, mainContent, preSelectedOptions }: any) => JSX.Element;
|
2
|
+
declare const OttServiceOptionsPopup: ({ content, showPopup, setShowPopup, addOptionsCallBack, metadata, constants, mainContent, preSelectedOptions, optionsResponse, updateResponseList }: any) => JSX.Element;
|
3
3
|
export default OttServiceOptionsPopup;
|
@@ -14,6 +14,7 @@ export interface StaticLinetableSchema {
|
|
14
14
|
deviceFlow?: any;
|
15
15
|
deviceFlowCallBack?: any;
|
16
16
|
ubRatePlanObj?: any;
|
17
|
+
lineCheckOnClear?: any;
|
17
18
|
}
|
18
19
|
export interface StaticProductSchema {
|
19
20
|
content: any;
|
@@ -44,6 +45,7 @@ export interface StaticProductSchema {
|
|
44
45
|
deviceFlowCallBack?: any;
|
45
46
|
selectedRP?: any;
|
46
47
|
continueCart?: any;
|
48
|
+
lineCheckOnClear?: any;
|
47
49
|
}
|
48
50
|
export interface DynamicPriceSchema {
|
49
51
|
priceCollection: any;
|
@@ -74,6 +76,7 @@ export interface StaticProductContainerSchema {
|
|
74
76
|
deviceFlow?: any;
|
75
77
|
deviceFlowCallBack?: any;
|
76
78
|
ubRatePlanObj?: any;
|
79
|
+
lineCheckOnClear?: any;
|
77
80
|
}
|
78
81
|
export interface StaticProductDetailsSchema {
|
79
82
|
content: any;
|
@@ -102,4 +105,5 @@ export interface CheckoutButtonSchema {
|
|
102
105
|
address?: any;
|
103
106
|
deviceFlow?: any;
|
104
107
|
deviceFlowCallBack?: any;
|
108
|
+
alwaysActive?: boolean;
|
105
109
|
}
|