mirror of
https://github.com/bitwarden/browser
synced 2026-02-24 16:43:27 +00:00
* Reimplement RegistrationSelfHostedEnvConfigDialogComponent * Update EnvironmentSelectorComponent text based on feature flag. * Initialize RegistrationSelfHostedEnvConfigDialog with existing values if self hosted * Cleanup debug * Add comment * Remove changes to home and login components * Remove changes to desktop login component * Remove changes to browser home component * Simplify accessing string. * Add environment selector service. * Cleanup unused imports in environment-selector * Launch new env selector dialog from desktop * Fix lint errors * Address PR feedback: move dialog component, remove EnvironmentSelectorService, remove unused translation string * Remove changes to AnonLayout * PM-8115 - Export Re-usable component from Libs/auth for clean import elsewhere in clients. * Remove unused accessingString variable * Add success toast --------- Co-authored-by: Jared Snider <jsnider@bitwarden.com>
61 lines
2.3 KiB
TypeScript
61 lines
2.3 KiB
TypeScript
/**
|
|
* This barrel file should only contain Angular exports
|
|
*/
|
|
|
|
// anon layout
|
|
export * from "./anon-layout/anon-layout.component";
|
|
export * from "./anon-layout/anon-layout-wrapper.component";
|
|
export * from "./anon-layout/anon-layout-wrapper-data.service";
|
|
export * from "./anon-layout/default-anon-layout-wrapper-data.service";
|
|
|
|
// fingerprint dialog
|
|
export * from "./fingerprint-dialog/fingerprint-dialog.component";
|
|
|
|
// icons
|
|
export * from "./icons";
|
|
|
|
// input password
|
|
export * from "./input-password/input-password.component";
|
|
export * from "./input-password/password-input-result";
|
|
|
|
// login
|
|
export * from "./login/login.component";
|
|
export * from "./login/login-secondary-content.component";
|
|
export * from "./login/login-component.service";
|
|
export * from "./login/default-login-component.service";
|
|
|
|
// password callout
|
|
export * from "./password-callout/password-callout.component";
|
|
|
|
// password hint
|
|
export * from "./password-hint/password-hint.component";
|
|
|
|
// registration
|
|
export * from "./registration/registration-start/registration-start.component";
|
|
export * from "./registration/registration-finish/registration-finish.component";
|
|
export * from "./registration/registration-link-expired/registration-link-expired.component";
|
|
export * from "./registration/registration-start/registration-start-secondary.component";
|
|
export * from "./registration/registration-env-selector/registration-env-selector.component";
|
|
export * from "./registration/registration-finish/registration-finish.service";
|
|
export * from "./registration/registration-finish/default-registration-finish.service";
|
|
|
|
// set password (JIT user)
|
|
export * from "./set-password-jit/set-password-jit.component";
|
|
export * from "./set-password-jit/set-password-jit.service.abstraction";
|
|
export * from "./set-password-jit/default-set-password-jit.service";
|
|
|
|
// user verification
|
|
export * from "./user-verification/user-verification-dialog.component";
|
|
export * from "./user-verification/user-verification-dialog.types";
|
|
export * from "./user-verification/user-verification-form-input.component";
|
|
|
|
// lock
|
|
export * from "./lock/lock.component";
|
|
export * from "./lock/lock-component.service";
|
|
|
|
// vault timeout
|
|
export * from "./vault-timeout-input/vault-timeout-input.component";
|
|
|
|
// self hosted environment configuration dialog
|
|
export * from "./self-hosted-env-config-dialog/self-hosted-env-config-dialog.component";
|