mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
update doc node selector and interface (#5987)
This commit is contained in:
@@ -35,14 +35,21 @@ export interface ContentNodeSelectorComponentData {
|
|||||||
actionName?: string;
|
actionName?: string;
|
||||||
currentFolderId: string;
|
currentFolderId: string;
|
||||||
dropdownHideMyFiles?: boolean;
|
dropdownHideMyFiles?: boolean;
|
||||||
|
restrictRootToCurrentFolderId?: boolean;
|
||||||
dropdownSiteList?: SitePaging;
|
dropdownSiteList?: SitePaging;
|
||||||
rowFilter?: any;
|
rowFilter?: any;
|
||||||
where?: string;
|
where?: string;
|
||||||
imageResolver?: any;
|
imageResolver?: any;
|
||||||
|
selectionMode?: 'multiple' | 'single';
|
||||||
isSelectionValid?: (entry: Node) => boolean;
|
isSelectionValid?: (entry: Node) => boolean;
|
||||||
breadcrumbTransform?: (node) => any;
|
breadcrumbTransform?: (node) => any;
|
||||||
excludeSiteContent?: string[];
|
excludeSiteContent?: string[];
|
||||||
select: Subject<Node[]>;
|
select: Subject<Node[]>;
|
||||||
|
showSearch?: boolean;
|
||||||
|
showFilesInResult?: boolean;
|
||||||
|
showDropdownSiteList?: boolean;
|
||||||
|
showLocalUploadButton?: boolean;
|
||||||
|
multipleUpload?: boolean;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@@ -28,7 +28,7 @@ export interface ContentNodeSelectorComponentData {
|
|||||||
rowFilter?: any;
|
rowFilter?: any;
|
||||||
where?: string;
|
where?: string;
|
||||||
imageResolver?: any;
|
imageResolver?: any;
|
||||||
selectionMode?: string;
|
selectionMode?: 'multiple' | 'single';
|
||||||
isSelectionValid?: (entry: Node) => boolean;
|
isSelectionValid?: (entry: Node) => boolean;
|
||||||
breadcrumbTransform?: (node) => any;
|
breadcrumbTransform?: (node) => any;
|
||||||
excludeSiteContent?: string[];
|
excludeSiteContent?: string[];
|
||||||
|
Reference in New Issue
Block a user