45 lines
1.7 KiB
TypeScript
45 lines
1.7 KiB
TypeScript
import {NgModule} from '@angular/core';
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {PresentationRoutingModule} from './presentation-routing.module';
|
|
import {MonitorComponent} from './monitor/monitor.component';
|
|
import {RemoteComponent} from './remote/remote.component';
|
|
|
|
import {MatFormFieldModule} from '@angular/material/form-field';
|
|
import {MatSelectModule} from '@angular/material/select';
|
|
import {LegalComponent} from './monitor/legal/legal.component';
|
|
import {MatButtonModule} from '@angular/material/button';
|
|
import {FontAwesomeModule} from '@fortawesome/angular-fontawesome';
|
|
import {MatSliderModule} from '@angular/material/slider';
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
import {LogoComponent} from './monitor/logo/logo.component';
|
|
import {SelectComponent} from './select/select.component';
|
|
import {MatInputModule} from '@angular/material/input';
|
|
|
|
import {SongTextComponent} from '../../widget-modules/components/song-text/song-text.component';
|
|
import {AddSongComponent} from '../../widget-modules/components/add-song/add-song.component';
|
|
import {SectionTypePipe} from '../../widget-modules/pipes/section-type-translator/section-type.pipe';
|
|
import {ShowTypePipe} from '../../widget-modules/pipes/show-type-translater/show-type.pipe';
|
|
|
|
@NgModule({
|
|
exports: [RemoteComponent],
|
|
imports: [
|
|
CommonModule,
|
|
PresentationRoutingModule,
|
|
MatFormFieldModule,
|
|
MatSelectModule,
|
|
ShowTypePipe,
|
|
SectionTypePipe,
|
|
SongTextComponent,
|
|
MatButtonModule,
|
|
FontAwesomeModule,
|
|
MatSliderModule,
|
|
FormsModule,
|
|
AddSongComponent,
|
|
ReactiveFormsModule,
|
|
MatInputModule,
|
|
MonitorComponent, RemoteComponent, LegalComponent, LogoComponent, SelectComponent,
|
|
],
|
|
})
|
|
export class PresentationModule {}
|