mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +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:
@@ -24,6 +24,7 @@ export interface DomainAddEditDialogData {
|
||||
|
||||
@Component({
|
||||
templateUrl: "domain-add-edit-dialog.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class DomainAddEditDialogComponent implements OnInit, OnDestroy {
|
||||
private componentDestroyed$: Subject<void> = new Subject();
|
||||
|
||||
@@ -35,6 +35,7 @@ import {
|
||||
@Component({
|
||||
selector: "app-org-manage-domain-verification",
|
||||
templateUrl: "domain-verification.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class DomainVerificationComponent implements OnInit, OnDestroy {
|
||||
private componentDestroyed$ = new Subject<void>();
|
||||
|
||||
@@ -24,6 +24,7 @@ import { DialogService, ToastService } from "@bitwarden/components";
|
||||
@Component({
|
||||
selector: "app-org-manage-scim",
|
||||
templateUrl: "scim.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class ScimComponent implements OnInit {
|
||||
loading = true;
|
||||
|
||||
@@ -21,5 +21,6 @@ export class ActivateAutofillPolicy extends BasePolicy {
|
||||
@Component({
|
||||
selector: "policy-activate-autofill",
|
||||
templateUrl: "activate-autofill.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class ActivateAutofillPolicyComponent extends BasePolicyComponent {}
|
||||
|
||||
@@ -19,6 +19,7 @@ export class AutomaticAppLoginPolicy extends BasePolicy {
|
||||
@Component({
|
||||
selector: "policy-automatic-app-login",
|
||||
templateUrl: "automatic-app-login.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class AutomaticAppLoginPolicyComponent extends BasePolicyComponent {
|
||||
data = this.formBuilder.group({
|
||||
|
||||
@@ -16,5 +16,6 @@ export class DisablePersonalVaultExportPolicy extends BasePolicy {
|
||||
@Component({
|
||||
selector: "policy-disable-personal-vault-export",
|
||||
templateUrl: "disable-personal-vault-export.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class DisablePersonalVaultExportPolicyComponent extends BasePolicyComponent {}
|
||||
|
||||
@@ -22,6 +22,7 @@ export class MaximumVaultTimeoutPolicy extends BasePolicy {
|
||||
@Component({
|
||||
selector: "policy-maximum-timeout",
|
||||
templateUrl: "maximum-vault-timeout.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class MaximumVaultTimeoutPolicyComponent extends BasePolicyComponent {
|
||||
vaultTimeoutActionOptions: { name: string; value: string }[];
|
||||
|
||||
@@ -19,6 +19,7 @@ interface AddOrganizationDialogData {
|
||||
|
||||
@Component({
|
||||
templateUrl: "add-organization.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class AddOrganizationComponent implements OnInit {
|
||||
protected provider: Provider;
|
||||
|
||||
@@ -8,6 +8,7 @@ import { OrganizationPlansComponent } from "@bitwarden/web-vault/app/billing";
|
||||
@Component({
|
||||
selector: "app-create-organization",
|
||||
templateUrl: "create-organization.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class CreateOrganizationComponent implements OnInit {
|
||||
@ViewChild(OrganizationPlansComponent, { static: true })
|
||||
|
||||
@@ -14,6 +14,7 @@ import { BaseAcceptComponent } from "@bitwarden/web-vault/app/common/base.accept
|
||||
@Component({
|
||||
selector: "app-accept-provider",
|
||||
templateUrl: "accept-provider.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class AcceptProviderComponent extends BaseAcceptComponent {
|
||||
protected logo = BitwardenLogo;
|
||||
|
||||
@@ -35,6 +35,7 @@ export enum AddEditMemberDialogResultType {
|
||||
|
||||
@Component({
|
||||
templateUrl: "add-edit-member-dialog.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class AddEditMemberDialogComponent {
|
||||
editing = false;
|
||||
|
||||
@@ -29,6 +29,7 @@ type BulkConfirmDialogParams = {
|
||||
@Component({
|
||||
templateUrl:
|
||||
"../../../../../../../../apps/web/src/app/admin-console/organizations/members/components/bulk/bulk-confirm-dialog.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class BulkConfirmDialogComponent extends BaseBulkConfirmComponent {
|
||||
providerId: string;
|
||||
|
||||
@@ -19,6 +19,7 @@ type BulkRemoveDialogParams = {
|
||||
@Component({
|
||||
templateUrl:
|
||||
"../../../../../../../../apps/web/src/app/admin-console/organizations/members/components/bulk/bulk-remove-dialog.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class BulkRemoveDialogComponent extends BaseBulkRemoveComponent {
|
||||
providerId: string;
|
||||
|
||||
@@ -19,6 +19,7 @@ import { EventExportService } from "@bitwarden/web-vault/app/tools/event-export"
|
||||
@Component({
|
||||
selector: "provider-events",
|
||||
templateUrl: "events.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class EventsComponent extends BaseEventsComponent implements OnInit {
|
||||
exportFileName = "provider-events";
|
||||
|
||||
@@ -45,6 +45,7 @@ class MembersTableDataSource extends PeopleTableDataSource<ProviderUser> {
|
||||
|
||||
@Component({
|
||||
templateUrl: "members.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class MembersComponent extends BaseMembersComponent<ProviderUser> {
|
||||
accessEvents = false;
|
||||
|
||||
@@ -10,6 +10,7 @@ import { Utils } from "@bitwarden/common/platform/misc/utils";
|
||||
@Component({
|
||||
selector: "app-providers",
|
||||
templateUrl: "providers.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class ProvidersComponent implements OnInit {
|
||||
providers: Provider[];
|
||||
|
||||
@@ -20,6 +20,7 @@ import { DialogService, ToastService } from "@bitwarden/components";
|
||||
@Component({
|
||||
selector: "provider-account",
|
||||
templateUrl: "account.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class AccountComponent implements OnDestroy, OnInit {
|
||||
selfHosted = false;
|
||||
|
||||
@@ -7,6 +7,7 @@ import { BaseAcceptComponent } from "@bitwarden/web-vault/app/common/base.accept
|
||||
@Component({
|
||||
selector: "app-setup-provider",
|
||||
templateUrl: "setup-provider.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class SetupProviderComponent extends BaseAcceptComponent {
|
||||
protected logo = BitwardenLogo;
|
||||
|
||||
@@ -23,6 +23,7 @@ import { PaymentComponent } from "@bitwarden/web-vault/app/billing/shared/paymen
|
||||
@Component({
|
||||
selector: "provider-setup",
|
||||
templateUrl: "setup.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class SetupComponent implements OnInit, OnDestroy {
|
||||
@ViewChild(PaymentComponent) paymentComponent: PaymentComponent;
|
||||
|
||||
@@ -13,6 +13,7 @@ import { ToastService } from "@bitwarden/components";
|
||||
@Component({
|
||||
selector: "app-verify-recover-delete-provider",
|
||||
templateUrl: "verify-recover-delete-provider.component.html",
|
||||
standalone: false,
|
||||
})
|
||||
export class VerifyRecoverDeleteProviderComponent implements OnInit {
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user