@olwiba/ui 0.2.28 → 0.2.29
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.ts +6 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/app/AuthSection.tsx +7 -1
package/dist/index.d.ts
CHANGED
|
@@ -401,6 +401,12 @@ interface AuthFormProps {
|
|
|
401
401
|
signUpHref?: string;
|
|
402
402
|
/** (signup / forgot-password / reset-password / verify) Link back to the sign-in page */
|
|
403
403
|
signInHref?: string;
|
|
404
|
+
/**
|
|
405
|
+
* Where "Forgot password" points. Omit it to leave the link out.
|
|
406
|
+
*
|
|
407
|
+
* Previously defaulted to '#', so a consumer that never wired a reset flow
|
|
408
|
+
* still rendered the link — it looked available and did nothing when clicked.
|
|
409
|
+
*/
|
|
404
410
|
forgotPasswordHref?: string;
|
|
405
411
|
/** (verify) Re-sends the one-time code */
|
|
406
412
|
onResend?: () => void;
|