diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-authenticator.component.html b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-authenticator.component.html similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-authenticator.component.html rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-authenticator.component.html diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-authenticator.component.ts b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-authenticator.component.ts similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-authenticator.component.ts rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-authenticator.component.ts diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-duo.component.html b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo.component.html similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-duo.component.html rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo.component.html diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-duo.component.ts b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo.component.ts similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-duo.component.ts rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo.component.ts diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-email.component.html b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-email.component.html similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-email.component.html rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-email.component.html diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-email.component.ts b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-email.component.ts similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-email.component.ts rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-email.component.ts diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-expired.component.ts b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-expired.component.ts similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-expired.component.ts rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-expired.component.ts diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-webauthn.component.html b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-webauthn.component.html similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-webauthn.component.html rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-webauthn.component.html diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-webauthn.component.ts b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-webauthn.component.ts similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-webauthn.component.ts rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-webauthn.component.ts diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-yubikey.component.html b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-yubikey.component.html similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-yubikey.component.html rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-yubikey.component.html diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth-yubikey.component.ts b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-yubikey.component.ts similarity index 100% rename from libs/auth/src/angular/two-factor-auth/two-factor-auth-yubikey.component.ts rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-yubikey.component.ts diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts b/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts index 7205938d30..49f072e1a6 100644 --- a/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts +++ b/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts @@ -36,11 +36,11 @@ import { ToastService, } from "@bitwarden/components"; -import { TwoFactorAuthAuthenticatorComponent } from "./two-factor-auth-authenticator.component"; -import { TwoFactorAuthDuoComponent } from "./two-factor-auth-duo.component"; -import { TwoFactorAuthEmailComponent } from "./two-factor-auth-email.component"; -import { TwoFactorAuthWebAuthnComponent } from "./two-factor-auth-webauthn.component"; -import { TwoFactorAuthYubikeyComponent } from "./two-factor-auth-yubikey.component"; +import { TwoFactorAuthAuthenticatorComponent } from "./child-components/two-factor-auth-authenticator.component"; +import { TwoFactorAuthDuoComponent } from "./child-components/two-factor-auth-duo.component"; +import { TwoFactorAuthEmailComponent } from "./child-components/two-factor-auth-email.component"; +import { TwoFactorAuthWebAuthnComponent } from "./child-components/two-factor-auth-webauthn.component"; +import { TwoFactorAuthYubikeyComponent } from "./child-components/two-factor-auth-yubikey.component"; import { TwoFactorOptionsDialogResult, TwoFactorOptionsComponent,