@sunrise-upc/mobile-prod-card 3.0.4 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/Breadcrumb/Breadcrumb.d.ts +3 -0
- package/dist/cjs/components/Breadcrumb/index.d.ts +1 -0
- package/dist/cjs/components/Breadcrumb/useScrollCheck.d.ts +4 -0
- package/dist/cjs/components/PretoPost/PreToPostSubsPopup.d.ts +3 -0
- package/dist/cjs/components/PretoPost/index.d.ts +1 -0
- 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/ExsistingSubscriptionCards.d.ts +11 -0
- package/dist/cjs/components/StaticLineTable/ExsistingSubscriptionModal.d.ts +8 -0
- package/dist/cjs/components/StaticLineTable/Product.utils.d.ts +2 -2
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +5 -0
- package/dist/cjs/components/index.d.ts +2 -0
- package/dist/cjs/index.js +1 -8
- package/dist/cjs/services/LineTableService.d.ts +2 -2
- package/dist/cjs/utils/constants.d.ts +3 -0
- package/dist/esm/components/Breadcrumb/Breadcrumb.d.ts +3 -0
- package/dist/esm/components/Breadcrumb/index.d.ts +1 -0
- package/dist/esm/components/Breadcrumb/useScrollCheck.d.ts +4 -0
- package/dist/esm/components/PretoPost/PreToPostSubsPopup.d.ts +3 -0
- package/dist/esm/components/PretoPost/index.d.ts +1 -0
- 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/ExsistingSubscriptionCards.d.ts +11 -0
- package/dist/esm/components/StaticLineTable/ExsistingSubscriptionModal.d.ts +8 -0
- package/dist/esm/components/StaticLineTable/Product.utils.d.ts +2 -2
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +5 -0
- package/dist/esm/components/index.d.ts +2 -0
- package/dist/esm/index.js +1 -8
- package/dist/esm/services/LineTableService.d.ts +2 -2
- package/dist/esm/utils/constants.d.ts +3 -0
- package/dist/index.d.ts +7 -1
- package/package.json +2 -2
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './Breadcrumb';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './PreToPostSubsPopup';
|
@@ -39,6 +39,7 @@ export interface ProductTeaserCompSchema extends GenericSBProps {
|
|
39
39
|
export interface ProductTeaserSchema {
|
40
40
|
content: ProductTeaserCompSchema;
|
41
41
|
lineCheckCallBack?: () => void;
|
42
|
+
linecheckSuccessCallBack?: () => void;
|
42
43
|
changeAddressClicked?: boolean;
|
43
44
|
offerDataCallBack?: (a: any, b: any, c?: string) => void;
|
44
45
|
productCallBack?: (a: string) => void;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
interface ExistingSubscriptionSchema {
|
3
|
+
name?: string;
|
4
|
+
subscriptionData: any;
|
5
|
+
cardIndex?: any;
|
6
|
+
updateBorderMethod?: (key?: number) => void;
|
7
|
+
selectedCardIndex?: number;
|
8
|
+
subscriptionCardsLength?: any;
|
9
|
+
}
|
10
|
+
declare const ExistingSubscriptionCards: ({ subscriptionData, cardIndex, updateBorderMethod, selectedCardIndex, subscriptionCardsLength, }: ExistingSubscriptionSchema) => JSX.Element;
|
11
|
+
export default ExistingSubscriptionCards;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
interface ExsistingModalSchema {
|
3
|
+
exsistingSubscriptionData: any;
|
4
|
+
onSubmit?: any;
|
5
|
+
updatedContent?: any;
|
6
|
+
}
|
7
|
+
declare const ExsistingSubscriptionModal: ({ onSubmit, exsistingSubscriptionData, updatedContent }: ExsistingModalSchema) => JSX.Element;
|
8
|
+
export default ExsistingSubscriptionModal;
|
@@ -4,8 +4,8 @@ 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) => 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) => any;
|
8
8
|
export declare const findHeight: (tabIndex: number, cardsLength: number) => void;
|
9
|
-
export declare const combineWithSmartPhone: (showPrice: any, storyContent: any, uniqueProductData: any) => void;
|
9
|
+
export declare const combineWithSmartPhone: (showPrice: any, storyContent: any, uniqueProductData: any, responseData?: any) => void;
|
10
10
|
export declare const fetchServiceOptions: (entitlement: any, isMobileFlow: boolean) => any;
|
11
11
|
export declare const fetchPrice: (product: any, isMobileFlow: boolean, pageType?: string, isConfigurator?: boolean) => any;
|
@@ -5,6 +5,7 @@ export interface StaticLinetableSchema {
|
|
5
5
|
metadata: any;
|
6
6
|
loginSuccess?: boolean;
|
7
7
|
changeAddressClicked?: any;
|
8
|
+
lineCheckCallBack?: any;
|
8
9
|
linecheckSuccessCallBack?: any;
|
9
10
|
selectedOption?: string;
|
10
11
|
basicConfigUrl?: string;
|
@@ -24,12 +25,15 @@ export interface StaticProductSchema {
|
|
24
25
|
mainContent?: any;
|
25
26
|
address?: any;
|
26
27
|
linecheckSuccessCallBack?: any;
|
28
|
+
lineCheckCallBack?: any;
|
27
29
|
eligibleBundle?: any;
|
28
30
|
selectedOption?: string;
|
29
31
|
fetchOfferData?: any;
|
30
32
|
basicConfigUrl?: string;
|
31
33
|
selectedExistingOption?: any;
|
32
34
|
setLoginSuccess?: any;
|
35
|
+
enableP2P?: boolean;
|
36
|
+
loginSuccess?: boolean;
|
33
37
|
}
|
34
38
|
export interface DynamicPriceSchema {
|
35
39
|
priceCollection: any;
|
@@ -52,6 +56,7 @@ export interface StaticProductContainerSchema {
|
|
52
56
|
basicConfigUrl?: string;
|
53
57
|
selectedExistingOption?: any;
|
54
58
|
setLoginSuccess?: any;
|
59
|
+
lineCheckCallBack?: any;
|
55
60
|
}
|
56
61
|
export interface StaticProductDetailsSchema {
|
57
62
|
content: any;
|
@@ -9,3 +9,5 @@ export { default as StickyProductAnchor } from './StickyProductAnchor';
|
|
9
9
|
export { default as StaticLineTable } from './StaticLineTable';
|
10
10
|
export { default as LinecheckModal } from './LineCheckV3';
|
11
11
|
export { default as BenefitWrapper } from './BenefitWrapper';
|
12
|
+
export { default as Breadcrumb } from './Breadcrumb';
|
13
|
+
export { default as PretoPostSubsPopup } from './PretoPost';
|