@umituz/react-native-auth 2.6.7 → 2.6.8

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": "2.6.7",
3
+ "version": "2.6.8",
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",
@@ -12,7 +12,7 @@ export const styles = StyleSheet.create({
12
12
  },
13
13
  scrollContent: {
14
14
  paddingHorizontal: 24,
15
- paddingBottom: 20, // Reduced from 40 to 20 to save space
15
+ paddingBottom: 40,
16
16
  },
17
17
  closeButton: {
18
18
  position: "absolute",
@@ -27,20 +27,20 @@ export const styles = StyleSheet.create({
27
27
  },
28
28
  header: {
29
29
  alignItems: "center",
30
- marginBottom: 8,
31
- marginTop: 4,
32
- paddingTop: 4,
30
+ marginBottom: 24,
31
+ marginTop: 8,
32
+ paddingTop: 16,
33
33
  },
34
34
  title: {
35
- fontSize: 22,
35
+ fontSize: 28,
36
36
  fontWeight: "700",
37
- marginBottom: 2,
37
+ marginBottom: 8,
38
38
  textAlign: "center",
39
39
  },
40
40
  subtitle: {
41
- fontSize: 13,
41
+ fontSize: 15,
42
42
  textAlign: "center",
43
- lineHeight: 18,
43
+ lineHeight: 22,
44
44
  },
45
45
  formContainer: {
46
46
  flex: 1,
@@ -114,7 +114,7 @@ export const AuthBottomSheet: React.FC<AuthBottomSheetProps> = ({
114
114
  [],
115
115
  );
116
116
 
117
- const snapPoints = useMemo(() => ["94%"], []);
117
+ const snapPoints = useMemo(() => ["95%"], []);
118
118
 
119
119
  return (
120
120
  <BottomSheetModal
@@ -111,7 +111,7 @@ export const AuthLegalLinks: React.FC<AuthLegalLinksProps> = ({
111
111
 
112
112
  const styles = StyleSheet.create({
113
113
  container: {
114
- marginTop: 8,
114
+ marginTop: 16,
115
115
  alignItems: "center",
116
116
  },
117
117
  prefixText: {
@@ -50,8 +50,8 @@ const styles = StyleSheet.create({
50
50
  flexDirection: "row",
51
51
  justifyContent: "center",
52
52
  alignItems: "center",
53
- marginTop: 0,
54
- paddingTop: 0,
53
+ marginTop: 8,
54
+ paddingTop: 8,
55
55
  },
56
56
  text: {
57
57
  fontSize: 15,
@@ -153,14 +153,14 @@ export const RegisterForm: React.FC<RegisterFormProps> = ({
153
153
 
154
154
  const styles = StyleSheet.create({
155
155
  inputContainer: {
156
- marginBottom: 10,
156
+ marginBottom: 20,
157
157
  },
158
158
  buttonContainer: {
159
- marginBottom: 8,
160
- marginTop: 4,
159
+ marginBottom: 16,
160
+ marginTop: 8,
161
161
  },
162
162
  signUpButton: {
163
- minHeight: 48,
163
+ minHeight: 52,
164
164
  },
165
165
  });
166
166
 
@@ -111,12 +111,12 @@ export const SocialLoginButtons: React.FC<SocialLoginButtonsProps> = ({
111
111
 
112
112
  const styles = StyleSheet.create({
113
113
  container: {
114
- marginTop: 12,
114
+ marginTop: 24,
115
115
  },
116
116
  dividerContainer: {
117
117
  flexDirection: "row",
118
118
  alignItems: "center",
119
- marginBottom: 12,
119
+ marginBottom: 20,
120
120
  },
121
121
  divider: {
122
122
  flex: 1,
@@ -135,7 +135,7 @@ const styles = StyleSheet.create({
135
135
  flexDirection: "row",
136
136
  alignItems: "center",
137
137
  justifyContent: "center",
138
- paddingVertical: 10,
138
+ paddingVertical: 14,
139
139
  borderRadius: 12,
140
140
  borderWidth: 1,
141
141
  gap: 8,