41650: full item page

This commit is contained in:
Lotte Hofstede
2017-05-29 13:48:55 +02:00
parent fbb64a6031
commit 563a8ca66b
34 changed files with 150 additions and 40 deletions

View File

@@ -0,0 +1,30 @@
import { Component, Input } from '@angular/core';
/**
* This component renders the configured 'values' into the ds-metadata-field-wrapper component.
* It puts the given 'separator' between each two values.
*/
@Component({
selector: 'ds-metadata-values',
styleUrls: ['./metadata-values.component.css'],
templateUrl: './metadata-values.component.html'
})
export class MetadataValuesComponent {
@Input() values: any;
@Input() separator: string;
@Input() label: string;
constructor() {
this.universalInit();
}
universalInit() {
}
}