@sikka/hawa 0.2.3-beta → 0.2.4-beta
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/dist/index.d.mts +14 -11
- package/dist/index.d.ts +14 -11
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/blocks/AuthForms/SignInForm.tsx +90 -72
- package/src/elements/UsageCard.tsx +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1208,18 +1208,7 @@ type SignInPhoneTypes = {
|
|
|
1208
1208
|
};
|
|
1209
1209
|
declare const SignInPhone: FC<SignInPhoneTypes>;
|
|
1210
1210
|
|
|
1211
|
-
declare const SignInForm: FC<SignInFormTypes>;
|
|
1212
1211
|
type SignInFormTypes = {
|
|
1213
|
-
handleLanguage?: () => void;
|
|
1214
|
-
currentLanguage?: any;
|
|
1215
|
-
handleColorMode?: () => void;
|
|
1216
|
-
currentColorMode?: any;
|
|
1217
|
-
logosOnly?: boolean;
|
|
1218
|
-
direction?: "rtl" | "ltr";
|
|
1219
|
-
showError?: any;
|
|
1220
|
-
errorTitle?: string;
|
|
1221
|
-
errorText?: string;
|
|
1222
|
-
signInType?: "email" | "username" | "phone";
|
|
1223
1212
|
texts?: {
|
|
1224
1213
|
emailLabel?: string;
|
|
1225
1214
|
emailPlaceholder?: string;
|
|
@@ -1240,12 +1229,25 @@ type SignInFormTypes = {
|
|
|
1240
1229
|
signInViaGithubLabel?: string;
|
|
1241
1230
|
signInViaTwitterLabel?: string;
|
|
1242
1231
|
};
|
|
1232
|
+
handleLanguage?: () => void;
|
|
1233
|
+
currentLanguage?: any;
|
|
1234
|
+
handleColorMode?: () => void;
|
|
1235
|
+
currentColorMode?: any;
|
|
1236
|
+
logosOnly?: boolean;
|
|
1237
|
+
direction?: "rtl" | "ltr";
|
|
1238
|
+
showError?: any;
|
|
1239
|
+
errorTitle?: string;
|
|
1240
|
+
errorText?: string;
|
|
1241
|
+
signInType?: "email" | "username" | "phone";
|
|
1243
1242
|
withoutResetPassword?: boolean;
|
|
1244
1243
|
withoutSignUp?: boolean;
|
|
1245
1244
|
/**
|
|
1246
1245
|
*show spinner if true
|
|
1247
1246
|
*/
|
|
1248
1247
|
isLoading?: any;
|
|
1248
|
+
isGoogleLoading?: boolean;
|
|
1249
|
+
isTwitterLoading?: boolean;
|
|
1250
|
+
isGithubLoading?: boolean;
|
|
1249
1251
|
viaGoogle?: boolean;
|
|
1250
1252
|
viaGithub?: boolean;
|
|
1251
1253
|
viaTwitter?: boolean;
|
|
@@ -1262,6 +1264,7 @@ type SignInFormTypes = {
|
|
|
1262
1264
|
handleGithubSignIn?: () => void;
|
|
1263
1265
|
handleTwitterSignIn?: () => void;
|
|
1264
1266
|
};
|
|
1267
|
+
declare const SignInForm: FC<SignInFormTypes>;
|
|
1265
1268
|
|
|
1266
1269
|
declare function SignInBlock(): React$1.JSX.Element;
|
|
1267
1270
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1208,18 +1208,7 @@ type SignInPhoneTypes = {
|
|
|
1208
1208
|
};
|
|
1209
1209
|
declare const SignInPhone: FC<SignInPhoneTypes>;
|
|
1210
1210
|
|
|
1211
|
-
declare const SignInForm: FC<SignInFormTypes>;
|
|
1212
1211
|
type SignInFormTypes = {
|
|
1213
|
-
handleLanguage?: () => void;
|
|
1214
|
-
currentLanguage?: any;
|
|
1215
|
-
handleColorMode?: () => void;
|
|
1216
|
-
currentColorMode?: any;
|
|
1217
|
-
logosOnly?: boolean;
|
|
1218
|
-
direction?: "rtl" | "ltr";
|
|
1219
|
-
showError?: any;
|
|
1220
|
-
errorTitle?: string;
|
|
1221
|
-
errorText?: string;
|
|
1222
|
-
signInType?: "email" | "username" | "phone";
|
|
1223
1212
|
texts?: {
|
|
1224
1213
|
emailLabel?: string;
|
|
1225
1214
|
emailPlaceholder?: string;
|
|
@@ -1240,12 +1229,25 @@ type SignInFormTypes = {
|
|
|
1240
1229
|
signInViaGithubLabel?: string;
|
|
1241
1230
|
signInViaTwitterLabel?: string;
|
|
1242
1231
|
};
|
|
1232
|
+
handleLanguage?: () => void;
|
|
1233
|
+
currentLanguage?: any;
|
|
1234
|
+
handleColorMode?: () => void;
|
|
1235
|
+
currentColorMode?: any;
|
|
1236
|
+
logosOnly?: boolean;
|
|
1237
|
+
direction?: "rtl" | "ltr";
|
|
1238
|
+
showError?: any;
|
|
1239
|
+
errorTitle?: string;
|
|
1240
|
+
errorText?: string;
|
|
1241
|
+
signInType?: "email" | "username" | "phone";
|
|
1243
1242
|
withoutResetPassword?: boolean;
|
|
1244
1243
|
withoutSignUp?: boolean;
|
|
1245
1244
|
/**
|
|
1246
1245
|
*show spinner if true
|
|
1247
1246
|
*/
|
|
1248
1247
|
isLoading?: any;
|
|
1248
|
+
isGoogleLoading?: boolean;
|
|
1249
|
+
isTwitterLoading?: boolean;
|
|
1250
|
+
isGithubLoading?: boolean;
|
|
1249
1251
|
viaGoogle?: boolean;
|
|
1250
1252
|
viaGithub?: boolean;
|
|
1251
1253
|
viaTwitter?: boolean;
|
|
@@ -1262,6 +1264,7 @@ type SignInFormTypes = {
|
|
|
1262
1264
|
handleGithubSignIn?: () => void;
|
|
1263
1265
|
handleTwitterSignIn?: () => void;
|
|
1264
1266
|
};
|
|
1267
|
+
declare const SignInForm: FC<SignInFormTypes>;
|
|
1265
1268
|
|
|
1266
1269
|
declare function SignInBlock(): React$1.JSX.Element;
|
|
1267
1270
|
|