mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
[DSC-389] comment and import fixed.
This commit is contained in:
@@ -70,27 +70,27 @@ export class BrowseByComponent implements OnInit {
|
||||
@Input() showPaginator = true;
|
||||
|
||||
/**
|
||||
* If showPaginator is set to true, should it hide the options gear?
|
||||
* It is used to hide or show gear
|
||||
*/
|
||||
@Input() hideGear = false;
|
||||
|
||||
/**
|
||||
* If showPaginator is set to true, emit when the previous button is clicked
|
||||
* Emits event when prev button clicked
|
||||
*/
|
||||
@Output() prev = new EventEmitter<boolean>();
|
||||
|
||||
/**
|
||||
* If showPaginator is set to true, emit when the next button is clicked
|
||||
* Emits event when next button clicked
|
||||
*/
|
||||
@Output() next = new EventEmitter<boolean>();
|
||||
|
||||
/**
|
||||
* If showPaginator is set to true, emit when the page size is changed
|
||||
* Emits event when page size is changed
|
||||
*/
|
||||
@Output() pageSizeChange = new EventEmitter<number>();
|
||||
|
||||
/**
|
||||
* If showPaginator is set to true, emit when the sort direction is changed
|
||||
* Emits event when page sort direction is changed
|
||||
*/
|
||||
@Output() sortDirectionChange = new EventEmitter<SortDirection>();
|
||||
|
||||
|
Reference in New Issue
Block a user