@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 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;
package/dist/index.js CHANGED
@@ -789,7 +789,7 @@ function DefaultForm({
789
789
  onSso,
790
790
  signUpHref,
791
791
  signInHref = "#",
792
- forgotPasswordHref = "#",
792
+ forgotPasswordHref,
793
793
  onResend,
794
794
  destination,
795
795
  codeLength = 6,