@umituz/react-native-settings 4.23.33 → 4.23.34

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-settings",
3
- "version": "4.23.33",
3
+ "version": "4.23.34",
4
4
  "description": "Complete settings hub for React Native apps - consolidated package with settings, about, legal, appearance, feedback, FAQs, rating, and gamification",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -66,7 +66,7 @@ export const RatingPromptModal: React.FC<RatingPromptModalProps> = ({
66
66
  {
67
67
  backgroundColor: tokens.colors.surface,
68
68
  borderRadius: tokens.borders.radius.xl,
69
- padding: responsive.screenPadding,
69
+ padding: tokens.spacing.lg,
70
70
  maxWidth: responsive.maxContentWidth * 0.85,
71
71
  width: "90%",
72
72
  },
@@ -100,17 +100,17 @@ export const RatingPromptModal: React.FC<RatingPromptModalProps> = ({
100
100
 
101
101
  <View style={[styles.buttonContainer, { gap: tokens.spacing.sm }]}>
102
102
  <AtomicButton
103
- variant="filled"
103
+ variant="fill"
104
104
  onPress={onPositive}
105
- containerStyle={styles.button}
105
+ style={styles.button}
106
106
  >
107
107
  {defaultTranslations.positiveButton}
108
108
  </AtomicButton>
109
109
 
110
110
  <AtomicButton
111
- variant="outlined"
111
+ variant="outline"
112
112
  onPress={onNegative}
113
- containerStyle={styles.button}
113
+ style={styles.button}
114
114
  >
115
115
  {defaultTranslations.negativeButton}
116
116
  </AtomicButton>
@@ -118,7 +118,7 @@ export const RatingPromptModal: React.FC<RatingPromptModalProps> = ({
118
118
  <AtomicButton
119
119
  variant="text"
120
120
  onPress={onLater}
121
- containerStyle={styles.button}
121
+ style={styles.button}
122
122
  >
123
123
  {defaultTranslations.laterButton}
124
124
  </AtomicButton>