Files
dc/client/src/app/shared/shared.module.ts
Mihajlo Medjedovic eb7c44333c
Some checks failed
Build / Build-and-ng-test (pull_request) Failing after 52s
feat(multi load): refactored range find function, unlocking excel with password is reusable
2024-06-13 12:59:26 +02:00

52 lines
1.6 KiB
TypeScript

import { NgModule, OnInit } from '@angular/core'
import { CommonModule } from '@angular/common'
import { FormsModule } from '@angular/forms'
import { ClarityModule } from '@clr/angular'
import { RouterModule } from '@angular/router'
import { LoadingIndicatorComponent } from './loading-indicator/loading-indicator.component'
import { LoginComponent } from './login/login.component'
import { UserService } from './user.service'
import { AlertsService } from './alerts/alerts.service'
import { HeaderActions } from './user-nav-dropdown/header-actions.component'
import { AlertsComponent } from './alerts/alerts.component'
import { TermsComponent } from './terms/terms.component'
import { DirectivesModule } from '../directives/directives.module'
import { DatasetInfoComponent } from './dataset-info/dataset-info.component'
import { ContactLinkComponent } from './contact-link/contact-link.component'
import { ExcelPasswordModalComponent } from './excel-password-modal/excel-password-modal.component'
@NgModule({
imports: [
CommonModule,
FormsModule,
RouterModule,
ClarityModule,
DirectivesModule
],
declarations: [
LoadingIndicatorComponent,
LoginComponent,
HeaderActions,
AlertsComponent,
TermsComponent,
DatasetInfoComponent,
ContactLinkComponent,
ExcelPasswordModalComponent
],
exports: [
LoadingIndicatorComponent,
LoginComponent,
HeaderActions,
AlertsComponent,
TermsComponent,
DatasetInfoComponent,
ContactLinkComponent,
ExcelPasswordModalComponent
],
providers: [UserService, AlertsService]
})
export class SharedModule implements OnInit {
ngOnInit(): void {}
}