update documentation 4.0.0 (#5968)

This commit is contained in:
Eugenio Romano
2020-08-10 18:06:51 +01:00
committed by GitHub
parent 0df4f86292
commit e2958b9988
102 changed files with 2409 additions and 834 deletions

View File

@@ -75,7 +75,7 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
@Input()
displayDefaultProperties: boolean = true;
/** (Optional) shows the given aspect in the expanded card */
/** (optional) shows the given aspect in the expanded card */
@Input()
displayAspect: string = null;

View File

@@ -170,6 +170,7 @@ export class DocumentListService implements DocumentListLoader {
* @param pagination
* @param includeFields List of data field names to include in the results
* @param where Optionally filter the list
* @param orderBy order by node property
* @returns Details of the folder
*/
loadFolderByNodeId(nodeId: string, pagination: PaginationModel, includeFields: string[], where?: string, orderBy?: string[]): Observable<DocumentLoaderNode> {

View File

@@ -52,7 +52,8 @@ export class SearchHeaderComponent implements OnInit, OnChanges, OnDestroy {
@Input()
col: DataColumn;
@Input()
/** (optional) Initial filter value to sort . */
@Input()
value: any;
/** The id of the current folder of the document list. */
@@ -67,6 +68,7 @@ export class SearchHeaderComponent implements OnInit, OnChanges, OnDestroy {
@Input()
skipCount: number;
/** The sorting to apply to the the filter. */
@Input()
sorting: string = null;