mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-11 03:53:02 +00:00
Merge remote-tracking branch 'upstream/main' into fix-broken-item-mapper-pagination_contribute-main
# Conflicts: # src/app/shared/object-list/object-list.component.html # src/app/shared/object-select/collection-select/collection-select.component.ts # src/app/shared/object-select/item-select/item-select.component.ts # src/app/shared/pagination/pagination.component.ts
This commit is contained in:
@@ -1,9 +1,20 @@
|
||||
import {
|
||||
AsyncPipe,
|
||||
NgClass,
|
||||
NgFor,
|
||||
NgIf,
|
||||
} from '@angular/common';
|
||||
import {
|
||||
Component,
|
||||
OnInit,
|
||||
} from '@angular/core';
|
||||
import { Observable } from 'rxjs';
|
||||
import { map } from 'rxjs/operators';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { RouterLink } from '@angular/router';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
import {
|
||||
map,
|
||||
Observable,
|
||||
} from 'rxjs';
|
||||
|
||||
import { getCollectionPageRoute } from '../../../collection-page/collection-page-routing-paths';
|
||||
import { PaginatedList } from '../../../core/data/paginated-list.model';
|
||||
@@ -13,6 +24,10 @@ import {
|
||||
hasValueOperator,
|
||||
isNotEmpty,
|
||||
} from '../../empty.util';
|
||||
import { ErrorComponent } from '../../error/error.component';
|
||||
import { ThemedLoadingComponent } from '../../loading/themed-loading.component';
|
||||
import { PaginationComponent } from '../../pagination/pagination.component';
|
||||
import { VarDirective } from '../../utils/var.directive';
|
||||
import { DSpaceObjectSelect } from '../object-select.model';
|
||||
import { ObjectSelectComponent } from '../object-select/object-select.component';
|
||||
|
||||
@@ -20,6 +35,8 @@ import { ObjectSelectComponent } from '../object-select/object-select.component'
|
||||
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