@sikka/hawa 0.1.91 → 0.1.93
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 +66 -15
- package/dist/index.d.ts +66 -15
- package/dist/index.js +649 -362
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +836 -642
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +120 -9
- package/package.json +1 -1
- package/src/blocks/AuthForms/AppLanding.tsx +99 -51
- package/src/blocks/AuthForms/ResetPasswordForm.tsx +13 -9
- package/src/blocks/Payment/CreditCardForm.tsx +63 -2
- package/src/elements/Button.tsx +10 -1
- package/src/elements/HawaRadio.tsx +13 -13
- package/src/elements/HawaTextField.tsx +7 -2
- package/src/elements/Icons.tsx +24 -0
- package/src/elements/StickyFeatures.tsx +53 -0
- package/src/elements/Toaster.tsx +1 -3
- package/src/elements/UserReferralSource.tsx +101 -0
- package/src/elements/index.ts +2 -0
- package/src/styles.css +120 -9
- package/src/tailwind.css +16 -6
- package/src/translations/ar.json +9 -0
- package/src/translations/en.json +9 -0
package/src/translations/ar.json
CHANGED
|
@@ -22,6 +22,15 @@
|
|
|
22
22
|
"createAccount": "أنشئ حساب",
|
|
23
23
|
"expandSidebar": "توسيع القائمة",
|
|
24
24
|
"collapseSidebar": "طي القائمة",
|
|
25
|
+
|
|
26
|
+
"continueWithGoogle": "الإستمرار بواسطة Google",
|
|
27
|
+
"continueWithTwitter": "الإستمرار بواسطة Twitter",
|
|
28
|
+
"continueWithApple": "الإستمرار بواسطة Apple",
|
|
29
|
+
"continueWithMicrosoft": "الإستمرار بواسطة Microsoft",
|
|
30
|
+
"continueWithGithub": "الإستمرار بواسطة Github",
|
|
31
|
+
"continueWithEmail": "الإستمرار بواسطة Email",
|
|
32
|
+
"continueWithPhone": "الإستمرار بواسطة Phone",
|
|
33
|
+
|
|
25
34
|
"signInViaGoogleLabel": "الدخول بواسطة Google",
|
|
26
35
|
"signInViaGithubLabel": "الدخول بواسطة Github",
|
|
27
36
|
"signInViaTwitterLabel": "الدخول بواسطة Twitter",
|
package/src/translations/en.json
CHANGED
|
@@ -20,6 +20,15 @@
|
|
|
20
20
|
"signUpText": "Sign up",
|
|
21
21
|
"createAccount": "Create Account",
|
|
22
22
|
"signInText": "Sign in",
|
|
23
|
+
|
|
24
|
+
"continueWithGoogle": "Continue with Google",
|
|
25
|
+
"continueWithTwitter": "Continue with Twitter",
|
|
26
|
+
"continueWithApple": "Continue with Apple",
|
|
27
|
+
"continueWithMicrosoft": "Continue with Microsoft",
|
|
28
|
+
"continueWithGithub": "Continue with Github",
|
|
29
|
+
"continueWithEmail": "Continue with Email",
|
|
30
|
+
"continueWithPhone": "Continue with Phone",
|
|
31
|
+
|
|
23
32
|
"signInViaGoogleLabel": "Sign in with Google",
|
|
24
33
|
"signInViaGithubLabel": "Sign in with Github",
|
|
25
34
|
"signInViaTwitterLabel": "Sign in with Twitter",
|