@sunrise-upc/mobile-prod-card 8.0.4 → 8.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/ProgressionBar/ProgressionBar.d.ts +7 -0
- package/dist/cjs/components/ProgressionBar/index.d.ts +1 -0
- package/dist/cjs/components/StaticLineTable/Product.utils.d.ts +1 -0
- package/dist/cjs/components/UltimateBundleLinetable/DpTableUtils.d.ts +1 -0
- package/dist/cjs/components/index.d.ts +2 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/utils/constants.d.ts +1 -0
- package/dist/esm/components/ProgressionBar/ProgressionBar.d.ts +7 -0
- package/dist/esm/components/ProgressionBar/index.d.ts +1 -0
- package/dist/esm/components/StaticLineTable/Product.utils.d.ts +1 -0
- package/dist/esm/components/UltimateBundleLinetable/DpTableUtils.d.ts +1 -0
- package/dist/esm/components/index.d.ts +2 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/utils/constants.d.ts +1 -0
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -36,6 +36,7 @@ export declare const WP_FLEX_UPGRADE = "FLEX_UPGRADE";
|
|
|
36
36
|
export declare const WP_FLEX_UPGRADE_NOT = "FLEX_UPGRADE_NOT";
|
|
37
37
|
export declare const EXCLUSIVE_BENEFIT_COLOR = "#008187";
|
|
38
38
|
export declare const ULTIMATEBUNDLE = "ultimateBundle";
|
|
39
|
+
export declare const ONE_ECOMMERCE_INTERNET_SUMMARY = "one-ecommerce-internetSummary";
|
|
39
40
|
export declare const MOBILE = "mobile";
|
|
40
41
|
export declare const DESKTOP = "desktop";
|
|
41
42
|
export declare const LARGE_DESKTOP = "large-desktop";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './ProgressionBar';
|
|
@@ -9,6 +9,7 @@ export declare const staticCreateCart: (setShowLoader: {
|
|
|
9
9
|
}, 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, discountRef?: string, discountVersion?: string) => any;
|
|
10
10
|
export declare const findHeight: (tabIndex: number, cardsLength: number) => void;
|
|
11
11
|
export declare const combineWithSmartPhone: (showPrice: any, storyContent: any, uniqueProductData: any, responseData?: any, product?: any, pegaIntegration?: boolean) => void;
|
|
12
|
+
export declare const combineWithVasOptions: (showPrice: any, uniqueProductData: any, product?: any, pegaIntegration?: boolean, productName?: string) => void;
|
|
12
13
|
export declare const fetchServiceOptions: (entitlement: any, isMobileFlow: boolean) => any;
|
|
13
14
|
export declare const fetchPrice: (product: any, isMobileFlow: boolean, pageType?: string, isConfigurator?: boolean, tvOptions?: any[], pegaIntegration?: boolean) => any;
|
|
14
15
|
export declare const fetchFilteredProducts: (productList: any, toggleState: any) => any[];
|
|
@@ -18,6 +18,7 @@ export interface checkSubscriptionsSchema {
|
|
|
18
18
|
enableV2Layout: boolean;
|
|
19
19
|
enableNoSubscriptionFlow: boolean;
|
|
20
20
|
dpSubsidyRatePlanPromoId: string;
|
|
21
|
+
enableRecommendedAccessory: boolean;
|
|
21
22
|
}
|
|
22
23
|
export interface hardwareSessionObjV2 {
|
|
23
24
|
hardwareVariant: hardwareSessionSchema;
|
|
@@ -15,4 +15,5 @@ export { default as HeroLogin } from './HeroLogin';
|
|
|
15
15
|
export { default as CheckCoverage } from './NewLineCheck/CovercheckWrapper';
|
|
16
16
|
export { default as DpLinetable } from './UltimateBundleLinetable';
|
|
17
17
|
export { default as CoverageCheckModal } from './NewLineCheck/CoverageCheckModal';
|
|
18
|
-
export { default as StickyBottomSheet } from
|
|
18
|
+
export { default as StickyBottomSheet } from './StickyBottomSheet';
|
|
19
|
+
export { default as ProgressionBar } from './ProgressionBar';
|