2019-12-23 14:59:56 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {InputComponent} from "./input.component";
|
2023-07-19 18:51:54 +02:00
|
|
|
import {SharedModule} from "../../shared/shared.module";
|
2020-11-12 18:57:32 +01:00
|
|
|
import {IconsModule} from "../../utils/icons/icons.module";
|
2021-03-03 19:04:53 +01:00
|
|
|
import {SafeHtmlPipeModule} from "../../utils/pipes/safeHTMLPipe.module";
|
2022-04-13 12:00:40 +02:00
|
|
|
import {ClickModule} from "../../utils/click/click.module";
|
2023-07-11 15:03:08 +02:00
|
|
|
import {MobileDropdownModule} from "../../utils/mobile-dropdown/mobile-dropdown.module";
|
2023-07-19 18:51:54 +02:00
|
|
|
import {MatDatepickerModule} from "@angular/material/datepicker";
|
|
|
|
import {MatNativeDateModule} from "@angular/material/core";
|
|
|
|
import {MatInputModule} from "@angular/material/input";
|
2020-12-23 17:06:31 +01:00
|
|
|
|
2019-12-23 14:59:56 +01:00
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
SharedModule,
|
2021-01-28 17:33:16 +01:00
|
|
|
IconsModule,
|
2022-04-13 12:00:40 +02:00
|
|
|
SafeHtmlPipeModule,
|
2023-07-11 15:03:08 +02:00
|
|
|
ClickModule,
|
2023-07-19 18:51:54 +02:00
|
|
|
MobileDropdownModule,
|
|
|
|
MatDatepickerModule,
|
|
|
|
MatNativeDateModule,
|
|
|
|
MatInputModule
|
2019-12-23 14:59:56 +01:00
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
InputComponent
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
InputComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class InputModule {
|
|
|
|
}
|