mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
* [PM-8524] Introduce login details section component
* [PM-8524] Add ability to remove passkey
* [PM-8524] Introduce TotpCaptureService and the Browser implementation
* [PM-8524] Tweak storybook
* [PM-8524] Add note regarding existing login view references
* [PM-8524] Fix clone mode so that a new cipher is created
* [PM-8524] Add support for generating usernames/passwords and auditing passwords
* [PM-8524] Migrate password/username generation to CipherFormGenerationService
* [PM-8524] Add optional passwordInput to BitPasswordInputToggle to support conditionally rendered password toggle buttons
* [PM-8524] Add LoginDetailsSection tests
* [PM-8524] Add BrowserTotpCaptureService tests
* Revert "[PM-8524] Add optional passwordInput to BitPasswordInputToggle to support conditionally rendered password toggle buttons"
This reverts commit e76a0ccfe8.
* [PM-8524] Add null check to password input toggle
24 lines
804 B
TypeScript
24 lines
804 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { CipherFormGenerationService } from "./abstractions/cipher-form-generation.service";
|
|
import { CipherFormService } from "./abstractions/cipher-form.service";
|
|
import { CipherFormComponent } from "./components/cipher-form.component";
|
|
import { DefaultCipherFormGenerationService } from "./services/default-cipher-form-generation.service";
|
|
import { DefaultCipherFormService } from "./services/default-cipher-form.service";
|
|
|
|
@NgModule({
|
|
imports: [CipherFormComponent],
|
|
providers: [
|
|
{
|
|
provide: CipherFormService,
|
|
useClass: DefaultCipherFormService,
|
|
},
|
|
{
|
|
provide: CipherFormGenerationService,
|
|
useClass: DefaultCipherFormGenerationService,
|
|
},
|
|
],
|
|
exports: [CipherFormComponent],
|
|
})
|
|
export class CipherFormModule {}
|