@alfresco/adf-content-services 8.1.0-15484232623 → 8.1.0-15484746933
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/esm2022/lib/api-factories/alfresco-api-v2-loader.service.mjs +8 -5
- package/esm2022/lib/document-list/components/library-role-column/library-role-column.component.mjs +18 -21
- package/esm2022/lib/document-list/components/library-status-column/library-status-column.component.mjs +15 -18
- package/esm2022/lib/infinite-scroll-datasource/infinite-scroll-datasource.mjs +2 -1
- package/esm2022/lib/security-options-loader/security-options-loader.service.mjs +43 -0
- package/fesm2022/adf-content-services.mjs +74 -41
- package/fesm2022/adf-content-services.mjs.map +1 -1
- package/lib/api-factories/alfresco-api-v2-loader.service.d.ts +3 -1
- package/lib/security-options-loader/security-options-loader.service.d.ts +27 -0
- package/package.json +3 -3
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AppConfigService, StorageService } from '@alfresco/adf-core';
|
|
2
2
|
import { AlfrescoApiService } from '../services/alfresco-api.service';
|
|
3
|
+
import { SecurityOptionsLoaderService } from '../security-options-loader/security-options-loader.service';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
5
6
|
* Create a factory to resolve an api service instance
|
|
@@ -11,8 +12,9 @@ export declare function createAlfrescoApiInstance(angularAlfrescoApiService: Alf
|
|
|
11
12
|
export declare class AlfrescoApiLoaderService {
|
|
12
13
|
private readonly appConfig;
|
|
13
14
|
private readonly apiService;
|
|
15
|
+
private readonly securityOptionsLoaderService;
|
|
14
16
|
private storageService;
|
|
15
|
-
constructor(appConfig: AppConfigService, apiService: AlfrescoApiService, storageService: StorageService);
|
|
17
|
+
constructor(appConfig: AppConfigService, apiService: AlfrescoApiService, securityOptionsLoaderService: SecurityOptionsLoaderService, storageService: StorageService);
|
|
16
18
|
init(): Promise<any>;
|
|
17
19
|
private initAngularAlfrescoApi;
|
|
18
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlfrescoApiLoaderService, never>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
import { AppConfigService } from '@alfresco/adf-core';
|
|
18
|
+
import { AdfHttpClient } from '@alfresco/adf-core/api';
|
|
19
|
+
import * as i0 from "@angular/core";
|
|
20
|
+
export declare class SecurityOptionsLoaderService {
|
|
21
|
+
private appConfigService;
|
|
22
|
+
private adfHttpClient;
|
|
23
|
+
constructor(appConfigService: AppConfigService, adfHttpClient: AdfHttpClient);
|
|
24
|
+
load: () => void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SecurityOptionsLoaderService, never>;
|
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SecurityOptionsLoaderService>;
|
|
27
|
+
}
|
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.1.0-
|
|
4
|
+
"version": "8.1.0-15484746933",
|
|
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.1.0-
|
|
24
|
+
"@alfresco/js-api": ">=9.1.0-15484746933",
|
|
25
25
|
"@ngx-translate/core": ">=14.0.0",
|
|
26
|
-
"@alfresco/adf-core": ">=8.1.0-
|
|
26
|
+
"@alfresco/adf-core": ">=8.1.0-15484746933"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"content-services",
|