@sikka/hawa 0.27.23-next → 0.28.0-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.
Files changed (47) hide show
  1. package/dist/blocks/auth/index.d.mts +29 -3
  2. package/dist/blocks/auth/index.d.ts +29 -3
  3. package/dist/blocks/auth/index.js +385 -382
  4. package/dist/blocks/auth/index.mjs +314 -308
  5. package/dist/blocks/feedback/index.d.mts +1 -1
  6. package/dist/blocks/feedback/index.d.ts +1 -1
  7. package/dist/blocks/feedback/index.mjs +5 -5
  8. package/dist/blocks/index.d.mts +28 -2
  9. package/dist/blocks/index.d.ts +28 -2
  10. package/dist/blocks/index.js +1244 -1174
  11. package/dist/blocks/index.mjs +19 -15
  12. package/dist/blocks/misc/index.d.mts +1 -1
  13. package/dist/blocks/misc/index.d.ts +1 -1
  14. package/dist/blocks/misc/index.js +87 -20
  15. package/dist/blocks/misc/index.mjs +92 -25
  16. package/dist/blocks/pricing/index.d.mts +1 -1
  17. package/dist/blocks/pricing/index.d.ts +1 -1
  18. package/dist/blocks/pricing/index.mjs +4 -4
  19. package/dist/{chunk-W5I4VB5Z.mjs → chunk-4F7LNY2V.mjs} +1 -1
  20. package/dist/{chunk-MMOEFJSP.mjs → chunk-6HOSGMTV.mjs} +1 -1
  21. package/dist/{chunk-M6XGGAPQ.mjs → chunk-KZCOE6V3.mjs} +1 -1
  22. package/dist/{chunk-EFWL3FFK.mjs → chunk-N5J4XNGU.mjs} +1 -1
  23. package/dist/{chunk-DUL6C2S2.mjs → chunk-NK7TELIV.mjs} +1 -1
  24. package/dist/{chunk-ZOWDRDAM.mjs → chunk-R2NAPFAZ.mjs} +221 -221
  25. package/dist/{chunk-7QEBDFLT.mjs → chunk-SYZ5JMYJ.mjs} +2 -4
  26. package/dist/{chunk-7CYXEZDV.mjs → chunk-TIQERSM3.mjs} +1 -1
  27. package/dist/{chunk-5UYZN5SQ.mjs → chunk-Y3HUZNCH.mjs} +88 -21
  28. package/dist/{chunk-DQHPOUHR.mjs → chunk-ZV3KYZ5G.mjs} +1 -1
  29. package/dist/elements/index.d.mts +5 -4
  30. package/dist/elements/index.d.ts +5 -4
  31. package/dist/elements/index.js +87 -20
  32. package/dist/elements/index.mjs +3 -3
  33. package/dist/index.css +29 -0
  34. package/dist/index.d.mts +54 -27
  35. package/dist/index.d.ts +54 -27
  36. package/dist/index.js +105 -33
  37. package/dist/index.mjs +104 -33
  38. package/dist/layout/index.mjs +2 -2
  39. package/dist/tabs/index.d.mts +2 -1
  40. package/dist/tabs/index.d.ts +2 -1
  41. package/dist/tabs/index.js +89 -20
  42. package/dist/tabs/index.js.map +1 -1
  43. package/dist/tabs/index.mjs +89 -20
  44. package/dist/tabs/index.mjs.map +1 -1
  45. package/dist/{textTypes-u4OSE-rn.d.ts → textTypes-ah2JJr8v.d.mts} +1 -1
  46. package/dist/{textTypes-u4OSE-rn.d.mts → textTypes-ah2JJr8v.d.ts} +1 -1
  47. package/package.json +2 -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, a as RegisterFormTextsTypes, b as ThirdPartyAuthTextsTypes, N as NewPasswordTextsTypes, c as ResetPasswordTextsTypes } from '../../textTypes-u4OSE-rn.mjs';
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, a as RegisterFormTextsTypes, b as ThirdPartyAuthTextsTypes, N as NewPasswordTextsTypes, c as ResetPasswordTextsTypes } from '../../textTypes-u4OSE-rn.js';
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 };