mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-11 20:13:07 +00:00
feat: migrate everything to standalone and fix build errors
This commit is contained in:
@@ -5,11 +5,21 @@ import { isNotEmpty } from '../../empty.util';
|
||||
import { ObjectSelectService } from '../object-select.service';
|
||||
import { AuthorizationDataService } from '../../../core/data/feature-authorization/authorization-data.service';
|
||||
import { DSONameService } from '../../../core/breadcrumbs/dso-name.service';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
import { ThemedLoadingComponent } from '../../loading/themed-loading.component';
|
||||
import { ErrorComponent } from '../../error/error.component';
|
||||
import { RouterLink } from '@angular/router';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { PaginationComponent } from '../../pagination/pagination.component';
|
||||
import { NgIf, NgFor, NgClass, AsyncPipe } from '@angular/common';
|
||||
import { VarDirective } from '../../utils/var.directive';
|
||||
|
||||
@Component({
|
||||
selector: 'ds-collection-select',
|
||||
templateUrl: './collection-select.component.html',
|
||||
styleUrls: ['./collection-select.component.scss'],
|
||||
selector: 'ds-collection-select',
|
||||
templateUrl: './collection-select.component.html',
|
||||
styleUrls: ['./collection-select.component.scss'],
|
||||
standalone: true,
|
||||
imports: [VarDirective, NgIf, PaginationComponent, NgFor, FormsModule, RouterLink, ErrorComponent, ThemedLoadingComponent, NgClass, AsyncPipe, TranslateModule]
|
||||
})
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user