mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-08-07 17:48:54 +00:00
DocumentList component improvements
- expose ‘properties’ for the Node model - Row filtering support for Document List (refs #522) - Custom image resolver for Document List (refs #532) - readme updates
This commit is contained in:
@@ -53,6 +53,7 @@ export class MinimalNodeEntryEntity {
|
||||
createdByUser: UserInfo;
|
||||
content: ContentInfo;
|
||||
path: PathInfoEntity;
|
||||
properties: NodeProperties = {};
|
||||
}
|
||||
|
||||
export class UserInfo {
|
||||
@@ -77,3 +78,7 @@ export class PathElementEntity {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface NodeProperties {
|
||||
[key: string]: any;
|
||||
}
|
||||
|
Reference in New Issue
Block a user