2022-02-11 13:33:31 +01:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { MatMomentDateModule } from '@angular/material-moment-adapter';
|
2023-01-11 14:23:16 +01:00
|
|
|
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
|
2022-02-11 13:33:31 +01:00
|
|
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
|
|
import { MatIconModule } from '@angular/material/icon';
|
2023-01-11 14:23:16 +01:00
|
|
|
import { MatLegacySelectModule as MatSelectModule } from '@angular/material/legacy-select';
|
2022-02-11 13:33:31 +01:00
|
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { InputModule } from 'src/app/modules/input/input.module';
|
|
|
|
import { LocalizedDatePipeModule } from 'src/app/pipes/localized-date-pipe/localized-date-pipe.module';
|
|
|
|
|
|
|
|
import { InfoSectionModule } from '../info-section/info-section.module';
|
|
|
|
import { AddTokenDialogComponent } from './add-token-dialog.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [AddTokenDialogComponent],
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
TranslateModule,
|
|
|
|
MatButtonModule,
|
|
|
|
InfoSectionModule,
|
|
|
|
InputModule,
|
|
|
|
MatSelectModule,
|
|
|
|
MatIconModule,
|
|
|
|
FormsModule,
|
|
|
|
MatDatepickerModule,
|
|
|
|
MatMomentDateModule,
|
|
|
|
ReactiveFormsModule,
|
|
|
|
LocalizedDatePipeModule,
|
|
|
|
],
|
|
|
|
})
|
|
|
|
export class AddTokenDialogModule {}
|