@umituz/react-native-auth 4.3.90 → 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.90",
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",
@@ -88,7 +88,6 @@ export const LoginForm = memo<LoginFormProps>(({
88
88
 
89
89
  const styles = StyleSheet.create({
90
90
  signInButton: {
91
- minHeight: 52,
92
91
  marginBottom: 16,
93
92
  },
94
93
  });
@@ -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: { minHeight: 52, marginBottom: 16, marginTop: 8 },
157
+ signUpButton: { marginBottom: 16, marginTop: 8 },
158
158
  });
159
159
 
160
160
  RegisterForm.displayName = 'RegisterForm';
@@ -98,7 +98,5 @@ const styles = StyleSheet.create({
98
98
  buttonsContainer: {
99
99
  gap: 12,
100
100
  },
101
- socialButton: {
102
- minHeight: 48,
103
- },
101
+ socialButton: {},
104
102
  });