@alfresco/adf-content-services 9.1.0-16879045101 → 9.1.0-16936569382
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 +11 -20
- package/fesm2022/adf-content-services.mjs.map +1 -1
- package/lib/common/services/rendition.service.d.ts +3 -3
- package/lib/content-node-selector/site-dropdown/sites-dropdown.component.d.ts +1 -0
- package/lib/document-list/components/document-list.component.d.ts +2 -2
- package/lib/document-list/models/content-action.model.d.ts +0 -6
- package/package.json +3 -3
|
@@ -3,9 +3,9 @@ import { Track, TranslationService, ViewUtilService } from '@alfresco/adf-core';
|
|
|
3
3
|
import { AlfrescoApiService } from '../../services/alfresco-api.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class RenditionService {
|
|
6
|
-
private apiService;
|
|
7
|
-
private translateService;
|
|
8
|
-
private viewUtilsService;
|
|
6
|
+
private readonly apiService;
|
|
7
|
+
private readonly translateService;
|
|
8
|
+
private readonly viewUtilsService;
|
|
9
9
|
static TARGET: string;
|
|
10
10
|
/**
|
|
11
11
|
* Content groups based on categorization of files that can be viewed in the web browser. This
|
|
@@ -63,6 +63,7 @@ export declare class DropdownSitesComponent implements OnInit {
|
|
|
63
63
|
private skipCount;
|
|
64
64
|
selected: SiteEntry;
|
|
65
65
|
MY_FILES_VALUE: string;
|
|
66
|
+
get isLoading(): boolean;
|
|
66
67
|
constructor(authService: AuthenticationService, sitesService: SitesService, liveAnnouncer: LiveAnnouncer, translateService: TranslateService);
|
|
67
68
|
ngOnInit(): void;
|
|
68
69
|
loadAllOnScroll(): void;
|
|
@@ -225,7 +225,7 @@ export declare class DocumentListComponent extends DataTableSchema implements On
|
|
|
225
225
|
selectedItemsCountChanged: EventEmitter<number>;
|
|
226
226
|
dataTable: DataTableComponent;
|
|
227
227
|
actions: ContentActionModel[];
|
|
228
|
-
contextActionHandler: Subject<
|
|
228
|
+
contextActionHandler: Subject<unknown>;
|
|
229
229
|
data: ShareDataTableAdapter;
|
|
230
230
|
noPermission: boolean;
|
|
231
231
|
selection: NodeEntry[];
|
|
@@ -246,7 +246,7 @@ export declare class DocumentListComponent extends DataTableSchema implements On
|
|
|
246
246
|
getContextActions(node: NodeEntry): {
|
|
247
247
|
model: ContentActionModel;
|
|
248
248
|
node: NodeEntry;
|
|
249
|
-
subject: Subject<
|
|
249
|
+
subject: Subject<unknown>;
|
|
250
250
|
}[];
|
|
251
251
|
private getDefaultSorting;
|
|
252
252
|
isMobile(): boolean;
|
|
@@ -32,9 +32,3 @@ export declare enum ContentActionTarget {
|
|
|
32
32
|
All = "all"
|
|
33
33
|
}
|
|
34
34
|
export type ContentActionHandler = (obj: any, target?: any, permission?: string) => any;
|
|
35
|
-
export declare class DocumentActionModel extends ContentActionModel {
|
|
36
|
-
constructor(json?: any);
|
|
37
|
-
}
|
|
38
|
-
export declare class FolderActionModel extends ContentActionModel {
|
|
39
|
-
constructor(json?: any);
|
|
40
|
-
}
|
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": "9.1.0-
|
|
4
|
+
"version": "9.1.0-16936569382",
|
|
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": ">=10.1.0-
|
|
24
|
+
"@alfresco/js-api": ">=10.1.0-16936569382",
|
|
25
25
|
"@ngx-translate/core": ">=16.0.0",
|
|
26
|
-
"@alfresco/adf-core": ">=9.1.0-
|
|
26
|
+
"@alfresco/adf-core": ">=9.1.0-16936569382"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"content-services",
|