@umituz/react-native-auth 1.4.0 → 1.4.1

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": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Authentication service for React Native apps - Secure, type-safe, and production-ready. Provider-agnostic design supports Firebase Auth and can be adapted for Supabase or other providers.",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -38,7 +38,7 @@
38
38
  "@react-navigation/stack": "^6.0.0",
39
39
  "@react-navigation/native": "^6.0.0",
40
40
  "@umituz/react-native-design-system": "*",
41
- "@umituz/react-native-theme": "*",
41
+ "@umituz/react-native-design-system-theme": "*",
42
42
  "@umituz/react-native-localization": "*",
43
43
  "@umituz/react-native-validation": "*",
44
44
  "@umituz/react-native-storage": "*",
@@ -5,7 +5,7 @@
5
5
 
6
6
  import React from "react";
7
7
  import { View, Text, StyleSheet } from "react-native";
8
- import { useAppDesignTokens } from "@umituz/react-native-theme";
8
+ import { useAppDesignTokens } from "@umituz/react-native-design-system-theme";
9
9
  import { useLocalization } from "@umituz/react-native-localization";
10
10
 
11
11
  export const AuthDivider: React.FC = () => {
@@ -5,7 +5,7 @@
5
5
 
6
6
  import React from "react";
7
7
  import { View, StyleSheet } from "react-native";
8
- import { useAppDesignTokens } from "@umituz/react-native-theme";
8
+ import { useAppDesignTokens } from "@umituz/react-native-design-system-theme";
9
9
 
10
10
  interface AuthFormCardProps {
11
11
  children: React.ReactNode;
@@ -6,7 +6,7 @@
6
6
  import React from "react";
7
7
  import { StyleSheet } from "react-native";
8
8
  import { LinearGradient } from "expo-linear-gradient";
9
- import { useAppDesignTokens } from "@umituz/react-native-theme";
9
+ import { useAppDesignTokens } from "@umituz/react-native-design-system-theme";
10
10
 
11
11
  export const AuthGradientBackground: React.FC = () => {
12
12
  const tokens = useAppDesignTokens();
@@ -5,7 +5,7 @@
5
5
 
6
6
  import React from "react";
7
7
  import { View, Text, StyleSheet } from "react-native";
8
- import { useAppDesignTokens } from "@umituz/react-native-theme";
8
+ import { useAppDesignTokens } from "@umituz/react-native-design-system-theme";
9
9
  import { useLocalization } from "@umituz/react-native-localization";
10
10
 
11
11
  interface AuthHeaderProps {
@@ -6,7 +6,7 @@
6
6
  import React from "react";
7
7
  import { View, StyleSheet, Linking } from "react-native";
8
8
  import { AtomicButton, AtomicText } from "@umituz/react-native-design-system";
9
- import { useAppDesignTokens } from "@umituz/react-native-theme";
9
+ import { useAppDesignTokens } from "@umituz/react-native-design-system-theme";
10
10
  import { useLocalization } from "@umituz/react-native-localization";
11
11
 
12
12
  export interface AuthLegalLinksProps {
@@ -6,7 +6,7 @@
6
6
  import React from "react";
7
7
  import { View, Text, StyleSheet } from "react-native";
8
8
  import { AtomicButton } from "@umituz/react-native-design-system";
9
- import { useAppDesignTokens } from "@umituz/react-native-theme";
9
+ import { useAppDesignTokens } from "@umituz/react-native-design-system-theme";
10
10
 
11
11
  interface AuthLinkProps {
12
12
  text: string;
@@ -5,7 +5,7 @@
5
5
 
6
6
  import React, { useEffect, useState } from "react";
7
7
  import { createStackNavigator } from "@react-navigation/stack";
8
- import { useAppDesignTokens } from "@umituz/react-native-theme";
8
+ import { useAppDesignTokens } from "@umituz/react-native-design-system-theme";
9
9
  import { storageRepository } from "@umituz/react-native-storage";
10
10
  import { unwrap } from "@umituz/react-native-storage";
11
11
  import { LoginScreen } from "../screens/LoginScreen";