@sikka/hawa 0.27.23-next → 0.27.24-next
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/blocks/auth/index.d.mts +29 -3
- package/dist/blocks/auth/index.d.ts +29 -3
- package/dist/blocks/auth/index.js +385 -382
- package/dist/blocks/auth/index.mjs +314 -308
- package/dist/blocks/feedback/index.d.mts +1 -1
- package/dist/blocks/feedback/index.d.ts +1 -1
- package/dist/blocks/feedback/index.mjs +5 -5
- package/dist/blocks/index.d.mts +28 -2
- package/dist/blocks/index.d.ts +28 -2
- package/dist/blocks/index.js +400 -397
- package/dist/blocks/index.mjs +19 -15
- package/dist/blocks/misc/index.d.mts +1 -1
- package/dist/blocks/misc/index.d.ts +1 -1
- package/dist/blocks/misc/index.mjs +5 -5
- package/dist/blocks/pricing/index.d.mts +1 -1
- package/dist/blocks/pricing/index.d.ts +1 -1
- package/dist/blocks/pricing/index.mjs +4 -4
- package/dist/{chunk-5UYZN5SQ.mjs → chunk-3ZURZ4TW.mjs} +1 -1
- package/dist/{chunk-W5I4VB5Z.mjs → chunk-4F7LNY2V.mjs} +1 -1
- package/dist/{chunk-MMOEFJSP.mjs → chunk-6HOSGMTV.mjs} +1 -1
- package/dist/{chunk-M6XGGAPQ.mjs → chunk-KZCOE6V3.mjs} +1 -1
- package/dist/{chunk-EFWL3FFK.mjs → chunk-N5J4XNGU.mjs} +1 -1
- package/dist/{chunk-DUL6C2S2.mjs → chunk-NK7TELIV.mjs} +1 -1
- package/dist/{chunk-ZOWDRDAM.mjs → chunk-R2NAPFAZ.mjs} +221 -221
- package/dist/{chunk-7QEBDFLT.mjs → chunk-SYZ5JMYJ.mjs} +2 -4
- package/dist/{chunk-7CYXEZDV.mjs → chunk-TIQERSM3.mjs} +1 -1
- package/dist/{chunk-DQHPOUHR.mjs → chunk-ZV3KYZ5G.mjs} +1 -1
- package/dist/elements/index.d.mts +3 -3
- package/dist/elements/index.d.ts +3 -3
- package/dist/elements/index.mjs +3 -3
- package/dist/index.css +3 -0
- package/dist/index.d.mts +52 -26
- package/dist/index.d.ts +52 -26
- package/dist/index.js +18 -13
- package/dist/index.mjs +17 -13
- package/dist/layout/index.mjs +2 -2
- package/dist/{textTypes-u4OSE-rn.d.ts → textTypes-ah2JJr8v.d.mts} +1 -1
- package/dist/{textTypes-u4OSE-rn.d.mts → textTypes-ah2JJr8v.d.ts} +1 -1
- package/package.json +1 -1
@@ -1,6 +1,32 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
import { FC } from 'react';
|
3
|
-
import { L as LoginFormTextsTypes, D as DirectionType, P as PositionType,
|
2
|
+
import React__default, { FC } from 'react';
|
3
|
+
import { a as ThirdPartyAuthTextsTypes, L as LoginFormTextsTypes, D as DirectionType, P as PositionType, b as RegisterFormTextsTypes, N as NewPasswordTextsTypes, c as ResetPasswordTextsTypes } from '../../textTypes-ah2JJr8v.mjs';
|
4
|
+
|
5
|
+
type AuthButtonsType = {
|
6
|
+
texts?: ThirdPartyAuthTextsTypes;
|
7
|
+
viaGoogle?: boolean;
|
8
|
+
viaTwitter?: boolean;
|
9
|
+
viaGithub?: boolean;
|
10
|
+
viaMicrosoft?: boolean;
|
11
|
+
viaEmail?: boolean;
|
12
|
+
viaPhone?: boolean;
|
13
|
+
viaApple?: boolean;
|
14
|
+
isGoogleLoading?: boolean;
|
15
|
+
isGithubLoading?: boolean;
|
16
|
+
isTwitterLoading?: boolean;
|
17
|
+
isMicrosoftLoading?: boolean;
|
18
|
+
isEmailLoading?: boolean;
|
19
|
+
isPhoneLoading?: boolean;
|
20
|
+
isAppleLoading?: boolean;
|
21
|
+
handleGoogle?: () => void;
|
22
|
+
handleTwitter?: () => void;
|
23
|
+
handleApple?: () => void;
|
24
|
+
handleMicrosoft?: () => void;
|
25
|
+
handleGithub?: () => void;
|
26
|
+
handleEmail?: () => void;
|
27
|
+
handlePhone?: () => void;
|
28
|
+
};
|
29
|
+
declare const AuthButtons: React__default.FC<AuthButtonsType>;
|
4
30
|
|
5
31
|
type LoginFormTypes = {
|
6
32
|
/** Object containing text labels used throughout the form. */
|
@@ -215,4 +241,4 @@ type TConfirmation = {
|
|
215
241
|
};
|
216
242
|
declare const CodeConfirmation: FC<TConfirmation>;
|
217
243
|
|
218
|
-
export { AppLanding, CheckEmail, CodeConfirmation, LoginForm, NewPasswordForm, RegisterForm, ResetPasswordForm };
|
244
|
+
export { AppLanding, AuthButtons, CheckEmail, CodeConfirmation, LoginForm, NewPasswordForm, RegisterForm, ResetPasswordForm };
|
@@ -1,6 +1,32 @@
|
|
1
1
|
import * as React from 'react';
|
2
|
-
import { FC } from 'react';
|
3
|
-
import { L as LoginFormTextsTypes, D as DirectionType, P as PositionType,
|
2
|
+
import React__default, { FC } from 'react';
|
3
|
+
import { a as ThirdPartyAuthTextsTypes, L as LoginFormTextsTypes, D as DirectionType, P as PositionType, b as RegisterFormTextsTypes, N as NewPasswordTextsTypes, c as ResetPasswordTextsTypes } from '../../textTypes-ah2JJr8v.js';
|
4
|
+
|
5
|
+
type AuthButtonsType = {
|
6
|
+
texts?: ThirdPartyAuthTextsTypes;
|
7
|
+
viaGoogle?: boolean;
|
8
|
+
viaTwitter?: boolean;
|
9
|
+
viaGithub?: boolean;
|
10
|
+
viaMicrosoft?: boolean;
|
11
|
+
viaEmail?: boolean;
|
12
|
+
viaPhone?: boolean;
|
13
|
+
viaApple?: boolean;
|
14
|
+
isGoogleLoading?: boolean;
|
15
|
+
isGithubLoading?: boolean;
|
16
|
+
isTwitterLoading?: boolean;
|
17
|
+
isMicrosoftLoading?: boolean;
|
18
|
+
isEmailLoading?: boolean;
|
19
|
+
isPhoneLoading?: boolean;
|
20
|
+
isAppleLoading?: boolean;
|
21
|
+
handleGoogle?: () => void;
|
22
|
+
handleTwitter?: () => void;
|
23
|
+
handleApple?: () => void;
|
24
|
+
handleMicrosoft?: () => void;
|
25
|
+
handleGithub?: () => void;
|
26
|
+
handleEmail?: () => void;
|
27
|
+
handlePhone?: () => void;
|
28
|
+
};
|
29
|
+
declare const AuthButtons: React__default.FC<AuthButtonsType>;
|
4
30
|
|
5
31
|
type LoginFormTypes = {
|
6
32
|
/** Object containing text labels used throughout the form. */
|
@@ -215,4 +241,4 @@ type TConfirmation = {
|
|
215
241
|
};
|
216
242
|
declare const CodeConfirmation: FC<TConfirmation>;
|
217
243
|
|
218
|
-
export { AppLanding, CheckEmail, CodeConfirmation, LoginForm, NewPasswordForm, RegisterForm, ResetPasswordForm };
|
244
|
+
export { AppLanding, AuthButtons, CheckEmail, CodeConfirmation, LoginForm, NewPasswordForm, RegisterForm, ResetPasswordForm };
|