mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
* setup SetPassword component * accept query params * add InputPasswordComponent to template * add route * add dynamic translation with org name * feature flag route * setup onInit * add set password logic * move to libs * remove comments * update AuthGuard routing * use ToastService * replace deprecated methods * replace orgId input with policy input * use getter for msg instead of ngOnInit * cleanup * refactor to use services * more refactoring of service * address browser routing and translations * add desktop service * simplify queryParam handler * remove ngOnDestroy * small edits * use inject() * add jsdocs * create basic tests * add success toasts on successfuly set password * add tests * update feature-flag * move model to service * refactor client services to override setPassword() * add error handling to setPassword() * move auto enroll logic to service * update tests * fix test * adjust padding on password-callout list * revert refactor of auto enroll logic * refactor keyPair generation to own method * update page title and button text * update pageSubtitle and translations * fix test
41 lines
1.7 KiB
TypeScript
41 lines
1.7 KiB
TypeScript
/**
|
|
* This barrel file should only contain Angular exports
|
|
*/
|
|
|
|
// icons
|
|
export * from "./icons";
|
|
|
|
// anon layout
|
|
export * from "./anon-layout/anon-layout.component";
|
|
export * from "./anon-layout/anon-layout-wrapper.component";
|
|
|
|
// fingerprint dialog
|
|
export * from "./fingerprint-dialog/fingerprint-dialog.component";
|
|
|
|
// password callout
|
|
export * from "./password-callout/password-callout.component";
|
|
export * from "./vault-timeout-input/vault-timeout-input.component";
|
|
|
|
// input password
|
|
export * from "./input-password/input-password.component";
|
|
export * from "./input-password/password-input-result";
|
|
|
|
// 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";
|
|
|
|
// 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";
|