@olwiba/ui 0.2.27 → 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 +8 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs-manifest.json +1 -6
- package/package.json +1 -1
- package/site/demos/overlay.tsx +1 -1
- package/site/demos/underlay.tsx +1 -1
- package/site/lib/sandboxes.ts +0 -221
- package/src/app/AuthSection.tsx +9 -1
- package/site/demos/application-sidebar-block.tsx +0 -9
- package/site/demos/auth-split-block.tsx +0 -9
- package/site/demos/dashboard-overview-block.tsx +0 -9
- package/site/demos/dashboard-shell-block.tsx +0 -10
- package/site/demos/marketing-hero-block.tsx +0 -10
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;
|