Commits
Kristof De Langhe authored d5198283ffc
1 1 | import { Component } from '@angular/core'; |
2 2 | import { ItemViewMode, rendersItemType } from '../../../../shared/items/item-type-decorator'; |
3 - | import { |
4 - | MetadataRepresentationType |
5 - | } from '../../../../core/shared/metadata-representation/metadata-representation.model'; |
3 + | import { MetadataRepresentationType } from '../../../../core/shared/metadata-representation/metadata-representation.model'; |
6 4 | import { ItemMetadataRepresentationListElementComponent } from '../../../../shared/object-list/metadata-representation-list-element/item/item-metadata-representation-list-element.component'; |
7 5 | |
8 6 | @rendersItemType('Person', ItemViewMode.Element, MetadataRepresentationType.Item) |
9 7 | @Component({ |
10 8 | selector: 'ds-person-metadata-list-element', |
11 9 | templateUrl: './person-metadata-list-element.component.html' |
12 10 | }) |
13 11 | /** |
14 12 | * The component for displaying a list element for an item of the type Person |
15 13 | */ |