[ADF-2304] Add option to Content Node Selector to transform the breadcrumb folder node (#2952)

* [ADF-2304] Add option to Content Node Selector to transform the breadcrumb folder node

* [ADF-2304] update documentation with recent changes

* [ADF-2304] added example of using the breadcrumbTransform
This commit is contained in:
suzanadirla
2018-02-19 19:27:55 +02:00
committed by Eugenio Romano
parent 6b980edcf5
commit 6d0bab9278
7 changed files with 90 additions and 4 deletions

View File

@@ -43,9 +43,14 @@ to work with the Dialog's
```ts
interface ContentNodeSelectorComponentData {
title: string;
currentFolderId?: string;
actionName?: string;
currentFolderId: string;
dropdownHideMyFiles?: boolean;
dropdownSiteList?: SitePaging;
rowFilter?: RowFilter;
imageResolver?: ImageResolver;
isSelectionValid?: (entry: MinimalNodeEntryEntity) => boolean;
breadcrumbTransform?: (node) => any;
select: EventEmitter<MinimalNodeEntryEntity[]>;
}
```