mirror of
https://github.com/bitwarden/browser
synced 2026-02-21 11:54:02 +00:00
[CL-135] Migrate component library to standalone components (#12389)
* Migrate component library to standalone components * Fix tests
This commit is contained in:
@@ -1,16 +1,9 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { NgModule } from "@angular/core";
|
||||
import { FormsModule } from "@angular/forms";
|
||||
import { NgSelectModule } from "@ng-select/ng-select";
|
||||
|
||||
import { BadgeModule } from "../badge";
|
||||
import { SharedModule } from "../shared";
|
||||
|
||||
import { MultiSelectComponent } from "./multi-select.component";
|
||||
|
||||
@NgModule({
|
||||
imports: [CommonModule, FormsModule, NgSelectModule, BadgeModule, SharedModule],
|
||||
imports: [MultiSelectComponent],
|
||||
exports: [MultiSelectComponent],
|
||||
declarations: [MultiSelectComponent],
|
||||
})
|
||||
export class MultiSelectModule {}
|
||||
|
||||
Reference in New Issue
Block a user