@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 +7 -0
- package/dist/index.components.d.mts +14 -1
- package/dist/index.components.d.ts +14 -1
- package/dist/index.components.js +458 -59
- package/dist/index.components.js.map +1 -1
- package/dist/index.components.mjs +458 -60
- package/dist/index.components.mjs.map +1 -1
- package/dist/index.d.mts +18 -2
- package/dist/index.d.ts +18 -2
- package/dist/index.js +459 -59
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +459 -60
- package/dist/index.mjs.map +1 -1
- package/dist/index.next.d.mts +16 -1
- package/dist/index.next.d.ts +16 -1
- package/dist/index.next.js +458 -59
- package/dist/index.next.js.map +1 -1
- package/dist/index.next.mjs +458 -60
- package/dist/index.next.mjs.map +1 -1
- package/dist/index.next.server.d.mts +2 -0
- package/dist/index.next.server.d.ts +2 -0
- package/dist/index.next.server.js +14 -0
- package/dist/index.next.server.js.map +1 -1
- package/dist/index.next.server.mjs +14 -0
- package/dist/index.next.server.mjs.map +1 -1
- package/dist/index.node.d.mts +2 -0
- package/dist/index.node.d.ts +2 -0
- package/dist/index.node.js +14 -0
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +14 -0
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
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 };
|