@umituz/react-native-subscription 2.12.10 → 2.12.12

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.12.10",
3
+ "version": "2.12.12",
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",
@@ -154,7 +154,7 @@ export const PaywallModal: React.FC<PaywallModalProps> = React.memo((props) => {
154
154
  style={[styles.cta, { backgroundColor: tokens.colors.primary }, (isPurchaseDisabled || isProcessing) && styles.ctaDisabled]}
155
155
  activeOpacity={0.8}
156
156
  >
157
- <AtomicText type="titleLarge" style={[styles.ctaText, { color: tokens.colors.onPrimary }]}>
157
+ <AtomicText type="titleLarge" style={[styles.ctaText, { color: tokens.colors.white }]}>
158
158
  {isProcessing ? translations.processingText : showSubscription ? translations.subscribeButtonText : translations.purchaseButtonText}
159
159
  </AtomicText>
160
160
  </TouchableOpacity>
@@ -197,11 +197,11 @@ const styles = StyleSheet.create({
197
197
  scroll: { flexGrow: 1, padding: 16, paddingTop: 48 },
198
198
  header: { alignItems: "center", marginBottom: 12 },
199
199
  title: { fontWeight: "700", textAlign: "center", marginBottom: 4 },
200
- subtitle: { textAlign: "center", lineHeight: 20, fontSize: 14 },
200
+ subtitle: { textAlign: "center" },
201
201
  features: { borderRadius: 12, padding: 12, marginBottom: 12, gap: 8 },
202
202
  featureRow: { flexDirection: "row", alignItems: "center" },
203
203
  featureIcon: { width: 32, height: 32, borderRadius: 16, justifyContent: "center", alignItems: "center", marginRight: 8 },
204
- featureText: { flex: 1, fontWeight: "500", fontSize: 14 },
204
+ featureText: { flex: 1, fontWeight: "500" },
205
205
  loading: { alignItems: "center", paddingVertical: 24 },
206
206
  loadingText: { marginTop: 8 },
207
207
  plans: { marginBottom: 12 },