@umituz/react-native-auth 4.3.89 → 4.3.91
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": "4.3.
|
|
3
|
+
"version": "4.3.91",
|
|
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",
|
|
@@ -154,7 +154,7 @@ export const RegisterForm = memo<RegisterFormProps>(({
|
|
|
154
154
|
const styles = StyleSheet.create({
|
|
155
155
|
passwordInput: { marginBottom: 4 },
|
|
156
156
|
confirmPasswordInput: { marginBottom: 4 },
|
|
157
|
-
signUpButton: {
|
|
157
|
+
signUpButton: { marginBottom: 16, marginTop: 8 },
|
|
158
158
|
});
|
|
159
159
|
|
|
160
160
|
RegisterForm.displayName = 'RegisterForm';
|
|
@@ -112,8 +112,8 @@ export const AuthNavigator: React.FC<AuthNavigatorProps> = ({
|
|
|
112
112
|
cardStyle: { backgroundColor: tokens.colors.backgroundPrimary },
|
|
113
113
|
},
|
|
114
114
|
screens: [
|
|
115
|
-
{ name: "Login", component: LoginScreenWrapper },
|
|
116
|
-
{ name: "Register", component: RegisterScreenWrapper },
|
|
115
|
+
{ name: "Login", component: LoginScreenWrapper as React.ComponentType<any> },
|
|
116
|
+
{ name: "Register", component: RegisterScreenWrapper as React.ComponentType<any> },
|
|
117
117
|
],
|
|
118
118
|
};
|
|
119
119
|
|