mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 18:53:29 +00:00
* Create settings-v2.component Create new settings page Add routing based on extension refresh flag * Wrap anchors around the icons * Add account-switcher to settings page --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
28 lines
940 B
TypeScript
28 lines
940 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { Component } from "@angular/core";
|
|
import { RouterModule } from "@angular/router";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
import { ItemModule } from "@bitwarden/components";
|
|
|
|
import { CurrentAccountComponent } from "../../../auth/popup/account-switching/current-account.component";
|
|
import { PopOutComponent } from "../../../platform/popup/components/pop-out.component";
|
|
import { PopupHeaderComponent } from "../../../platform/popup/layout/popup-header.component";
|
|
import { PopupPageComponent } from "../../../platform/popup/layout/popup-page.component";
|
|
|
|
@Component({
|
|
templateUrl: "settings-v2.component.html",
|
|
standalone: true,
|
|
imports: [
|
|
CommonModule,
|
|
JslibModule,
|
|
RouterModule,
|
|
PopupPageComponent,
|
|
PopupHeaderComponent,
|
|
PopOutComponent,
|
|
ItemModule,
|
|
CurrentAccountComponent,
|
|
],
|
|
})
|
|
export class SettingsV2Component {}
|