@sunrise-upc/mobile-prod-card 7.3.0 → 7.4.2

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.
@@ -30,6 +30,7 @@ export declare const HARDWARE = "HARDWARE";
30
30
  export declare const DEFAULT_AVAILABILITY_TEXT = "dd_delivery_details";
31
31
  export declare const DEVICE_INSURANCE = "DEVICE_INSURANCE";
32
32
  export declare const NOT_AVAILABLE = "NOT_AVAILABLE";
33
+ export declare const ONE_ECOMMERCE_INTERNET_SUMMARY = "one-ecommerce-internetSummary";
33
34
  export declare const MOBILE = "mobile";
34
35
  export declare const DESKTOP = "desktop";
35
36
  export declare const LARGE_DESKTOP = "large-desktop";
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ type ProgressionBarProps = {
3
+ step: number;
4
+ steps: any[];
5
+ };
6
+ declare const ProgressionBar: ({ step, steps }: ProgressionBarProps) => JSX.Element;
7
+ export default ProgressionBar;
@@ -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 "./StickyBottomSheet";
18
+ export { default as StickyBottomSheet } from './StickyBottomSheet';
19
+ export { default as ProgressionBar } from './ProgressionBar';