1
0

added TypeDoc

This commit is contained in:
lotte
2019-10-16 11:21:25 +02:00
parent 7ca88021c9
commit d962e40c58
84 changed files with 479 additions and 93 deletions

View File

@@ -31,6 +31,9 @@ import { CollectionElementLinkType } from '../object-collection/collection-eleme
animations: [fadeIn]
})
export class ObjectDetailComponent {
/**
* The view mode of this component
*/
viewMode = ViewMode.DetailedListElement;
/**
@@ -52,7 +55,15 @@ export class ObjectDetailComponent {
* A boolean representing if to hide pagination when there is only a page
*/
@Input() hidePagerWhenSinglePage = true;
/**
* The link type of the rendered listable elements
*/
@Input() linkType: CollectionElementLinkType;
/**
* The context of the rendered listable elements
*/
@Input() context: Context;
/**