@umituz/react-native-settings 4.20.52 → 4.20.53
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.20.
|
|
3
|
+
"version": "4.20.53",
|
|
4
4
|
"description": "Complete settings hub for React Native apps - consolidated package with settings, about, legal, appearance, feedback, FAQs, and rating",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -92,7 +92,7 @@ export const SettingsItemCard: React.FC<SettingsItemCardProps> = ({
|
|
|
92
92
|
|
|
93
93
|
const renderContent = () => (
|
|
94
94
|
<View style={styles.content}>
|
|
95
|
-
<View style={[styles.iconContainer, { backgroundColor: defaultIconBg, borderRadius: tokens.
|
|
95
|
+
<View style={[styles.iconContainer, { backgroundColor: defaultIconBg, borderRadius: tokens.radius.md }]}>
|
|
96
96
|
<AtomicIcon name={icon} size="lg" customColor={defaultIconColor} />
|
|
97
97
|
</View>
|
|
98
98
|
<View style={styles.textContainer}>
|
|
@@ -120,7 +120,7 @@ export const SettingsItemCard: React.FC<SettingsItemCardProps> = ({
|
|
|
120
120
|
styles.sectionContainer,
|
|
121
121
|
{
|
|
122
122
|
backgroundColor: colors.surface,
|
|
123
|
-
borderRadius: tokens.
|
|
123
|
+
borderRadius: tokens.radius.lg,
|
|
124
124
|
},
|
|
125
125
|
containerStyle,
|
|
126
126
|
]}
|
|
@@ -43,7 +43,7 @@ export const SettingsHeader: React.FC<SettingsHeaderProps> = ({
|
|
|
43
43
|
styles.closeButton,
|
|
44
44
|
{
|
|
45
45
|
backgroundColor: pressed ? tokens.colors.surfaceVariant : tokens.colors.surface,
|
|
46
|
-
borderRadius: tokens.
|
|
46
|
+
borderRadius: tokens.radius.full,
|
|
47
47
|
},
|
|
48
48
|
]}
|
|
49
49
|
hitSlop={{ top: 10, bottom: 10, left: 10, right: 10 }}
|