@alore/auth-react-ui 1.2.0-alpha.15 → 1.2.0-alpha.17

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 (39) hide show
  1. package/dist/cjs/auth/ForgotPassword.d.ts +13 -1
  2. package/dist/cjs/auth/ForgotPassword.js +80 -26
  3. package/dist/cjs/auth/ForgotPassword.js.map +1 -1
  4. package/dist/cjs/auth/Login.d.ts +19 -1
  5. package/dist/cjs/auth/Login.js +201 -48
  6. package/dist/cjs/auth/Login.js.map +1 -1
  7. package/dist/cjs/auth/Register.d.ts +13 -1
  8. package/dist/cjs/auth/Register.js +94 -30
  9. package/dist/cjs/auth/Register.js.map +1 -1
  10. package/dist/cjs/components/Auth.d.ts +19 -1
  11. package/dist/cjs/components/Auth.js +4 -4
  12. package/dist/cjs/components/Auth.js.map +1 -1
  13. package/dist/cjs/components/InputForm.d.ts +2 -1
  14. package/dist/cjs/components/InputForm.js +2 -2
  15. package/dist/cjs/components/InputForm.js.map +1 -1
  16. package/dist/cjs/dictionaries/en.json +8 -3
  17. package/dist/cjs/dictionaries/pt.json +8 -3
  18. package/dist/cjs/get-dictionary.d.ts +15 -0
  19. package/dist/cjs/hooks/useDictionary.d.ts +5 -0
  20. package/dist/mjs/auth/ForgotPassword.d.ts +13 -1
  21. package/dist/mjs/auth/ForgotPassword.js +80 -26
  22. package/dist/mjs/auth/ForgotPassword.js.map +1 -1
  23. package/dist/mjs/auth/Login.d.ts +19 -1
  24. package/dist/mjs/auth/Login.js +200 -47
  25. package/dist/mjs/auth/Login.js.map +1 -1
  26. package/dist/mjs/auth/Register.d.ts +13 -1
  27. package/dist/mjs/auth/Register.js +94 -30
  28. package/dist/mjs/auth/Register.js.map +1 -1
  29. package/dist/mjs/components/Auth.d.ts +19 -1
  30. package/dist/mjs/components/Auth.js +4 -4
  31. package/dist/mjs/components/Auth.js.map +1 -1
  32. package/dist/mjs/components/InputForm.d.ts +2 -1
  33. package/dist/mjs/components/InputForm.js +2 -2
  34. package/dist/mjs/components/InputForm.js.map +1 -1
  35. package/dist/mjs/dictionaries/en.json +8 -3
  36. package/dist/mjs/dictionaries/pt.json +8 -3
  37. package/dist/mjs/get-dictionary.d.ts +15 -0
  38. package/dist/mjs/hooks/useDictionary.d.ts +5 -0
  39. package/package.json +1 -1
@@ -83,6 +83,9 @@ declare const useDictionary: (locale: Locale) => {
83
83
  passkeyNotSupportedDescription: string;
84
84
  noPasskey: string;
85
85
  noPasskeyDescription: string;
86
+ forgotPassword: string;
87
+ errorCode: string;
88
+ metamaskWalletConnect: string;
86
89
  };
87
90
  register: {
88
91
  password: string;
@@ -123,6 +126,7 @@ declare const useDictionary: (locale: Locale) => {
123
126
  selectMethodDescription: string;
124
127
  selectMethodPassword: string;
125
128
  selectMethodPasskey: string;
129
+ errorCode: string;
126
130
  };
127
131
  forgotPassword: {
128
132
  resetPassword: string;
@@ -142,6 +146,7 @@ declare const useDictionary: (locale: Locale) => {
142
146
  invalidLinkDescription: string;
143
147
  expiredSessionTitle: string;
144
148
  expiredSessionDescription: string;
149
+ errorCode: string;
145
150
  };
146
151
  };
147
152
  } | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alore/auth-react-ui",
3
- "version": "1.2.0-alpha.15",
3
+ "version": "1.2.0-alpha.17",
4
4
  "repository": "https://github.com/0xCarbon/alore-js",
5
5
  "description": "React Auth UI component for Alore",
6
6
  "main": "dist/cjs/index.js",