@sunrise-upc/mobile-prod-card 8.0.9 → 8.1.0

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.
@@ -1,3 +1,18 @@
1
1
  import React from 'react';
2
- declare const OttServiceOptionsSmallPopup: ({ content, addOptionsCallBack, metadata, constants, mainContent, preSelectedOptions, optionsResponse, updateResponseList, showPrice, productData, offeringData, uniqueId, deviceFlow }: any) => React.JSX.Element;
2
+ interface OttServiceOptionsSmallPopupProps {
3
+ content: any;
4
+ addOptionsCallBack: (option?: any[] | undefined) => void;
5
+ metadata: any;
6
+ constants: any;
7
+ mainContent: any;
8
+ preSelectedOptions: any[];
9
+ optionsResponse: any[];
10
+ updateResponseList: (list: any) => void;
11
+ showPrice?: any;
12
+ productData?: any;
13
+ offeringData?: any;
14
+ uniqueId?: any;
15
+ deviceFlow?: any;
16
+ }
17
+ declare const OttServiceOptionsSmallPopup: ({ content, addOptionsCallBack, metadata, constants, mainContent, preSelectedOptions, optionsResponse, updateResponseList, showPrice, productData, offeringData, uniqueId, deviceFlow }: OttServiceOptionsSmallPopupProps) => React.JSX.Element;
3
18
  export default OttServiceOptionsSmallPopup;
@@ -17,3 +17,4 @@ export { default as DpLinetable } from './UltimateBundleLinetable';
17
17
  export { default as CoverageCheckModal } from './NewLineCheck/CoverageCheckModal';
18
18
  export { default as StickyBottomSheet } from './StickyBottomSheet';
19
19
  export { default as ProgressionBar } from './ProgressionBar';
20
+ export { default as OttServiceOptionsSmallPopup } from './StaticLineTable/OttServiceOptions/OttServiceOptionsSmallPopup';