mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
59 lines
2 KiB
TypeScript
59 lines
2 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { NgaTabsetModule, NgaRouteTabsetModule } from '@nga/theme';
|
|
|
|
import { SharedModule } from '../../shared.module';
|
|
|
|
import { UiFeaturesRoutingModule } from './ui-features-routing.module';
|
|
import { UiFeaturesComponent } from './ui-features.component';
|
|
import { ButtonsComponent } from './buttons/buttons.component';
|
|
import { GridComponent } from './grid/grid.component';
|
|
import { ModalsComponent } from './modals/modals.component';
|
|
import { IconsComponent } from './icons/icons.component';
|
|
import { FlatButtonsComponent } from './buttons/flat/flat.component';
|
|
import { RaisedButtonsComponent } from './buttons/raised/raised.component';
|
|
import { SizedButtonsComponent } from './buttons/sized/sized.component';
|
|
import { DisabledButtonsComponent } from './buttons/disabled/disabled.component';
|
|
import { IconButtonsComponent } from './buttons/icon/icon.component';
|
|
import { DropdownButtonsComponent } from './buttons/dropdown/dropdown.component';
|
|
import { GroupButtonsComponent } from './buttons/group/group.component';
|
|
import { LargeButtonsComponent } from './buttons/large/large.component';
|
|
import { ModalComponent } from './modals/modal/modal.component';
|
|
import { TypographyComponent } from './typography/typography.component';
|
|
import { TabsComponent, Tab1Component, Tab2Component } from './tabs/tabs.component';
|
|
|
|
const COMPONENTS = [
|
|
UiFeaturesComponent,
|
|
ButtonsComponent,
|
|
GridComponent,
|
|
ModalsComponent,
|
|
IconsComponent,
|
|
FlatButtonsComponent,
|
|
RaisedButtonsComponent,
|
|
SizedButtonsComponent,
|
|
DisabledButtonsComponent,
|
|
IconButtonsComponent,
|
|
DropdownButtonsComponent,
|
|
GroupButtonsComponent,
|
|
LargeButtonsComponent,
|
|
ModalComponent,
|
|
TypographyComponent,
|
|
TabsComponent,
|
|
Tab1Component,
|
|
Tab2Component,
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
SharedModule,
|
|
UiFeaturesRoutingModule,
|
|
NgaTabsetModule,
|
|
NgaRouteTabsetModule,
|
|
],
|
|
declarations: [
|
|
...COMPONENTS,
|
|
],
|
|
entryComponents: [
|
|
ModalComponent,
|
|
],
|
|
})
|
|
export class UiFeaturesModule { }
|