mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 12:35:07 +00:00
Removed shared.module + tweaked module import order
This commit is contained in:
parent
ddcd7c6831
commit
20bb52df50
|
@ -4,6 +4,7 @@ import { HttpClientModule } from '@angular/common/http';
|
||||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||||
import { RouterModule, Routes } from '@angular/router';
|
import { RouterModule, Routes } from '@angular/router';
|
||||||
import { InMemoryWebApiModule } from 'angular-in-memory-web-api';
|
import { InMemoryWebApiModule } from 'angular-in-memory-web-api';
|
||||||
|
import { TranslateModule } from '@ngx-translate/core';
|
||||||
import 'hammerjs';
|
import 'hammerjs';
|
||||||
|
|
||||||
import { FuseModule } from '@fuse/fuse.module';
|
import { FuseModule } from '@fuse/fuse.module';
|
||||||
|
@ -14,7 +15,6 @@ import { fuseConfig } from './fuse-config';
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
import { FuseFakeDbService } from './fuse-fake-db/fuse-fake-db.service';
|
import { FuseFakeDbService } from './fuse-fake-db/fuse-fake-db.service';
|
||||||
import { FuseMainModule } from './main/main.module';
|
import { FuseMainModule } from './main/main.module';
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
import { AppStoreModule } from './store/store.module';
|
import { AppStoreModule } from './store/store.module';
|
||||||
|
|
||||||
const appRoutes: Routes = [
|
const appRoutes: Routes = [
|
||||||
|
@ -57,6 +57,7 @@ const appRoutes: Routes = [
|
||||||
BrowserAnimationsModule,
|
BrowserAnimationsModule,
|
||||||
HttpClientModule,
|
HttpClientModule,
|
||||||
RouterModule.forRoot(appRoutes),
|
RouterModule.forRoot(appRoutes),
|
||||||
|
|
||||||
TranslateModule.forRoot(),
|
TranslateModule.forRoot(),
|
||||||
InMemoryWebApiModule.forRoot(FuseFakeDbService, {
|
InMemoryWebApiModule.forRoot(FuseFakeDbService, {
|
||||||
delay : 0,
|
delay : 0,
|
||||||
|
|
|
@ -1,83 +0,0 @@
|
||||||
/*
|
|
||||||
import { NgModule } from '@angular/core';
|
|
||||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
||||||
import { CommonModule } from '@angular/common';
|
|
||||||
|
|
||||||
import { MaterialModule } from './material.module';
|
|
||||||
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
||||||
import { ColorPickerModule } from 'ngx-color-picker';
|
|
||||||
import { NgxDnDModule } from '@swimlane/ngx-dnd';
|
|
||||||
import { NgxDatatableModule } from '@swimlane/ngx-datatable';
|
|
||||||
|
|
||||||
import { FuseMatSidenavHelperDirective, FuseMatSidenavTogglerDirective } from '../directives/fuse-mat-sidenav-helper/fuse-mat-sidenav-helper.directive';
|
|
||||||
import { FuseMatSidenavHelperService } from '../directives/fuse-mat-sidenav-helper/fuse-mat-sidenav-helper.service';
|
|
||||||
import { FusePipesModule } from '../pipes/pipes.module';
|
|
||||||
import { FuseConfirmDialogComponent } from '../components/confirm-dialog/confirm-dialog.component';
|
|
||||||
import { FuseCountdownComponent } from '../components/countdown/countdown.component';
|
|
||||||
import { FuseMatchMedia } from '../services/match-media.service';
|
|
||||||
import { FuseHighlightComponent } from '../components/highlight/highlight.component';
|
|
||||||
import { FusePerfectScrollbarDirective } from '../directives/fuse-perfect-scrollbar/fuse-perfect-scrollbar.directive';
|
|
||||||
import { FuseIfOnDomDirective } from '../directives/fuse-if-on-dom/fuse-if-on-dom.directive';
|
|
||||||
import { FuseMaterialColorPickerComponent } from '../components/material-color-picker/material-color-picker.component';
|
|
||||||
import { FuseTranslationLoaderService } from '../services/translation-loader.service';
|
|
||||||
import { CookieService } from 'ngx-cookie-service';
|
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
import { ChartsModule } from 'ng2-charts';
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
declarations : [
|
|
||||||
FuseMatSidenavHelperDirective,
|
|
||||||
FuseMatSidenavTogglerDirective,
|
|
||||||
FuseConfirmDialogComponent,
|
|
||||||
FuseCountdownComponent,
|
|
||||||
FuseHighlightComponent,
|
|
||||||
FuseIfOnDomDirective,
|
|
||||||
FusePerfectScrollbarDirective,
|
|
||||||
FuseMaterialColorPickerComponent
|
|
||||||
],
|
|
||||||
imports : [
|
|
||||||
FlexLayoutModule,
|
|
||||||
CommonModule,
|
|
||||||
FormsModule,
|
|
||||||
FusePipesModule,
|
|
||||||
ReactiveFormsModule,
|
|
||||||
ColorPickerModule,
|
|
||||||
NgxDnDModule,
|
|
||||||
NgxDatatableModule,
|
|
||||||
ChartsModule
|
|
||||||
],
|
|
||||||
exports : [
|
|
||||||
FlexLayoutModule,
|
|
||||||
CommonModule,
|
|
||||||
FormsModule,
|
|
||||||
FuseMatSidenavHelperDirective,
|
|
||||||
FuseMatSidenavTogglerDirective,
|
|
||||||
FusePipesModule,
|
|
||||||
FuseCountdownComponent,
|
|
||||||
FuseHighlightComponent,
|
|
||||||
FusePerfectScrollbarDirective,
|
|
||||||
ReactiveFormsModule,
|
|
||||||
ColorPickerModule,
|
|
||||||
NgxDnDModule,
|
|
||||||
NgxDatatableModule,
|
|
||||||
FuseIfOnDomDirective,
|
|
||||||
FuseMaterialColorPickerComponent,
|
|
||||||
TranslateModule,
|
|
||||||
ChartsModule
|
|
||||||
],
|
|
||||||
entryComponents: [
|
|
||||||
FuseConfirmDialogComponent
|
|
||||||
],
|
|
||||||
providers : [
|
|
||||||
CookieService,
|
|
||||||
FuseMatchMedia,
|
|
||||||
FuseMatSidenavHelperService,
|
|
||||||
FuseTranslationLoaderService
|
|
||||||
]
|
|
||||||
})
|
|
||||||
|
|
||||||
export class SharedModule
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
*/
|
|
Loading…
Reference in New Issue
Block a user