@thetechfossil/auth2 1.2.21 → 1.2.22

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/README.md CHANGED
@@ -24,6 +24,13 @@ The documentation includes:
24
24
  - Architecture overview
25
25
  - Environment configuration
26
26
  - Integration examples for React, Next.js, and Node.js
27
+
28
+ ### Additional Guides
29
+ - [Avatar Uploader Update](docs/AVATAR_UPLOADER_UPDATE.md)
30
+ - [Avatar Upload Quickstart](docs/AVATAR_UPLOAD_QUICKSTART.md)
31
+ - [FileUp Integration](docs/FILEUP_INTEGRATION.md)
32
+ - [Image Manager Integration](docs/IMAGEMANAGER_INTEGRATION_SUMMARY.md)
33
+ - [Implementation Summary](docs/IMPLEMENTATION_SUMMARY.md)
27
34
 
28
35
  ## Installation
29
36
 
@@ -190,6 +190,19 @@ interface UserProfileProps {
190
190
  }
191
191
  declare const UserProfile: React.FC<UserProfileProps>;
192
192
 
193
+ interface SuperAdminSignInProps {
194
+ redirectUrl?: string;
195
+ appearance?: {
196
+ elements?: {
197
+ formButtonPrimary?: React.CSSProperties;
198
+ card?: React.CSSProperties;
199
+ headerTitle?: React.CSSProperties;
200
+ formFieldInput?: React.CSSProperties;
201
+ };
202
+ };
203
+ }
204
+ declare const SuperAdminSignIn: React.FC<SuperAdminSignInProps>;
205
+
193
206
  interface PhoneInputProps {
194
207
  value: string;
195
208
  onChange: (value: string) => void;
@@ -253,4 +266,4 @@ interface AvatarManagerProps {
253
266
  }
254
267
  declare const AvatarManager: React.FC<AvatarManagerProps>;
255
268
 
256
- export { AuthFlow, AvatarManager, type AvatarManagerProps, AvatarUploader, type AvatarUploaderProps, ChangePassword, EmailVerificationPage, ForgotPassword, LoginForm, OtpForm, PhoneInput, ProtectedRoute, PublicRoute, RegisterForm, type RegisterFormProps, ResetPassword, SignIn, SignOut, SignUp, UserButton, UserProfile, VerifyEmail };
269
+ export { AuthFlow, AvatarManager, type AvatarManagerProps, AvatarUploader, type AvatarUploaderProps, ChangePassword, EmailVerificationPage, ForgotPassword, LoginForm, OtpForm, PhoneInput, ProtectedRoute, PublicRoute, RegisterForm, type RegisterFormProps, ResetPassword, SignIn, SignOut, SignUp, SuperAdminSignIn, UserButton, UserProfile, VerifyEmail };
@@ -190,6 +190,19 @@ interface UserProfileProps {
190
190
  }
191
191
  declare const UserProfile: React.FC<UserProfileProps>;
192
192
 
193
+ interface SuperAdminSignInProps {
194
+ redirectUrl?: string;
195
+ appearance?: {
196
+ elements?: {
197
+ formButtonPrimary?: React.CSSProperties;
198
+ card?: React.CSSProperties;
199
+ headerTitle?: React.CSSProperties;
200
+ formFieldInput?: React.CSSProperties;
201
+ };
202
+ };
203
+ }
204
+ declare const SuperAdminSignIn: React.FC<SuperAdminSignInProps>;
205
+
193
206
  interface PhoneInputProps {
194
207
  value: string;
195
208
  onChange: (value: string) => void;
@@ -253,4 +266,4 @@ interface AvatarManagerProps {
253
266
  }
254
267
  declare const AvatarManager: React.FC<AvatarManagerProps>;
255
268
 
256
- export { AuthFlow, AvatarManager, type AvatarManagerProps, AvatarUploader, type AvatarUploaderProps, ChangePassword, EmailVerificationPage, ForgotPassword, LoginForm, OtpForm, PhoneInput, ProtectedRoute, PublicRoute, RegisterForm, type RegisterFormProps, ResetPassword, SignIn, SignOut, SignUp, UserButton, UserProfile, VerifyEmail };
269
+ export { AuthFlow, AvatarManager, type AvatarManagerProps, AvatarUploader, type AvatarUploaderProps, ChangePassword, EmailVerificationPage, ForgotPassword, LoginForm, OtpForm, PhoneInput, ProtectedRoute, PublicRoute, RegisterForm, type RegisterFormProps, ResetPassword, SignIn, SignOut, SignUp, SuperAdminSignIn, UserButton, UserProfile, VerifyEmail };