@olwiba/ui 0.2.26 → 0.2.28

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
@@ -390,6 +390,14 @@ interface AuthFormProps {
390
390
  onSubmit?: (e: React.FormEvent<HTMLFormElement>) => void;
391
391
  onSso?: () => void;
392
392
  /** (signin) Link to the sign-up page */
393
+ /**
394
+ * Where "Create an account" points. Omit it to leave the link out.
395
+ *
396
+ * Previously defaulted to '#', so a consumer that never set it rendered a
397
+ * dead control, and passing undefined could not remove it — a default
398
+ * parameter reapplies on undefined. Sites where accounts are granted rather
399
+ * than self-served had no way to say so.
400
+ */
393
401
  signUpHref?: string;
394
402
  /** (signup / forgot-password / reset-password / verify) Link back to the sign-in page */
395
403
  signInHref?: string;
package/dist/index.js CHANGED
@@ -787,7 +787,7 @@ function DefaultForm({
787
787
  mode = "signin",
788
788
  onSubmit,
789
789
  onSso,
790
- signUpHref = "#",
790
+ signUpHref,
791
791
  signInHref = "#",
792
792
  forgotPasswordHref = "#",
793
793
  onResend,