96252: Remove unneeded imports from SharedModule

These are no longer required in SharedModule, so we can remove them from main.js
This commit is contained in:
Yury Bondarenko
2023-01-03 17:05:36 +01:00
parent 67616a5d52
commit f6db75f4f8
6 changed files with 13 additions and 19 deletions

View File

@@ -2,21 +2,15 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { CdkTreeModule } from '@angular/cdk/tree';
import { DragDropModule } from '@angular/cdk/drag-drop';
import { NouisliderModule } from 'ng2-nouislider';
import {
NgbDatepickerModule,
NgbDropdownModule,
NgbNavModule,
NgbPaginationModule,
NgbTimepickerModule,
NgbTooltipModule,
NgbTypeaheadModule,
} from '@ng-bootstrap/ng-bootstrap';
import { MissingTranslationHandler, TranslateModule } from '@ngx-translate/core';
import { NgxPaginationModule } from 'ngx-pagination';
import { InfiniteScrollModule } from 'ngx-infinite-scroll';
import { MomentModule } from 'ngx-moment';
import { ConfirmationModalComponent } from './confirmation-modal/confirmation-modal.component';
@@ -256,19 +250,14 @@ const MODULES = [
FormsModule,
InfiniteScrollModule,
NgbNavModule,
NgbDatepickerModule,
NgbTimepickerModule,
NgbTypeaheadModule,
NgxPaginationModule,
NgbPaginationModule,
NgbDropdownModule,
NgbTooltipModule,
ReactiveFormsModule,
RouterModule,
NouisliderModule,
MomentModule,
DragDropModule,
CdkTreeModule,
GoogleRecaptchaModule,
MenuModule,
];