1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

[PM-9852] - Add SendListFilters component (#10192)

* and send list filters and service

* undo changes to jest config

* add specs for send list filters

* send list items container

* update send list items container

* finalize send list container

* Revert "Merge branch 'PM-9853' into PM-9852"

This reverts commit 9f65ded13f, reversing
changes made to 63f95600e8.

* fix icons and class name

* fix names. add export

* add more coverage
This commit is contained in:
Jordan Aasen
2024-07-23 11:48:20 -07:00
committed by GitHub
parent 9c80ee6b86
commit 5d2fe9403b
9 changed files with 227 additions and 5 deletions

View File

@@ -5,7 +5,11 @@ import { RouterLink } from "@angular/router";
import { JslibModule } from "@bitwarden/angular/jslib.module";
import { SendType } from "@bitwarden/common/tools/send/enums/send-type";
import { ButtonModule, NoItemsModule } from "@bitwarden/components";
import { NoSendsIcon, NewSendDropdownComponent } from "@bitwarden/send-ui";
import {
NoSendsIcon,
NewSendDropdownComponent,
SendListFiltersComponent,
} from "@bitwarden/send-ui";
import { CurrentAccountComponent } from "../../../auth/popup/account-switching/current-account.component";
import { PopOutComponent } from "../../../platform/popup/components/pop-out.component";
@@ -30,6 +34,7 @@ enum SendsListState {
ButtonModule,
RouterLink,
NewSendDropdownComponent,
SendListFiltersComponent,
],
})
export class SendV2Component implements OnInit, OnDestroy {