@sunrise-upc/mobile-prod-card 9.3.1 → 9.3.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.
- package/dist/cjs/components/RecommendedOptions/ServiceOption/ServiceOptionCard/ServiceOptionCard.d.ts +2 -1
- package/dist/cjs/components/RecommendedOptions/ServiceOption/ServiceOptionPrice/ServiceOptionPrice.d.ts +2 -1
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/RecommendedOptions/ServiceOption/ServiceOptionCard/ServiceOptionCard.d.ts +2 -1
- package/dist/esm/components/RecommendedOptions/ServiceOption/ServiceOptionPrice/ServiceOptionPrice.d.ts +2 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ type ServiceOptionCardInterface = {
|
|
|
12
12
|
activeTab: string;
|
|
13
13
|
translations: RecommendedOptionsTranslations;
|
|
14
14
|
cartLoading: boolean;
|
|
15
|
+
beneficiaryProducts: any[];
|
|
15
16
|
};
|
|
16
|
-
declare const ServiceOptionCard: ({ content, checked, onClick, offer, category, show, setShowpop, serviceOptions, activeTab, translations, cartLoading }: ServiceOptionCardInterface) => JSX.Element;
|
|
17
|
+
declare const ServiceOptionCard: ({ content, checked, onClick, offer, category, show, setShowpop, serviceOptions, activeTab, translations, cartLoading, beneficiaryProducts }: ServiceOptionCardInterface) => JSX.Element;
|
|
17
18
|
export default ServiceOptionCard;
|
|
@@ -6,6 +6,7 @@ interface isflexitooltip {
|
|
|
6
6
|
showOptionToolTip?: boolean;
|
|
7
7
|
selections?: any;
|
|
8
8
|
translations: RecommendedOptionsTranslations;
|
|
9
|
+
beneficiaryProducts?: any[];
|
|
9
10
|
}
|
|
10
|
-
declare const ServiceOptionPrice: ({ content, isDetailsOverlay, showOptionToolTip, translations }: isflexitooltip) => JSX.Element;
|
|
11
|
+
declare const ServiceOptionPrice: ({ content, isDetailsOverlay, showOptionToolTip, translations, beneficiaryProducts }: isflexitooltip) => JSX.Element;
|
|
11
12
|
export default ServiceOptionPrice;
|