Central barrel export file for the authentication UI component library, re-exporting all auth-related components from their individual modules. ## Key Components | Export | Description | |---|---| | `auth-benefits-panel` | Panel displaying authentication benefits/features | | `auth-branding` | Branding elements for auth screens | | `auth-shell` | Layout shell/wrapper for standard auth flows | | `back-to-login-link` | Navigation link to return to the login screen | | `complete-account-form` | Form for completing account setup | | `create-organization-form` | Form for creating a new organization | | `invite-link-invalid-modal` | Modal shown when an invite link is invalid or expired | | `login-form` | Standard username/password login form | | `openframe-sso-login-form` | OpenFrame SSO-specific login form | | `openframe-sso-signup-form` | OpenFrame SSO-specific signup form | | `password-reset-form` | Form for initiating or completing password reset | | `sso-auth-shell` | Layout shell/wrapper for SSO auth flows | | `sso-providers` | List/selector of available SSO identity providers | | `terms-agreement-label` | Terms of service agreement label/checkbox component | ## Usage Example ```typescript // Import any auth component directly from the library root import { LoginForm, AuthShell, SsoProviders, PasswordResetForm, CreateOrganizationForm, } from '@openframe-oss-lib/auth' // Use in your application function AuthPage() { return ( ) } ``` ## Source [`index.ts`](https://github.com/flamingo-stack/openframe-oss-lib/blob/main/index.ts)