Browse Source

Remove standalone true from dirt (#15041)

Remove standalone: true from every instance since it's the default as of Angular 19.
pull/15122/head
Oscar Hinton 7 months ago committed by GitHub
parent
commit
5fd7c181de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications.component.ts
  2. 1
      bitwarden_license/bit-web/src/app/dirt/access-intelligence/app-table-row-scrollable.component.ts
  3. 1
      bitwarden_license/bit-web/src/app/dirt/access-intelligence/critical-applications.component.ts
  4. 1
      bitwarden_license/bit-web/src/app/dirt/access-intelligence/notified-members-table.component.ts
  5. 1
      bitwarden_license/bit-web/src/app/dirt/access-intelligence/password-health-members-uri.component.ts
  6. 1
      bitwarden_license/bit-web/src/app/dirt/access-intelligence/password-health-members.component.ts
  7. 1
      bitwarden_license/bit-web/src/app/dirt/access-intelligence/password-health.component.ts
  8. 1
      bitwarden_license/bit-web/src/app/dirt/access-intelligence/risk-insights-loading.component.ts
  9. 1
      bitwarden_license/bit-web/src/app/dirt/access-intelligence/risk-insights.component.ts
  10. 1
      bitwarden_license/bit-web/src/app/dirt/reports/member-access-report/member-access-report.component.ts
  11. 1
      libs/dirt/card/src/card.component.ts

1
bitwarden_license/bit-web/src/app/dirt/access-intelligence/all-applications.component.ts

@ -41,7 +41,6 @@ import { AppTableRowScrollableComponent } from "./app-table-row-scrollable.compo @@ -41,7 +41,6 @@ import { AppTableRowScrollableComponent } from "./app-table-row-scrollable.compo
import { ApplicationsLoadingComponent } from "./risk-insights-loading.component";
@Component({
standalone: true,
selector: "tools-all-applications",
templateUrl: "./all-applications.component.html",
imports: [

1
bitwarden_license/bit-web/src/app/dirt/access-intelligence/app-table-row-scrollable.component.ts

@ -9,7 +9,6 @@ import { PipesModule } from "@bitwarden/web-vault/app/vault/individual-vault/pip @@ -9,7 +9,6 @@ import { PipesModule } from "@bitwarden/web-vault/app/vault/individual-vault/pip
@Component({
selector: "app-table-row-scrollable",
standalone: true,
imports: [CommonModule, JslibModule, TableModule, SharedModule, PipesModule, MenuModule],
templateUrl: "./app-table-row-scrollable.component.html",
})

1
bitwarden_license/bit-web/src/app/dirt/access-intelligence/critical-applications.component.ts

@ -39,7 +39,6 @@ import { AppTableRowScrollableComponent } from "./app-table-row-scrollable.compo @@ -39,7 +39,6 @@ import { AppTableRowScrollableComponent } from "./app-table-row-scrollable.compo
import { RiskInsightsTabType } from "./risk-insights.component";
@Component({
standalone: true,
selector: "tools-critical-applications",
templateUrl: "./critical-applications.component.html",
imports: [

1
bitwarden_license/bit-web/src/app/dirt/access-intelligence/notified-members-table.component.ts

@ -5,7 +5,6 @@ import { JslibModule } from "@bitwarden/angular/jslib.module"; @@ -5,7 +5,6 @@ import { JslibModule } from "@bitwarden/angular/jslib.module";
import { TableDataSource, TableModule } from "@bitwarden/components";
@Component({
standalone: true,
selector: "tools-notified-members-table",
templateUrl: "./notified-members-table.component.html",
imports: [CommonModule, JslibModule, TableModule],

1
bitwarden_license/bit-web/src/app/dirt/access-intelligence/password-health-members-uri.component.ts

@ -29,7 +29,6 @@ import { HeaderModule } from "@bitwarden/web-vault/app/layouts/header/header.mod @@ -29,7 +29,6 @@ import { HeaderModule } from "@bitwarden/web-vault/app/layouts/header/header.mod
import { PipesModule } from "@bitwarden/web-vault/app/vault/individual-vault/pipes/pipes.module";
@Component({
standalone: true,
selector: "tools-password-health-members-uri",
templateUrl: "password-health-members-uri.component.html",
imports: [

1
bitwarden_license/bit-web/src/app/dirt/access-intelligence/password-health-members.component.ts

@ -27,7 +27,6 @@ import { SharedModule } from "@bitwarden/web-vault/app/shared"; @@ -27,7 +27,6 @@ import { SharedModule } from "@bitwarden/web-vault/app/shared";
import { PipesModule } from "@bitwarden/web-vault/app/vault/individual-vault/pipes/pipes.module";
@Component({
standalone: true,
selector: "tools-password-health-members",
templateUrl: "password-health-members.component.html",
imports: [PipesModule, HeaderModule, SearchModule, FormsModule, SharedModule, TableModule],

1
bitwarden_license/bit-web/src/app/dirt/access-intelligence/password-health.component.ts

@ -21,7 +21,6 @@ import { OrganizationBadgeModule } from "@bitwarden/web-vault/app/vault/individu @@ -21,7 +21,6 @@ import { OrganizationBadgeModule } from "@bitwarden/web-vault/app/vault/individu
import { PipesModule } from "@bitwarden/web-vault/app/vault/individual-vault/pipes/pipes.module";
@Component({
standalone: true,
selector: "tools-password-health",
templateUrl: "password-health.component.html",
imports: [

1
bitwarden_license/bit-web/src/app/dirt/access-intelligence/risk-insights-loading.component.ts

@ -5,7 +5,6 @@ import { JslibModule } from "@bitwarden/angular/jslib.module"; @@ -5,7 +5,6 @@ import { JslibModule } from "@bitwarden/angular/jslib.module";
@Component({
selector: "tools-risk-insights-loading",
standalone: true,
imports: [CommonModule, JslibModule],
templateUrl: "./risk-insights-loading.component.html",
})

1
bitwarden_license/bit-web/src/app/dirt/access-intelligence/risk-insights.component.ts

@ -44,7 +44,6 @@ export enum RiskInsightsTabType { @@ -44,7 +44,6 @@ export enum RiskInsightsTabType {
}
@Component({
standalone: true,
templateUrl: "./risk-insights.component.html",
imports: [
AllApplicationsComponent,

1
bitwarden_license/bit-web/src/app/dirt/reports/member-access-report/member-access-report.component.ts

@ -41,7 +41,6 @@ import { MemberAccessReportView } from "./view/member-access-report.view"; @@ -41,7 +41,6 @@ import { MemberAccessReportView } from "./view/member-access-report.view";
deps: [MemberAccessReportApiService, I18nService],
}),
],
standalone: true,
})
export class MemberAccessReportComponent implements OnInit {
protected dataSource = new TableDataSource<MemberAccessReportView>();

1
libs/dirt/card/src/card.component.ts

@ -9,7 +9,6 @@ import { TypographyModule } from "@bitwarden/components"; @@ -9,7 +9,6 @@ import { TypographyModule } from "@bitwarden/components";
@Component({
selector: "dirt-card",
templateUrl: "./card.component.html",
standalone: true,
imports: [CommonModule, TypographyModule, JslibModule],
host: {
class:

Loading…
Cancel
Save