mirror of
https://github.com/bitwarden/browser
synced 2026-02-07 12:13:45 +00:00
This PR moves the Desktop Send list UI into a shared library component and updates the Desktop Send v2 component to use modern Angular patterns (Signals, OnPush, no manual subscriptions)
12 lines
863 B
TypeScript
12 lines
863 B
TypeScript
export * from "./send-form";
|
|
export { NewSendDropdownComponent } from "./new-send-dropdown/new-send-dropdown.component";
|
|
export { NewSendDropdownV2Component } from "./new-send-dropdown-v2/new-send-dropdown-v2.component";
|
|
export * from "./add-edit/send-add-edit-dialog.component";
|
|
export { SendListItemsContainerComponent } from "./send-list-items-container/send-list-items-container.component";
|
|
export { SendItemsService } from "./services/send-items.service";
|
|
export { SendSearchComponent } from "./send-search/send-search.component";
|
|
export { SendListFiltersComponent } from "./send-list-filters/send-list-filters.component";
|
|
export { SendListFiltersService } from "./services/send-list-filters.service";
|
|
export { SendTableComponent } from "./send-table/send-table.component";
|
|
export { SendListComponent, SendListState } from "./send-list/send-list.component";
|