mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 04:55:07 +00:00
46ad46bb02
drag drop libarary added, (Chat App) Chat app module name changed.
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
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 { NgxDatatableModule } from '@swimlane/ngx-datatable';
|
|
import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar';
|
|
|
|
import {
|
|
FuseMdSidenavHelperDirective,
|
|
FuseMdSidenavTogglerDirective
|
|
} from '../directives/md-sidenav-helper/md-sidenav-helper.directive';
|
|
import { FusePipesModule } from '../pipes/pipes.module';
|
|
import { ColorPickerModule } from 'ngx-color-picker';
|
|
import { FuseConfirmDialogComponent } from '../components/confirm-dialog/confirm-dialog.component';
|
|
import { NgxDnDModule } from '@swimlane/ngx-dnd';
|
|
|
|
@NgModule({
|
|
declarations : [
|
|
FuseMdSidenavHelperDirective,
|
|
FuseMdSidenavTogglerDirective,
|
|
FuseConfirmDialogComponent
|
|
],
|
|
imports : [
|
|
FlexLayoutModule,
|
|
MaterialModule,
|
|
NgxDatatableModule,
|
|
CommonModule,
|
|
FormsModule,
|
|
FusePipesModule,
|
|
PerfectScrollbarModule,
|
|
ReactiveFormsModule,
|
|
ColorPickerModule,
|
|
NgxDnDModule
|
|
],
|
|
exports : [
|
|
FlexLayoutModule,
|
|
MaterialModule,
|
|
NgxDatatableModule,
|
|
CommonModule,
|
|
FormsModule,
|
|
FuseMdSidenavHelperDirective,
|
|
FuseMdSidenavTogglerDirective,
|
|
FusePipesModule,
|
|
PerfectScrollbarModule,
|
|
ReactiveFormsModule,
|
|
ColorPickerModule,
|
|
NgxDnDModule
|
|
],
|
|
entryComponents: [FuseConfirmDialogComponent]
|
|
})
|
|
|
|
export class SharedModule
|
|
{
|
|
|
|
}
|