@sunrise-upc/mobile-prod-card 6.4.2 → 7.0.1

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.
@@ -52,6 +52,7 @@ export interface StaticProductSchema {
52
52
  lineCheckOnClear?: any;
53
53
  pegaIntegration?: boolean;
54
54
  isProdEnv?: boolean;
55
+ toggleContent?: toggleContentSchema;
55
56
  }
56
57
  export interface DynamicPriceSchema {
57
58
  priceCollection: any;
@@ -92,6 +93,7 @@ export interface StaticProductContainerSchema {
92
93
  isFetching?: boolean;
93
94
  setIsFetching?: any;
94
95
  isProdEnv?: boolean;
96
+ toggleContent?: toggleContentSchema;
95
97
  }
96
98
  export interface StaticProductDetailsSchema {
97
99
  content: any;
@@ -122,3 +124,7 @@ export interface CheckoutButtonSchema {
122
124
  deviceFlowCallBack?: any;
123
125
  alwaysActive?: boolean;
124
126
  }
127
+ export interface toggleContentSchema {
128
+ enableLoggedInPrice: string;
129
+ togglePosition: string;
130
+ }
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ interface UserLoggedPricesToggleProps {
3
+ content: any;
4
+ index: number;
5
+ price: {
6
+ mob_benefit_category?: string;
7
+ [key: string]: any;
8
+ };
9
+ lineTable: boolean;
10
+ toggleContent?: any;
11
+ }
12
+ declare const UserLoggedPricesToggle: ({ content, index, price, lineTable, toggleContent }: UserLoggedPricesToggleProps) => JSX.Element;
13
+ export default UserLoggedPricesToggle;