@wacht/jsx 1.0.0-beta.55 → 1.0.0-beta.57
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/README.md +2 -2
- package/dist/index.cjs.js +19 -19
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +11 -11
- package/dist/index.es.js +2834 -2795
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Use `@wacht/jsx` when you want the core Wacht React layer without committing to
|
|
|
11
11
|
|
|
12
12
|
`@wacht/jsx` contains the shared client-side building blocks behind the framework adapters:
|
|
13
13
|
|
|
14
|
-
- auth UI such as `SignInForm`, `SignUpForm`, `WaitlistForm`, `
|
|
14
|
+
- auth UI such as `SignInForm`, `SignUpForm`, `WaitlistForm`, `SocialCallback`, and `MagicLinkVerification`
|
|
15
15
|
- control components such as `SignedIn`, `SignedOut`, `SignedInAccounts`, and `NavigateToSignIn`
|
|
16
16
|
- account and tenancy components such as `UserButton`, `UserControls`, `ManageAccount`, `ManageOrganization`, `ManageWorkspace`, `CreateOrganizationForm`, and `CreateWorkspaceForm`
|
|
17
17
|
- notifications components such as `NotificationBell`, `NotificationPopover`, and `NotificationPanel`
|
|
@@ -60,7 +60,7 @@ export default function App() {
|
|
|
60
60
|
## Main hook families
|
|
61
61
|
|
|
62
62
|
- state and context: `useDeployment`, `useClient`, `useSession`, `useUser`, `useNavigation`
|
|
63
|
-
- auth flows: `useSignIn`, `useSignUp`, `
|
|
63
|
+
- auth flows: `useSignIn`, `useSignUp`, `useSocialCallback`, `useMagicLinkVerification`, `useForgotPassword`, `useInvitation`, `useWaitlist`, `useUserSignins`
|
|
64
64
|
- multi tenancy: `useOrganizationList`, `useActiveOrganization`, `useWorkspaceList`, `useActiveWorkspace`, `useActiveTenancy`, `useOrganizationMemberships`, `useWorkspaceMemberships`
|
|
65
65
|
- notifications: `useNotifications`, `useNotificationStream`, `useNotificationUnreadCount`
|
|
66
66
|
- platform surfaces: agent, webhook, and API identity hooks
|