@alfresco/adf-content-services 8.4.0-17764854696 → 8.4.0-17797805682
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 +45 -12
- package/fesm2022/adf-content-services.mjs.map +1 -1
- package/lib/search/components/search-filter-autocomplete-chips/search-filter-autocomplete-chips.component.d.ts +6 -3
- package/lib/search/models/autocomplete-option.interface.d.ts +2 -1
- package/package.json +3 -3
|
@@ -23,10 +23,12 @@ import { SearchFilterList } from '../../models/search-filter-list.model';
|
|
|
23
23
|
import { TagService } from '../../../tag/services/tag.service';
|
|
24
24
|
import { CategoryService } from '../../../category/services/category.service';
|
|
25
25
|
import { AutocompleteOption } from '../../models/autocomplete-option.interface';
|
|
26
|
+
import { SitesService } from '../../../common/services/sites.service';
|
|
26
27
|
import * as i0 from "@angular/core";
|
|
27
28
|
export declare class SearchFilterAutocompleteChipsComponent implements SearchWidget, OnInit {
|
|
28
|
-
private tagService;
|
|
29
|
-
private categoryService;
|
|
29
|
+
private readonly tagService;
|
|
30
|
+
private readonly categoryService;
|
|
31
|
+
private readonly sitesService;
|
|
30
32
|
id: string;
|
|
31
33
|
settings?: SearchWidgetSettings;
|
|
32
34
|
context?: SearchQueryBuilderService;
|
|
@@ -40,7 +42,7 @@ export declare class SearchFilterAutocompleteChipsComponent implements SearchWid
|
|
|
40
42
|
private autocompleteOptionsSubject$;
|
|
41
43
|
autocompleteOptions$: Observable<AutocompleteOption[]>;
|
|
42
44
|
private readonly destroyRef;
|
|
43
|
-
constructor(tagService: TagService, categoryService: CategoryService);
|
|
45
|
+
constructor(tagService: TagService, categoryService: CategoryService, sitesService: SitesService);
|
|
44
46
|
ngOnInit(): void;
|
|
45
47
|
reset(updateContext?: boolean): void;
|
|
46
48
|
submitValues(): void;
|
|
@@ -53,6 +55,7 @@ export declare class SearchFilterAutocompleteChipsComponent implements SearchWid
|
|
|
53
55
|
private updateQuery;
|
|
54
56
|
private setOptions;
|
|
55
57
|
private searchForExistingCategories;
|
|
58
|
+
private populateSitesOptions;
|
|
56
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchFilterAutocompleteChipsComponent, never>;
|
|
57
60
|
static ɵcmp: i0.ɵɵComponentDeclaration<SearchFilterAutocompleteChipsComponent, "adf-search-filter-autocomplete-chips", never, {}, {}, never, never, true, never>;
|
|
58
61
|
}
|
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-17797805682",
|
|
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-17797805682",
|
|
25
25
|
"@ngx-translate/core": ">=16.0.0",
|
|
26
|
-
"@alfresco/adf-core": ">=8.4.0-
|
|
26
|
+
"@alfresco/adf-core": ">=8.4.0-17797805682"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"content-services",
|