mirror of
https://github.com/bitwarden/browser
synced 2026-02-13 23:13:36 +00:00
* add cdk dialog deps to CL dialog barrel file * find and replace cdk dialog import * run prettier
36 lines
889 B
TypeScript
36 lines
889 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { Component, Input } from "@angular/core";
|
|
import { ReactiveFormsModule, FormsModule, FormControl } from "@angular/forms";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
import {
|
|
DialogModule,
|
|
ButtonModule,
|
|
LinkModule,
|
|
TypographyModule,
|
|
FormFieldModule,
|
|
AsyncActionsModule,
|
|
} from "@bitwarden/components";
|
|
|
|
@Component({
|
|
standalone: true,
|
|
selector: "app-two-factor-auth-yubikey",
|
|
templateUrl: "two-factor-auth-yubikey.component.html",
|
|
imports: [
|
|
CommonModule,
|
|
JslibModule,
|
|
DialogModule,
|
|
ButtonModule,
|
|
LinkModule,
|
|
TypographyModule,
|
|
ReactiveFormsModule,
|
|
FormFieldModule,
|
|
AsyncActionsModule,
|
|
FormsModule,
|
|
],
|
|
providers: [],
|
|
})
|
|
export class TwoFactorAuthYubikeyComponent {
|
|
@Input({ required: true }) tokenFormControl: FormControl | undefined = undefined;
|
|
}
|