1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Add standalone false to all non migrated (#14797)

Adds standalone: false to all components since Angular is changing the default to true and we'd rather not have the angular PR change 300+ files.
This commit is contained in:
Oscar Hinton
2025-05-15 16:44:07 +02:00
committed by GitHub
parent 623deea4fc
commit ac49e594c1
311 changed files with 350 additions and 8 deletions

View File

@@ -168,18 +168,21 @@ type Story = StoryObj<ExtensionAnonLayoutWrapperComponent>;
@Component({
selector: "bit-default-primary-outlet-example-component",
template: "<p>Primary Outlet Example: <br> your primary component goes here</p>",
standalone: false,
})
class DefaultPrimaryOutletExampleComponent {}
@Component({
selector: "bit-default-secondary-outlet-example-component",
template: "<p>Secondary Outlet Example: <br> your secondary component goes here</p>",
standalone: false,
})
class DefaultSecondaryOutletExampleComponent {}
@Component({
selector: "bit-default-env-selector-outlet-example-component",
template: "<p>Env Selector Outlet Example: <br> your env selector component goes here</p>",
standalone: false,
})
class DefaultEnvSelectorOutletExampleComponent {}
@@ -264,6 +267,7 @@ const changedData: ExtensionAnonLayoutWrapperData = {
template: `
<button type="button" bitButton buttonType="primary" (click)="toggleData()">Toggle Data</button>
`,
standalone: false,
})
export class DynamicContentExampleComponent {
initialData = true;

View File

@@ -5,5 +5,6 @@ import { SetPasswordComponent as BaseSetPasswordComponent } from "@bitwarden/ang
@Component({
selector: "app-set-password",
templateUrl: "set-password.component.html",
standalone: false,
})
export class SetPasswordComponent extends BaseSetPasswordComponent {}

View File

@@ -18,5 +18,6 @@ import { VaultTimeoutInputComponent as VaultTimeoutInputComponentBase } from "@b
useExisting: VaultTimeoutInputComponent,
},
],
standalone: false,
})
export class VaultTimeoutInputComponent extends VaultTimeoutInputComponentBase {}

View File

@@ -8,6 +8,7 @@ import { postLogoutMessageListener$ } from "./utils/post-logout-message-listener
@Component({
selector: "app-update-temp-password",
templateUrl: "update-temp-password.component.html",
standalone: false,
})
export class UpdateTempPasswordComponent extends BaseUpdateTempPasswordComponent {
onSuccessfulChangePassword: () => Promise<void> = this.doOnSuccessfulChangePassword.bind(this);

View File

@@ -5,5 +5,6 @@ import { RemovePasswordComponent as BaseRemovePasswordComponent } from "@bitward
@Component({
selector: "app-remove-password",
templateUrl: "remove-password.component.html",
standalone: false,
})
export class RemovePasswordComponent extends BaseRemovePasswordComponent {}

View File

@@ -13,7 +13,10 @@ import { PopupRouterCacheService, popupRouterCacheGuard } from "./popup-router-c
const flushPromises = async () => await new Promise(process.nextTick);
@Component({ template: "" })
@Component({
template: "",
standalone: false,
})
export class EmptyComponent {}
describe("Popup router cache guard", () => {

View File

@@ -19,10 +19,16 @@ import {
import { PopupViewCacheService } from "./popup-view-cache.service";
@Component({ template: "" })
@Component({
template: "",
standalone: false,
})
export class EmptyComponent {}
@Component({ template: "" })
@Component({
template: "",
standalone: false,
})
export class TestComponent {
private viewCacheService = inject(PopupViewCacheService);

View File

@@ -43,6 +43,7 @@ import { DesktopSyncVerificationDialogComponent } from "./components/desktop-syn
</div>
<bit-toast-container></bit-toast-container>
`,
standalone: false,
})
export class AppComponent implements OnInit, OnDestroy {
private compactModeService = inject(PopupCompactModeService);

View File

@@ -22,5 +22,6 @@ import { UserVerificationComponent as BaseComponent } from "@bitwarden/angular/a
transition(":enter", [style({ opacity: 0 }), animate("100ms", style({ opacity: 1 }))]),
]),
],
standalone: false,
})
export class UserVerificationComponent extends BaseComponent {}

View File

@@ -13,6 +13,7 @@ import { NavButton } from "../platform/popup/layout/popup-tab-navigation.compone
@Component({
selector: "app-tabs-v2",
templateUrl: "./tabs-v2.component.html",
standalone: false,
})
export class TabsV2Component {
private hasActiveBadges$ = this.accountService.activeAccount$

View File

@@ -54,6 +54,7 @@ import { NativeMessagingManifestService } from "../services/native-messaging-man
@Component({
selector: "app-settings",
templateUrl: "settings.component.html",
standalone: false,
})
export class SettingsComponent implements OnInit, OnDestroy {
// For use in template

View File

@@ -18,5 +18,6 @@ import { VaultTimeoutInputComponent as VaultTimeoutInputComponentBase } from "@b
useExisting: VaultTimeoutInputComponent,
},
],
standalone: false,
})
export class VaultTimeoutInputComponent extends VaultTimeoutInputComponentBase {}

View File

@@ -93,6 +93,7 @@ const SyncInterval = 6 * 60 * 60 * 1000; // 6 hours
<bit-toast-container></bit-toast-container>
`,
standalone: false,
})
export class AppComponent implements OnInit, OnDestroy {
@ViewChild("settings", { read: ViewContainerRef, static: true }) settingsRef: ViewContainerRef;

View File

@@ -8,6 +8,7 @@ import { Utils } from "@bitwarden/common/platform/misc/utils";
@Component({
selector: "app-avatar",
template: `<img *ngIf="src" [src]="src" [ngClass]="{ 'rounded-circle': circle }" />`,
standalone: false,
})
export class AvatarComponent implements OnChanges, OnInit {
@Input() size = 45;

View File

@@ -54,6 +54,7 @@ type InactiveAccount = ActiveAccount & {
transition("* => void", animate("100ms linear", style({ opacity: 0 }))),
]),
],
standalone: false,
})
export class AccountSwitcherComponent implements OnInit {
activeAccount$: Observable<ActiveAccount | null>;

View File

@@ -3,5 +3,6 @@ import { Component } from "@angular/core";
@Component({
selector: "app-header",
templateUrl: "header.component.html",
standalone: false,
})
export class HeaderComponent {}

View File

@@ -11,6 +11,7 @@ import { SearchBarService, SearchBarState } from "./search-bar.service";
@Component({
selector: "app-search",
templateUrl: "search.component.html",
standalone: false,
})
export class SearchComponent implements OnInit, OnDestroy {
state: SearchBarState;

View File

@@ -28,6 +28,7 @@ const BroadcasterSubscriptionId = "SetPasswordComponent";
@Component({
selector: "app-set-password",
templateUrl: "set-password.component.html",
standalone: false,
})
export class SetPasswordComponent extends BaseSetPasswordComponent implements OnInit, OnDestroy {
constructor(

View File

@@ -5,5 +5,6 @@ import { UpdateTempPasswordComponent as BaseUpdateTempPasswordComponent } from "
@Component({
selector: "app-update-temp-password",
templateUrl: "update-temp-password.component.html",
standalone: false,
})
export class UpdateTempPasswordComponent extends BaseUpdateTempPasswordComponent {}

View File

@@ -13,6 +13,7 @@ import { DialogService, ToastService } from "@bitwarden/components";
@Component({
selector: "app-premium",
templateUrl: "premium.component.html",
standalone: false,
})
export class PremiumComponent extends BasePremiumComponent {
constructor(

View File

@@ -5,5 +5,6 @@ import { RemovePasswordComponent as BaseRemovePasswordComponent } from "@bitward
@Component({
selector: "app-remove-password",
templateUrl: "remove-password.component.html",
standalone: false,
})
export class RemovePasswordComponent extends BaseRemovePasswordComponent {}

View File

@@ -7,6 +7,7 @@ import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.servic
@Component({
selector: "app-vault-add-edit-custom-fields",
templateUrl: "add-edit-custom-fields.component.html",
standalone: false,
})
export class AddEditCustomFieldsComponent extends BaseAddEditCustomFieldsComponent {
constructor(i18nService: I18nService, eventCollectionService: EventCollectionService) {

View File

@@ -30,6 +30,7 @@ const BroadcasterSubscriptionId = "AddEditComponent";
@Component({
selector: "app-vault-add-edit",
templateUrl: "add-edit.component.html",
standalone: false,
})
export class AddEditComponent extends BaseAddEditComponent implements OnInit, OnChanges, OnDestroy {
@ViewChild("form")

View File

@@ -18,6 +18,7 @@ import { KeyService } from "@bitwarden/key-management";
@Component({
selector: "app-vault-attachments",
templateUrl: "attachments.component.html",
standalone: false,
})
export class AttachmentsComponent extends BaseAttachmentsComponent {
constructor(

View File

@@ -13,6 +13,7 @@ import { ToastService } from "@bitwarden/components";
@Component({
selector: "app-vault-collections",
templateUrl: "collections.component.html",
standalone: false,
})
export class CollectionsComponent extends BaseCollectionsComponent {
constructor(

View File

@@ -14,6 +14,7 @@ import { KeyService } from "@bitwarden/key-management";
@Component({
selector: "app-folder-add-edit",
templateUrl: "folder-add-edit.component.html",
standalone: false,
})
export class FolderAddEditComponent extends BaseFolderAddEditComponent {
constructor(

View File

@@ -10,6 +10,7 @@ import { ToastService } from "@bitwarden/components";
@Component({
selector: "app-password-history",
templateUrl: "password-history.component.html",
standalone: false,
})
export class PasswordHistoryComponent extends BasePasswordHistoryComponent {
constructor(

View File

@@ -13,6 +13,7 @@ import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.servi
@Component({
selector: "app-vault-share",
templateUrl: "share.component.html",
standalone: false,
})
export class ShareComponent extends BaseShareComponent {
constructor(

View File

@@ -5,5 +5,6 @@ import { CollectionFilterComponent as BaseCollectionFilterComponent } from "@bit
@Component({
selector: "app-collection-filter",
templateUrl: "collection-filter.component.html",
standalone: false,
})
export class CollectionFilterComponent extends BaseCollectionFilterComponent {}

View File

@@ -5,5 +5,6 @@ import { FolderFilterComponent as BaseFolderFilterComponent } from "@bitwarden/a
@Component({
selector: "app-folder-filter",
templateUrl: "folder-filter.component.html",
standalone: false,
})
export class FolderFilterComponent extends BaseFolderFilterComponent {}

View File

@@ -12,6 +12,7 @@ import { ToastService } from "@bitwarden/components";
@Component({
selector: "app-organization-filter",
templateUrl: "organization-filter.component.html",
standalone: false,
})
export class OrganizationFilterComponent extends BaseOrganizationFilterComponent {
get show() {

View File

@@ -5,5 +5,6 @@ import { StatusFilterComponent as BaseStatusFilterComponent } from "@bitwarden/a
@Component({
selector: "app-status-filter",
templateUrl: "status-filter.component.html",
standalone: false,
})
export class StatusFilterComponent extends BaseStatusFilterComponent {}

View File

@@ -5,6 +5,7 @@ import { TypeFilterComponent as BaseTypeFilterComponent } from "@bitwarden/angul
@Component({
selector: "app-type-filter",
templateUrl: "type-filter.component.html",
standalone: false,
})
export class TypeFilterComponent extends BaseTypeFilterComponent {
constructor() {

View File

@@ -5,5 +5,6 @@ import { VaultFilterComponent as BaseVaultFilterComponent } from "@bitwarden/ang
@Component({
selector: "app-vault-filter",
templateUrl: "vault-filter.component.html",
standalone: false,
})
export class VaultFilterComponent extends BaseVaultFilterComponent {}

View File

@@ -14,6 +14,7 @@ import { SearchBarService } from "../../../app/layout/search/search-bar.service"
@Component({
selector: "app-vault-items",
templateUrl: "vault-items.component.html",
standalone: false,
})
export class VaultItemsComponent extends BaseVaultItemsComponent {
constructor(

View File

@@ -57,6 +57,7 @@ const BroadcasterSubscriptionId = "VaultComponent";
@Component({
selector: "app-vault",
templateUrl: "vault.component.html",
standalone: false,
})
export class VaultComponent implements OnInit, OnDestroy {
@ViewChild(ViewComponent) viewComponent: ViewComponent;

View File

@@ -6,6 +6,7 @@ import { EventCollectionService } from "@bitwarden/common/abstractions/event/eve
@Component({
selector: "app-vault-view-custom-fields",
templateUrl: "view-custom-fields.component.html",
standalone: false,
})
export class ViewCustomFieldsComponent extends BaseViewCustomFieldsComponent {
constructor(eventCollectionService: EventCollectionService) {

View File

@@ -42,6 +42,7 @@ const BroadcasterSubscriptionId = "ViewComponent";
@Component({
selector: "app-vault-view",
templateUrl: "view.component.html",
standalone: false,
})
export class ViewComponent extends BaseViewComponent implements OnInit, OnDestroy, OnChanges {
@Output() onViewCipherPasswordHistory = new EventEmitter<CipherView>();

View File

@@ -10,6 +10,7 @@ import { GroupView } from "../../core";
@Component({
selector: "app-group-badge",
templateUrl: "group-name-badge.component.html",
standalone: false,
})
export class GroupNameBadgeComponent implements OnChanges {
@Input() selectedGroups: SelectionReadOnlyRequest[];

View File

@@ -26,6 +26,7 @@ import { CollectionFilter } from "../../../../vault/individual-vault/vault-filte
selector: "app-organization-vault-filter",
templateUrl:
"../../../../vault/individual-vault/vault-filter/components/vault-filter.component.html",
standalone: false,
})
export class VaultFilterComponent
extends BaseVaultFilterComponent

View File

@@ -9,6 +9,7 @@ import { AccountService } from "@bitwarden/common/auth/abstractions/account.serv
@Component({
selector: "app-org-info",
templateUrl: "organization-information.component.html",
standalone: false,
})
export class OrganizationInformationComponent implements OnInit {
@Input() nameOnly = false;

View File

@@ -21,16 +21,19 @@ import { isEnterpriseOrgGuard } from "./is-enterprise-org.guard";
@Component({
template: "<h1>This is the home screen!</h1>",
standalone: false,
})
export class HomescreenComponent {}
@Component({
template: "<h1>This component can only be accessed by a enterprise organization!</h1>",
standalone: false,
})
export class IsEnterpriseOrganizationComponent {}
@Component({
template: "<h1>This is the organization upgrade screen!</h1>",
standalone: false,
})
export class OrganizationUpgradeScreenComponent {}

View File

@@ -20,16 +20,19 @@ import { isPaidOrgGuard } from "./is-paid-org.guard";
@Component({
template: "<h1>This is the home screen!</h1>",
standalone: false,
})
export class HomescreenComponent {}
@Component({
template: "<h1>This component can only be accessed by a paid organization!</h1>",
standalone: false,
})
export class PaidOrganizationOnlyComponent {}
@Component({
template: "<h1>This is the organization upgrade screen!</h1>",
standalone: false,
})
export class OrganizationUpgradeScreenComponent {}

View File

@@ -19,16 +19,19 @@ import { organizationRedirectGuard } from "./org-redirect.guard";
@Component({
template: "<h1>This is the home screen!</h1>",
standalone: false,
})
export class HomescreenComponent {}
@Component({
template: "<h1>This is the admin console!</h1>",
standalone: false,
})
export class AdminConsoleComponent {}
@Component({
template: "<h1> This is a subroute of the admin console!</h1>",
standalone: false,
})
export class AdminConsoleSubrouteComponent {}

View File

@@ -48,6 +48,7 @@ const EVENT_SYSTEM_USER_TO_TRANSLATION: Record<EventSystemUser, string> = {
@Component({
selector: "app-org-events",
templateUrl: "events.component.html",
standalone: false,
})
export class EventsComponent extends BaseEventsComponent implements OnInit, OnDestroy {
exportFileName = "org-events";

View File

@@ -110,6 +110,7 @@ export const openGroupAddEditDialog = (
@Component({
selector: "app-group-add-edit",
templateUrl: "group-add-edit.component.html",
standalone: false,
})
export class GroupAddEditComponent implements OnInit, OnDestroy {
private organization$ = this.accountService.activeAccount$.pipe(

View File

@@ -75,6 +75,7 @@ const groupsFilter = (filter: string) => {
@Component({
templateUrl: "groups.component.html",
standalone: false,
})
export class GroupsComponent {
loading = true;

View File

@@ -18,6 +18,7 @@ export type UserConfirmDialogData = {
@Component({
selector: "app-user-confirm",
templateUrl: "user-confirm.component.html",
standalone: false,
})
export class UserConfirmComponent implements OnInit {
name: string;

View File

@@ -33,6 +33,7 @@ type BulkConfirmDialogParams = {
@Component({
templateUrl: "bulk-confirm-dialog.component.html",
standalone: false,
})
export class BulkConfirmDialogComponent extends BaseBulkConfirmComponent {
organizationId: string;

View File

@@ -18,6 +18,7 @@ type BulkDeleteDialogParams = {
@Component({
templateUrl: "bulk-delete-dialog.component.html",
standalone: false,
})
export class BulkDeleteDialogComponent {
organizationId: string;

View File

@@ -22,6 +22,7 @@ export type BulkEnableSecretsManagerDialogData = {
@Component({
templateUrl: `bulk-enable-sm-dialog.component.html`,
standalone: false,
})
export class BulkEnableSecretsManagerDialogComponent implements OnInit {
protected dataSource = new TableDataSource<OrganizationUserView>();

View File

@@ -21,6 +21,7 @@ type BulkRemoveDialogParams = {
@Component({
templateUrl: "bulk-remove-dialog.component.html",
standalone: false,
})
export class BulkRemoveDialogComponent extends BaseBulkRemoveComponent {
organizationId: string;

View File

@@ -18,6 +18,7 @@ type BulkRestoreDialogParams = {
@Component({
selector: "app-bulk-restore-revoke",
templateUrl: "bulk-restore-revoke.component.html",
standalone: false,
})
export class BulkRestoreRevokeComponent {
isRevoking: boolean;

View File

@@ -41,6 +41,7 @@ type BulkStatusDialogData = {
@Component({
selector: "app-bulk-status",
templateUrl: "bulk-status.component.html",
standalone: false,
})
export class BulkStatusComponent implements OnInit {
users: BulkStatusEntry[];

View File

@@ -106,6 +106,7 @@ export enum MemberDialogResult {
@Component({
templateUrl: "member-dialog.component.html",
standalone: false,
})
export class MemberDialogComponent implements OnDestroy {
loading = true;

View File

@@ -10,6 +10,7 @@ import { Utils } from "@bitwarden/common/platform/misc/utils";
@Component({
selector: "app-nested-checkbox",
templateUrl: "nested-checkbox.component.html",
standalone: false,
})
export class NestedCheckboxComponent implements OnInit, OnDestroy {
private destroy$ = new Subject<void>();

View File

@@ -59,6 +59,7 @@ export enum ResetPasswordDialogResult {
@Component({
selector: "app-reset-password",
templateUrl: "reset-password.component.html",
standalone: false,
})
/**
* Used in a dialog for initiating the account recovery process against a

View File

@@ -88,6 +88,7 @@ class MembersTableDataSource extends PeopleTableDataSource<OrganizationUserView>
@Component({
templateUrl: "members.component.html",
standalone: false,
})
export class MembersComponent extends BaseMembersComponent<OrganizationUserView> {
userType = OrganizationUserType;

View File

@@ -14,5 +14,6 @@ export class DisableSendPolicy extends BasePolicy {
@Component({
selector: "policy-disable-send",
templateUrl: "disable-send.component.html",
standalone: false,
})
export class DisableSendPolicyComponent extends BasePolicyComponent {}

View File

@@ -28,6 +28,7 @@ export class MasterPasswordPolicy extends BasePolicy {
@Component({
selector: "policy-master-password",
templateUrl: "master-password.component.html",
standalone: false,
})
export class MasterPasswordPolicyComponent extends BasePolicyComponent implements OnInit {
MinPasswordLength = Utils.minimumPasswordLength;

View File

@@ -21,6 +21,7 @@ export class PasswordGeneratorPolicy extends BasePolicy {
@Component({
selector: "policy-password-generator",
templateUrl: "password-generator.component.html",
standalone: false,
})
export class PasswordGeneratorPolicyComponent extends BasePolicyComponent {
// these properties forward the application default settings to the UI

View File

@@ -14,5 +14,6 @@ export class PersonalOwnershipPolicy extends BasePolicy {
@Component({
selector: "policy-personal-ownership",
templateUrl: "personal-ownership.component.html",
standalone: false,
})
export class PersonalOwnershipPolicyComponent extends BasePolicyComponent {}

View File

@@ -31,6 +31,7 @@ import { PolicyEditComponent, PolicyEditDialogResult } from "./policy-edit.compo
@Component({
selector: "app-org-policies",
templateUrl: "policies.component.html",
standalone: false,
})
export class PoliciesComponent implements OnInit {
loading = true;

View File

@@ -50,6 +50,7 @@ export enum PolicyEditDialogResult {
@Component({
selector: "app-policy-edit",
templateUrl: "policy-edit.component.html",
standalone: false,
})
export class PolicyEditComponent implements AfterViewInit {
@ViewChild("policyForm", { read: ViewContainerRef, static: true })

View File

@@ -14,5 +14,6 @@ export class RemoveUnlockWithPinPolicy extends BasePolicy {
@Component({
selector: "remove-unlock-with-pin",
templateUrl: "remove-unlock-with-pin.component.html",
standalone: false,
})
export class RemoveUnlockWithPinPolicyComponent extends BasePolicyComponent {}

View File

@@ -19,5 +19,6 @@ export class RequireSsoPolicy extends BasePolicy {
@Component({
selector: "policy-require-sso",
templateUrl: "require-sso.component.html",
standalone: false,
})
export class RequireSsoPolicyComponent extends BasePolicyComponent {}

View File

@@ -27,6 +27,7 @@ export class ResetPasswordPolicy extends BasePolicy {
@Component({
selector: "policy-reset-password",
templateUrl: "reset-password.component.html",
standalone: false,
})
export class ResetPasswordPolicyComponent extends BasePolicyComponent implements OnInit {
data = this.formBuilder.group({

View File

@@ -15,6 +15,7 @@ export class SendOptionsPolicy extends BasePolicy {
@Component({
selector: "policy-send-options",
templateUrl: "send-options.component.html",
standalone: false,
})
export class SendOptionsPolicyComponent extends BasePolicyComponent {
data = this.formBuilder.group({

View File

@@ -14,6 +14,7 @@ export class SingleOrgPolicy extends BasePolicy {
@Component({
selector: "policy-single-org",
templateUrl: "single-org.component.html",
standalone: false,
})
export class SingleOrgPolicyComponent extends BasePolicyComponent implements OnInit {
async ngOnInit() {

View File

@@ -14,5 +14,6 @@ export class TwoFactorAuthenticationPolicy extends BasePolicy {
@Component({
selector: "policy-two-factor-authentication",
templateUrl: "two-factor-authentication.component.html",
standalone: false,
})
export class TwoFactorAuthenticationPolicyComponent extends BasePolicyComponent {}

View File

@@ -17,6 +17,7 @@ import { ReportVariant, reports, ReportType, ReportEntry } from "../../../dirt/r
@Component({
selector: "app-org-reports-home",
templateUrl: "reports-home.component.html",
standalone: false,
})
export class ReportsHomeComponent implements OnInit {
reports$: Observable<ReportEntry[]>;

View File

@@ -41,6 +41,7 @@ import { DeleteOrganizationDialogResult, openDeleteOrganizationDialog } from "./
@Component({
selector: "app-org-account",
templateUrl: "account.component.html",
standalone: false,
})
export class AccountComponent implements OnInit, OnDestroy {
selfHosted = false;

View File

@@ -29,6 +29,7 @@ import { TwoFactorVerifyComponent } from "../../../auth/settings/two-factor/two-
@Component({
selector: "app-two-factor-setup",
templateUrl: "../../../auth/settings/two-factor/two-factor-setup.component.html",
standalone: false,
})
export class TwoFactorSetupComponent extends BaseTwoFactorSetupComponent implements OnInit {
tabbedHeader = false;

View File

@@ -55,6 +55,7 @@ export enum PermissionMode {
multi: true,
},
],
standalone: false,
})
export class AccessSelectorComponent implements ControlValueAccessor, OnInit, OnDestroy {
private destroy$ = new Subject<void>();

View File

@@ -5,6 +5,7 @@ import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.servic
@Pipe({
name: "userType",
standalone: false,
})
export class UserTypePipe implements PipeTransform {
constructor(private i18nService: I18nService) {}

View File

@@ -19,6 +19,7 @@ import { BaseAcceptComponent } from "../../../common/base.accept.component";
@Component({
selector: "app-accept-family-sponsorship",
templateUrl: "accept-family-sponsorship.component.html",
standalone: false,
})
export class AcceptFamilySponsorshipComponent extends BaseAcceptComponent {
protected logo = BitwardenLogo;

View File

@@ -49,6 +49,7 @@ const IdleTimeout = 60000 * 10; // 10 minutes
@Component({
selector: "app-root",
templateUrl: "app.component.html",
standalone: false,
})
export class AppComponent implements OnDestroy, OnInit {
private lastActivity: Date = null;

View File

@@ -13,16 +13,19 @@ import { deepLinkGuard } from "./deep-link.guard";
@Component({
template: "",
standalone: false,
})
export class GuardedRouteTestComponent {}
@Component({
template: "",
standalone: false,
})
export class LockTestComponent {}
@Component({
template: "",
standalone: false,
})
export class RedirectTestComponent {}

View File

@@ -7,6 +7,7 @@ import { CreatePasskeyIcon } from "@bitwarden/angular/auth/icons/create-passkey.
@Component({
selector: "app-login-via-webauthn",
templateUrl: "login-via-webauthn.component.html",
standalone: false,
})
export class LoginViaWebAuthnComponent extends BaseLoginViaWebAuthnComponent {
protected readonly Icons = { CreatePasskeyIcon, CreatePasskeyFailedIcon };

View File

@@ -14,6 +14,7 @@ import { OrganizationInvite } from "./organization-invite";
@Component({
templateUrl: "accept-organization.component.html",
standalone: false,
})
export class AcceptOrganizationComponent extends BaseAcceptComponent {
orgName$ = this.acceptOrganizationInviteService.orgName$;

View File

@@ -13,6 +13,7 @@ import { ToastService } from "@bitwarden/components";
@Component({
selector: "app-recover-delete",
templateUrl: "recover-delete.component.html",
standalone: false,
})
export class RecoverDeleteComponent {
protected recoverDeleteForm = new FormGroup({

View File

@@ -16,6 +16,7 @@ import { ToastService } from "@bitwarden/components";
@Component({
selector: "app-recover-two-factor",
templateUrl: "recover-two-factor.component.html",
standalone: false,
})
export class RecoverTwoFactorComponent implements OnInit {
protected formGroup = new FormGroup({

View File

@@ -11,6 +11,7 @@ import { AcceptOrganizationInviteService } from "./organization-invite/accept-or
@Component({
selector: "app-set-password",
templateUrl: "set-password.component.html",
standalone: false,
})
export class SetPasswordComponent extends BaseSetPasswordComponent {
routerService = inject(RouterService);

View File

@@ -17,6 +17,7 @@ import { SetAccountVerifyDevicesDialogComponent } from "./set-account-verify-dev
@Component({
selector: "app-account",
templateUrl: "account.component.html",
standalone: false,
})
export class AccountComponent implements OnInit, OnDestroy {
private destroy$ = new Subject<void>();

View File

@@ -31,6 +31,7 @@ type ChangeAvatarDialogData = {
@Component({
templateUrl: "change-avatar-dialog.component.html",
encapsulation: ViewEncapsulation.None,
standalone: false,
})
export class ChangeAvatarDialogComponent implements OnInit, OnDestroy {
profile: ProfileResponse;

View File

@@ -17,6 +17,7 @@ import { KdfConfigService, KeyService } from "@bitwarden/key-management";
@Component({
selector: "app-change-email",
templateUrl: "change-email.component.html",
standalone: false,
})
export class ChangeEmailComponent implements OnInit {
tokenSent = false;

View File

@@ -12,6 +12,7 @@ import { DialogService, ToastService } from "@bitwarden/components";
@Component({
selector: "app-deauthorize-sessions",
templateUrl: "deauthorize-sessions.component.html",
standalone: false,
})
export class DeauthorizeSessionsComponent {
deauthForm = this.formBuilder.group({

View File

@@ -11,6 +11,7 @@ import { DialogRef, DialogService, ToastService } from "@bitwarden/components";
@Component({
templateUrl: "delete-account-dialog.component.html",
standalone: false,
})
export class DeleteAccountDialogComponent {
deleteForm = this.formBuilder.group({

View File

@@ -19,6 +19,7 @@ import { ChangeAvatarDialogComponent } from "./change-avatar-dialog.component";
@Component({
selector: "app-profile",
templateUrl: "profile.component.html",
standalone: false,
})
export class ProfileComponent implements OnInit, OnDestroy {
loading = true;

View File

@@ -24,6 +24,7 @@ import { Component, EventEmitter, Input, Output } from "@angular/core";
>
</bit-avatar>
</span>`,
standalone: false,
})
export class SelectableAvatarComponent {
@Input() id: string;

View File

@@ -32,6 +32,7 @@ import { UserKeyRotationService } from "../../key-management/key-rotation/user-k
@Component({
selector: "app-change-password",
templateUrl: "change-password.component.html",
standalone: false,
})
export class ChangePasswordComponent
extends BaseChangePasswordComponent

View File

@@ -26,6 +26,7 @@ type EmergencyAccessConfirmDialogData = {
@Component({
selector: "emergency-access-confirm",
templateUrl: "emergency-access-confirm.component.html",
standalone: false,
})
export class EmergencyAccessConfirmComponent implements OnInit {
loading = true;

View File

@@ -36,6 +36,7 @@ export enum EmergencyAccessAddEditDialogResult {
@Component({
selector: "emergency-access-add-edit",
templateUrl: "emergency-access-add-edit.component.html",
standalone: false,
})
export class EmergencyAccessAddEditComponent implements OnInit {
loading = true;

View File

@@ -42,6 +42,7 @@ import {
@Component({
selector: "emergency-access",
templateUrl: "emergency-access.component.html",
standalone: false,
})
export class EmergencyAccessComponent implements OnInit {
loaded = false;

View File

@@ -40,6 +40,7 @@ type EmergencyAccessTakeoverDialogData = {
@Component({
selector: "emergency-access-takeover",
templateUrl: "emergency-access-takeover.component.html",
standalone: false,
})
export class EmergencyAccessTakeoverComponent
extends ChangePasswordComponent

View File

@@ -15,6 +15,7 @@ import { EmergencyViewDialogComponent } from "./emergency-view-dialog.component"
selector: "emergency-access-view",
templateUrl: "emergency-access-view.component.html",
providers: [{ provide: CipherFormConfigService, useClass: DefaultCipherFormConfigService }],
standalone: false,
})
export class EmergencyAccessViewComponent implements OnInit {
id: EmergencyAccessId | null = null;

View File

@@ -23,6 +23,7 @@ export type ApiKeyDialogData = {
@Component({
selector: "app-api-key",
templateUrl: "api-key.component.html",
standalone: false,
})
export class ApiKeyComponent {
clientId: string;

View File

@@ -16,6 +16,7 @@ import { KdfConfig, KdfType, KeyService } from "@bitwarden/key-management";
@Component({
selector: "app-change-kdf-confirmation",
templateUrl: "change-kdf-confirmation.component.html",
standalone: false,
})
export class ChangeKdfConfirmationComponent {
kdfConfig: KdfConfig;

View File

@@ -21,6 +21,7 @@ import { ChangeKdfConfirmationComponent } from "./change-kdf-confirmation.compon
@Component({
selector: "app-change-kdf",
templateUrl: "change-kdf.component.html",
standalone: false,
})
export class ChangeKdfComponent implements OnInit, OnDestroy {
kdfConfig: KdfConfig = DEFAULT_KDF_CONFIG;

View File

@@ -13,6 +13,7 @@ import { ApiKeyComponent } from "./api-key.component";
@Component({
selector: "app-security-keys",
templateUrl: "security-keys.component.html",
standalone: false,
})
export class SecurityKeysComponent implements OnInit {
showChangeKdf = true;

Some files were not shown because too many files have changed in this diff Show More