2017-04-29 18:53:19 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
|
2017-08-04 19:27:16 +03:00
|
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
2017-05-06 14:52:41 +03:00
|
|
|
import { UiFeaturesRoutingModule } from './ui-features-routing.module';
|
|
|
|
|
import { UiFeaturesComponent } from './ui-features.component';
|
|
|
|
|
import { GridComponent } from './grid/grid.component';
|
|
|
|
|
import { IconsComponent } from './icons/icons.component';
|
2017-05-06 15:41:52 +03:00
|
|
|
import { TypographyComponent } from './typography/typography.component';
|
2017-05-19 19:45:42 +03:00
|
|
|
import { SearchComponent } from './search-fields/search-fields.component';
|
2017-05-04 18:37:46 +03:00
|
|
|
|
2017-06-02 12:43:23 +03:00
|
|
|
const components = [
|
2017-05-06 14:52:41 +03:00
|
|
|
UiFeaturesComponent,
|
|
|
|
|
GridComponent,
|
|
|
|
|
IconsComponent,
|
2017-05-06 15:41:52 +03:00
|
|
|
TypographyComponent,
|
2017-05-19 19:45:42 +03:00
|
|
|
SearchComponent,
|
2017-05-04 18:37:46 +03:00
|
|
|
];
|
2017-04-29 18:53:19 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
2017-08-04 19:27:16 +03:00
|
|
|
ThemeModule,
|
2017-05-06 14:52:41 +03:00
|
|
|
UiFeaturesRoutingModule,
|
2017-04-29 18:53:19 +03:00
|
|
|
],
|
|
|
|
|
declarations: [
|
2017-06-02 12:43:23 +03:00
|
|
|
...components,
|
2017-05-04 18:37:46 +03:00
|
|
|
],
|
2017-04-29 18:53:19 +03:00
|
|
|
})
|
2017-05-06 14:52:41 +03:00
|
|
|
export class UiFeaturesModule { }
|