@sunrise-upc/mobile-prod-card 3.0.3-beta.5 → 3.0.3-beta.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/PretoPost/PreToPostSubsPopup.d.ts +3 -0
- package/dist/cjs/components/PretoPost/index.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 +1 -1
- package/dist/cjs/components/StaticLineTable/StaticProductDatatypes.d.ts +2 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/index.js +8 -1
- package/dist/cjs/services/LineTableService.d.ts +2 -2
- package/dist/cjs/utils/constants.d.ts +2 -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/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 +1 -1
- package/dist/esm/components/StaticLineTable/StaticProductDatatypes.d.ts +2 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/index.js +8 -1
- package/dist/esm/services/LineTableService.d.ts +2 -2
- package/dist/esm/utils/constants.d.ts +2 -0
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './PreToPostSubsPopup';
|
@@ -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,7 +4,7 @@ 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) => 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
9
|
export declare const combineWithSmartPhone: (showPrice: any, storyContent: any, uniqueProductData: any) => void;
|
10
10
|
export declare const fetchServiceOptions: (entitlement: any, isMobileFlow: boolean) => any;
|
@@ -10,3 +10,4 @@ export { default as StaticLineTable } from './StaticLineTable';
|
|
10
10
|
export { default as LinecheckModal } from './LineCheckV3';
|
11
11
|
export { default as BenefitWrapper } from './BenefitWrapper';
|
12
12
|
export { default as Breadcrumb } from './Breadcrumb';
|
13
|
+
export { default as PretoPostSubsPopup } from './PretoPost';
|