1
0
mirror of https://github.com/bitwarden/browser synced 2026-03-01 11:01:17 +00:00

migrated vault cipher list

This commit is contained in:
Leslie Xiong
2026-01-23 02:53:53 -05:00
parent 2fac696567
commit 5ebba7a4b4
31 changed files with 2641 additions and 672 deletions

View File

@@ -26,7 +26,6 @@ import { UserVerificationComponent } from "./components/user-verification.compon
import { AccountSwitcherComponent } from "./layout/account-switcher.component";
import { HeaderComponent } from "./layout/header.component";
import { NavComponent } from "./layout/nav.component";
import { SearchComponent } from "./layout/search/search.component";
import { SharedModule } from "./shared/shared.module";
@NgModule({
@@ -51,7 +50,6 @@ import { SharedModule } from "./shared/shared.module";
ColorPasswordCountPipe,
HeaderComponent,
PremiumComponent,
SearchComponent,
],
providers: [
SshAgentService,

View File

@@ -1,4 +1,4 @@
<bit-layout class="!tw-h-full" rounded>
<bit-layout class="!tw-h-full">
<app-side-nav slot="side-nav">
<bit-nav-logo [openIcon]="logo" route="." [label]="'passwordManager' | i18n" />

View File

@@ -1,4 +1,3 @@
<div class="header">
<app-search></app-search>
<app-account-switcher></app-account-switcher>
</div>

View File

@@ -1,11 +1,4 @@
<div class="search" *ngIf="state.enabled">
<input
type="search"
[placeholder]="state.placeholderText"
id="search"
autocomplete="off"
[formControl]="searchText"
appAutofocus
/>
<i class="bwi bwi-search" aria-hidden="true"></i>
</div>
@if (state.enabled) {
<bit-search [placeholder]="state.placeholderText" [formControl]="searchText" appAutofocus>
</bit-search>
}

View File

@@ -1,10 +1,12 @@
// FIXME: Update this file to be type safe and remove this and next line
// @ts-strict-ignore
import { CommonModule } from "@angular/common";
import { Component, OnDestroy, OnInit } from "@angular/core";
import { UntypedFormControl } from "@angular/forms";
import { ReactiveFormsModule, UntypedFormControl } from "@angular/forms";
import { Subscription } from "rxjs";
import { AccountService } from "@bitwarden/common/auth/abstractions/account.service";
import { AutofocusDirective, SearchModule } from "@bitwarden/components";
import { SearchBarService, SearchBarState } from "./search-bar.service";
@@ -13,7 +15,7 @@ import { SearchBarService, SearchBarState } from "./search-bar.service";
@Component({
selector: "app-search",
templateUrl: "search.component.html",
standalone: false,
imports: [CommonModule, ReactiveFormsModule, AutofocusDirective, SearchModule],
})
export class SearchComponent implements OnInit, OnDestroy {
state: SearchBarState;