[AAE-3719][AAE-3720] - Fix content node selector search should align with the filtering (#6214)

* Fix content node selector search should align with the filtering

* Add a flag to disable optionally the search execution in the filters

* Add unit tests

* refactoring - Remove content node selector service and use the main search service instead

* Fix existing unit tests to align with the new changes

* Fix bug when copying a file

* add include properties in demo shell search config

* revert attach-file-cloud widget

* Remove unused import

* More unit tests
This commit is contained in:
arditdomi
2020-10-20 15:48:23 +01:00
committed by GitHub
parent 7dec482d91
commit 072f910452
11 changed files with 317 additions and 376 deletions

View File

@@ -19,7 +19,7 @@ import { Component, Inject, ViewEncapsulation, ViewChild } from '@angular/core';
import { MAT_DIALOG_DATA } from '@angular/material/dialog';
import { ExternalAlfrescoApiService, AlfrescoApiService, LoginDialogPanelComponent, SearchService, TranslationService, AuthenticationService, SitesService } from '@alfresco/adf-core';
import { AttachFileWidgetDialogComponentData } from './attach-file-widget-dialog-component.interface';
import { DocumentListService, ContentNodeSelectorService } from '@alfresco/adf-content-services';
import { DocumentListService } from '@alfresco/adf-content-services';
import { Node } from '@alfresco/js-api';
@Component({
@@ -31,7 +31,6 @@ import { Node } from '@alfresco/js-api';
AuthenticationService,
DocumentListService,
SitesService,
ContentNodeSelectorService,
SearchService,
{ provide: AlfrescoApiService, useClass: ExternalAlfrescoApiService} ]
})