2019-12-23 17:34:51 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
2019-12-20 12:38:13 +01:00
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
|
|
import {AlertModalModule} from '../../utils/modal/alertModal.module';
|
|
|
|
import {PageHelpContentsComponent} from './page-help-contents.component';
|
|
|
|
import {SafeHtmlPipeModule} from '../../utils/pipes/safeHTMLPipe.module';
|
2022-04-09 15:18:30 +02:00
|
|
|
import {MatSlideToggleModule} from '@angular/material/slide-toggle';
|
2021-02-25 16:55:56 +01:00
|
|
|
import {AdminToolServiceModule} from '../../services/adminToolService.module';
|
|
|
|
import {InputModule} from '../../sharedComponents/input/input.module';
|
|
|
|
import {PageHelpContentsRoutingModule} from './page-help-contents-routing.module';
|
|
|
|
import {PageContentModule} from '../sharedComponents/page-content/page-content.module';
|
|
|
|
import {SearchInputModule} from '../../sharedComponents/search-input/search-input.module';
|
|
|
|
import {IconsModule} from '../../utils/icons/icons.module';
|
|
|
|
import {LoadingModule} from '../../utils/loading/loading.module';
|
2021-03-12 15:49:12 +01:00
|
|
|
import {HTMLToStringPipeModule} from '../../utils/pipes/HTMLToStringPipe.module';
|
2019-12-20 12:38:13 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2024-03-04 16:02:33 +01:00
|
|
|
PageHelpContentsRoutingModule,
|
2019-12-20 12:38:13 +01:00
|
|
|
CommonModule, RouterModule, FormsModule, SafeHtmlPipeModule,
|
2024-03-04 16:02:33 +01:00
|
|
|
AlertModalModule, ReactiveFormsModule, MatSlideToggleModule, AdminToolServiceModule, InputModule, PageContentModule,
|
2021-03-12 15:49:12 +01:00
|
|
|
SearchInputModule, IconsModule, LoadingModule, HTMLToStringPipeModule
|
2019-12-20 12:38:13 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
PageHelpContentsComponent
|
|
|
|
],
|
|
|
|
exports: [PageHelpContentsComponent]
|
|
|
|
})
|
2022-04-09 15:18:30 +02:00
|
|
|
export class PageHelpContentsModule {}
|