feat: migrate everything to standalone and fix build errors

This commit is contained in:
Enea Jahollari
2023-09-25 12:43:29 +02:00
parent 4171ccc8f3
commit 54614c21f0
1311 changed files with 13140 additions and 8009 deletions

View File

@@ -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]
})
/**