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

Remove standalone true from billing (#15038)

This commit is contained in:
Oscar Hinton
2025-06-02 21:40:06 +02:00
committed by GitHub
parent 14e363ad86
commit 8967fc21db
15 changed files with 0 additions and 15 deletions

View File

@@ -29,7 +29,6 @@ import { PopupPageComponent } from "../../../platform/popup/layout/popup-page.co
@Component({
selector: "app-premium",
templateUrl: "premium-v2.component.html",
standalone: true,
imports: [
ButtonModule,
CardComponent,

View File

@@ -68,7 +68,6 @@ export enum SubscriptionProduct {
selector: "app-trial-billing-step",
templateUrl: "trial-billing-step.component.html",
imports: [BillingSharedModule],
standalone: true,
})
export class TrialBillingStepComponent implements OnInit, OnDestroy {
@ViewChild(PaymentComponent) paymentComponent: PaymentComponent;

View File

@@ -38,7 +38,6 @@ interface AddSponsorshipDialogParams {
@Component({
templateUrl: "add-sponsorship-dialog.component.html",
standalone: true,
imports: [
JslibModule,
ButtonModule,

View File

@@ -109,7 +109,6 @@ interface OnSuccessArgs {
@Component({
templateUrl: "./change-plan-dialog.component.html",
standalone: true,
imports: [BillingSharedModule],
})
export class ChangePlanDialogComponent implements OnInit, OnDestroy {

View File

@@ -77,7 +77,6 @@ const Allowed2020PlansForLegacyProviders = [
@Component({
selector: "app-organization-plans",
templateUrl: "organization-plans.component.html",
standalone: true,
imports: [BillingSharedModule, OrganizationCreateModule],
})
export class OrganizationPlansComponent implements OnInit, OnDestroy {

View File

@@ -10,7 +10,6 @@ import { BillingSharedModule } from "./billing-shared.module";
@Component({
selector: "billing-free-families-nav-item",
templateUrl: "./billing-free-families-nav-item.component.html",
standalone: true,
imports: [NavigationModule, BillingSharedModule],
})
export class BillingFreeFamiliesNavItemComponent {

View File

@@ -14,7 +14,6 @@ import { SharedModule } from "../../../shared";
@Component({
selector: "app-payment-label",
templateUrl: "./payment-label.component.html",
standalone: true,
imports: [FormFieldModule, SharedModule],
})
export class PaymentLabelComponent {

View File

@@ -22,7 +22,6 @@ import { PaymentLabelComponent } from "./payment-label.component";
@Component({
selector: "app-payment",
templateUrl: "./payment.component.html",
standalone: true,
imports: [BillingServicesModule, SharedModule, PaymentLabelComponent],
})
export class PaymentComponent implements OnInit, OnDestroy {

View File

@@ -21,7 +21,6 @@ import { SharedModule } from "../../shared";
@Component({
selector: "app-tax-info",
templateUrl: "tax-info.component.html",
standalone: true,
imports: [SharedModule],
})
export class TaxInfoComponent implements OnInit, OnDestroy {

View File

@@ -10,7 +10,6 @@ import { SharedModule } from "../../../shared";
@Component({
selector: "app-verify-bank-account",
templateUrl: "./verify-bank-account.component.html",
standalone: true,
imports: [SharedModule],
})
export class VerifyBankAccountComponent {

View File

@@ -37,7 +37,6 @@ import {
</bit-banner>
}
`,
standalone: true,
imports: [AnchorLinkDirective, AsyncPipe, BannerComponent, I18nPipe],
})
export class FreeTrialWarningComponent implements OnInit {

View File

@@ -27,7 +27,6 @@ import {
</bit-banner>
}
`,
standalone: true,
imports: [AsyncPipe, BannerComponent],
})
export class ResellerRenewalWarningComponent implements OnInit {

View File

@@ -51,7 +51,6 @@ import { ReplacePipe } from "./replace.pipe";
@Component({
templateUrl: "manage-clients.component.html",
standalone: true,
imports: [
AvatarModule,
TableModule,

View File

@@ -24,7 +24,6 @@ const gearIcon = svgIcon`
@Component({
selector: "app-no-clients",
standalone: true,
imports: [SharedOrganizationModule],
template: `<div class="tw-flex tw-flex-col tw-items-center tw-text-info">
<bit-icon [icon]="icon"></bit-icon>

View File

@@ -2,7 +2,6 @@ import { Pipe, PipeTransform } from "@angular/core";
@Pipe({
name: "replace",
standalone: true,
})
export class ReplacePipe implements PipeTransform {
transform(value: string, pattern: string, replacement: string): string {