@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.
- package/dist/cjs/auth/ForgotPassword.d.ts +13 -1
- package/dist/cjs/auth/ForgotPassword.js +80 -26
- package/dist/cjs/auth/ForgotPassword.js.map +1 -1
- package/dist/cjs/auth/Login.d.ts +19 -1
- package/dist/cjs/auth/Login.js +201 -48
- package/dist/cjs/auth/Login.js.map +1 -1
- package/dist/cjs/auth/Register.d.ts +13 -1
- package/dist/cjs/auth/Register.js +94 -30
- package/dist/cjs/auth/Register.js.map +1 -1
- package/dist/cjs/components/Auth.d.ts +19 -1
- package/dist/cjs/components/Auth.js +4 -4
- package/dist/cjs/components/Auth.js.map +1 -1
- package/dist/cjs/components/InputForm.d.ts +2 -1
- package/dist/cjs/components/InputForm.js +2 -2
- package/dist/cjs/components/InputForm.js.map +1 -1
- package/dist/cjs/dictionaries/en.json +8 -3
- package/dist/cjs/dictionaries/pt.json +8 -3
- package/dist/cjs/get-dictionary.d.ts +15 -0
- package/dist/cjs/hooks/useDictionary.d.ts +5 -0
- package/dist/mjs/auth/ForgotPassword.d.ts +13 -1
- package/dist/mjs/auth/ForgotPassword.js +80 -26
- package/dist/mjs/auth/ForgotPassword.js.map +1 -1
- package/dist/mjs/auth/Login.d.ts +19 -1
- package/dist/mjs/auth/Login.js +200 -47
- package/dist/mjs/auth/Login.js.map +1 -1
- package/dist/mjs/auth/Register.d.ts +13 -1
- package/dist/mjs/auth/Register.js +94 -30
- package/dist/mjs/auth/Register.js.map +1 -1
- package/dist/mjs/components/Auth.d.ts +19 -1
- package/dist/mjs/components/Auth.js +4 -4
- package/dist/mjs/components/Auth.js.map +1 -1
- package/dist/mjs/components/InputForm.d.ts +2 -1
- package/dist/mjs/components/InputForm.js +2 -2
- package/dist/mjs/components/InputForm.js.map +1 -1
- package/dist/mjs/dictionaries/en.json +8 -3
- package/dist/mjs/dictionaries/pt.json +8 -3
- package/dist/mjs/get-dictionary.d.ts +15 -0
- package/dist/mjs/hooks/useDictionary.d.ts +5 -0
- 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;
|