@umituz/react-native-auth 3.1.1 → 3.1.2

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-auth",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "Authentication service for React Native apps - Secure, type-safe, and production-ready. Provider-agnostic design with dependency injection, configurable validation, and comprehensive error handling.",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -82,11 +82,11 @@ export const AccountActions: React.FC<AccountActionsProps> = ({ config }) => {
82
82
  onPress={handleLogout}
83
83
  activeOpacity={0.7}
84
84
  >
85
- <AtomicIcon name="logout" size="md" color="error" />
85
+ <AtomicIcon name="log-out-outline" size="md" color="error" />
86
86
  <AtomicText style={[styles.actionText, { color: tokens.colors.error }]}>
87
87
  {logoutText}
88
88
  </AtomicText>
89
- <AtomicIcon name="chevron-right" size="sm" color="secondary" />
89
+ <AtomicIcon name="chevron-forward" size="sm" color="secondary" />
90
90
  </TouchableOpacity>
91
91
 
92
92
  {/* Delete Account */}
@@ -95,11 +95,11 @@ export const AccountActions: React.FC<AccountActionsProps> = ({ config }) => {
95
95
  onPress={handleDeleteAccount}
96
96
  activeOpacity={0.7}
97
97
  >
98
- <AtomicIcon name="trash-2" size="md" color="error" />
98
+ <AtomicIcon name="trash-outline" size="md" color="error" />
99
99
  <AtomicText style={[styles.actionText, { color: tokens.colors.error }]}>
100
100
  {deleteAccountText}
101
101
  </AtomicText>
102
- <AtomicIcon name="chevron-right" size="sm" color="secondary" />
102
+ <AtomicIcon name="chevron-forward" size="sm" color="secondary" />
103
103
  </TouchableOpacity>
104
104
  </View>
105
105
  );