@alfresco/adf-process-services-cloud 8.1.0-16167952151 → 8.1.0-16168969238

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.
@@ -44,6 +44,18 @@ import * as i22 from "./task/task-form/components/task-form-cloud/task-form-clou
44
44
  import * as i23 from "./task/task-form/components/user-task-cloud/user-task-cloud.component";
45
45
  import * as i24 from "./people/components/people-cloud.component";
46
46
  export declare const PROCESS_SERVICES_CLOUD_DIRECTIVES: readonly [typeof import("@alfresco/adf-process-services-cloud").AppListCloudComponent, typeof import("@alfresco/adf-process-services-cloud").AppDetailsCloudComponent, typeof RichTextEditorComponent, typeof import("@alfresco/adf-process-services-cloud").FormSpinnerComponent, typeof import("@alfresco/adf-process-services-cloud").PropertiesViewerWrapperComponent, typeof import("@alfresco/adf-process-services-cloud").PropertiesViewerWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").DisplayRichTextWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").FileViewerWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").FilePropertiesTableCloudComponent, typeof import("@alfresco/adf-process-services-cloud").FormCustomOutcomesComponent, typeof import("@alfresco/adf-process-services-cloud").FormDefinitionSelectorCloudComponent, typeof import("@alfresco/adf-process-services-cloud").RadioButtonsCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").AttachFileCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").UploadCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").PeopleCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").GroupCloudWidgetComponent, typeof import("@alfresco/adf-process-services-cloud").FormCloudComponent, typeof import("@alfresco/adf-process-services-cloud").UserTaskCloudButtonsComponent, typeof import("@alfresco/adf-process-services-cloud").TaskFormCloudComponent, typeof import("@alfresco/adf-process-services-cloud").UserTaskCloudComponent, typeof PeopleCloudComponent, typeof RichTextEditorComponent];
47
+ /**
48
+ * @deprecated this module is deprecated and will be removed in the future versions
49
+ *
50
+ * Instead, import the standalone components directly, or use the following provider API to replicate the behaviour:
51
+ *
52
+ * providers: [
53
+ * provideTranslations('adf-process-services-cloud', 'assets/adf-process-services-cloud')
54
+ * provideCloudPreferences()
55
+ * provideCloudFormRenderer(),
56
+ * { provide: TASK_LIST_CLOUD_TOKEN, useClass: TaskListCloudService }
57
+ * ]
58
+ */
47
59
  export declare class ProcessServicesCloudModule {
48
60
  static forRoot(filterPreferenceServiceInstance?: PreferenceCloudServiceInterface, listPreferenceServiceInstance?: PreferenceCloudServiceInterface): ModuleWithProviders<ProcessServicesCloudModule>;
49
61
  static forChild(): ModuleWithProviders<ProcessServicesCloudModule>;
@@ -0,0 +1,36 @@
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 { PreferenceCloudServiceInterface } from './services/preference-cloud.interface';
18
+ import { Provider } from '@angular/core';
19
+ /**
20
+ * Provides preferences service for the process services cloud components
21
+ *
22
+ * @param opts Optional settings
23
+ * @param opts.filterPreferenceServiceInstance Custom filter instance for `PROCESS_FILTERS_SERVICE_TOKEN` and `TASK_FILTERS_SERVICE_TOKEN` (default: LocalPreferenceCloudService)
24
+ * @param opts.listPreferenceServiceInstance Custom filter instance for `PROCESS_LISTS_PREFERENCES_SERVICE_TOKEN` and `TASK_LIST_PREFERENCES_SERVICE_TOKEN` (default: LocalPreferenceCloudService)
25
+ * @returns list of providers
26
+ */
27
+ export declare function provideCloudPreferences(opts?: {
28
+ filterPreferenceServiceInstance?: PreferenceCloudServiceInterface;
29
+ listPreferenceServiceInstance?: PreferenceCloudServiceInterface;
30
+ }): Provider[];
31
+ /**
32
+ * Provides form rendering services for process cloud components
33
+ *
34
+ * @returns list of providers
35
+ */
36
+ export declare function provideCloudFormRenderer(): Provider[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@alfresco/adf-process-services-cloud",
3
3
  "description": "Alfresco ADF process services cloud",
4
- "version": "8.1.0-16167952151",
4
+ "version": "8.1.0-16168969238",
5
5
  "author": "Hyland Software, Inc. and its affiliates",
6
6
  "repository": {
7
7
  "type": "git",
@@ -37,9 +37,9 @@
37
37
  "@angular/platform-browser": ">=14.1.3",
38
38
  "@angular/platform-browser-dynamic": ">=14.1.3",
39
39
  "@angular/router": ">=14.1.3",
40
- "@alfresco/js-api": ">=9.1.0-16167952151",
41
- "@alfresco/adf-core": ">=8.1.0-16167952151",
42
- "@alfresco/adf-content-services": ">=8.1.0-16167952151",
40
+ "@alfresco/js-api": ">=9.1.0-16168969238",
41
+ "@alfresco/adf-core": ">=8.1.0-16168969238",
42
+ "@alfresco/adf-content-services": ">=8.1.0-16168969238",
43
43
  "@apollo/client": ">=3.7.2",
44
44
  "@ngx-translate/core": ">=14.0.0",
45
45
  "apollo-angular": ">=4.0.1"
package/public-api.d.ts CHANGED
@@ -37,3 +37,4 @@ export * from './lib/models/process-instance-variable.model';
37
37
  export * from './lib/models/variable-definition';
38
38
  export * from './lib/models/date-format-cloud.model';
39
39
  export * from './lib/models/process-variable-filter.model';
40
+ export * from './lib/providers';