mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-2131] Search sorting (#3334)
* sorting configuration * detect primary sorting and use with document list * search results sorting * docs update * unit tests and code updates * update code * update code * generic sorting picker, test updates * ability to switch off client side sorting * update docs for document list
This commit is contained in:
committed by
Eugenio Romano
parent
73bc62ae8f
commit
07440731fa
@@ -81,6 +81,7 @@ import { UserPreferencesService } from './services/user-preferences.service';
|
||||
import { SearchConfigurationService } from './services/search-configuration.service';
|
||||
import { startupServiceFactory } from './services/startup-service-factory';
|
||||
import { EmptyContentComponent } from './components/empty-content/empty-content.component';
|
||||
import { SortingPickerComponent } from './components/sorting-picker/sorting-picker.component';
|
||||
|
||||
export function createTranslateLoader(http: HttpClient, logService: LogService) {
|
||||
return new TranslateLoaderService(http, logService);
|
||||
@@ -232,7 +233,8 @@ export class CoreModuleLazy {
|
||||
})
|
||||
],
|
||||
declarations: [
|
||||
EmptyContentComponent
|
||||
EmptyContentComponent,
|
||||
SortingPickerComponent
|
||||
],
|
||||
exports: [
|
||||
AboutModule,
|
||||
@@ -262,7 +264,8 @@ export class CoreModuleLazy {
|
||||
DataTableModule,
|
||||
TranslateModule,
|
||||
ButtonsMenuModule,
|
||||
EmptyContentComponent
|
||||
EmptyContentComponent,
|
||||
SortingPickerComponent
|
||||
],
|
||||
providers: [
|
||||
...providers(),
|
||||
|
Reference in New Issue
Block a user