@umituz/react-native-auth 4.3.89 → 4.3.90
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.90",
|
|
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",
|
|
@@ -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
|
|