mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-2456] Fixed property table formatting (#3051)
This commit is contained in:
committed by
Eugenio Romano
parent
8a70e026cd
commit
606009cac2
@@ -73,7 +73,7 @@ export class DocumentListComponent implements OnInit, OnChanges, OnDestroy, Afte
|
||||
|
||||
@ContentChild(DataColumnListComponent) columnList: DataColumnListComponent;
|
||||
|
||||
/* change the display mode of the table list or gallery */
|
||||
/** Change the display mode of the table. Can be "list" or "gallery". */
|
||||
@Input()
|
||||
display: string = DisplayMode.List;
|
||||
|
||||
@@ -96,7 +96,9 @@ export class DocumentListComponent implements OnInit, OnChanges, OnDestroy, Afte
|
||||
@Input()
|
||||
showHeader: boolean = true;
|
||||
|
||||
/** User interaction for folder navigation or file preview. Valid values are "click" and "dblclick". */
|
||||
/** User interaction for folder navigation or file preview.
|
||||
* Valid values are "click" and "dblclick". Default value: "dblclick"
|
||||
*/
|
||||
@Input()
|
||||
navigationMode: string = DocumentListComponent.DOUBLE_CLICK_NAVIGATION; // click|dblclick
|
||||
|
||||
@@ -126,7 +128,7 @@ export class DocumentListComponent implements OnInit, OnChanges, OnDestroy, Afte
|
||||
@Input()
|
||||
contextMenuActions: boolean = false;
|
||||
|
||||
/** Custom image for empty folder */
|
||||
/** Custom image for empty folder. Default value: './assets/images/empty_doc_lib.svg' */
|
||||
@Input()
|
||||
emptyFolderImageUrl: string = './assets/images/empty_doc_lib.svg';
|
||||
|
||||
|
Reference in New Issue
Block a user