updated to the latest 9.x version

This commit is contained in:
Giuseppe Digilio
2020-11-18 19:02:55 +01:00
parent 17d7e10ac3
commit 1b21af3191
35 changed files with 974 additions and 795 deletions

View File

@@ -1,4 +1,4 @@
import { EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core';
import { EventEmitter, Input, OnDestroy, OnInit, Output, Directive } from '@angular/core';
import { take } from 'rxjs/operators';
import { Observable } from 'rxjs';
import { RemoteData } from '../../../core/data/remote-data';
@@ -10,6 +10,7 @@ import { SortOptions } from '../../../core/cache/models/sort-options.model';
/**
* An abstract component used to select DSpaceObjects from a specific list and returning the UUIDs of the selected DSpaceObjects
*/
@Directive()
export abstract class ObjectSelectComponent<TDomain> implements OnInit, OnDestroy {
/**