@umituz/react-native-subscription 2.39.5 → 2.39.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.39.5",
3
+ "version": "2.39.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",
@@ -21,7 +21,7 @@ export const FeedbackOption: React.FC<FeedbackOptionProps> = React.memo(({
21
21
 
22
22
  const containerStyle = {
23
23
  marginBottom: tokens.spacing.sm,
24
- backgroundColor: tokens.colors.surfaceVariant,
24
+ backgroundColor: tokens.colors.surfaceSecondary,
25
25
  borderRadius: tokens.borderRadius.md,
26
26
  overflow: "hidden" as const,
27
27
  };
@@ -7,7 +7,7 @@
7
7
  */
8
8
 
9
9
  import React, { useMemo, useCallback } from "react";
10
- import { View, ScrollView, TouchableOpacity, StyleSheet } from "react-native";
10
+ import { View, ScrollView, TouchableOpacity } from "react-native";
11
11
  import { AtomicText, AtomicIcon } from "@umituz/react-native-design-system/atoms";
12
12
  import { useSafeAreaInsets } from "@umituz/react-native-design-system/safe-area";
13
13
  import { useAppDesignTokens } from "@umituz/react-native-design-system/theme";
@@ -114,7 +114,7 @@ export const PaywallFeedbackScreen: React.FC<PaywallFeedbackScreenProps> = React
114
114
  style={[
115
115
  screenStyles.submitButton,
116
116
  {
117
- backgroundColor: canSubmit ? tokens.colors.primary : tokens.colors.surfaceVariant,
117
+ backgroundColor: canSubmit ? tokens.colors.primary : tokens.colors.surfaceSecondary,
118
118
  opacity: canSubmit ? 1 : 0.6,
119
119
  }
120
120
  ]}
@@ -139,7 +139,7 @@ export const PaywallFeedbackScreen: React.FC<PaywallFeedbackScreenProps> = React
139
139
 
140
140
  PaywallFeedbackScreen.displayName = "PaywallFeedbackScreen";
141
141
 
142
- const createScreenStyles = (tokens: any, insets: any) => ({
142
+ const createScreenStyles = (tokens: any, _insets: any) => ({
143
143
  container: {
144
144
  flex: 1,
145
145
  },
@@ -39,7 +39,7 @@ export const SubscriptionDetailScreen: React.FC<SubscriptionDetailScreenProps> =
39
39
  onPress={config.onClose}
40
40
  style={({ pressed }) => ({
41
41
  width: 44, height: 44, justifyContent: "center", alignItems: "center",
42
- backgroundColor: pressed ? tokens.colors.surfaceVariant : tokens.colors.surface,
42
+ backgroundColor: pressed ? tokens.colors.surfaceSecondary : tokens.colors.surface,
43
43
  borderRadius: tokens.radius.full,
44
44
  })}
45
45
  >