@alfresco/adf-content-services 8.4.0-18834844131 → 8.4.0-18836034786
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/adf-content-services.mjs +26 -14
- package/fesm2022/adf-content-services.mjs.map +1 -1
- package/lib/document-list/components/filter-header/filter-header.component.d.ts +2 -2
- package/lib/search/components/search-check-list/search-check-list.component.d.ts +1 -1
- package/lib/search/services/search-header-query-builder.service.d.ts +2 -1
- package/package.json +3 -3
|
@@ -19,8 +19,8 @@ import { SearchHeaderQueryBuilderService } from '../../../search/services/search
|
|
|
19
19
|
import { FilterSearch } from './../../../search/models/filter-search.interface';
|
|
20
20
|
import * as i0 from "@angular/core";
|
|
21
21
|
export declare class FilterHeaderComponent implements OnInit, OnChanges {
|
|
22
|
-
private documentList;
|
|
23
|
-
private searchFilterQueryBuilder;
|
|
22
|
+
private readonly documentList;
|
|
23
|
+
private readonly searchFilterQueryBuilder;
|
|
24
24
|
/** (optional) Initial filter value to sort . */
|
|
25
25
|
value: any;
|
|
26
26
|
/** The id of the current folder of the document list. */
|
|
@@ -35,7 +35,7 @@ export declare class SearchCheckListComponent implements SearchWidget, OnInit {
|
|
|
35
35
|
context?: SearchQueryBuilderService;
|
|
36
36
|
options: SearchFilterList<SearchListOption>;
|
|
37
37
|
operator: string;
|
|
38
|
-
startValue: string;
|
|
38
|
+
startValue: string | string[];
|
|
39
39
|
pageSize: number;
|
|
40
40
|
isActive: boolean;
|
|
41
41
|
enableChangeUpdate: boolean;
|
|
@@ -9,7 +9,7 @@ import { NodesApiService } from '../../common/services/nodes-api.service';
|
|
|
9
9
|
import { AlfrescoApiService } from '../../services/alfresco-api.service';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class SearchHeaderQueryBuilderService extends BaseQueryBuilderService {
|
|
12
|
-
private nodeApiService;
|
|
12
|
+
private readonly nodeApiService;
|
|
13
13
|
private customSources;
|
|
14
14
|
activeFilters: FilterSearch[];
|
|
15
15
|
constructor(appConfig: AppConfigService, alfrescoApiService: AlfrescoApiService, nodeApiService: NodesApiService);
|
|
@@ -24,6 +24,7 @@ export declare class SearchHeaderQueryBuilderService extends BaseQueryBuilderSer
|
|
|
24
24
|
setSorting(dataSorting: DataSorting[]): void;
|
|
25
25
|
private getSortingFieldFromColumnName;
|
|
26
26
|
getCategoryForColumn(columnKey: string): SearchCategory;
|
|
27
|
+
getOperatorForFilterId(id: string): string | undefined;
|
|
27
28
|
setCurrentRootFolderId(currentFolderId: string): void;
|
|
28
29
|
isCustomSourceNode(currentNodeId: string): boolean;
|
|
29
30
|
getNodeIdForCustomSource(customSourceId: string): Observable<Node>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfresco/adf-content-services",
|
|
3
3
|
"description": "Alfresco ADF content services",
|
|
4
|
-
"version": "8.4.0-
|
|
4
|
+
"version": "8.4.0-18836034786",
|
|
5
5
|
"author": "Hyland Software, Inc. and its affiliates",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"@angular/platform-browser": ">=14.1.3",
|
|
22
22
|
"@angular/platform-browser-dynamic": ">=14.1.3",
|
|
23
23
|
"@angular/router": ">=14.1.3",
|
|
24
|
-
"@alfresco/js-api": ">=9.4.0-
|
|
24
|
+
"@alfresco/js-api": ">=9.4.0-18836034786",
|
|
25
25
|
"@ngx-translate/core": ">=16.0.0",
|
|
26
|
-
"@alfresco/adf-core": ">=8.4.0-
|
|
26
|
+
"@alfresco/adf-core": ">=8.4.0-18836034786"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"content-services",
|