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:
Denys Vuika
2016-08-22 12:01:54 +01:00
parent 51f9b4b5b5
commit 328f37282a
5 changed files with 175 additions and 1 deletions

View File

@@ -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;
}