1
0
Files
yel-dspace-angular/src/app/shared/sidebar/sidebar-dropdown.component.ts
Antoine Snyers c83c861e85 Update TypeDocs
2019-11-27 14:11:43 +01:00

17 lines
515 B
TypeScript

import { Component, EventEmitter, Input, Output } from '@angular/core';
@Component({
selector: 'ds-sidebar-dropdown',
styleUrls: ['./sidebar-dropdown.component.scss'],
templateUrl: './sidebar-dropdown.component.html',
})
/**
* This components renders a sidebar dropdown including the label.
* The options should still be provided in the content.
*/
export class SidebarDropdownComponent {
@Input() id:string;
@Input() label:string;
@Output() change:EventEmitter<any> = new EventEmitter<number>();
}