@umituz/react-native-subscription 2.10.4 → 2.10.6
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-subscription",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.6",
|
|
4
4
|
"description": "Complete subscription management with RevenueCat, paywall UI, and credits system for React Native apps",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -41,6 +41,9 @@ export interface PaywallModalProps {
|
|
|
41
41
|
purchaseButtonText: string;
|
|
42
42
|
subscribeButtonText: string;
|
|
43
43
|
restoreButtonText: string;
|
|
44
|
+
loadingText: string;
|
|
45
|
+
emptyText: string;
|
|
46
|
+
processingText: string;
|
|
44
47
|
privacyUrl?: string;
|
|
45
48
|
termsUrl?: string;
|
|
46
49
|
privacyText?: string;
|
|
@@ -72,6 +75,9 @@ export const PaywallModal: React.FC<PaywallModalProps> = React.memo((props) => {
|
|
|
72
75
|
privacyText,
|
|
73
76
|
termsOfServiceText,
|
|
74
77
|
restoreButtonText,
|
|
78
|
+
loadingText,
|
|
79
|
+
emptyText,
|
|
80
|
+
processingText,
|
|
75
81
|
} = props;
|
|
76
82
|
|
|
77
83
|
const { modalLayout } = useResponsive();
|
|
@@ -141,12 +147,15 @@ export const PaywallModal: React.FC<PaywallModalProps> = React.memo((props) => {
|
|
|
141
147
|
features={subscriptionFeatures}
|
|
142
148
|
isLoading={isLoading}
|
|
143
149
|
purchaseButtonText={subscribeButtonText}
|
|
150
|
+
processingText={processingText}
|
|
151
|
+
restoreButtonText={restoreButtonText}
|
|
152
|
+
loadingText={loadingText}
|
|
153
|
+
emptyText={emptyText}
|
|
144
154
|
onRestore={onRestore}
|
|
145
155
|
privacyUrl={privacyUrl}
|
|
146
156
|
termsUrl={termsUrl}
|
|
147
157
|
privacyText={privacyText}
|
|
148
158
|
termsOfServiceText={termsOfServiceText}
|
|
149
|
-
restoreButtonText={restoreButtonText}
|
|
150
159
|
/>
|
|
151
160
|
)}
|
|
152
161
|
</View>
|