summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/graph/canvas-search/canvas-search.module.ts
blob: 6df06067a6953f82266bddc5506ab39eb2ae577f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import {SdcUiComponentsModule} from "onap-ui-angular";
import { NgModule } from "@angular/core";
import {CanvasSearchComponent} from "./canvas-search.component";
import {CommonModule} from "@angular/common";
import {BrowserAnimationsModule} from "@angular/platform-browser/animations";
import {HttpClientModule} from "@angular/common/http";
import {BrowserModule} from "@angular/platform-browser";
import {AutocompletePipe} from "onap-ui-angular/dist/autocomplete/autocomplete.pipe";

@NgModule({
    declarations: [
        CanvasSearchComponent
    ],
    imports: [
        CommonModule,
        BrowserModule,
        HttpClientModule,
        BrowserAnimationsModule,
        SdcUiComponentsModule,
    ],
    exports: [
        CanvasSearchComponent
    ],
    entryComponents: [
        CanvasSearchComponent
    ],
    providers: [AutocompletePipe]
})
export class CanvasSearchModule {
}