aboutsummaryrefslogtreecommitdiffstats
path: root/stories/ng2-component-lab/components.module.ts
blob: 266f0473a50d52f2fb875e784ffebfe6cf14d92c (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { FormsModule } from "@angular/forms";
import { SdcUiComponentsModule } from "../../src/angular";
import { KeysPipe } from "./utils/pipes/keys.pipe";
import { SearchFilterPipe } from "./pipes/search-filter-pipe";
import { ColorsTable } from "./components/colors-table.component";
import { ModalInnerContent } from "./components/modal-inner-content-example.component";
import { ModalConsumer } from "./components/modal-consumer.component";
import { SvgIconsTableComponent } from "./components/svg-icons-table.component";
import { NotificationsExample } from "./components/notifications-example.component";
import { Mode, Placement, Size } from "./../../src/angular/common/enums";

@NgModule({
    declarations: [
        ColorsTable,
        KeysPipe,
        ModalInnerContent,
        ModalConsumer,
        SearchFilterPipe,
        SvgIconsTableComponent,
        NotificationsExample
    ],
    imports: [
        CommonModule,
        FormsModule,
        SdcUiComponentsModule
    ],
    exports: [
        CommonModule,
        SdcUiComponentsModule,
        ModalInnerContent,
        NotificationsExample,
        ColorsTable,
        SvgIconsTableComponent,
        ModalConsumer,
        SearchFilterPipe
    ],
    entryComponents: [
        ModalInnerContent
    ],
    providers: [KeysPipe]
})
export class ComponentsModule {
}